summaryrefslogtreecommitdiff
path: root/devel/gmp/patches
diff options
context:
space:
mode:
authordanw <danw>2000-06-30 16:52:53 +0000
committerdanw <danw>2000-06-30 16:52:53 +0000
commitb218503d0e185c2ff0e26635f85f21c665451ef5 (patch)
tree25b21fc74b439bbf4c00385c06736e425027e84f /devel/gmp/patches
parenta13fdcdf5fa7c6d1cdfe965d941241daf87520c6 (diff)
downloadpkgsrc-b218503d0e185c2ff0e26635f85f21c665451ef5.tar.gz
Update to gmp-3.0.1, including new functions, autoconf/libtool support,
and a shared version of the library.
Diffstat (limited to 'devel/gmp/patches')
-rw-r--r--devel/gmp/patches/patch-aa15
-rw-r--r--devel/gmp/patches/patch-ab57
2 files changed, 0 insertions, 72 deletions
diff --git a/devel/gmp/patches/patch-aa b/devel/gmp/patches/patch-aa
deleted file mode 100644
index 6672e2adaa6..00000000000
--- a/devel/gmp/patches/patch-aa
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-aa,v 1.2 1999/12/28 05:00:41 wiz Exp $
---- /dev/null Mon Apr 26 18:22:36 1999
-+++ config/mt-mips-netbsd Mon Apr 26 17:59:43 1999
-@@ -0,0 +1 @@
-+CFLAGS=-Wa,-KPIC
---- configure.in.orig Fri Jun 7 04:07:01 1996
-+++ configure.in Mon Apr 26 18:33:02 1999
-@@ -31,5 +31,7 @@
- ;;
- *-*-linux*)
- target_makefile_frag=config/mt-linux ;;
-+ mips*-*-netbsd*)
-+ target_makefile_frag=config/mt-mips-netbsd ;;
-
- esac
diff --git a/devel/gmp/patches/patch-ab b/devel/gmp/patches/patch-ab
deleted file mode 100644
index bb054c5ea2e..00000000000
--- a/devel/gmp/patches/patch-ab
+++ /dev/null
@@ -1,57 +0,0 @@
-$NetBSD: patch-ab,v 1.1 1999/07/16 21:12:57 jlam Exp $
-
---- mpn/configure.in.orig Tue Jun 4 01:52:01 1996
-+++ mpn/configure.in Fri Jul 16 17:02:26 1999
-@@ -38,14 +38,25 @@
- a29k*-*-*) path="am29000" ;;
-
- # Intel x86 configurations
-- i[34]86*-*-linuxaout* | i[34]86*-*-linuxoldld* | \
-- i[34]86*-*-*bsd*) # x86 running BSD or Linux with a.out
-+ i[3456]86*-*-*bsd* | pentium-*-*bsd* | pentiumpro-*-*bsd*)
-+ if $CC -E - -dM </dev/null | grep -q __ELF__; then
-+ echo '#define ELF_SYNTAX' >asm-syntax.h # ELF
-+ else
-+ echo '#define BSD_SYNTAX' >asm-syntax.h # a.out
-+ fi
-+ echo '#include "'$srcdir'/x86/syntax.h"' >>asm-syntax.h
-+ case "${target}" in
-+ i[34]86*-*-*bsd*)
-+ path="x86" ;;
-+ i[56]86*-*-*bsd* | pentium-*-*bsd* | pentiumpro-*-*bsd*)
-+ path="x86/pentium x86" ;;
-+ esac ;;
-+ i[34]86*-*-linuxaout* | i[34]86*-*-linuxoldld*) # x86 running Linux with a.out
- echo '#define BSD_SYNTAX' >asm-syntax.h
- echo '#include "'$srcdir'/x86/syntax.h"' >>asm-syntax.h
- path="x86" ;;
- i[56]86*-*-linuxaout* | pentium-*-linuxaout* | pentiumpro-*-linuxaout* | \
-- i[56]86*-*-linuxoldld* | pentium-*-linuxoldld* | pentiumpro-*-linuxoldld* | \
-- i[56]86*-*-*bsd* | pentium-*-*bsd* | pentiumpro-*-*bsd*)
-+ i[56]86*-*-linuxoldld* | pentium-*-linuxoldld* | pentiumpro-*-linuxoldld*)
- echo '#define BSD_SYNTAX' >asm-syntax.h
- echo '#include "'$srcdir'/x86/syntax.h"' >>asm-syntax.h
- path="x86/pentium x86" ;;
-@@ -110,10 +121,22 @@
- case "${target}" in
- *-*-linuxaout* | *-*-linuxoldld*) config=bsd.h ;;
- *-sysv* | *-solaris* | *-*-linux*) config="sysv.h" ;;
-+ i[3456]86*-*-*netbsd* | pentium-*-*netbsd* | pentiumpro-*-*netbsd*)
-+ if $CC -E - -dM </dev/null | grep -q __ELF__; then
-+ config="sysv.h" # ELF
-+ else
-+ config="bsd.h" # a.out
-+ fi ;;
- *) config="bsd.h" ;;
- esac
-
- case "${target}" in
-+ i[3456]86*-*-*netbsd* | pentium-*-*netbsd* | pentiumpro-*-*netbsd*)
-+ if $CC -E - -dM </dev/null | grep -q __ELF__; then
-+ # ELF
-+ else
-+ target_makefile_frag=config/t-oldgas # a.out
-+ fi ;;
- i[3456]86*-*-*bsd* | i[3456]86*-*-linuxaout* | i[3456]86*-*-linuxoldld* | \
- pentium-*-*bsd* | pentium-*-linuxaout* | pentium-*-linuxoldld* | \
- pentiumpro-*-*bsd* | pentiumpro-*-linuxaout* | pentiumpro-*-linuxoldld*)