diff options
author | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2009-05-03 17:34:22 +0000 |
---|---|---|
committer | Edward Tomasz Napierala <trasz@FreeBSD.org> | 2009-05-03 17:34:22 +0000 |
commit | 3148e896122eb53e1a9a0d4ace6d8f691db8c078 (patch) | |
tree | 99577c47c999f85d93058f2f8a9ab3ae388b7312 /net-im/gloox | |
parent | c73f2783422612aee9a850c7194b9d7746988080 (diff) | |
download | ports-3148e896122eb53e1a9a0d4ace6d8f691db8c078.tar.gz ports-3148e896122eb53e1a9a0d4ace6d8f691db8c078.zip |
Notes
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 |