Fresco/config iconv.m4,1.2,1.3

Tobias Hunger <[email protected]> Fri, 09 Jan 2004 00:16:09 +0100
Newsgroups gmane.comp.video.fresco.cvs
Message-ID <[email protected]>
Update of /cvs/fresco/Fresco/config
In directory purcel:/tmp/cvs-serv15529

Modified Files:
	iconv.m4 
Log Message:
Do not include CPPFLAGS/LIBS into ICONV_CPPFLAGS/LIBS when --with-iconv-prefix
is provided.


Index: iconv.m4
===================================================================
RCS file: /cvs/fresco/Fresco/config/iconv.m4,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- iconv.m4	8 Jan 2004 13:46:02 -0000	1.2
+++ iconv.m4	8 Jan 2004 23:15:33 -0000	1.3
@@ -30,10 +30,10 @@
                                [search for iconv library in prefix]),
                 [
                     if test -d $withval/include ; then
-                        ICONV_CPPFLAGS="$CPPFLAGS -I$withval/include"
+                        ICONV_CPPFLAGS="-I$withval/include"
                     fi
                     if test -d $withval/lib ; then
-                        ICONV_LIBS="$LIBS -L$withval/lib"
+                        ICONV_LIBS="-L$withval/lib"
                     fi
                 ]
     )