diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -2,6 +2,12 @@ * configure.ac: + Fix filepicker check. + +2005-04-26 Christian Persch <chpe@cvs.gnome.org> + + * configure.ac: + Ged rid of all API checks which check for 1.8-only API, and introduce a Gecko version check instead. diff --git a/configure.ac b/configure.ac index 756e5fb6a..c2fceb13c 100644 --- a/configure.ac +++ b/configure.ac @@ -437,7 +437,7 @@ AC_MSG_CHECKING([whether to enable native gtk+ filepicker]) AC_ARG_ENABLE([filepicker], AS_HELP_STRING([--enable-filepicker],[Whether to enable the gtk+ native filepicker; not needed when the mozilla build itself has native gtk+ filepicker enabled (default:enabled)]), [filepicker=$enableval], - [if test "x$have_gecko_1_8"; then filepicker=no; else filepicker=yes; fi]) + [if test "x$have_gecko_1_8" = "xyes"; then filepicker=no; else filepicker=yes; fi]) AC_MSG_RESULT([$filepicker]) AM_CONDITIONAL([ENABLE_FILEPICKER],[test "x$filepicker" = "xyes"]) |