On 2013-06-14 11:26, Sebastian Geerken wrote:
Hi!
Is there anything new on this topic?
On Sat, May 25, 2013, August Karlstrom wrote:
On 2013-05-23 22:02, Sebastian Geerken wrote:
Did you call "autogen.sh" again before "configure"?
Yes, I followed the instructions at http://www.dillo.org/source.html.
To 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 = @LIBX11_LIBS@ (Makefile.in)
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@
Futhermore, part of "dillo_LDADD" should be "@LIBX11_LIBS@" in src/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
What 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