Fri Mar 4 18:51:47 2022 UTC ()
dcfldd: Fix build on SunOS/x86.


(jperkin)
diff -r1.3 -r1.4 pkgsrc/security/dcfldd/Makefile

cvs diff -r1.3 -r1.4 pkgsrc/security/dcfldd/Makefile (expand / switch to unified diff)

--- pkgsrc/security/dcfldd/Makefile 2020/03/20 11:58:16 1.3
+++ pkgsrc/security/dcfldd/Makefile 2022/03/04 18:51:47 1.4
@@ -1,14 +1,18 @@ @@ -1,14 +1,18 @@
1# $NetBSD: Makefile,v 1.3 2020/03/20 11:58:16 nia Exp $ 1# $NetBSD: Makefile,v 1.4 2022/03/04 18:51:47 jperkin Exp $
2 2
3DISTNAME= dcfldd-1.3.4 3DISTNAME= dcfldd-1.3.4
4CATEGORIES= security 4CATEGORIES= security
5MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dcfldd/} 5MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=dcfldd/}
6 6
7MAINTAINER= pettai@NetBSD.org 7MAINTAINER= pettai@NetBSD.org
8HOMEPAGE= http://dcfldd.sourceforge.net/ 8HOMEPAGE= http://dcfldd.sourceforge.net/
9COMMENT= Enhanced version of GNU dd with features useful for forensics 9COMMENT= Enhanced version of GNU dd with features useful for forensics
10LICENSE= gnu-gpl-v2 10LICENSE= gnu-gpl-v2
11 11
12GNU_CONFIGURE= yes 12GNU_CONFIGURE= yes
13 13
 14CFLAGS.SunOS+= -Du_int8_t=uint8_t -Du_int32_t=uint32_t -Du_int64_t=uint64_t
 15# Obviously x86-specific, if you want to support SPARC add the necessary logic.
 16CFLAGS.SunOS+= -DLITTLE_ENDIAN=1234 -DBYTE_ORDER=LITTLE_ENDIAN
 17
14.include "../../mk/bsd.pkg.mk" 18.include "../../mk/bsd.pkg.mk"