summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-02-15 20:23:42 +0000
committerUlrich Drepper <drepper@redhat.com>1998-02-15 20:23:42 +0000
commit64ea8bea1c4ba326e9368c477662ec54b345c73b (patch)
tree6d541c0e47411cff0a3a1976828844972a83da53
parent14ea22e96c0b6fce54e2451c69c96c429177b62c (diff)
Update.
* libc.map: Add __strcasecmp.
-rw-r--r--ChangeLog2
-rw-r--r--libc.map1
-rw-r--r--timezone/Makefile9
3 files changed, 6 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 3c107169ea..ff86a8c9b6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
1998-02-15 Ulrich Drepper <drepper@cygnus.com>
+ * libc.map: Add __strcasecmp.
+
* nss/nsswitch.c (__nss_lookup): Return 1 if this was the last
module.
diff --git a/libc.map b/libc.map
index c1d54478e6..ec82b60616 100644
--- a/libc.map
+++ b/libc.map
@@ -100,6 +100,7 @@ GLIBC_2.0 {
__vsscanf; __vfscanf; __vsnprintf;
_rpc_dtablesize; _null_auth; _seterr_reply;
__res_randomid; __syscall_rt_sigqueueinfo; __getpid; __pread64; __pwrite64;
+ __strcasecmp;
# Exception handling support functions from libgcc
__register_frame; __register_frame_table; __deregister_frame;
diff --git a/timezone/Makefile b/timezone/Makefile
index f4cfa84cb9..778abe1335 100644
--- a/timezone/Makefile
+++ b/timezone/Makefile
@@ -94,14 +94,11 @@ $(tzfiles:%=$(objpfx)z.%): $(objpfx)z.%: % Makefile
echo 'ifdef $*-zones' ;\
if test x$(findstring $*, $(tzlinks)) != x; then \
echo '$$(addprefix $$(inst_zonedir)/right/,$$($*-zones)): \';\
- echo '$$(foreach t,$$(tzbases),$$(addprefix $$(inst_zonedir)/right/,
-$$($$t-zones)))' ;\
+ echo '$$(foreach t,$$(tzbases),$$(addprefix $$(inst_zonedir)/right/,$$($$t-zones)))' ;\
echo '$$(addprefix $$(inst_zonedir)/posix/,$$($*-zones)): \';\
- echo '$$(foreach t,$$(tzbases),$$(addprefix $$(inst_zonedir)/posix/,
-$$($$t-zones)))' ;\
+ echo '$$(foreach t,$$(tzbases),$$(addprefix $$(inst_zonedir)/posix/,$$($$t-zones)))' ;\
echo '$$(addprefix $$(inst_zonedir)/,$$($*-zones)): \' ;\
- echo '$$(foreach t,$$(tzbases),$$(addprefix $$(inst_zonedir)/,$$($$t
--zones)))' ;\
+ echo '$$(foreach t,$$(tzbases),$$(addprefix $$(inst_zonedir)/,$$($$t-zones)))' ;\
fi ;\
echo '$$(addprefix $$(inst_datadir)/zone%/right/,$$($*-zones)): \' ;\
echo '$< $$(objpfx)zic leapseconds yearistype' ;\