diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-09-01 23:44:26 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-09-01 23:44:26 +0000 |
| commit | c467132cb1ba19e98d31393a119022e8343dcc9d (patch) | |
| tree | ff9a7f47c8a6354d2027a4637248db9d2692b214 /gnu/usr.bin/binutils/libbinutils | |
| parent | 55b3d7e976161c1f45e8c5283fa1524a310a710c (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/binutils/libbinutils')
| -rw-r--r-- | gnu/usr.bin/binutils/libbinutils/Makefile | 19 | ||||
| -rw-r--r-- | gnu/usr.bin/binutils/libbinutils/config.h | 19 |
2 files changed, 26 insertions, 12 deletions
diff --git a/gnu/usr.bin/binutils/libbinutils/Makefile b/gnu/usr.bin/binutils/libbinutils/Makefile index 8be6aed62326..d9cd774f28d6 100644 --- a/gnu/usr.bin/binutils/libbinutils/Makefile +++ b/gnu/usr.bin/binutils/libbinutils/Makefile @@ -1,19 +1,18 @@ -# # $FreeBSD$ -# .include "../Makefile.inc0" .PATH: ${SRCDIR}/binutils -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 -CFLAGS+= -DTARGET=\"${TARGET_ARCH}-unknown-freebsd\" -CFLAGS+= -DVERSION=\"${VERSION}\" -CFLAGS+= -I${SRCDIR}/binutils -CFLAGS+= -I${SRCDIR}/bfd +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 +WARNS= 0 +CFLAGS+= -DTARGET=\"${TARGET_ARCH}-unknown-freebsd\" +CFLAGS+= -DBFD_VERSION_STRING=\"${VERSION}\" +CFLAGS+= -I${SRCDIR}/binutils +CFLAGS+= -I${SRCDIR}/bfd INTERNALLIB= true .include <bsd.lib.mk> diff --git a/gnu/usr.bin/binutils/libbinutils/config.h b/gnu/usr.bin/binutils/libbinutils/config.h index 8b9f4ec771da..98d0fee6b82c 100644 --- a/gnu/usr.bin/binutils/libbinutils/config.h +++ b/gnu/usr.bin/binutils/libbinutils/config.h @@ -61,6 +61,9 @@ /* Define if you have the dcgettext function. */ /* #undef HAVE_DCGETTEXT */ +/* Define if you have the getc_unlocked function. */ +/* #undef HAVE_GETC_UNLOCKED */ + /* Define if you have the getcwd function. */ #define HAVE_GETCWD 1 @@ -130,6 +133,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 @@ -140,7 +149,7 @@ #define PACKAGE "binutils" /* Version number of package */ -/* #define VERSION "2.11" */ +/* #define VERSION "2.12" */ /* Define if you have the stpcpy function */ /* #undef HAVE_STPCPY */ @@ -160,6 +169,12 @@ /* Suffix used for executables, if any. */ #define EXECUTABLE_SUFFIX "" +/* Is fopen64 available? */ +/* #undef HAVE_FOPEN64 */ + +/* Enable LFS */ +/* #undef _LARGEFILE64_SOURCE */ + /* Is the type time_t defined in <time.h>? */ #define HAVE_TIME_T_IN_TIME_H 1 @@ -188,5 +203,5 @@ /* #undef USE_BINARY_FOPEN */ /* Configured target name. */ -/* #define TARGET "alpha-unknown-freebsd4" */ +/* #define TARGET "alpha-unknown-freebsd5.0" */ |
