summaryrefslogtreecommitdiff
path: root/sysutils/gkrellm2/files/patch-src::configure
diff options
context:
space:
mode:
authorHajimu UMEMOTO <ume@FreeBSD.org>2005-05-16 12:43:10 +0000
committerHajimu UMEMOTO <ume@FreeBSD.org>2005-05-16 12:43:10 +0000
commitfd2482c9d5f13d026e53014a5cdf668c6aaa4510 (patch)
treed7e982f6e242d737f962c10fad3c6ae5a4f781ea /sysutils/gkrellm2/files/patch-src::configure
parent- Remove inactives sites from MASTER_SITE_QMAIL (diff)
- Update to 2.2.6.
- Use GnuTLS by default. You can still use OpenSSL by specifying WITH_OPENSSL=yes. - Add WITHOUT_NLS knob to disable installing message catalogs. - Shorten pkg-descr.
Notes
Notes: svn path=/head/; revision=135360
Diffstat (limited to 'sysutils/gkrellm2/files/patch-src::configure')
-rw-r--r--sysutils/gkrellm2/files/patch-src::configure26
1 files changed, 26 insertions, 0 deletions
diff --git a/sysutils/gkrellm2/files/patch-src::configure b/sysutils/gkrellm2/files/patch-src::configure
new file mode 100644
index 000000000000..9518c7169f7c
--- /dev/null
+++ b/sysutils/gkrellm2/files/patch-src::configure
@@ -0,0 +1,26 @@
+Index: src/configure
+diff -u src/configure.orig src/configure
+--- src/configure.orig Tue May 10 03:54:30 2005
++++ src/configure Mon May 16 18:44:38 2005
+@@ -48,8 +48,8 @@
+ }
+ EOF
+
+-$CC ${PKG_INCLUDE} -c test.c -o test.o 2>& 5
+-$CC test.o -o test ${PKG_LIBS} -lgnutls-openssl 2>& 5
++$CC ${PKG_INCLUDE} -I${GNUTLSINC} -c test.c -o test.o 2>& 5
++$CC test.o -o test ${PKG_LIBS} -L${GNUTLSLIB} -lgnutls-openssl 2>& 5
+
+ if [ -e ./test ] && ./test
+ then
+@@ -88,8 +88,8 @@
+ }
+ EOF
+
+-$CC ${PKG_INCLUDE} -c test.c -o test.o 2>& 5
+-$CC test.o -o test ${PKG_LIBS} -lssl -lcrypto 2>& 5
++$CC ${PKG_INCLUDE} -I${OPENSSLINC} -c test.c -o test.o 2>& 5
++$CC test.o -o test ${PKG_LIBS} -L${OPENSSLLIB} -lssl -lcrypto 2>& 5
+
+ if [ -e ./test ] && ./test
+ then