diff options
author | Bruce M Simpson <bms@FreeBSD.org> | 2005-01-22 21:52:08 +0000 |
---|---|---|
committer | Bruce M Simpson <bms@FreeBSD.org> | 2005-01-22 21:52:08 +0000 |
commit | bc3edda91401f7e540be39a93c2b30c5193e2824 (patch) | |
tree | a16d9286fa87a22437284441dbe56fd54690461d /security/opensc | |
parent | 326013b043a900a3bb65ff32f6a600e734d8cccd (diff) | |
download | ports-bc3edda91401f7e540be39a93c2b30c5193e2824.tar.gz ports-bc3edda91401f7e540be39a93c2b30c5193e2824.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.
Notes
Notes:
svn path=/head/; revision=127111
Diffstat (limited to 'security/opensc')
-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" |