[Bug 202082] emulators/dynamips-community: port fails to build on recent stable/10 (amd64)

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sat Aug 8 13:48:24 UTC 2015


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202082

--- Comment #2 from Pavel Volkov <pavelivolkov at gmail.com> ---
Hello.

If you installed the 'devel/libelf' port - you have 2 the library.
With a different header file:
- The system: '/usr/src/lib/libelf'.
  Header file '/usr/include/libelf.h' having the enumeration:
  typedef enum {
        ELF_C_NULL = 0,
        ELF_C_CLR,
        ELF_C_FDDONE,
        ELF_C_FDREAD,
        ELF_C_RDWR,
        ELF_C_READ,
        ELF_C_SET,
        ELF_C_WRITE,
        ELF_C_NUM
  } Elf_Cmd;

- And, installed from the port: '/usr/local/include/libelf/libelf.h'.
  With enumeration:
  typedef enum {
    ELF_C_NULL = 0,     /* must be first, 0 */
    ELF_C_READ,
    ELF_C_WRITE,
    ELF_C_CLR,
    ELF_C_SET,
    ELF_C_FDDONE,
    ELF_C_FDREAD,
    ELF_C_RDWR,
    ELF_C_NUM           /* must be last */
  } Elf_Cmd;

Having different order of the elements.

In cmake used by header from the system library,
and library file from the port.

Thank you.

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list