diff options
author | kwm <kwm@FreeBSD.org> | 2011-09-16 20:02:18 +0800 |
---|---|---|
committer | kwm <kwm@FreeBSD.org> | 2011-09-16 20:02:18 +0800 |
commit | 32d97bc14698fff120125f69134592de7ea43375 (patch) | |
tree | b8688ebff1345ba8e9cda21212b17d7ddb766760 /net | |
parent | f7427a1608ea024aab191ad7e4c97f356c3c0d66 (diff) | |
download | freebsd-ports-graphics-32d97bc14698fff120125f69134592de7ea43375.tar.gz freebsd-ports-graphics-32d97bc14698fff120125f69134592de7ea43375.tar.zst freebsd-ports-graphics-32d97bc14698fff120125f69134592de7ea43375.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
Diffstat (limited to 'net')
-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 9485bd1a7e1..d3e70502264 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 00000000000..6246c15bacc --- /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. |