diff options
author | 1998-08-07 01:57:58 +0000 | |
---|---|---|
committer | 1998-08-07 01:57:58 +0000 | |
commit | b07a76228cd9df9974b04d992eca96d5dc7040de (patch) | |
tree | c38f70ac13a11e9f3bae8082a2a0b3e15f01da2b | |
parent | Fix portal FS & PR #556 (diff) | |
download | wireguard-openbsd-b07a76228cd9df9974b04d992eca96d5dc7040de.tar.xz wireguard-openbsd-b07a76228cd9df9974b04d992eca96d5dc7040de.zip |
Do not build the libiberty version of vasprintf, use the version that is
in libc. This was done because the algorithm done in the libiberty
version does not work with the powerpc stdarg/varargs processing.
-rw-r--r-- | gnu/lib/libg++/libiberty/Makefile.in | 2 | ||||
-rw-r--r-- | gnu/usr.bin/binutils/libiberty/Makefile.in | 4 | ||||
-rw-r--r-- | gnu/usr.bin/cvs/lib/Makefile.in | 1 |
3 files changed, 3 insertions, 4 deletions
diff --git a/gnu/lib/libg++/libiberty/Makefile.in b/gnu/lib/libg++/libiberty/Makefile.in index 7afac093279..74104cdcb43 100644 --- a/gnu/lib/libg++/libiberty/Makefile.in +++ b/gnu/lib/libg++/libiberty/Makefile.in @@ -155,7 +155,7 @@ CFILES = asprintf.c alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c bzero.c \ strcasecmp.c strncasecmp.c \ strchr.c strdup.c strerror.c strrchr.c strsignal.c \ strstr.c strtod.c strtol.c strtoul.c tmpnam.c \ - vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c \ + vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c \ xatexit.c xexit.c xmalloc.c xstrdup.c xstrerror.c # These are always included in the library. REQUIRED_OFILES = argv.o basename.o choose-temp.o concat.o cplus-dem.o \ diff --git a/gnu/usr.bin/binutils/libiberty/Makefile.in b/gnu/usr.bin/binutils/libiberty/Makefile.in index e4d0dfff30e..bb73e94b91c 100644 --- a/gnu/usr.bin/binutils/libiberty/Makefile.in +++ b/gnu/usr.bin/binutils/libiberty/Makefile.in @@ -152,13 +152,13 @@ CFILES = alloca.c argv.c atexit.c basename.c bcmp.c bcopy.c bzero.c \ strcasecmp.c strncasecmp.c \ strchr.c strdup.c strerror.c strrchr.c strsignal.c \ strstr.c strtod.c strtol.c strtoul.c tmpnam.c \ - vasprintf.c vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c \ + vfork.c vfprintf.c vprintf.c vsprintf.c waitpid.c \ xatexit.c xexit.c xmalloc.c xstrdup.c xstrerror.c # These are always included in the library. REQUIRED_OFILES = argv.o basename.o choose-temp.o concat.o cplus-dem.o \ fdmatch.o fnmatch.o getopt.o getopt1.o getruntime.o hex.o \ floatformat.o obstack.o spaces.o strerror.o strsignal.o \ - vasprintf.o xatexit.o xexit.o xmalloc.o xstrdup.o xstrerror.o + xatexit.o xexit.o xmalloc.o xstrdup.o xstrerror.o # Do we want/need any config overrides? # diff --git a/gnu/usr.bin/cvs/lib/Makefile.in b/gnu/usr.bin/cvs/lib/Makefile.in index 99d816b7c48..f35baae0b60 100644 --- a/gnu/usr.bin/cvs/lib/Makefile.in +++ b/gnu/usr.bin/cvs/lib/Makefile.in @@ -46,7 +46,6 @@ SOURCES = \ stripslash.c \ strtoul.c \ valloc.c \ - vasprintf.c \ waitpid.c \ xgetwd.c \ yesno.c |