diff options
Diffstat (limited to 'security/gnome-keyring/files/patch-configure')
-rw-r--r-- | security/gnome-keyring/files/patch-configure | 40 |
1 files changed, 29 insertions, 11 deletions
diff --git a/security/gnome-keyring/files/patch-configure b/security/gnome-keyring/files/patch-configure index 235656df1b7e..75016a356fcb 100644 --- a/security/gnome-keyring/files/patch-configure +++ b/security/gnome-keyring/files/patch-configure @@ -1,7 +1,25 @@ ---- configure.orig 2008-02-11 21:29:42.000000000 -0500 -+++ configure 2008-02-11 21:29:51.000000000 -0500 -@@ -23793,7 +23793,7 @@ else - tests_status="no" +--- configure.orig 2008-07-22 21:14:15.000000000 -0400 ++++ configure 2008-07-22 21:14:35.000000000 -0400 +@@ -25963,7 +25963,7 @@ fi + + dbus_status=$DBUS_VERSION + fi +- if test "$enable_dbus" == "yes"; then ++ if test "$enable_dbus" = "yes"; then + WITH_DBUS_TRUE= + WITH_DBUS_FALSE='#' + else +@@ -27001,7 +27001,7 @@ if test "${enable_tests+set}" = set; the + fi + + +-if test "$enable_tests" == "yes"; then ++if test "$enable_tests" = "yes"; then + echo "building tests and unit tests" + + cat >>confdefs.h <<_ACEOF +@@ -27014,7 +27014,7 @@ else + tests_status="no" fi - if test "$enable_tests" == "yes"; then @@ -9,12 +27,12 @@ WITH_TESTS_TRUE= WITH_TESTS_FALSE='#' else -@@ -25228,7 +25228,7 @@ fi +@@ -27029,7 +27029,7 @@ if test "${enable_coverage+set}" = set; + fi - dbus_status=$DBUS_VERSION + +-if test "$enable_coverage" == "yes"; then ++if test "$enable_coverage" = "yes"; then + CFLAGS="$CFLAGS -fprofile-arcs -ftest-coverage" + LDFLAGS="$LDFLAGS -fprofile-arcs -ftest-coverage" fi -- if test "$enable_dbus" == "yes"; then -+ if test "$enable_dbus" = "yes"; then - WITH_DBUS_TRUE= - WITH_DBUS_FALSE='#' - else |