Opened 7 years ago
Closed 7 years ago
#10259 closed defect (worksforme)
bind server / liblzma.la
Reported by: | thomas | Owned by: | |
---|---|---|---|
Priority: | lowest | Milestone: | 8.2 |
Component: | BOOK | Version: | SVN |
Severity: | trivial | Keywords: | |
Cc: |
Description ¶
This came up while building bind server. Building the client tools ran smoothly.
libtool: compile: gcc -I/tmp/bind/build/bind-9.11.2 -I../.. -I./unix/include -I./pthreads/include -I./x86_32/include -I./include -I./include -I/tmp/bind/build/bind-9.11.2/lib/dns/include -I../../lib/dns/include -D_REENTRANT -DOPENSSL -DPK11_LIB_LOCATION=\"undefined\" -D_GNU_SOURCE -g -O2 -I/usr/include/libxml2 -fPIC -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat -Wpointer-arith -fno-strict-aliasing -fno-delete-null-pointer-checks -c backtrace-emptytbl.c -fPIC -DPIC -o .libs/backtrace-emptytbl.o /bin/sh /tmp/bind/build/bind-9.11.2/libtool --mode=link --tag=CC \ gcc -I/tmp/bind/build/bind-9.11.2 -I../.. -I./unix/include -I./pthreads/include -I./x86_32/include -I./include -I./include -I/tmp/bind/build/bind-9.11.2/lib/dns/include -I../../lib/dns/include -D_REENTRANT -DOPENSSL -DPK11_LIB_LOCATION=\"undefined\" -D_GNU_SOURCE -g -O2 -I/usr/include/libxml2 -fPIC -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat -Wpointer-arith -fno-strict-aliasing -fno-delete-null-pointer-checks -o libisc.la -rpath /usr/lib \ -version-info 168:0:2 \ aes.lo assertions.lo backtrace.lo base32.lo base64.lo bind9.lo buffer.lo bufferlist.lo commandline.lo counter.lo crc64.lo error.lo event.lo hash.lo ht.lo heap.lo hex.lo hmacmd5.lo hmacsha.lo httpd.lo inet_aton.lo iterated_hash.lo lex.lo lfsr.lo lib.lo log.lo md5.lo mem.lo mutexblock.lo netaddr.lo netscope.lo pool.lo ondestroy.lo parseint.lo portset.lo quota.lo radix.lo random.lo ratelimiter.lo refcount.lo region.lo regex.lo result.lo rwlock.lo safe.lo serial.lo sha1.lo sha2.lo sockaddr.lo stats.lo string.lo strtoul.lo symtab.lo task.lo taskpool.lo tm.lo timer.lo version.lo unix/app.lo unix/dir.lo unix/entropy.lo unix/errno.lo unix/errno2result.lo unix/file.lo unix/fsaccess.lo unix/interfaceiter.lo unix/keyboard.lo unix/meminfo.lo unix/net.lo unix/os.lo unix/resource.lo unix/socket.lo unix/stdio.lo unix/stdtime.lo unix/strerror.lo unix/syslog.lo unix/time.lo nls/msgcat.lo pthreads/condition.lo pthreads/mutex.lo pthreads/thread.lo backtrace-emptytbl.lo -lcrypto -ldl -lcap -lpthread -lxml2 -lz -llzma -lm -ldl /bin/grep: /usr/lib/liblzma.la: No such file or directory /bin/sed: can't read /usr/lib/liblzma.la: No such file or directory libtool: link: `/usr/lib/liblzma.la' is not a valid libtool archive make[2]: *** [Makefile:523: libisc.la] Fehler 1 make[2]: Verzeichnis „/tmp/bind/build/bind-9.11.2/lib/isc“ wird verlassen make[1]: *** [Makefile:78: subdirs] Fehler 1 make[1]: Verzeichnis „/tmp/bind/build/bind-9.11.2/lib“ wird verlassen make: *** [Makefile:81: subdirs] Fehler 1
Change History (4)
comment:1 by , 7 years ago
comment:2 by , 7 years ago
I'd try:
grep -r liblzma\\.la /usr/lib grep -r liblzma\\.la /usr/share/pkgconfig
to see what is going on. Then run the script on the About Libtool Archive ... page.
comment:3 by , 7 years ago
Priority: | normal → lowest |
---|---|
Severity: | normal → trivial |
argh damn - i somehow managed to have .la files on the system again - seems so that i've to get more familiar to that stuff and really need to take more care about it.
but just for interest, what would --without-libtool do?
comment:4 by , 7 years ago
Resolution: | → worksforme |
---|---|
Status: | new → closed |
I guess it would build without using libtool. :)
Closing,
Note:
See TracTickets
for help on using tickets.
using
--without-libtool
instead of the--with-libtool
in the configure statement makes compiling successfull - but I do not know which implications this has...