From a74c5544a39dc1a330c8c85c90ba4134bc53c14b Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Tue, 17 Oct 2000 15:21:50 +0000 Subject: [PATCH] add external dir specified for support libs to LDFLAGS at configure time SVN revision: 3639 --- legacy/evas/configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/evas/configure.in b/legacy/evas/configure.in index 0b51deb3d3..a3fbc5811e 100644 --- a/legacy/evas/configure.in +++ b/legacy/evas/configure.in @@ -19,15 +19,15 @@ IMLIB2_CONFIG="imlib2-config" AC_ARG_WITH(imlib2, [ --with-imlib2=DIR use DIR where imlib2 was installed (eg /usr/local)], - [CPPFLAGS="$CPPFLAGS -I$withval/include" + [CPPFLAGS="$CPPFLAGS -I$withval/include"; LDFLAGS="$LDFLAGS -L$withval/lib" IMLIB2_CONFIG=$withval"/bin/imlib2-config"]) AC_ARG_WITH(ttf, [ --with-ttf=DIR use DIR where freetype was installed (eg /opt/freetype)], - [CPPFLAGS="$CPPFLAGS -I$withval/include" + [CPPFLAGS="$CPPFLAGS -I$withval/include"; LDFLAGS="$LDFLAGS -L$withval/lib" LIBS_TTF="-L"$withval"/lib"]) AC_ARG_WITH(gl, [ --with-gl=DIR use DIR where opengl was installed (eg /usr/X11R6)], - [CPPFLAGS="$CPPFLAGS -I$withval/include" + [CPPFLAGS="$CPPFLAGS -I$withval/include"; LDFLAGS="$LDFLAGS -L$withval/lib" LIBS_GL="-L"$withval"/lib"]) #### Find out about X