aboutsummaryrefslogtreecommitdiffstats
path: root/aclocal.m4
diff options
context:
space:
mode:
authorDai Sato <satodai@w3m.jp>2007-05-29 12:01:04 +0000
committerDai Sato <satodai@w3m.jp>2007-05-29 12:01:04 +0000
commit6c28792111b5db2829f201a468d2baad827bf6df (patch)
tree51c496bb133b9c36712549fcb1cac0841a53fd70 /aclocal.m4
parentadd datarootdir for Autoconf 2.60 and later. (diff)
downloadw3m-6c28792111b5db2829f201a468d2baad827bf6df.tar.gz
w3m-6c28792111b5db2829f201a468d2baad827bf6df.zip
move 'gc' from $LIBS to $LIBGC. [w3m-dev 04259]
Diffstat (limited to '')
-rw-r--r--aclocal.m45
1 files changed, 3 insertions, 2 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 216ad00..dca6dda 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -426,6 +426,7 @@ AC_ARG_WITH(termlib,
# ----------------------------------------------------------------
AC_DEFUN([AC_W3M_GC],
[AC_MSG_CHECKING(GC library exists)
+AC_SUBST(LIBGC)
AC_ARG_WITH(gc,
[ --with-gc[=PREFIX] libgc PREFIX],
[test x"$with_gc" = xno && AC_MSG_ERROR([You can not build w3m without gc])],
@@ -456,7 +457,7 @@ AC_ARG_WITH(gc,
fi
fi
unset ac_cv_lib_gc_GC_init
- AC_CHECK_LIB(gc, GC_init, [LIBS="$LIBS -lgc"])
+ AC_CHECK_LIB(gc, GC_init, [LIBGC="-lgc"])
if test x"$ac_cv_lib_gc_GC_init" = xno; then
AC_MSG_CHECKING(GC library location)
AC_MSG_RESULT($with_gc)
@@ -466,7 +467,7 @@ AC_ARG_WITH(gc,
LDFLAGS="$LDFLAGS -L$dir/lib"
AC_MSG_CHECKING($dir)
unset ac_cv_lib_gc_GC_init
- AC_CHECK_LIB(gc, GC_init, [gclibdir="$dir/lib"; LIBS="$LIBS -L$dir/lib -lgc"; break])
+ AC_CHECK_LIB(gc, GC_init, [gclibdir="$dir/lib"; LIBGC="-L$dir/lib -lgc"; break])
LDFLAGS="$ldflags"
done
if test x"$gclibdir" = xno; then