diff options
author | agc <agc@pkgsrc.org> | 2001-03-26 12:57:32 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-03-26 12:57:32 +0000 |
commit | c5809a44abee88cdea2d2815af739fdad9fa0941 (patch) | |
tree | 21b2dd32da2024426307400261d1962dea166c14 /pkgtools/digest/Makefile | |
parent | 7e2c1457578a43913e6f3a49a127b40cc8b4cb7b (diff) | |
download | pkgsrc-c5809a44abee88cdea2d2815af739fdad9fa0941.tar.gz |
+ Use libc mods to force aligned access.
+ Always use the included sha1 source, since libc's may cause
unaligned access.
+ Don't allow weak aliases in included sha1 code.
+ Bump package version number
Diffstat (limited to 'pkgtools/digest/Makefile')
-rw-r--r-- | pkgtools/digest/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/digest/Makefile b/pkgtools/digest/Makefile index 3295b672d7a..8a28439759a 100644 --- a/pkgtools/digest/Makefile +++ b/pkgtools/digest/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2001/03/22 09:51:47 agc Exp $ +# $NetBSD: Makefile,v 1.15 2001/03/26 12:57:32 agc Exp $ # # When adding new digest algorithms, please use rmd160 as the template, # and bump the VERSION definition. @@ -12,7 +12,7 @@ MAINTAINER= agc@netbsd.org HOMEPAGE= http://www.netbsd.org/Documentation/software/packages.html COMMENT= message digest wrapper utility -VERSION= 20010312 +VERSION= 20010319 EXTRACT_ONLY= # empty WRKSRC= ${WRKDIR} @@ -26,7 +26,7 @@ MAKE_ENV+= VERSION="${VERSION}" .include "../../mk/bsd.prefs.mk" -.if (${OPSYS} == SunOS) +.if ${OPSYS} == "SunOS" MAKE_ENV+= NETBSD_COMPATIBLE=YES MANINSTALL= .endif |