diff --git a/ChangeLog b/ChangeLog index 32e60f07..17c15368 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2001-07-13 Peter Williams + + * config.h.in: add #undef HAVE_DLFCN_H + + * example/Makefile.am (INCLUDES): Compile fix when srcdir != + builddir. + Fri Jul 13 11:09:56 CEST 2001 Daniel Veillard * win32/libxml2/libxml2.def.src: added a couple of exported entries diff --git a/config.h.in b/config.h.in index bf54bc04..07ded072 100644 --- a/config.h.in +++ b/config.h.in @@ -91,6 +91,9 @@ /* Define if you have the header file. */ #undef HAVE_DIRENT_H +/* Define if you have the header file. */ +#undef HAVE_DLFCN_H + /* Define if you have the header file. */ #undef HAVE_ERRNO_H diff --git a/example/Makefile.am b/example/Makefile.am index 296cfd06..d8028502 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -4,6 +4,7 @@ noinst_PROGRAMS = gjobread INCLUDES = \ -I$(top_builddir) -I$(top_srcdir) \ + -I$(top_builddir)/include \ -I$(top_srcdir)/include -I@srcdir@ LDADD = $(top_builddir)/libxml2.la @Z_LIBS@ $(ICONV_LIBS) -lm