Fix problem with order of C include paths.
authorAdam Dickmeiss <adam@indexdata.dk>
Thu, 20 Feb 2003 15:05:40 +0000 (15:05 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Thu, 20 Feb 2003 15:05:40 +0000 (15:05 +0000)
CHANGELOG
lib/Makefile.am

index e243943..e256a1b 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,8 @@ Possible compatibility problems with earlier versions marked with '*'.
 
 --- 1.9.3 2003/MM/DD
 
 
 --- 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. 
 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. 
index 05c344d..850d52f 100644 (file)
@@ -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
 
 if ISTHR
 extra=libyazthread.la
@@ -30,9 +30,9 @@ libyazmalloc_la_SOURCES=
 libyazssl_la_LIBADD=tcpip.lo comstack.lo
 libyazssl_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)
 
 
 SSL_FLAGS= -I$(top_srcdir)/include $(SSL_DEFS) $(SSL_CFLAGS)