Changeset 48
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r42 r48 1 1 Version 0.1.9pre 2 2 ---------------- 3 - opensc.conf: will not overwrite a user modified one 3 4 - experimental: with snapshot version of opensc (0.11.0-pre-r....) and 4 5 openssl (0.9.8-stable-SNAP) -
trunk/Makefile
r47 r48 1 1 BUILDHOME = $(PWD) 2 2 #OPENSCVERSION = 0.10.1 3 OPENSCVERSION = 0.11.0-pre-r28 333 OPENSCVERSION = 0.11.0-pre-r2859 4 4 SCAVERSION = 0.1.9pre1 5 5 LIBP11VERSION = 0.2.1 6 6 ENGINEVERSION = 0.1.3 7 7 #OPENSSLVERSION = 0.9.7i 8 OPENSSLVERSION =0.9.8-stable-SNAP-200602 128 OPENSSLVERSION =0.9.8-stable-SNAP-20060224 9 9 OPENSSHVERSION = 4.3p1 10 10 IFDEGATEVERSION = 0.05 -
trunk/opensc-pack/resources/postflight
r13 r48 5 5 test -e /usr/lib/libltdl.dylib && unlink /usr/lib/libltdl.dylib 6 6 ln -s /usr/lib/libltdl.3.dylib /usr/lib/libltdl.dylib 7 test ! -e /Library/OpenSC/etc/opensc.conf && mv /Library/OpenSC/etc/opensc.conf.orig /Library/OpenSC/etc/opensc.conf 8 7 if [ -e "/Library/OpenSC/etc/opensc.conf.md5" ] 8 then 9 read cs_fromfile file < "/Library/OpenSC/etc/opensc.conf.md5" 10 cs_calculated=$( md5 -q "/Library/OpenSC/etc/opensc.conf") 11 if [ "$cs_fromfile" = "$cs_calculated" ] 12 then 13 mv /Library/OpenSC/etc/opensc.conf.orig /Library/OpenSC/etc/opensc.conf 14 md5 -r /Library/OpenSC/etc/opensc.conf > /Library/OpenSC/etc/opensc.conf.md5 15 fi 16 else 17 mv /Library/OpenSC/etc/opensc.conf.orig /Library/OpenSC/etc/opensc.conf 18 md5 -r /Library/OpenSC/etc/opensc.conf > /Library/OpenSC/etc/opensc.conf.md5 19 fi 9 20 exit 0
