diff options
author | DJ Delorie <dj@redhat.com> | 2009-04-14 18:05:58 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2009-04-14 18:05:58 +0000 |
commit | 68724c3d39f77dc02261f8c7fe57b50842a35f68 (patch) | |
tree | b61f7c17b02f183ad95742143dca11b0f7cf3f66 /libiberty/configure.ac | |
parent | d12672ccc73fe8f54b9ca248ed83cfbfea644710 (diff) | |
download | gdb-68724c3d39f77dc02261f8c7fe57b50842a35f68.zip gdb-68724c3d39f77dc02261f8c7fe57b50842a35f68.tar.gz gdb-68724c3d39f77dc02261f8c7fe57b50842a35f68.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty/configure.ac')
-rw-r--r-- | libiberty/configure.ac | 39 |
1 files changed, 22 insertions, 17 deletions
diff --git a/libiberty/configure.ac b/libiberty/configure.ac index 6cfe335..90d6060 100644 --- a/libiberty/configure.ac +++ b/libiberty/configure.ac @@ -469,6 +469,28 @@ if test -n "${with_target_subdir}"; then setobjs=yes ;; + *-*-msdosdjgpp) + AC_LIBOBJ([vasprintf]) + AC_LIBOBJ([vsnprintf]) + AC_LIBOBJ([snprintf]) + AC_LIBOBJ([asprintf]) + + for f in atexit basename bcmp bcopy bsearch bzero calloc clock ffs \ + getcwd getpagesize getrusage 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 # We may wish to install the target headers somewhere. @@ -548,23 +570,6 @@ if test -z "${setobjs}"; then setobjs=yes ;; - *-*-msdosdjgpp) - for f in atexit basename bcmp bcopy bsearch bzero calloc clock ffs \ - getcwd getpagesize getrusage 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 |