From: Adam Dickmeiss Date: Thu, 20 Feb 2003 15:05:40 +0000 (+0000) Subject: Fix problem with order of C include paths. X-Git-Tag: YAZ.2.0~28 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=589712a429073d3608dbd45352cef6cf3b50cbd8 Fix problem with order of C include paths. --- diff --git a/CHANGELOG b/CHANGELOG index e243943..e256a1b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,8 @@ Possible compatibility problems with earlier versions marked with '*'. --- 1.9.3 2003/MM/DD +Fixed problem with C compiler include path in wrong order. + Support for SRW 1.0 over HTTP. This is an optional feature and requires libxml2 to operate. Enable SOAP by specifying --with-xml2 for configure. diff --git a/lib/Makefile.am b/lib/Makefile.am index 05c344d..850d52f 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,4 +1,4 @@ -## $Id: Makefile.am,v 1.27 2003-02-18 10:37:08 adam Exp $ +## $Id: Makefile.am,v 1.28 2003-02-20 15:05:40 adam Exp $ if ISTHR extra=libyazthread.la @@ -30,9 +30,9 @@ libyazmalloc_la_SOURCES= libyazssl_la_LIBADD=tcpip.lo comstack.lo libyazssl_la_SOURCES= -THREADED_FLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/server @CFLAGSTHREADS@ - -XMALLOC_FLAGS = -DTRACE_XMALLOC=2 -I$(top_srcdir)/include +AM_CPPFLAGS= -I$(top_srcdir)/include -I$(top_srcdir)/server +THREADED_FLAGS = @CFLAGSTHREADS@ +XMALLOC_FLAGS = -DTRACE_XMALLOC=2 SSL_FLAGS= -I$(top_srcdir)/include $(SSL_DEFS) $(SSL_CFLAGS)