diff -ruN openssl.orig/Portfile openssl/Portfile
old
|
new
|
|
3 | 3 | PortSystem 1.0 |
4 | 4 | name openssl |
5 | 5 | version 0.9.7g |
| 6 | revision 1 |
6 | 7 | platforms darwin freebsd |
7 | 8 | categories devel security |
8 | 9 | maintainers ssen@opendarwin.org |
diff -ruN openssl.orig/files/patch-Makefile.org openssl/files/patch-Makefile.org
old
|
new
|
|
5 | 5 | fi; \ |
6 | 6 | ( set -x; ${CC} --verbose -dynamiclib -o lib$$i${SHLIB_EXT} \ |
7 | 7 | - lib$$i.a $$libs -all_load -current_version ${SHLIB_MAJOR}.${SHLIB_MINOR} \ |
| 8 | - -compatibility_version ${SHLIB_MAJOR}.`echo ${SHLIB_MINOR} | cut -d. -f1` \ |
8 | 9 | + lib$$i.a $$libs ${EX_LIBS} -all_load -current_version ${SHLIB_MAJOR}.${SHLIB_MINOR} \ |
9 | | -compatibility_version ${SHLIB_MAJOR}.`echo ${SHLIB_MINOR} | cut -d. -f1` \ |
| 10 | + -compatibility_version ${SHLIB_MAJOR}.${SHLIB_MINOR} \ |
10 | 11 | -install_name ${INSTALLTOP}/lib/lib$$i${SHLIB_EXT} ) || exit 1; \ |
11 | 12 | libs="-l`basename $$i${SHLIB_EXT} .dylib` $$libs"; \ |
12 | 13 | @@ -886,10 +886,7 @@ |