* Provide compilation option for GTK+3 as well as GTK+2 * Make program configuration check for _POSIX_CLOCK_SELECTION as well as _POSIX_MONOTONIC_CLOCK when checking the availability of monotonic clocks for condition variables (corrects BSD builds) * Ensure PIPE_BUF is defined in mainwindow.cpp (corrects Hurd build). * Upgrade internal c++-gtk-utils version to 1.2.3. Changes 3.2.2: * Update internal copy of c++-gtk-utils to version 1.2.2 and fix compilation error with gcc-4.5.0. * Provide an automatic redial option where the modem is in use or the recipient of a fax is busy. * Get GUI to deal with a corner case where sending a fax from the socket server to an empty number (open connection) is cancelled. * Provide an error dialog if, on program start-up, a connection to the dbus session message bus cannot be established. * Use Cgu::start_timeout_seconds() instead of Cgu::start_timeout() where glib supports it, and so bump c++-gtk-utils requirement to version 1.2.1.
31 lines
1.4 KiB
Text
31 lines
1.4 KiB
Text
$NetBSD: patch-ad,v 1.9 2010/06/10 06:44:00 adam Exp $
|
|
|
|
--- configure.orig 2010-06-03 20:27:33.000000000 +0000
|
|
+++ configure
|
|
@@ -4999,7 +4999,7 @@ $as_echo_n "checking which version of gt
|
|
# Check whether --with-gtk-version was given.
|
|
if test "${with_gtk_version+set}" = set; then :
|
|
withval=$with_gtk_version;
|
|
- if test "x$withval" == "xgtk+2"; then
|
|
+ if test "x$withval" = "xgtk+2"; then
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: gtk+2" >&5
|
|
$as_echo "gtk+2" >&6; }
|
|
CGU_GTK_VERSION=2
|
|
@@ -5098,7 +5098,7 @@ $as_echo "no" >&6; }
|
|
as_fn_error "Library requirements (gtk+-2.0 >= 2.12.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." "$LINENO" 5
|
|
fi
|
|
|
|
- elif test "x$withval" == "xgtk+3"; then
|
|
+ elif test "x$withval" = "xgtk+3"; then
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: gtk+3" >&5
|
|
$as_echo "gtk+3" >&6; }
|
|
CGU_GTK_VERSION=3
|
|
@@ -5197,7 +5197,7 @@ $as_echo "no" >&6; }
|
|
as_fn_error "Library requirements (gtk+-3.0 >= 2.90.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them." "$LINENO" 5
|
|
fi
|
|
|
|
- elif test "x$withval" == "xauto"; then
|
|
+ elif test "x$withval" = "xauto"; then
|
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: auto" >&5
|
|
$as_echo "auto" >&6; }
|
|
|