diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-10 02:48:54 +0800 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-02-10 02:48:54 +0800 |
commit | 27bfb5725ebdcd08e5b07c5d149ed70dc2f297a4 (patch) | |
tree | a43785d41212251b668bf48a4fbf5806d50ce6d2 | |
parent | c28a6eb18bd80c4c5e6c3643f95b54fd9360bfa3 (diff) | |
download | freebsd-ports-gnome-27bfb5725ebdcd08e5b07c5d149ed70dc2f297a4.tar.gz freebsd-ports-gnome-27bfb5725ebdcd08e5b07c5d149ed70dc2f297a4.tar.zst freebsd-ports-gnome-27bfb5725ebdcd08e5b07c5d149ed70dc2f297a4.zip |
- Fix build on AMD64
Approved by: maintainer informed
-rw-r--r-- | dns/hesiod/Makefile | 1 | ||||
-rw-r--r-- | ftp/ftp4all/files/patch-lib::des-private.h | 9 |
2 files changed, 7 insertions, 3 deletions
diff --git a/dns/hesiod/Makefile b/dns/hesiod/Makefile index 8bc68c42f518..06123e58fa88 100644 --- a/dns/hesiod/Makefile +++ b/dns/hesiod/Makefile @@ -35,5 +35,6 @@ VERSION=3.0 .endif MAKE_ENV+= VERSION="${VERSION}" SONAME="${SONAME}" +CFLAGS+= -fPIC .include <bsd.port.post.mk> diff --git a/ftp/ftp4all/files/patch-lib::des-private.h b/ftp/ftp4all/files/patch-lib::des-private.h index 6642318d2c38..e66fc83372f2 100644 --- a/ftp/ftp4all/files/patch-lib::des-private.h +++ b/ftp/ftp4all/files/patch-lib::des-private.h @@ -1,12 +1,15 @@ ---- lib/des-private.h.orig Tue May 6 07:48:47 2003 -+++ lib/des-private.h Tue May 6 07:28:57 2003 -@@ -10,6 +10,9 @@ +--- lib/des-private.h.orig Thu Sep 24 15:02:11 1998 ++++ lib/des-private.h Mon Feb 9 19:41:07 2004 +@@ -10,6 +10,12 @@ #ifdef i386 #define LITTLE_ENDIAN 1 #endif +#ifdef __ia64 +#define LITTLE_ENDIAN 1 +#endif ++#ifdef __amd64 ++#define LITTLE_ENDIAN 1 ++#endif #ifdef sun386 #define LITTLE_ENDIAN 1 #endif |