1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00
* elf/dl-close.c (_dl_close): Replace questionable memcpy by loop.

1998-03-24  Thorsten Kukuk  <kukuk@vt.uni-paderborn.de>

	* libc.map: Add more rpc auth functions/variables.

	* nscd/nscd.c: Add -g option to argp options.

1998-03-24  Ulrich Drepper  <drepper@cygnus.com>

	* configure.in: Be prepared for gcc 2.9.10 and up.
	* configure.in: Add missing disabling of quote characters in
	compiler version check.  Reported by HJ Lu.

1998-03-24  Andreas Jaeger  <aj@arthur.rhein-neckar.de>

	* malloc/mtrace.c: Include elf/ldsodefs.h instead of link.h.

1998-03-24  Ulrich Drepper  <drepper@cygnus.com>

	* intl/locale.alias: Fix spelling of romanian.
This commit is contained in:
Ulrich Drepper
1998-03-24 17:03:23 +00:00
parent 92610fbe38
commit 3dd90163bb
64 changed files with 1483 additions and 1395 deletions

View File

@@ -1,5 +1,27 @@
1998-03-24 Ulrich Drepper <drepper@cygnus.com> 1998-03-24 Ulrich Drepper <drepper@cygnus.com>
* elf/dl-close.c (_dl_close): Replace questionable memcpy by loop.
1998-03-24 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
* libc.map: Add more rpc auth functions/variables.
* nscd/nscd.c: Add -g option to argp options.
1998-03-24 Ulrich Drepper <drepper@cygnus.com>
* configure.in: Be prepared for gcc 2.9.10 and up.
* configure.in: Add missing disabling of quote characters in
compiler version check. Reported by HJ Lu.
1998-03-24 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* malloc/mtrace.c: Include elf/ldsodefs.h instead of link.h.
1998-03-24 Ulrich Drepper <drepper@cygnus.com>
* intl/locale.alias: Fix spelling of romanian.
* sunrpc/Makefile (headers): Add rpc/rpc_des.h. * sunrpc/Makefile (headers): Add rpc/rpc_des.h.
(distribute): Remove des.h. (distribute): Remove des.h.
* include/des.h: New file. * include/des.h: New file.

2
configure vendored
View File

@@ -1685,7 +1685,7 @@ fi
echo $ac_n "checking compiler version""... $ac_c" 1>&6 echo $ac_n "checking compiler version""... $ac_c" 1>&6
echo "configure:1687: checking compiler version" >&5 echo "configure:1687: checking compiler version" >&5
case `${CC-cc} -v 2>&1` in case `${CC-cc} -v 2>&1` in
*egcs-2.91.* | *egcs-1.0.2-9* | *egcs-1.1* | *2.8.1-9* | *2.9.0-9 ) *egcs-2.91.* | *egcs-1.0.[2-9]* | *egcs-1.1* | *2.8.[1-9]* | *2.9.[0-9] )
cc_is_recent="ok" cc_is_recent="ok"
;; ;;
*) *)

View File

@@ -470,14 +470,16 @@ AC_CHECK_TOOL(RANLIB, ranlib, :)
# check for recent compiler # check for recent compiler
AC_MSG_CHECKING(compiler version) AC_MSG_CHECKING(compiler version)
changequote(,)dnl
case `${CC-cc} -v 2>&1` in case `${CC-cc} -v 2>&1` in
*egcs-2.91.* | *egcs-1.0.[2-9]* | *egcs-1.1* | *2.8.[1-9]* | *2.9.[0-9] ) *egcs-2.91.* | *egcs-1.0.[2-9]* | *egcs-1.1* | *2.8.[1-9]* | *2.9.[0-9]*)
cc_is_recent="ok" cc_is_recent="ok"
;; ;;
*) *)
cc_is_recent="too old" cc_is_recent="too old"
;; ;;
esac esac
changequote([,])dnl
AC_MSG_RESULT($cc_is_recent) AC_MSG_RESULT($cc_is_recent)
if test "$cc_is_recent" != "ok"; then if test "$cc_is_recent" != "ok"; then
AC_MSG_WARN([ AC_MSG_WARN([

View File

@@ -95,8 +95,11 @@ _dl_close (struct link_map *map)
do do
--tail; --tail;
while (*tail != imap); while (*tail != imap);
memcpy (tail, tail + 1, while (tail <= _dl_global_scope_end)
(char *) _dl_global_scope_end - (char *) tail); {
tail[0] = tail[1];
++tail;
}
--_dl_global_scope_end; --_dl_global_scope_end;
} }

View File

@@ -459,6 +459,10 @@ GLIBC_2.1 {
# Changed getline function in libio. # Changed getline function in libio.
_IO_getline_info; _IO_getline_info;
# Special Pointer to avoid keyserv deadlock
__key_decryptsession_pk_LOCAL; __key_encryptsession_pk_LOCAL;
__key_gendes_LOCAL;
# chown interface change. # chown interface change.
chown; chown;
@@ -494,9 +498,9 @@ GLIBC_2.1 {
fopen; fclose; fdopen; fopen; fclose; fdopen;
# g* # g*
gai_strerror; getcontext; getdate; getdate_r; getnameinfo; getpt; grantpt; gai_strerror; getcontext; getdate; getdate_r; getitimer; getname;
getitimer; getrusage; getrlimit64; gettimeofday; getnameinfo; getpt; getrlimit64; getrusage; gettimeofday;
getutxent; getutxid; getutxline; getutxent; getutxid; getutxline; grantpt;
# New special glibc functions. # New special glibc functions.
gnu_get_libc_release; gnu_get_libc_version; gnu_get_libc_release; gnu_get_libc_version;

View File

@@ -13,6 +13,62 @@
* locales/nl_NL: Fix yesexpr/noexpr. * locales/nl_NL: Fix yesexpr/noexpr.
* locales/pt_BR: Likewise. * locales/pt_BR: Likewise.
* locales/cs_CZ: Likewise.
* locales/da_DK: Likewise.
* locales/en_AU: Likewise.
* locales/en_CA: Likewise.
* locales/en_DK: Likewise.
* locales/en_DK.com: Likewise.
* locales/en_GB: Likewise.
* locales/en_NZ: Likewise.
* locales/en_US: Likewise.
* locales/es_AR: Likewise.
* locales/es_BO: Likewise.
* locales/es_CL: Likewise.
* locales/es_CO: Likewise.
* locales/es_DO: Likewise.
* locales/es_EC: Likewise.
* locales/es_ES: Likewise.
* locales/es_GT: Likewise.
* locales/es_HN: Likewise.
* locales/es_MX: Likewise.
* locales/es_PA: Likewise.
* locales/es_PE: Likewise.
* locales/es_PY: Likewise.
* locales/es_SV: Likewise.
* locales/es_US: Likewise.
* locales/es_UY: Likewise.
* locales/es_VE: Likewise.
* locales/et_EE: Likewise.
* locales/eu_ES: Likewise.
* locales/fi_FI: Likewise.
* locales/fo_FO: Likewise.
* locales/fr_BE: Likewise.
* locales/fr_CA: Likewise.
* locales/fr_CH: Likewise.
* locales/fr_FR: Likewise.
* locales/fr_LU: Likewise.
* locales/ga_IE: Likewise.
* locales/gr_GR: Likewise.
* locales/he_IL: Likewise.
* locales/hr_HR: Likewise.
* locales/hu_HU: Likewise.
* locales/is_IS: Likewise.
* locales/it_IT: Likewise.
* locales/iw_IL: Likewise.
* locales/ja_JP: Likewise.
* locales/kl_GL: Likewise.
* locales/lt_LT: Likewise.
* locales/lv_LV: Likewise.
* locales/no_NO: Likewise.
* locales/pl_PL: Likewise.
* locales/pt_PT: Likewise.
* locales/ro_RO: Likewise.
* locales/ru_RU: Likewise.
* locales/sl_SI: Likewise.
* locales/sv_SE: Likewise.
* locales/tr_TR: Likewise.
* locales/zh_CN: Likewise.
1998-03-14 Ulrich Drepper <drepper@cygnus.com> 1998-03-14 Ulrich Drepper <drepper@cygnus.com>

View File

@@ -2266,8 +2266,8 @@ END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><a><A><y><Y><)/>><.><*>" yesexpr "<'/>><<(><a><A><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
yesstr "<a><n><o>" yesstr "<a><n><o>"
nostr "<n><e>" nostr "<n><e>"

View File

@@ -2172,6 +2172,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><1><J><j><Y><y><)/>><.><*>" yesexpr "<'/>><<(><1><J><j><Y><y><)/>><.><*>"
noexpr "<<(><0><N><n><)/>><.><*>" noexpr "<'/>><<(><0><N><n><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -89,6 +89,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><y><Y><)/>><.><*>" yesexpr "<'/>><<(><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -2152,6 +2152,6 @@ t_fmt_ampm "<%><I><:><%><M><:><%><S><SP><%><p>"
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><y><Y><o><O><)/>><.><*>" yesexpr "<'/>><<(><y><Y><o><O><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -3123,6 +3123,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><1><J><j><s><S><y><Y><o><O><)/>><.><*>" yesexpr "<'/>><<(><1><J><j><s><S><y><Y><o><O><)/>><.><*>"
noexpr "<<(><0><n><N><)/>><.><*>" noexpr "<'/>><<(><0><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -3068,6 +3068,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><1><J><j><s><S><y><Y><o><O><)/>><.><*>" yesexpr "<'/>><<(><1><J><j><s><S><y><Y><o><O><)/>><.><*>"
noexpr "<<(><0><n><N><)/>><.><*>" noexpr "<'/>><<(><0><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -89,6 +89,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><y><Y><)/>><.><*>" yesexpr "<'/>><<(><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -89,6 +89,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><y><Y><)/>><.><*>" yesexpr "<'/>><<(><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -89,6 +89,6 @@ t_fmt_ampm "<%><I><:><%><M><:><%><S><SP><%><p>"
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><y><Y><s><S><)/>><.><*>" yesexpr "<'/>><<(><y><Y><s><S><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2106,8 +2106,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2106,8 +2106,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2165,6 +2165,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><J><j><Y><y><)/>><.><*>" yesexpr "<'/>><<(><J><j><Y><y><)/>><.><*>"
noexpr "<<(><E><e><N><n><)/>><.><*>" noexpr "<'/>><<(><E><e><N><n><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -29,8 +29,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><b><B><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><b><B><s><S><y><Y><)/>><.><*>"
noexpr "<<(><e><E><n><N><)/>><.><*>" noexpr "<'/>><<(><e><E><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2160,6 +2160,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><K><k><J><j><Y><y><)/>><.><*>" yesexpr "<'/>><<(><K><k><J><j><Y><y><)/>><.><*>"
noexpr "<<(><N><n><E><e><)/>><.><*>" noexpr "<'/>><<(><N><n><E><e><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -76,6 +76,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><J><j><Y><y><)/>><.><*>" yesexpr "<'/>><<(><J><j><Y><y><)/>><.><*>"
noexpr "<<(><N><n><)/>><.><*>" noexpr "<'/>><<(><N><n><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -28,8 +28,8 @@ copy "en_DK"
END LC_COLLATE END LC_COLLATE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><o><O><j><J><y><Y><1><)/>><.><*>" yesexpr "<'/>><<(><o><O><j><J><y><Y><1><)/>><.><*>"
noexpr "<<(><n><N><0><)/>><.><*>" noexpr "<'/>><<(><n><N><0><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -28,8 +28,8 @@ copy "en_CA"
END LC_COLLATE END LC_COLLATE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><o><O><y><Y><)/>><.><*>" yesexpr "<'/>><<(><o><O><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -28,8 +28,8 @@ copy "en_DK"
END LC_COLLATE END LC_COLLATE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><O><o><j><J><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><O><o><j><J><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -28,8 +28,8 @@ copy "en_DK"
END LC_COLLATE END LC_COLLATE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><o><O><y><Y><)/>><.><*>" yesexpr "<'/>><<(><o><O><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -28,8 +28,8 @@ copy "en_DK"
END LC_COLLATE END LC_COLLATE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><o><O><y><Y><)/>><.><*>" yesexpr "<'/>><<(><o><O><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -87,6 +87,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><t><T><y><Y><)/>><.><*>" yesexpr "<'/>><<(><t><T><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -3056,8 +3056,8 @@ toupper (<a>,<A>);(<a!>,<A!>);/
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><n*><N*><)/>><.><*>" yesexpr "<'/>><<(><n*><N*><)/>><.><*>"
noexpr "<<(><o*><O*><)/>><.><*>" noexpr "<'/>><<(><o*><O*><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -88,6 +88,6 @@ t_fmt_ampm "<%><I><:><%><M><:><%><S><SP><%><P>"
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><Y><y><K+><)/>><.><*>" yesexpr "<'/>><<(><Y><y><K+><)/>><.><*>"
noexpr "<<(><N><n><L+><)/>><.><*>" noexpr "<'/>><<(><N><n><L+><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -2114,8 +2114,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><d><D><y><Y><)/>><*><.>" yesexpr "<'/>><<(><d><D><y><Y><)/>><*><.>"
noexpr "<<(><n><N><)/>><*><.>" noexpr "<'/>><<(><n><N><)/>><*><.>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2194,8 +2194,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><I><i><Y><y><)/>><.><*>" yesexpr "<'/>><<(><I><i><Y><y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2196,6 +2196,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><j><J><y><Y><)/>><.><*>" yesexpr "<'/>><<(><j><J><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -28,8 +28,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><s><S><y><Y><)/>><.><*>" yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -88,6 +88,6 @@ t_fmt_ampm "<%><I><:><%><M><:><%><S><SP><%><P>"
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><Y><y><K+><)/>><.><*>" yesexpr "<'/>><<(><Y><y><K+><)/>><.><*>"
noexpr "<<(><N><n><L+><)/>><.><*>" noexpr "<'/>><<(><N><n><L+><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -2573,9 +2573,9 @@ LC_MESSAGES
# Installations may add other definitions such as for # Installations may add other definitions such as for
# Hiragana and Katakana strings. # Hiragana and Katakana strings.
yesexpr "^[<y><Y><j0389><j0357>]" yesexpr "<'/>><<(><y><Y><j0389><j0357><)/>><.><*>"
noexpr "^[<n><N><j0378><j0346>]" noexpr "<'/>><<)><n><N><j0378><j0346><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -77,6 +77,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><J><j><Y><y><A><a><)/>><.><*>" yesexpr "<'/>><<(><J><j><Y><y><A><a><)/>><.><*>"
noexpr "<<(><N><n><)/>><.><*>" noexpr "<'/>><<(><N><n><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -2160,6 +2160,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><T><t><Y><y><)/>><.><*>" yesexpr "<'/>><<(><T><t><Y><y><)/>><.><*>"
noexpr "<<(><N><n><)/>><.><*>" noexpr "<'/>><<(><N><n><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -2153,6 +2153,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><J><j><Y><y><)/>><.><*>" yesexpr "<'/>><<(><J><j><Y><y><)/>><.><*>"
noexpr "<<(><N><n><)/>><.><*>" noexpr "<'/>><<(><N><n><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -2161,6 +2161,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><J><j><Y><y><)/>><.><*>" yesexpr "<'/>><<(><J><j><Y><y><)/>><.><*>"
noexpr "<<(><N><n><)/>><.><*>" noexpr "<'/>><<(><N><n><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><T><t><Y><y><)/>><.><*>" yesexpr "<'/>><<(><T><t><Y><y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -24,8 +24,8 @@ copy "en_DK"
END LC_COLLATE END LC_COLLATE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><S><s><y><Y><)/>><.><*>" yesexpr "<'/>><<(><S><s><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><D><d><Y><y><)/>><.><*>" yesexpr "<'/>><<(><D><d><Y><y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -3014,8 +3014,8 @@ toupper (<a>,<A>);(<a!>,<A!>);/
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><D=><d=><Y><y><)/>><.><*>" yesexpr "<'/>><<(><D=><d=><Y><y><)/>><.><*>"
noexpr "<<(><N=><n=><N><n><)/>><.><*>" noexpr "<'/>><<(><N=><n=><N><n><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2090,8 +2090,8 @@ copy "en_DK"
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><Y><y><J><j><)/>><.><*>" yesexpr "<'/>><<(><Y><y><J><j><)/>><.><*>"
noexpr "<<(><N><n><)/>><.><*>" noexpr "<'/>><<(><N><n><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES
LC_MONETARY LC_MONETARY

View File

@@ -2160,6 +2160,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><j><J><y><Y><)/>><.><*>" yesexpr "<'/>><<(><j><J><y><Y><)/>><.><*>"
noexpr "<<(><n><N><)/>><.><*>" noexpr "<'/>><<(><n><N><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -3007,8 +3007,8 @@ toupper (<a>,<A>);(<a!>,<A!>);/
END LC_CTYPE END LC_CTYPE
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><e><E><)/>><.><*>" yesexpr "<'/>><<(><e><E><)/>><.><*>"
noexpr "<<(><h><H><)/>><.><*>" noexpr "<'/>><<(><h><H><)/>><.><*>"
yesstr "<e><v><e><t>" yesstr "<e><v><e><t>"
nostr "<h><a><y><i.><r>" nostr "<h><a><y><i.><r>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -93,6 +93,6 @@ t_fmt_ampm ""
END LC_TIME END LC_TIME
LC_MESSAGES LC_MESSAGES
yesexpr "<<(><1><c0357><c0389><c4239><Y><y><)/>><.><*>" yesexpr "<'/>><<(><1><c0357><c0389><c4239><Y><y><)/>><.><*>"
noexpr "<<(><0><c0378><c0346><c2381><N><n><)/>><.><*>" noexpr "<'/>><<(><0><c0378><c0346><c2381><N><n><)/>><.><*>"
END LC_MESSAGES END LC_MESSAGES

View File

@@ -1,5 +1,5 @@
/* More debugging hooks for `malloc'. /* More debugging hooks for `malloc'.
Copyright (C) 1991, 92, 93, 94, 96, 97 Free Software Foundation, Inc. Copyright (C) 1991, 92, 93, 94, 96, 97, 98 Free Software Foundation, Inc.
Written April 2, 1991 by John Gilmore of Cygnus Support. Written April 2, 1991 by John Gilmore of Cygnus Support.
Based on mcheck.c by Mike Haertel. Based on mcheck.c by Mike Haertel.
@@ -29,7 +29,7 @@
#endif #endif
#ifdef HAVE_ELF #ifdef HAVE_ELF
#include <link.h> #include <elf/ldsodefs.h>
#endif #endif
#include <stdio.h> #include <stdio.h>

View File

@@ -79,6 +79,7 @@ static const struct argp_option options[] =
{ "debug", 'd', NULL, 0, { "debug", 'd', NULL, 0,
N_("Do not fork and display messages on the current tty") }, N_("Do not fork and display messages on the current tty") },
{ "shutdown", 'K', NULL, 0, N_("Shut the server down") }, { "shutdown", 'K', NULL, 0, N_("Shut the server down") },
{ "statistic", 'g', NULL, 0, N_("Print current configuration statistic") },
{ NULL, 0, NULL, 0, NULL } { NULL, 0, NULL, 0, NULL }
}; };