aboutsummaryrefslogtreecommitdiff
path: root/security/pgpin
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2003-07-06 02:31:59 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2003-07-06 02:31:59 +0000
commit18e0359d90e62569f7a97c1a927b4510c33f940a (patch)
tree1bb37d02b1c193faee1d42e03d73fb0dd29c5a3c /security/pgpin
parent5bd32f9571b396f14930c3f969c95575e431b886 (diff)
downloadports-18e0359d90e62569f7a97c1a927b4510c33f940a.tar.gz
ports-18e0359d90e62569f7a97c1a927b4510c33f940a.zip
- Unbreak for amd64
Notes
Notes: svn path=/head/; revision=84251
Diffstat (limited to 'security/pgpin')
-rw-r--r--security/pgpin/files/patch-global.h2
-rw-r--r--security/pgpin/files/patch-makefile10
-rw-r--r--security/pgpin/files/patch-md5.h2
-rw-r--r--security/pgpin/files/patch-usuals.h2
4 files changed, 10 insertions, 6 deletions
diff --git a/security/pgpin/files/patch-global.h b/security/pgpin/files/patch-global.h
index e5e9f055f5bb..e79d9745e026 100644
--- a/security/pgpin/files/patch-global.h
+++ b/security/pgpin/files/patch-global.h
@@ -4,7 +4,7 @@
/* Needed by RSAREF */
-#ifdef __alpha
-+#if defined(__alpha) || defined(__sparc64__) || defined(__ia64__)
++#if defined(__alpha) || defined(__sparc64__) || defined(__ia64__) || defined(__amd64__)
typedef unsigned UINT4;
#else
typedef unsigned long UINT4;
diff --git a/security/pgpin/files/patch-makefile b/security/pgpin/files/patch-makefile
index 629ac93614ab..d701f2624f6a 100644
--- a/security/pgpin/files/patch-makefile
+++ b/security/pgpin/files/patch-makefile
@@ -5,12 +5,12 @@
@echo " 386bsd, 3b1, 3b1_asm, aix370, aix386, amix-68k-gcc, apollo,"
@echo " apollo-gcc, atari,aux(*), aux-gcc, bsd, bsdgcc, convexos,"
- @echo " dgux, djgpp, encore, freebsd, hpux-68k(*), hpux-68k-ansi,"
-+ @echo " dgux, djgpp, encore, freebsd-{alpha,i386,sparc64,ia64},"
-+ @echo " hpux-68k(*), hpux-68k-ansi,"
++ @echo " dgux, djgpp, encore, hpux-68k(*), hpux-68k-ansi,"
++ @echo " freebsd-{alpha,i386,sparc64,ia64,amd64},"
@echo " hpux-68k-gcc, hpux-pa(*), hpux-pa-ansi, hpux-pa-gcc, hpux9-pa-ansi,"
@echo " irix, irix_asm, isc, isc_asm, linux, linux-aout, linux-68k,"
@echo " machten, mach_386, mips-ultrix, netbsd, netbsd_68k, newsasm,"
-@@ -175,10 +176,25 @@
+@@ -175,10 +176,29 @@
$(MAKE) all CC=gcc LD=gcc \
CFLAGS="$(RSAINCDIR) -O2 -DHIGHFIRST -DUNIX -DPORTABLE -DIDEA32"
@@ -35,6 +35,10 @@
+ $(MAKE) all LD="$(CC) -s" \
+ CFLAGS="$(RSAINCDIR) $(OS_CFLAGS) -DPORTABLE -DUNIX -DIDEA32 \
+ -DMAX_NAMELEN=255"
++freebsd-amd64:
++ $(MAKE) all LD="$(CC) -s" \
++ CFLAGS="$(RSAINCDIR) $(OS_CFLAGS) -DPORTABLE -DUNIX -DIDEA32 \
++ -DMAX_NAMELEN=255"
386bsd:
$(MAKE) all CC=gcc LD=gcc OBJS_EXT="_80386.o _zmatch.o" \
diff --git a/security/pgpin/files/patch-md5.h b/security/pgpin/files/patch-md5.h
index 9e6bd44eafc3..abfbdbe27b59 100644
--- a/security/pgpin/files/patch-md5.h
+++ b/security/pgpin/files/patch-md5.h
@@ -5,7 +5,7 @@
#define MD5_H
-#ifdef __alpha
-+#if defined(__alpha) || defined(__sparc64__) || defined(__ia64__)
++#if defined(__alpha) || defined(__sparc64__) || defined(__ia64__) || defined(__amd64__)
typedef unsigned int uint32;
#else
typedef unsigned long uint32;
diff --git a/security/pgpin/files/patch-usuals.h b/security/pgpin/files/patch-usuals.h
index e4376a1a826f..6405b05ed011 100644
--- a/security/pgpin/files/patch-usuals.h
+++ b/security/pgpin/files/patch-usuals.h
@@ -5,7 +5,7 @@
typedef char *string; /* pointer to ASCII character string */
typedef unsigned short word16; /* values are 0-65535 */
-#ifdef __alpha
-+#if defined(__alpha) || defined(__sparc64__) || defined(__ia64__)
++#if defined(__alpha) || defined(__sparc64__) || defined(__ia64__) || defined(__amd64__)
typedef unsigned int word32; /* values are 0-4294967295 */
#else
typedef unsigned long word32; /* values are 0-4294967295 */