aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-10-04 23:15:01 +0000
committerUlrich Drepper <drepper@redhat.com>1999-10-04 23:15:01 +0000
commitf5f7239f689b133a0fe6f1410a5bc77cf75f84fa (patch)
tree448426ca0e47a5f1b4fd103152f7907bdd7a8638
parent8f48bfccb04b4fc8e9bf967694a8ff14af2e5347 (diff)
downloadglibc-f5f7239f689b133a0fe6f1410a5bc77cf75f84fa.zip
glibc-f5f7239f689b133a0fe6f1410a5bc77cf75f84fa.tar.gz
glibc-f5f7239f689b133a0fe6f1410a5bc77cf75f84fa.tar.bz2
Update.
* configure.in: Add additional options --with-gd-include and --with-gd-lib to help people with strange installations.
-rw-r--r--ChangeLog3
-rw-r--r--configure.in33
2 files changed, 30 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 2eddb29..a15f57e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
1999-10-04 Ulrich Drepper <drepper@cygnus.com>
+ * configure.in: Add additional options --with-gd-include and
+ --with-gd-lib to help people with strange installations.
+
* malloc/Makefile: Add libdl dependency to libmemprof.so.
* malloc/Depend: New file.
diff --git a/configure.in b/configure.in
index 3890039..28290d8 100644
--- a/configure.in
+++ b/configure.in
@@ -37,15 +37,36 @@ AC_ARG_WITH(gd, dnl
--with-gd=DIR find libgd include dir and library with prefix DIR,
[dnl
case "$with_gd" in
-yes|''|no) config_vars="$config_vars
-libgd-LDFLAGS =" ;;
-*) config_vars="$config_vars
-CFLAGS-memprofstat.c = -I$withval/include
-libgd-LDFLAGS = -L$withval/lib"
- libgd_include="-I$withval/include"
+yes|''|no) ;;
+*) libgd_include="-I$withval/include"
libgd_ldflags="-L$withval/lib" ;;
esac
])
+AC_ARG_WITH(gd-include, dnl
+ --with-gd-include=DIR find libgd include files in DIR,
+ [dnl
+case "$with_gd_include" in
+''|no) ;;
+*) libgd_include="-I$withval" ;;
+esac
+])
+AC_ARG_WITH(gd-lib, dnl
+ --with-gd-lib=DIR find libgd library files in DIR,
+ [dnl
+case "$with_gd_lib" in
+''|no) ;;
+*) libgd_ldflags="-L$withval" ;;
+esac
+])
+
+if test -n "$libgd_include"; then
+ config_vars="$config_vars
+CFLAGS-memprofstat.c = $libgd_include"
+fi
+if test -n "$libgd_ldflags"; then
+ config_vars="$config_vars
+libgd-LDFLAGS = $libgd_ldflags"
+fi
dnl Arguments to specify presence of other packages/features.
AC_ARG_WITH(fp, dnl