diff options
author | Tom Tromey <tromey@cygnus.com> | 1998-07-22 13:52:27 +0800 |
---|---|---|
committer | Tom Tromey <tromey@src.gnome.org> | 1998-07-22 13:52:27 +0800 |
commit | 8e57014762a07900c9620caebda607f179d24ea3 (patch) | |
tree | 8ac79f51d4c3ac6d8b4f8b69916283ce77e83dc0 /macros/gnome-guile-checks.m4 | |
parent | 04472528403b0c43456e46b3fda3669c02949ee2 (diff) | |
download | gsoc2013-evolution-8e57014762a07900c9620caebda607f179d24ea3.tar gsoc2013-evolution-8e57014762a07900c9620caebda607f179d24ea3.tar.gz gsoc2013-evolution-8e57014762a07900c9620caebda607f179d24ea3.tar.bz2 gsoc2013-evolution-8e57014762a07900c9620caebda607f179d24ea3.tar.lz gsoc2013-evolution-8e57014762a07900c9620caebda607f179d24ea3.tar.xz gsoc2013-evolution-8e57014762a07900c9620caebda607f179d24ea3.tar.zst gsoc2013-evolution-8e57014762a07900c9620caebda607f179d24ea3.zip |
If no build-guile, link against readline before termcap.
Tue Jul 21 23:44:53 1998 Tom Tromey <tromey@cygnus.com>
* gnome-guile-checks.m4: If no build-guile, link against readline
before termcap.
svn path=/trunk/; revision=282
Diffstat (limited to 'macros/gnome-guile-checks.m4')
-rw-r--r-- | macros/gnome-guile-checks.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/gnome-guile-checks.m4 b/macros/gnome-guile-checks.m4 index 582e98a503..d62c9f5ebd 100644 --- a/macros/gnome-guile-checks.m4 +++ b/macros/gnome-guile-checks.m4 @@ -55,7 +55,7 @@ AC_DEFUN([GNOME_CHECK_GUILE], AC_CHECK_LIB(rx, main, GUILE_LIBS="-lrx $GUILE_LIBS") AC_CHECK_LIB(qt, main, GUILE_LIBS="-lqt $GUILE_LIBS") AC_CHECK_LIB(dl, dlopen, GUILE_LIBS="-ldl $GUILE_LIBS") - GUILE_LIBS="-lguile $GUILE_LIBS $QTTHREADS_LIB $TERMCAP_LIB $READLINE_LIB" + GUILE_LIBS="-lguile $GUILE_LIBS $QTTHREADS_LIB $READLINE_LIB $TERMCAP_LIB" fi AC_SUBST(GUILE_LIBS) |