diff options
author | marcus <marcus> | 2005-01-23 21:30:40 +0000 |
---|---|---|
committer | marcus <marcus> | 2005-01-23 21:30:40 +0000 |
commit | f4ee3163dc1cc58ce13cdef64541ffe66f5a06a9 (patch) | |
tree | 71e7d8fbe453312d4760659ae62d3bfd2dd42e1f /libc/patches/02-configure.in-add-ons-generic.patch | |
parent | b31c52a9116b976a6f919ec045462807851f5988 (diff) |
2005-01-23 Marcus Brinkmann <marcus@gnu.org>
* configure.ac: Fall back to libc.a on GNU/Hurd.
New option --with-libc.
(WITH_LIBC): New automake conditional.
* Makefile.am (LIBC_SUBDIRS): New variable.
(SUBDIRS): Add $(LIBC_SUBDIRS).
* libc: New directory.
libc/
2005-01-23 Marcus Brinkmann <marcus@gnu.org>
* Initial check-in.
Diffstat (limited to 'libc/patches/02-configure.in-add-ons-generic.patch')
-rwxr-xr-x | libc/patches/02-configure.in-add-ons-generic.patch | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/libc/patches/02-configure.in-add-ons-generic.patch b/libc/patches/02-configure.in-add-ons-generic.patch new file mode 100755 index 0000000..a2df40b --- /dev/null +++ b/libc/patches/02-configure.in-add-ons-generic.patch @@ -0,0 +1,51 @@ +#! /bin/sh +patch -p1 -f $* < $0 +exit $? + +This patch adds the ${add-on}/sysdeps/generic directory for all +configured add-ons. + +The second part of the patch applies to configure script (but instead +configure should be regenerated). + +2004-11-19 Marcus Brinkmann <marcus@gnu.org> + + * configure.in (sysnames): Add sysdeps/generic in all + add-ons. + +--- libc/configure.in 2004-11-03 21:57:29.000000000 +0100 ++++ libc/configure.in 2004-10-27 15:50:54.000000000 +0200 +@@ -593,6 +593,14 @@ + done + done + done ++ if test -n "$d"; then ++ try="${d}sysdeps/generic" ++ test -n "$enable_debug_configure" && ++ echo "$0 DEBUG: try $try" >&2 ++ if test -d $srcdir/$try; then ++ sysnames="$sysnames $try" ++ fi ++ fi + done + IFS="$ac_save_ifs" + + + +--- libc/configure 2004-10-27 15:50:54.000000000 +0200 ++++ libc/configure 2004-11-19 02:05:52.000000000 +0100 +@@ -2093,6 +2093,14 @@ for d in $add_ons_pfx ''; do + done + done + done ++ if test -n "$d"; then ++ try="${d}sysdeps/generic" ++ test -n "$enable_debug_configure" && ++ echo "$0 DEBUG: try $try" >&2 ++ if test -d $srcdir/$try; then ++ sysnames="$sysnames $try" ++ fi ++ fi + done + IFS="$ac_save_ifs" + |