diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2003-05-10 07:55:33 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2003-05-10 07:55:33 +0000 |
commit | 223c4a2ae90d2179c2fca40ac3570fd9c0996aa3 (patch) | |
tree | 2a558732fcdf4a5a138b5cf3e2c4e42f7ac1f048 | |
parent | 2879df2bffc9cd00ee0f3a3523a48b8970e015a2 (diff) | |
download | FreeBSD-ports-223c4a2ae90d2179c2fca40ac3570fd9c0996aa3.zip FreeBSD-ports-223c4a2ae90d2179c2fca40ac3570fd9c0996aa3.tar.gz |
Add a patch for mpi/config.links to avoid infinite loop on sparc64.
MPI assembler function for sparc32 is used for our sparc64, but it
will not work on it. So use generic (C) version for sparc64-*-freebsd*.
-rw-r--r-- | security/gnupg/files/patch-config.links | 15 | ||||
-rw-r--r-- | security/gnupg1/files/patch-config.links | 15 |
2 files changed, 30 insertions, 0 deletions
diff --git a/security/gnupg/files/patch-config.links b/security/gnupg/files/patch-config.links new file mode 100644 index 0000000..35a0316 --- /dev/null +++ b/security/gnupg/files/patch-config.links @@ -0,0 +1,15 @@ +--- mpi/config.links.orig Thu Apr 24 20:15:58 2003 ++++ mpi/config.links Sat May 10 16:29:28 2003 +@@ -142,6 +142,12 @@ + echo '/* configured for sparc64-*netbsd */' >>./mpi/asm-syntax.h + path="" + ;; ++ sparc64-*-freebsd*) ++ # There are no sparc64 assembler modules that work, so ++ # just use generic C functions ++ echo '/* configured for sparc64-*freebsd* */' >>./mpi/asm-syntax.h ++ path="" ++ ;; + sparc9*-*-* | \ + sparc64*-*-* | \ + ultrasparc*-*-* ) diff --git a/security/gnupg1/files/patch-config.links b/security/gnupg1/files/patch-config.links new file mode 100644 index 0000000..35a0316 --- /dev/null +++ b/security/gnupg1/files/patch-config.links @@ -0,0 +1,15 @@ +--- mpi/config.links.orig Thu Apr 24 20:15:58 2003 ++++ mpi/config.links Sat May 10 16:29:28 2003 +@@ -142,6 +142,12 @@ + echo '/* configured for sparc64-*netbsd */' >>./mpi/asm-syntax.h + path="" + ;; ++ sparc64-*-freebsd*) ++ # There are no sparc64 assembler modules that work, so ++ # just use generic C functions ++ echo '/* configured for sparc64-*freebsd* */' >>./mpi/asm-syntax.h ++ path="" ++ ;; + sparc9*-*-* | \ + sparc64*-*-* | \ + ultrasparc*-*-* ) |