diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-29 10:32:47 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-29 10:32:47 +0000 |
commit | f3c1143bcfda720ac35cf37ab229161d4e2132e1 (patch) | |
tree | e450ae3052c7d3cbef98b8c478530b0c9859f483 /Makeconfig | |
parent | 845dcffc1537c3f40fbc2564bf5020c4868e2e4f (diff) | |
download | glibc-f3c1143bcfda720ac35cf37ab229161d4e2132e1.tar glibc-f3c1143bcfda720ac35cf37ab229161d4e2132e1.tar.gz glibc-f3c1143bcfda720ac35cf37ab229161d4e2132e1.tar.bz2 glibc-f3c1143bcfda720ac35cf37ab229161d4e2132e1.zip |
Update.
1998-10-29 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/sigaction.c (__sigaction): Allow
compiling on systems without rt_sigaction syscall.
1998-10-12 Philip Blundell <pb@nexus.co.uk>
* Makeconfig (sysdep-subdirs): Allow Subdirs files to remove
directories as well as add them.
1998-10-28 Philip Blundell <pb@nexus.co.uk>
* sysdeps/unix/sysv/linux/neteconet/ec.h: New file. Support for
AF_ECONET sockets as found in recent Linux 2.1 kernels.
* sysdeps/unix/sysv/linux/Dist: Distribute it.
* sysdeps/unix/sysv/linux/Makefile: Install it.
1998-10-27 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* string/bits/string2.h: __USE_GNU already implies __USE_MISC.
1998-10-27 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* sysdeps/generic/bits/types.h (__FDS_BITS): New macro to access
fds_bits member.
* sysdeps/unix/sysv/linux/alpha/bits/types.h (__FDS_BITS): Likewise.
* sysdeps/unix/sysv/linux/bits/types.h (__FDS_BITS): Likewise.
* sysdeps/unix/sysv/linux/mips/bits/types.h (__FDS_BITS): Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc64/bits/types.h (__FDS_BITS):
Likewise.
* sysdeps/unix/sysv/sysv4/solaris2/bits/types.h (__FDS_BITS):
Likewise.
* sysdeps/generic/bits/select.h (__FD_ZERO, __FD_SET, __FD_CLR,
__FD_ISSET): Use it.
* sysdeps/i386/bits/select.h (__FD_ZERO, __FD_SET, __FD_CLR,
__FD_ISSET): Likewise.
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/Makeconfig b/Makeconfig index 237f48f4df..8e5129f2fb 100644 --- a/Makeconfig +++ b/Makeconfig @@ -747,6 +747,7 @@ define \n endef sysdep-subdirs := $(subst $(\n), ,$(sysdep-subdirs)) +sysdep-inhibit-subdirs := $(subst $(\n), ,$(sysdep-inhibit-subdirs)) endif # These are the subdirectories containing the library source. @@ -756,6 +757,7 @@ all-subdirs = csu assert ctype db db2 locale intl catgets math setjmp signal\ gnulib iconv iconvdata wctype manual shadow md5-crypt po argp \ $(add-ons) nss localedata timezone rt debug $(sysdep-subdirs) \ $(binfmt-subdir) +all-subdirs := $(filter-out $(sysdep-inhibit-subdirs),$(all-subdirs)) subdirs = $(all-subdirs) # The mach and hurd subdirectories have many generated header files which @@ -769,10 +771,13 @@ subdirs := $(filter mach,$(subdirs)) $(filter hurd,$(subdirs)) \ all-Subdirs-files = $(wildcard $(config-sysdirs:%=$(..)%/Subdirs)) $(common-objpfx)sysd-dirs: $(common-objpfx)config.make $(all-Subdirs-files) - (echo define sysdep-subdirs; \ - sed 's/#.*$$//' $(all-Subdirs-files) /dev/null; \ - echo endef; \ - echo 'sysd-dirs-done = t'; \ + (echo define sysdep-subdirs; \ + sed 's/[#-].*$$//' $(all-Subdirs-files) /dev/null; \ + echo endef; \ + echo define sysdep-inhibit-subdirs; \ + sed '/-.*$$/!d;s/^-//' $(all-Subdirs-files) /dev/null; \ + echo endef; \ + echo 'sysd-dirs-done = t'; \ ) > $@-tmp mv -f $@-tmp $@ |