diff options
author | Guy Harris <guy@alum.mit.edu> | 2008-04-29 08:30:39 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2008-04-29 08:30:39 +0000 |
commit | d136d9325208565fb8989ab2b038317aa6efdaea (patch) | |
tree | 1c7fb811bf2be13567422c32e93e14143eee15e2 /configure.in | |
parent | c60441529eed5a8e7dc37ba2336530cd4fc31660 (diff) | |
download | wireshark-d136d9325208565fb8989ab2b038317aa6efdaea.tar.gz wireshark-d136d9325208565fb8989ab2b038317aa6efdaea.tar.bz2 wireshark-d136d9325208565fb8989ab2b038317aa6efdaea.zip |
Have the error for not finding GTK+ indicate that we require GTK+ 2.4 or
later. Do the same for the GLib error messages, having them indicate
that we require GLib 2.x.
svn path=/trunk/; revision=25191
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index a0d28d83d6..ea08ffff84 100644 --- a/configure.in +++ b/configure.in @@ -551,7 +551,7 @@ datafiledir=`( )` AC_DEFINE_UNQUOTED(DATAFILE_DIR,"$datafiledir", [Directory for data]) -# GTK checks +# GTK checks; we require GTK+ 2.4 or later. # We don't add $GLIB_LIBS to LIBS, because we don't want to force all # programs to be built with GTK+. # @@ -580,19 +580,19 @@ if test "$GTK_OK" = "no" ; then # Wireshark unless they fix the GTK+ problem). # if test "x$enable_wireshark" = "xyes"; then - AC_MSG_ERROR([GTK+ isn't available, so Wireshark can't be compiled]) + AC_MSG_ERROR([GTK+ 2.4 or later isn't available, so Wireshark can't be compiled]) fi wireshark_bin="" wireshark_man="" # Honor GLIB_CFLAGS - AM_PATH_GLIB_2_0(2.0.0, CFLAGS="$CFLAGS $GLIB_CFLAGS", AC_MSG_ERROR(GLib2 distribution not found.), gmodule) + AM_PATH_GLIB_2_0(2.0.0, CFLAGS="$CFLAGS $GLIB_CFLAGS", AC_MSG_ERROR(GLib 2.0 or later distribution not found.), gmodule) else wireshark_bin="wireshark\$(EXEEXT)" wireshark_man="wireshark.1" wireshark_SUBDIRS="codecs gtk" # Honor GLIB_CFLAGS - AM_PATH_GLIB_2_0(2.0.0, , AC_MSG_ERROR(GLib distribution not found.), gmodule) + AM_PATH_GLIB_2_0(2.0.0, , AC_MSG_ERROR(GLib 2.0 or later distribution not found.), gmodule) fi # |