Post by Sebastian GeerkenHi!
Is there anything new on this topic?
Post by August KarlstromPost by Sebastian GeerkenDid you call "autogen.sh" again before "configure"?
Yes, I followed the instructions at http://www.dillo.org/source.html.
Post by Sebastian GeerkenTo get more
informations: what is the output of "configure"? Or, better, send the
your "config.log".
OK, I have attached config.log.
The config.log looks OK, the value of LIBX11_LIBS is set. Is it also
set in Makefile, Makefile.in, src/Makefile, src/Makefile.in? In all
files, there should be the line
LIBX11_LIBS = -lX11 (Makefile)
Yes, it is set in all files you mention:
$ grep LIBX11_LIBS Makefile
LIBX11_LIBS = -lX11
$ grep LIBX11_LIBS Makefile.in
LIBX11_LIBS = @LIBX11_LIBS@
$ grep LIBX11_LIBS src/Makefile
LIBX11_LIBS = -lX11
$ grep LIBX11_LIBS src/Makefile.in
LIBX11_LIBS = @LIBX11_LIBS@
@LIBICONV_LIBS@ @LIBPTHREAD_LIBS@ @LIBX11_LIBS@
Post by Sebastian Geerkensrc/Makefile.in, and "-lX11" in src/Makefile. Please check this.
Yes, these strings are also present:
$ grep -m1 -A9 dillo_LDADD src/Makefile.in
dillo_LDADD = \
$(top_builddir)/dlib/libDlib.a \
$(top_builddir)/dpip/libDpip.a \
IO/libDiof.a \
$(top_builddir)/dw/libDw-widgets.a \
$(top_builddir)/dw/libDw-fltk.a \
$(top_builddir)/dw/libDw-core.a \
$(top_builddir)/lout/liblout.a \
@LIBJPEG_LIBS@ @LIBPNG_LIBS@ @LIBFLTK_LIBS@ @LIBZ_LIBS@ \
@LIBICONV_LIBS@ @LIBPTHREAD_LIBS@ @LIBX11_LIBS@
$ grep -m1 -A9 dillo_LDADD src/Makefile
dillo_LDADD = \
$(top_builddir)/dlib/libDlib.a \
$(top_builddir)/dpip/libDpip.a \
IO/libDiof.a \
$(top_builddir)/dw/libDw-widgets.a \
$(top_builddir)/dw/libDw-fltk.a \
$(top_builddir)/dw/libDw-core.a \
$(top_builddir)/lout/liblout.a \
-ljpeg -L/usr/lib/x86_64-linux-gnu -lpng12 -lpng12
-L/usr/lib/x86_64-linux-gnu -Wl,-Bsymbolic-functions -lfltk -lz \
-lpthread -lX11
Post by Sebastian GeerkenWhat version of automake do you use? According to config.log, your
autoconf version is 2.69.
I use automake 1.11.6
Thanks for your help Sebastian.
Regards,
August