diff options
author | trasz <trasz@FreeBSD.org> | 2009-05-04 01:34:22 +0800 |
---|---|---|
committer | trasz <trasz@FreeBSD.org> | 2009-05-04 01:34:22 +0800 |
commit | 9381dbe56f21ef274bce40f36f772ca8747e93bc (patch) | |
tree | 41d08c99affb1d6204dc29db403c4ef9b76dc8fe /net-im/gloox | |
parent | 60ee9f7c80af34594b84ec79e2c17be14e59a0c1 (diff) | |
download | freebsd-ports-gnome-9381dbe56f21ef274bce40f36f772ca8747e93bc.tar.gz freebsd-ports-gnome-9381dbe56f21ef274bce40f36f772ca8747e93bc.tar.zst freebsd-ports-gnome-9381dbe56f21ef274bce40f36f772ca8747e93bc.zip |
Fix OpenSSL usage.
Submitted by: gibbs@
Diffstat (limited to 'net-im/gloox')
-rw-r--r-- | net-im/gloox/Makefile | 1 | ||||
-rw-r--r-- | net-im/gloox/files/patch-configure | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/net-im/gloox/Makefile b/net-im/gloox/Makefile index fb95985a87ad..24ece8ff8c3e 100644 --- a/net-im/gloox/Makefile +++ b/net-im/gloox/Makefile @@ -7,6 +7,7 @@ PORTNAME= gloox PORTVERSION= 0.9.9.7 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= http://camaya.net/download/ diff --git a/net-im/gloox/files/patch-configure b/net-im/gloox/files/patch-configure new file mode 100644 index 000000000000..583e4987b865 --- /dev/null +++ b/net-im/gloox/files/patch-configure @@ -0,0 +1,29 @@ +--- configure.orig 2009-05-01 14:07:43.000000000 +0200 ++++ configure 2009-05-01 14:09:15.000000000 +0200 +@@ -19849,7 +19849,7 @@ + schannel=no + fi + +-if test "$schannel" == "yes"; then ++if test "$schannel" = "yes"; then + ssl=yes + case "$host_os" in + *mingw*) +@@ -19866,7 +19866,7 @@ + echo "${ECHO_T}$schannel" >&6; } + fi + +-if test "$ssl" == "no"; then ++if test "$ssl" = "no"; then + + # Check whether --with-gnutls was given. + if test "${with_gnutls+set}" = set; then +@@ -20101,7 +20101,7 @@ + echo "${ECHO_T}$gnutls" >&6; } + fi + +-if test "$ssl" == "no"; then ++if test "$ssl" = "no"; then + + # Check whether --with-openssl was given. + if test "${with_openssl+set}" = set; then |