diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-10-11 06:28:05 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-10-11 06:28:05 +0000 |
| commit | 4f376ae1bfdcf30cd03d17fd6e5bdae27d0b43ea (patch) | |
| tree | 032e05d9ddbef5d92fb964411ca130f5bd019d25 /gnu/usr.bin/binutils/libbinutils | |
| parent | 28d1796af866cb5bdd96b9d30d598059935be69e (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/binutils/libbinutils')
| -rw-r--r-- | gnu/usr.bin/binutils/libbinutils/Makefile | 2 | ||||
| -rw-r--r-- | gnu/usr.bin/binutils/libbinutils/config.h | 13 |
2 files changed, 12 insertions, 3 deletions
diff --git a/gnu/usr.bin/binutils/libbinutils/Makefile b/gnu/usr.bin/binutils/libbinutils/Makefile index d9cd774f28d6..07e77b8e4fe3 100644 --- a/gnu/usr.bin/binutils/libbinutils/Makefile +++ b/gnu/usr.bin/binutils/libbinutils/Makefile @@ -7,7 +7,7 @@ LIB= binutils SRCS+= arlex.l arparse.y arsup.c bucomm.c debug.c filemode.c \ ieee.c rdcoff.c rddbg.c rename.c stabs.c unwind-ia64.c \ - wrstabs.c version.c + wrstabs.c version.c binemul.c budemang.c emul_vanilla.c WARNS= 0 CFLAGS+= -DTARGET=\"${TARGET_ARCH}-unknown-freebsd\" CFLAGS+= -DBFD_VERSION_STRING=\"${VERSION}\" diff --git a/gnu/usr.bin/binutils/libbinutils/config.h b/gnu/usr.bin/binutils/libbinutils/config.h index 98d0fee6b82c..16b5ea7a9c17 100644 --- a/gnu/usr.bin/binutils/libbinutils/config.h +++ b/gnu/usr.bin/binutils/libbinutils/config.h @@ -1,5 +1,8 @@ /* $FreeBSD$ */ +/* FreeBSD isn't any form of AIX. */ +#define bin_dummy_emulation bin_vanilla_emulation + /* config.h. Generated automatically by configure. */ /* config.in. Generated automatically from configure.in by autoheader. */ @@ -31,6 +34,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 */ @@ -97,6 +103,9 @@ /* Define if you have the strchr function. */ #define HAVE_STRCHR 1 +/* Define if you have the strcoll function. */ +#define HAVE_STRCOLL 1 + /* Define if you have the utimes function. */ #define HAVE_UTIMES 1 @@ -149,7 +158,7 @@ #define PACKAGE "binutils" /* Version number of package */ -/* #define VERSION "2.12" */ +/* #define VERSION "2.13" */ /* Define if you have the stpcpy function */ /* #undef HAVE_STPCPY */ @@ -203,5 +212,5 @@ /* #undef USE_BINARY_FOPEN */ /* Configured target name. */ -/* #define TARGET "alpha-unknown-freebsd5.0" */ +/* #define TARGET "alpha-obrien-freebsd5.0" */ |
