Displaying 1 result from an estimated 1 matches for "attr2data".
2014 Jan 30
4
[Bug 891] New: Build failure on Slackware AMD 64bit with GLIBC 2.7
...ew to ipset, I tried to build from latest source today, and got build
errors:
CCLD ipset
../lib/.libs/libipset.a(session.o): In function `rawdata2attr':
/home/nick/targz/ipset-6.20.1/lib/session.c:1495: undefined reference to
`htobe64'
../lib/.libs/libipset.a(session.o): In function `attr2data':
/home/nick/targz/ipset-6.20.1/lib/session.c:618: undefined reference to
`be64toh'
collect2: ld returned 1 exit status
Researching, it turns out I need GLIBC => 2.9 to supply this.
I eventually managed to build ipset (and all works great!) by adding:
#define be64toh(x) (x)
#define ht...