summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/binutils
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-12-02 09:45:51 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-12-02 09:45:51 +0000
commitf5debc7cfcb9671326a019c8a442600f2ead8d4e (patch)
tree1ba2a91c30f3c9323a8396958c934642fb18fd35 /gnu/usr.bin/binutils
parentab3c58bd4fda37c848309cf2275f8a315b262f54 (diff)
Notes
Diffstat (limited to 'gnu/usr.bin/binutils')
-rw-r--r--gnu/usr.bin/binutils/as/alpha-freebsd/config.h2
-rw-r--r--gnu/usr.bin/binutils/as/i386-freebsd/config.h2
-rw-r--r--gnu/usr.bin/binutils/as/sparc64-freebsd/config.h2
-rw-r--r--gnu/usr.bin/binutils/ld/Makefile.alpha12
-rw-r--r--gnu/usr.bin/binutils/ld/config.h2
-rw-r--r--gnu/usr.bin/binutils/libbinutils/config.h2
-rw-r--r--gnu/usr.bin/binutils/libopcodes/config.h11
7 files changed, 24 insertions, 9 deletions
diff --git a/gnu/usr.bin/binutils/as/alpha-freebsd/config.h b/gnu/usr.bin/binutils/as/alpha-freebsd/config.h
index b29405152ec5..72005ad2a10d 100644
--- a/gnu/usr.bin/binutils/as/alpha-freebsd/config.h
+++ b/gnu/usr.bin/binutils/as/alpha-freebsd/config.h
@@ -151,7 +151,7 @@
#define PACKAGE "gas"
/* Version number of package */
-/* #define VERSION "2.13" */
+/* #define VERSION "2.13.2" */
/* Define if defaulting to ELF on SCO 5. */
/* #undef SCO_ELF */
diff --git a/gnu/usr.bin/binutils/as/i386-freebsd/config.h b/gnu/usr.bin/binutils/as/i386-freebsd/config.h
index 42fd248fcad9..b116d09abd34 100644
--- a/gnu/usr.bin/binutils/as/i386-freebsd/config.h
+++ b/gnu/usr.bin/binutils/as/i386-freebsd/config.h
@@ -151,7 +151,7 @@
#define PACKAGE "gas"
/* Version number of package */
-/* #define VERSION "2.13" */
+/* #define VERSION "2.13.2" */
/* Define if defaulting to ELF on SCO 5. */
/* #undef SCO_ELF */
diff --git a/gnu/usr.bin/binutils/as/sparc64-freebsd/config.h b/gnu/usr.bin/binutils/as/sparc64-freebsd/config.h
index 425723ee3cd3..4112fe3c6d1e 100644
--- a/gnu/usr.bin/binutils/as/sparc64-freebsd/config.h
+++ b/gnu/usr.bin/binutils/as/sparc64-freebsd/config.h
@@ -151,7 +151,7 @@
#define PACKAGE "gas"
/* Version number of package */
-/* #define VERSION "2.13" */
+/* #define VERSION "2.13.2" */
/* Define if defaulting to ELF on SCO 5. */
/* #undef SCO_ELF */
diff --git a/gnu/usr.bin/binutils/ld/Makefile.alpha b/gnu/usr.bin/binutils/ld/Makefile.alpha
index c03e5af767f6..01d1429c5b8c 100644
--- a/gnu/usr.bin/binutils/ld/Makefile.alpha
+++ b/gnu/usr.bin/binutils/ld/Makefile.alpha
@@ -11,12 +11,12 @@ _alpha_path= \"${TOOLS_PREFIX}/usr/lib\"
.else
_alpha_path= \"/usr/cross/alpha-freebsd/usr/lib\"
.endif
-EMS+= ${NATIVE_EMULATION}
+EMS+= ${NATIVE_EMULATION} elf64alpha alpha
LDSCRIPTS+= ${NATIVE_EMULATION}.x ${NATIVE_EMULATION}.xbn ${NATIVE_EMULATION}.xn ${NATIVE_EMULATION}.xr \
${NATIVE_EMULATION}.xs ${NATIVE_EMULATION}.xu alpha.x alpha.xbn \
alpha.xn alpha.xr alpha.xu ${NATIVE_EMULATION}.xc ${NATIVE_EMULATION}.xsc
-SRCS+= e${NATIVE_EMULATION}.c ealpha.c
-CLEANFILES+= e${NATIVE_EMULATION}.c ealpha.c
+SRCS+= e${NATIVE_EMULATION}.c eelf64alpha.c ealpha.c
+CLEANFILES+= e${NATIVE_EMULATION}.c eelf64alpha.c ealpha.c
e${NATIVE_EMULATION}.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em \
scripttempl/elf.sc genscripts.sh stringify.sed
@@ -24,6 +24,12 @@ e${NATIVE_EMULATION}.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em \
${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
${NATIVE_EMULATION} "" ${NATIVE_EMULATION} ${TARGET_TUPLE}
+eelf64alpha.c: emulparams/elf64alpha.sh emultempl/elf32.em \
+ scripttempl/elf.sc genscripts.sh stringify.sed
+ sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${_alpha_path} \
+ ${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
+ elf64alpha "" elf64alpha ${TARGET_TUPLE}
+
ealpha.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em scripttempl/elf.sc \
genscripts.sh stringify.sed
sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${_alpha_path} \
diff --git a/gnu/usr.bin/binutils/ld/config.h b/gnu/usr.bin/binutils/ld/config.h
index 4623347d2c94..d4f30d8670eb 100644
--- a/gnu/usr.bin/binutils/ld/config.h
+++ b/gnu/usr.bin/binutils/ld/config.h
@@ -146,7 +146,7 @@
#define PACKAGE "ld"
/* Version number of package */
-/* #define VERSION "2.13" */
+/* #define VERSION "2.13.2" */
/* Define if you have the stpcpy function */
#define HAVE_STPCPY 1
diff --git a/gnu/usr.bin/binutils/libbinutils/config.h b/gnu/usr.bin/binutils/libbinutils/config.h
index 75f28a9c9a2a..e85b41cf67ee 100644
--- a/gnu/usr.bin/binutils/libbinutils/config.h
+++ b/gnu/usr.bin/binutils/libbinutils/config.h
@@ -158,7 +158,7 @@
#define PACKAGE "binutils"
/* Version number of package */
-/* #define VERSION "2.13" */
+/* #define VERSION "2.13.2" */
/* Define if you have the stpcpy function */
#define HAVE_STPCPY 1
diff --git a/gnu/usr.bin/binutils/libopcodes/config.h b/gnu/usr.bin/binutils/libopcodes/config.h
index 2e26a1c82ee9..eaa10eddf2c7 100644
--- a/gnu/usr.bin/binutils/libopcodes/config.h
+++ b/gnu/usr.bin/binutils/libopcodes/config.h
@@ -28,6 +28,9 @@
/* Define to `long' if <sys/types.h> doesn't define. */
/* #undef off_t */
+/* Define if you need to in order for stat and other things to work. */
+/* #undef _POSIX_SOURCE */
+
/* Define to `unsigned' if <sys/types.h> doesn't define. */
/* #undef size_t */
@@ -109,6 +112,12 @@
/* Define if you have the <sys/param.h> header file. */
#define HAVE_SYS_PARAM_H 1
+/* Define if you have the <sys/stat.h> header file. */
+#define HAVE_SYS_STAT_H 1
+
+/* Define if you have the <sys/types.h> header file. */
+#define HAVE_SYS_TYPES_H 1
+
/* Define if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
@@ -119,7 +128,7 @@
#define PACKAGE "opcodes"
/* Version number of package */
-/* #define VERSION "2.12" */
+/* #define VERSION "2.13.2" */
/* Define if you have the stpcpy function */
#define HAVE_STPCPY 1