diff options
author | David Spencer <idlemoor@slackbuilds.org> | 2016-03-28 15:31:06 +0100 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2016-03-31 12:48:02 +0100 |
commit | 456b52654621bca7c427aec49422ee974a530bff (patch) | |
tree | 210f21af56ca29a14f91555eb5c6da005d1fbb32 /network/cadaver/cadaver.SlackBuild | |
parent | 1659b58afb906dffd3cac70c1bf5581e1ca4e292 (diff) | |
download | slackbuilds-456b52654621bca7c427aec49422ee974a530bff.tar.gz |
network/cadaver: Patched to build with openssl-1.0.2g.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/cadaver/cadaver.SlackBuild')
-rw-r--r-- | network/cadaver/cadaver.SlackBuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/network/cadaver/cadaver.SlackBuild b/network/cadaver/cadaver.SlackBuild index 2decf724ea..63617ee688 100644 --- a/network/cadaver/cadaver.SlackBuild +++ b/network/cadaver/cadaver.SlackBuild @@ -45,10 +45,14 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +# Disable SSLv2 (no longer in openssl) +# https://projects.archlinux.org/svntogit/community.git/plain/trunk/disable-sslv2.patch?h=packages/cadaver +patch -p1 < $CWD/disable-sslv2.patch CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ |