diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-02-25 04:42:56 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-02-25 04:42:56 +0800 |
commit | 667349002bea79e18e47d6b161d051ef63e705cd (patch) | |
tree | 0b9610be6e7e428ed181aa51d87b9c157f0f13c8 /security/gnome-keyring/files/patch-configure | |
parent | c9156a1443319926a773e9839174e6d557afcad4 (diff) | |
download | marcuscom-ports-667349002bea79e18e47d6b161d051ef63e705cd.tar marcuscom-ports-667349002bea79e18e47d6b161d051ef63e705cd.tar.gz marcuscom-ports-667349002bea79e18e47d6b161d051ef63e705cd.tar.bz2 marcuscom-ports-667349002bea79e18e47d6b161d051ef63e705cd.tar.lz marcuscom-ports-667349002bea79e18e47d6b161d051ef63e705cd.tar.xz marcuscom-ports-667349002bea79e18e47d6b161d051ef63e705cd.tar.zst marcuscom-ports-667349002bea79e18e47d6b161d051ef63e705cd.zip |
Update to 2.25.91.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@11921 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'security/gnome-keyring/files/patch-configure')
-rw-r--r-- | security/gnome-keyring/files/patch-configure | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/security/gnome-keyring/files/patch-configure b/security/gnome-keyring/files/patch-configure new file mode 100644 index 000000000..9aff6d9eb --- /dev/null +++ b/security/gnome-keyring/files/patch-configure @@ -0,0 +1,29 @@ +--- configure.orig 2009-02-24 21:18:47.000000000 +0100 ++++ configure 2009-02-24 21:19:24.000000000 +0100 +@@ -18069,7 +18069,7 @@ + + { echo "$as_me:$LINENO: checking build test tools, unit tests, and -Werror" >&5 + echo $ECHO_N "checking build test tools, unit tests, and -Werror... $ECHO_C" >&6; } +-if test "$enable_tests" == "yes"; then ++if test "$enable_tests" = "yes"; then + + cat >>confdefs.h <<_ACEOF + #define WITH_TESTS 1 +@@ -18085,7 +18085,7 @@ + tests_status="no" + fi + +- if test "$enable_tests" == "yes"; then ++ if test "$enable_tests" = "yes"; then + WITH_TESTS_TRUE= + WITH_TESTS_FALSE='#' + else +@@ -18100,7 +18100,7 @@ + fi + + +-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 |