2002-09-20 Jeff Johnston <jjohnstn@redhat.com>
* configure.host: Minor comment and formatting changes. * libc/Makefile.am: Add libc_la_DEPENDENCIES. * libc/Makefile.in: Regenerated. * libc/include/sys/config.h: Minor format change.
This commit is contained in:
parent
0226921e1d
commit
da25e61f59
|
@ -1,3 +1,10 @@
|
|||
2002-09-20 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* configure.host: Minor comment and formatting changes.
|
||||
* libc/Makefile.am: Add libc_la_DEPENDENCIES.
|
||||
* libc/Makefile.in: Regenerated.
|
||||
* libc/include/sys/config.h: Minor format change.
|
||||
|
||||
2002-09-19 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/syscalls/sysfcntl.c (fcntl): Fix typo in preprocessor
|
||||
|
|
|
@ -22,6 +22,8 @@
|
|||
# host_cpu The configuration host CPU
|
||||
# newlib_mb --enable-newlib-mb ("yes", "no")
|
||||
# target_optspace --enable-target-optspace ("yes", "no", "")
|
||||
# newlib_multithread --enable-newlib-multithread ("yes", "no", "yes")
|
||||
# newlib_elix_level --enable-newlib-elix-level ("1","2","3","4") ("4")
|
||||
|
||||
# It sets the following shell variables:
|
||||
# newlib_cflags Special CFLAGS to use when building
|
||||
|
@ -232,9 +234,9 @@ fi
|
|||
|
||||
if [ "x${newlib_mb}" = "x" ]; then
|
||||
case "${host}" in
|
||||
i[3456]86-pc-linux-*|*-*-cygwin*)
|
||||
i[3456]86-pc-linux-*|*-*-cygwin*)
|
||||
newlib_mb=yes
|
||||
;;
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
|
|
|
@ -80,6 +80,7 @@ libc_la_LDFLAGS = -Xcompiler -nostdlib
|
|||
if USE_LIBTOOL
|
||||
libc_la_SOURCES =
|
||||
libc_la_LIBADD = $(SUBLIBS)
|
||||
libc_la_DEPENDENCIES = $(SUBLIBS)
|
||||
else
|
||||
libc.a: $(SUBLIBS)
|
||||
rm -f $@
|
||||
|
|
|
@ -172,6 +172,7 @@ libc_la_LDFLAGS = -Xcompiler -nostdlib
|
|||
|
||||
@USE_LIBTOOL_TRUE@libc_la_SOURCES =
|
||||
@USE_LIBTOOL_TRUE@libc_la_LIBADD = @USE_LIBTOOL_TRUE@$(SUBLIBS)
|
||||
@USE_LIBTOOL_TRUE@libc_la_DEPENDENCIES = @USE_LIBTOOL_TRUE@$(SUBLIBS)
|
||||
|
||||
info_TEXINFOS = libc.texinfo
|
||||
|
||||
|
@ -214,12 +215,6 @@ libc_a_SOURCES = libc.a.c
|
|||
libc_a_OBJECTS = libc.a.$(OBJEXT)
|
||||
LTLIBRARIES = $(noinst_LTLIBRARIES)
|
||||
|
||||
@USE_LIBTOOL_TRUE@libc_la_DEPENDENCIES = argz/libargz.$(aext) \
|
||||
@USE_LIBTOOL_TRUE@stdlib/libstdlib.$(aext) ctype/libctype.$(aext) \
|
||||
@USE_LIBTOOL_TRUE@search/libsearch.$(aext) stdio/libstdio.$(aext) \
|
||||
@USE_LIBTOOL_TRUE@string/libstring.$(aext) time/libtime.$(aext) \
|
||||
@USE_LIBTOOL_TRUE@locale/liblocale.$(aext) reent/libreent.$(aext) \
|
||||
@USE_LIBTOOL_TRUE@errno/liberrno.$(aext) misc/libmisc.$(aext)
|
||||
@USE_LIBTOOL_TRUE@libc_la_OBJECTS =
|
||||
CFLAGS = @CFLAGS@
|
||||
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
|
|
|
@ -166,7 +166,7 @@
|
|||
#define _READ_WRITE_RETURN_TYPE int
|
||||
#endif
|
||||
|
||||
#ifndef __WCHAR_MAX__
|
||||
#ifndef __WCHAR_MAX__
|
||||
#if __INT_MAX__ == 32767 || defined(__CYGWIN__) || \
|
||||
defined (_WIN32)
|
||||
#define __WCHAR_MAX__ 0xffffu
|
||||
|
|
Loading…
Reference in New Issue