diff options
author | Koop Mast <kwm@FreeBSD.org> | 2011-09-16 20:02:18 +0800 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2011-09-16 20:02:18 +0800 |
commit | 07129431224520ee78674966990b446325ee61a9 (patch) | |
tree | e27451a44170c9e9d67ce91a171292c4eac429d1 | |
parent | 768bdd7a14bb4ac776adb9c821762b8eaccea195 (diff) | |
download | freebsd-ports-gnome-07129431224520ee78674966990b446325ee61a9.tar.gz freebsd-ports-gnome-07129431224520ee78674966990b446325ee61a9.tar.zst freebsd-ports-gnome-07129431224520ee78674966990b446325ee61a9.zip |
Don't rever to libcrypto in oauth pkg-config file, since our base openssl
doesn't install a .pc file. This will fix "pkg-config --cflags oauth".
Approved by: maintainer
-rw-r--r-- | net/liboauth/Makefile | 1 | ||||
-rw-r--r-- | net/liboauth/files/patch-configure | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/net/liboauth/Makefile b/net/liboauth/Makefile index 9485bd1a7e1f..d3e705022647 100644 --- a/net/liboauth/Makefile +++ b/net/liboauth/Makefile @@ -7,6 +7,7 @@ PORTNAME= liboauth PORTVERSION= 0.9.4 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= http://liboauth.sourceforge.net/pool/ diff --git a/net/liboauth/files/patch-configure b/net/liboauth/files/patch-configure new file mode 100644 index 000000000000..6246c15bacc0 --- /dev/null +++ b/net/liboauth/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig 2011-09-15 21:53:48.000000000 +0200 ++++ configure 2011-09-15 21:54:13.000000000 +0200 +@@ -12222,7 +12222,7 @@ + fi + report_hash="OpenSSL" + PC_LIB="$PC_LIB ${HASH_LIBS}" +- PC_REQ="$PC_REQ libcrypto" ++ PC_REQ="$PC_REQ " + { $as_echo "$as_me:${as_lineno-$LINENO}: + + NOTE: OpenSSL is not compatible with GPL applications. |