From 1f92e180878e2bc7439516a38d437d647e11ca8a Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Mon, 26 Feb 2007 22:14:03 +0000 Subject: merge from gcc --- libiberty/ChangeLog | 6 ++++++ libiberty/configure | 20 ++++++++++++++++++++ libiberty/configure.ac | 17 +++++++++++++++++ 3 files changed, 43 insertions(+) (limited to 'libiberty') diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 8056887..74e49a9 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,9 @@ +2007-02-26 DJ Delorie + + * configure.ac: add djgpp-specific results, so we don't have to + link during a cross compilation. + * configure: Regenerated. + 2007-01-31 Ralf Wildenhues * hex.c: Fix typo. diff --git a/libiberty/configure b/libiberty/configure index 3491102..56d039e 100755 --- a/libiberty/configure +++ b/libiberty/configure @@ -6042,6 +6042,26 @@ _ACEOF setobjs=yes ;; + *-*-msdosdjgpp) + for f in atexit basename bcmp bcopy bsearch bzero calloc clock ffs \ + getcwd getpagesize getrusage gettimeofday gettimeofday \ + index insque memchr memcmp memcpy memmove memset psignal \ + putenv random rename rindex sbrk setenv stpcpy strcasecmp \ + strchr strdup strerror strncasecmp strrchr strstr strtod \ + strtol strtoul sysconf times tmpnam vfprintf vprintf \ + vsprintf waitpid + do + n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` + cat >>confdefs.h <<_ACEOF +#define $n 1 +_ACEOF + + done + + + setobjs=yes + ;; + esac fi diff --git a/libiberty/configure.ac b/libiberty/configure.ac index f9713c2..fe4633f 100644 --- a/libiberty/configure.ac +++ b/libiberty/configure.ac @@ -545,6 +545,23 @@ if test -z "${setobjs}"; then setobjs=yes ;; + *-*-msdosdjgpp) + for f in atexit basename bcmp bcopy bsearch bzero calloc clock ffs \ + getcwd getpagesize getrusage gettimeofday gettimeofday \ + index insque memchr memcmp memcpy memmove memset psignal \ + putenv random rename rindex sbrk setenv stpcpy strcasecmp \ + strchr strdup strerror strncasecmp strrchr strstr strtod \ + strtol strtoul sysconf times tmpnam vfprintf vprintf \ + vsprintf waitpid + do + n=HAVE_`echo $f | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'` + AC_DEFINE_UNQUOTED($n) + done + + + setobjs=yes + ;; + esac fi -- cgit v1.1