• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision4fb540bcd0dcbdd69e2d70db3d550c8ebdce04a3 (tree)
Time2017-09-04 09:21:02
Authormatsuand <matsuand@user...>
Commitermatsuand

Log Message

[BLFS] Updated openssl-1.1.0f, and modified.

Change Summary

Incremental Difference

--- a/BLFS/openssl.sh
+++ b/BLFS/openssl.sh
@@ -3,7 +3,7 @@
33 . ./_blfsset.sh
44
55 APPNAME=openssl
6-VER=1.0.2k
6+VER=1.1.0f
77 TARGET=$APPNAME-$VER
88 TARGETBALL=$DLD/$TARGET.tar.gz
99 TARGETDIR=$TARGET
@@ -16,12 +16,6 @@ echo $TARGET
1616 . $WRK/_checkTarball.sh
1717 . $WRK/_checkExit.sh "$1" || exit $?
1818
19-#if [ ${OPTION_krb5} -eq "1" ]; then
20-# export WITHKRB5="--with-krb5-flavor=MIT "
21-#else
22-# export WITHKRB5=""
23-#fi
24-
2519 unset MAKEFLAGS
2620
2721 cd $SRC
@@ -32,40 +26,32 @@ TimeStart
3226
3327 cd $TARGETDIR
3428
35-#Patching
36-#patch -Np1 -i $DLD/openssl-$VER-fix_parallel_build-2.patch \
37-# 1> $LOG/$TARGET.0_patch.log 2>&1 || exit 1
38-#patch -Np1 -i $DLD/openssl-$VER-fix_pod_syntax-1.patch \
39-# 1>> $LOG/$TARGET.0_patch.log 2>&1 || exit 1
40-
4129 Configuring
42-./config --prefix=/usr \
43- --openssldir=/etc/ssl \
44- --libdir=lib \
45- shared \
46- zlib-dynamic \
30+./config --prefix=/usr \
31+ --openssldir=/etc/ssl \
32+ --libdir=lib \
33+ shared \
34+ zlib-dynamic \
4735 $([ ${OPTION_krb5} -eq "1" ] && echo --with-krb5-flavor=MIT) \
4836 1> $LOG/$TARGET.1_conf.log 2>&1 || exit 1
4937
38+#sed -i 's# libcrypto.a##;s# libssl.a##;/INSTALL_LIBS/s#libcrypto.a##' Makefile
39+
5040 Making
51-make depend \
41+make -j1 \
5242 1> $LOG/$TARGET.2_make.log 2>&1 || exit 1
53-make \
54- 1>> $LOG/$TARGET.2_make.log 2>&1 || exit 1
55-
56-sed -i 's# libcrypto.a##;s# libssl.a##' Makefile
5743
5844 Installing
5945 porg -lp $TARGET "\
60-make MANDIR=/usr/share/man MANSUFFIX=ssl install" \
46+make MANSUFFIX=ssl install" \
6147 1> $LOG/$TARGET.3_install.log 2>&1 || exit 1
6248
6349 porg -lp+ $TARGET "\
64-install -dv -m755 /usr/share/doc/openssl-$VER" \
50+mv -v /usr/share/doc/openssl{,-1.1.0f}" \
6551 1>> $LOG/$TARGET.3_install.log 2>&1 || exit 1
6652
6753 porg -lp+ $TARGET "\
68-cp -vfr doc/* /usr/share/doc/openssl-$VER" \
54+cp -vfr doc/* /usr/share/doc/openssl-1.1.0f" \
6955 1>> $LOG/$TARGET.3_install.log 2>&1 || exit 1
7056
7157 TimeEnd