summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm@src.gnome.org>2003-05-19 10:59:24 +0000
committerMalcolm Tredinnick <malcolm@src.gnome.org>2003-05-19 10:59:24 +0000
commit60dedb335c7dadbeff1fd0dc21b127acbb57e226 (patch)
treeba4fa567fd77885094c727eaa42f130fe1c560b8
parentfdd273d31636a0338eb2530b6c85bb08fcb91781 (diff)
downloadgnome-common-60dedb335c7dadbeff1fd0dc21b127acbb57e226.tar.gz
Reverse previous commit. I am a complete idiot.
svn path=/branches/gnome-2-2/; revision=2902
-rw-r--r--macros2/ChangeLog6
-rw-r--r--macros2/curses.m42
2 files changed, 1 insertions, 7 deletions
diff --git a/macros2/ChangeLog b/macros2/ChangeLog
index 9692d29..06dccdc 100644
--- a/macros2/ChangeLog
+++ b/macros2/ChangeLog
@@ -1,9 +1,3 @@
-2003-05-19 Malcolm Tredinnick <malcolm@commsecure.com.au>
-
- * curses.m4: Reverse the sense of a test so that the
- --with-ncurses=<dir> option in a configure.in script works.
- Fixes bug #100730.
-
2003-02-14 Kalpesh Shah <kalpesh.shah@sun.com>
* check-utmp.m4: initialize UTMP structure properly.
diff --git a/macros2/curses.m4 b/macros2/curses.m4
index 89ff841..5307e13 100644
--- a/macros2/curses.m4
+++ b/macros2/curses.m4
@@ -130,7 +130,7 @@ AC_DEFUN([AC_CHECK_CURSES],[
[ --with-ncurses[=dir] Compile with ncurses/locate base dir],
if test x$withval = xno ; then
search_ncurses=false
- elif test x$withval = xyes ; then
+ elif test x$withval != xyes ; then
CURSES_LIBS="$LIBS -L$withval/lib -lncurses"
CURSES_INCLUDEDIR="-I$withval/include"
search_ncurses=false