aboutsummaryrefslogtreecommitdiffstats
path: root/util/cygwin.sh
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2005-05-21 16:41:34 +0000
committerRichard Levitte <levitte@openssl.org>2005-05-21 16:41:34 +0000
commit447aa49007388f08528e03db7583574b7896c8a9 (patch)
treead5dbfb7cd76c916788a7cc442672624234783d5 /util/cygwin.sh
parentfe977f75129f4e1b4ad08fab837fa2d90893ed07 (diff)
downloadopenssl-447aa49007388f08528e03db7583574b7896c8a9.tar.gz
Patches for Cygwin, provided by Corinna Vinschen <vinschen@redhat.com>
Diffstat (limited to 'util/cygwin.sh')
-rwxr-xr-xutil/cygwin.sh18
1 files changed, 15 insertions, 3 deletions
diff --git a/util/cygwin.sh b/util/cygwin.sh
index 7f791d47f4..fabbf84225 100755
--- a/util/cygwin.sh
+++ b/util/cygwin.sh
@@ -47,6 +47,14 @@ function doc_install()
create_cygwin_readme
}
+function certs_install()
+{
+ CERTS_DIR=${INSTALL_PREFIX}/usr/ssl/certs
+
+ mkdir -p ${CERTS_DIR}
+ cp -rp certs/* ${CERTS_DIR}
+}
+
function create_cygwin_readme()
{
README_DIR=${INSTALL_PREFIX}/usr/share/doc/Cygwin
@@ -104,6 +112,8 @@ base_install
doc_install
+certs_install
+
create_cygwin_readme
create_profile_files
@@ -112,11 +122,13 @@ cd ${INSTALL_PREFIX}
strip usr/bin/*.exe usr/bin/*.dll
# Runtime package
-find etc usr/bin usr/share/doc usr/ssl/certs usr/ssl/man/man[157] \
- usr/ssl/misc usr/ssl/openssl.cnf usr/ssl/private -empty -o \! -type d |
+find etc usr/bin usr/lib/engines usr/share/doc usr/ssl/certs \
+ usr/ssl/man/man[157] usr/ssl/misc usr/ssl/openssl.cnf usr/ssl/private \
+ -empty -o \! -type d |
tar cjfT openssl-${VERSION}-${SUBVERSION}.tar.bz2 -
# Development package
-find usr/include usr/lib usr/ssl/man/man3 -empty -o \! -type d |
+find usr/include usr/lib/*.a usr/lib/pkgconfig usr/ssl/man/man3 \
+ -empty -o \! -type d |
tar cjfT openssl-devel-${VERSION}-${SUBVERSION}.tar.bz2 -
ls -l openssl-${VERSION}-${SUBVERSION}.tar.bz2