diff options
author | bms <bms@FreeBSD.org> | 2005-01-23 05:52:08 +0800 |
---|---|---|
committer | bms <bms@FreeBSD.org> | 2005-01-23 05:52:08 +0800 |
commit | e1febc491cfaac2b7a3136060aaa61df7bbcad1a (patch) | |
tree | 7a477f42701dbab6877f7f73b0c05300a5f93803 /security | |
parent | f18a40f933bcc500d628c1d9d91c35b1b2045ba0 (diff) | |
download | freebsd-ports-gnome-e1febc491cfaac2b7a3136060aaa61df7bbcad1a.tar.gz freebsd-ports-gnome-e1febc491cfaac2b7a3136060aaa61df7bbcad1a.tar.zst freebsd-ports-gnome-e1febc491cfaac2b7a3136060aaa61df7bbcad1a.zip |
Workaround a bug in the configure script which caused libcrypto.a
to be used when linking a dynamic library.
Fix pushed back to maintainers, awaiting resolution.
Fixes build on !i386, !sparc64.
Diffstat (limited to 'security')
-rw-r--r-- | security/opensc/files/patch-configure | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/security/opensc/files/patch-configure b/security/opensc/files/patch-configure new file mode 100644 index 000000000000..18ba94c929aa --- /dev/null +++ b/security/opensc/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Sat Jan 22 21:37:40 2005 ++++ configure Sat Jan 22 21:40:21 2005 +@@ -22456,7 +22456,7 @@ + rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext + fi + +- if test "x$GOOD_OPENSSL" == "xyes" ++ if test "x$GOOD_OPENSSL" = "xyes" + then + # engine has to be there and working + LIBS="$saved_LIBS $LIBCRYPTO $LIBDL" |