summaryrefslogtreecommitdiff
path: root/net/ntop2/patches
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2005-01-07 11:43:32 +0000
committeradam <adam@pkgsrc.org>2005-01-07 11:43:32 +0000
commit236301de6eb23361393bc551a92a89736408b7f7 (patch)
tree83e6a996dab3c4b71958791efb152cccaba5c089 /net/ntop2/patches
parentd698762c8e2b89d01c2bb79fa7ba91bcb019ec93 (diff)
downloadpkgsrc-236301de6eb23361393bc551a92a89736408b7f7.tar.gz
ntop2 removed
Diffstat (limited to 'net/ntop2/patches')
-rw-r--r--net/ntop2/patches/patch-aa12
-rw-r--r--net/ntop2/patches/patch-ab33
2 files changed, 0 insertions, 45 deletions
diff --git a/net/ntop2/patches/patch-aa b/net/ntop2/patches/patch-aa
deleted file mode 100644
index 9276c6660ee..00000000000
--- a/net/ntop2/patches/patch-aa
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2003/06/23 13:25:55 adam Exp $
-
---- configure.in.orig 2003-05-28 12:14:19.000000000 +0200
-+++ configure.in 2003-05-28 12:14:59.000000000 +0200
-@@ -1626,6 +1626,7 @@
- HAS_WARNING="yes"
- else
- NTOP_APPEND_LIBS([${OSSL_LIB}], [ssl])
-+ NTOP_APPEND_LIBS([${OSSL_LIB}], [crypto])
- NTOP_APPEND_INCS([${OSSL_INCLUDE}])
- fi
- fi
diff --git a/net/ntop2/patches/patch-ab b/net/ntop2/patches/patch-ab
deleted file mode 100644
index 6bd9872d79d..00000000000
--- a/net/ntop2/patches/patch-ab
+++ /dev/null
@@ -1,33 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2004/09/07 22:22:18 jmmv Exp $
-
---- configure.orig 2003-04-14 20:41:50.000000000 +0200
-+++ configure
-@@ -8080,6 +8080,28 @@ if test ".${OSSL_LIB}" != "." ||
- fi
- # Finished expansion of NTOP_APPEND_LIBS()
-
-+ # Expansion of NTOP_APPEND_LIBS(${OSSL_LIB}, crypto)
-+ if test ".${OSSL_LIB}" != "."; then
-+ rc=`(echo $LIBS | grep '${OSSL_LIB} ' > /dev/null 2> /dev/null; echo $?)`
-+ if [ $rc -eq 1 ]; then
-+ case "${DEFINEOS}" in
-+ DARWIN )
-+ LIBS="$LIBS -L${OSSL_LIB} -L${OSSL_LIB}/lib"
-+ ;;
-+ * )
-+ LIBS="$LIBS -L${OSSL_LIB}"
-+ ;;
-+ esac
-+ fi
-+ if test ".crypto" != "."; then
-+ rc=`(echo $LIBS | grep '\-lcrypto ' > /dev/null 2> /dev/null; echo $?)`
-+ if [ $rc -eq 1 ]; then
-+ LIBS="$LIBS -lcrypto"
-+ fi
-+ fi
-+ fi
-+# Finished expansion of NTOP_APPEND_LIBS()
-+
- # Expansion of NTOP_APPEND_INCS(${OSSL_INCLUDE})
- if test ".${OSSL_INCLUDE}" != "."; then
- rc=`(echo $INCS | grep '${OSSL_INCLUDE}' > /dev/null 2> /dev/null; echo $?)`