mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-29 21:39:24 +00:00
0d16fe8fa8
According to the OpenSSL-core-team you are strongly encouraged to upgrade any old version. The new version has a lot of bug fixes. - ${PREFIX}/bin/ssleay was renamed to ${PREFIX}/bin/openssl and ${PREFIX}/etc/ssleay.cnf to ${PREFIX}/lib/openssl.cnf - there are no links from e. g. ${PREFIX}/bin/md5 to ${PREFIX}/bin/ssleay any longer, instead you have to call "openssl md5" now - replaced HAS_CONFIGURE, CONFIGURE_SCRIPT and CONFIGURE_ENV with a do-configure target and changed the indention level - some perl scripts need perl5 now, so set USE_PERL5 and replace perl with ${PERL5} where neccessary. - honour ${CFLAGS}
37 lines
867 B
Plaintext
37 lines
867 B
Plaintext
--- config.orig Sun Jan 17 15:20:20 1999
|
|
+++ config Tue Mar 23 23:26:36 1999
|
|
@@ -282,15 +282,6 @@
|
|
esac
|
|
done
|
|
|
|
-# figure out if gcc is available and if so we use it otherwise
|
|
-# we fallback to whatever cc does on the system
|
|
-GCCVER=`gcc -v 2>&1`
|
|
-if [ $? = "0" ]; then
|
|
- CC=gcc
|
|
-else
|
|
- CC=cc
|
|
-fi
|
|
-
|
|
# read the output of the embedded GuessOS
|
|
read GUESSOS
|
|
|
|
@@ -334,7 +325,7 @@
|
|
# run Configure to check to see if we need to specify the
|
|
# compiler for the platform ... in which case we add it on
|
|
# the end ... otherwise we leave it off
|
|
-perl ./Configure 2>&1 | grep "$OUT-$CC" > /dev/null
|
|
+${PERL} ./Configure 2>&1 | grep "$OUT-$CC" > /dev/null
|
|
if [ $? = "0" ]; then
|
|
OUT="$OUT-$CC"
|
|
fi
|
|
@@ -349,7 +340,7 @@
|
|
if [ "$TEST" = "true" ]; then
|
|
echo ./Configure $OUT $options
|
|
else
|
|
- perl ./Configure $OUT $options
|
|
+ ${PERL} ./Configure $OUT $options
|
|
fi
|
|
|
|
)
|