Date: Sat, 08 Aug 2015 13:48:24 +0000 From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 202082] emulators/dynamips-community: port fails to build on recent stable/10 (amd64) Message-ID: <bug-202082-13-nEBjIVfbFi@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-202082-13@https.bugs.freebsd.org/bugzilla/> References: <bug-202082-13@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=202082 --- Comment #2 from Pavel Volkov <pavelivolkov@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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-202082-13-nEBjIVfbFi>