]> git.sur5r.net Git - openldap/blobdiff - build/mkrelease
Do not require ac/string.h for lber_pvt.h
[openldap] / build / mkrelease
index 177be7a39840cc29bbcd5bbca17fa13fffe8fb1d..75b5e69658f62168d291faff0e25a6a110bae6d9 100755 (executable)
@@ -2,7 +2,7 @@
 # $OpenLDAP$
 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
 ##
-## Copyright 1998-2014 The OpenLDAP Foundation.
+## Copyright 1998-2018 The OpenLDAP Foundation.
 ## All rights reserved.
 ##
 ## Redistribution and use in source and binary forms, with or without
@@ -36,6 +36,16 @@ shift
 TAG=$1
 shift
 
+#Linux
+#SHA="sha1sum"
+#MD="md5sum"
+#BSD
+#SHA="sha1"
+#MD="md5"
+#OpenSSL
+SHA="openssl sha1"
+MD="openssl md5"
+
 if test -e $RELNAME ; then
        echo "error: $RELNAME exists"
        exit 1
@@ -75,8 +85,8 @@ echo "Rolling up $OL_STRING ..."
 
 tar cf $RELNAME.tar $RELNAME
 gzip -9 -c $RELNAME.tar > $RELNAME.tgz
-md5 $RELNAME.tgz > $RELNAME.md5
-sha1 $RELNAME.tgz > $RELNAME.sha1
+${MD} $RELNAME.tgz > $RELNAME.md5
+${SHA} $RELNAME.tgz > $RELNAME.sha1
 rm -f $RELNAME.tar
 
 ls -l $RELNAME.*