mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-22 04:50:07 +00:00
Update.
* 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:
parent
92610fbe38
commit
3dd90163bb
22
ChangeLog
22
ChangeLog
@ -1,5 +1,27 @@
|
||||
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.
|
||||
(distribute): Remove des.h.
|
||||
* include/des.h: New file.
|
||||
|
2
configure
vendored
2
configure
vendored
@ -1685,7 +1685,7 @@ fi
|
||||
echo $ac_n "checking compiler version""... $ac_c" 1>&6
|
||||
echo "configure:1687: checking compiler version" >&5
|
||||
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"
|
||||
;;
|
||||
*)
|
||||
|
@ -470,14 +470,16 @@ AC_CHECK_TOOL(RANLIB, ranlib, :)
|
||||
|
||||
# check for recent compiler
|
||||
AC_MSG_CHECKING(compiler version)
|
||||
changequote(,)dnl
|
||||
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="too old"
|
||||
;;
|
||||
esac
|
||||
changequote([,])dnl
|
||||
AC_MSG_RESULT($cc_is_recent)
|
||||
if test "$cc_is_recent" != "ok"; then
|
||||
AC_MSG_WARN([
|
||||
|
@ -95,8 +95,11 @@ _dl_close (struct link_map *map)
|
||||
do
|
||||
--tail;
|
||||
while (*tail != imap);
|
||||
memcpy (tail, tail + 1,
|
||||
(char *) _dl_global_scope_end - (char *) tail);
|
||||
while (tail <= _dl_global_scope_end)
|
||||
{
|
||||
tail[0] = tail[1];
|
||||
++tail;
|
||||
}
|
||||
--_dl_global_scope_end;
|
||||
}
|
||||
|
||||
|
10
libc.map
10
libc.map
@ -459,6 +459,10 @@ GLIBC_2.1 {
|
||||
# Changed getline function in libio.
|
||||
_IO_getline_info;
|
||||
|
||||
# Special Pointer to avoid keyserv deadlock
|
||||
__key_decryptsession_pk_LOCAL; __key_encryptsession_pk_LOCAL;
|
||||
__key_gendes_LOCAL;
|
||||
|
||||
# chown interface change.
|
||||
chown;
|
||||
|
||||
@ -494,9 +498,9 @@ GLIBC_2.1 {
|
||||
fopen; fclose; fdopen;
|
||||
|
||||
# g*
|
||||
gai_strerror; getcontext; getdate; getdate_r; getnameinfo; getpt; grantpt;
|
||||
getitimer; getrusage; getrlimit64; gettimeofday;
|
||||
getutxent; getutxid; getutxline;
|
||||
gai_strerror; getcontext; getdate; getdate_r; getitimer; getname;
|
||||
getnameinfo; getpt; getrlimit64; getrusage; gettimeofday;
|
||||
getutxent; getutxid; getutxline; grantpt;
|
||||
|
||||
# New special glibc functions.
|
||||
gnu_get_libc_release; gnu_get_libc_version;
|
||||
|
@ -13,6 +13,62 @@
|
||||
|
||||
* locales/nl_NL: Fix yesexpr/noexpr.
|
||||
* 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>
|
||||
|
||||
|
@ -2266,8 +2266,8 @@ END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
|
||||
yesexpr "<<(><a><A><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><a><A><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
yesstr "<a><n><o>"
|
||||
nostr "<n><e>"
|
||||
|
||||
|
@ -2172,6 +2172,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><1><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><0><N><n><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><1><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><0><N><n><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -89,6 +89,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -2152,6 +2152,6 @@ t_fmt_ampm "<%><I><:><%><M><:><%><S><SP><%><p>"
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><y><Y><o><O><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><y><Y><o><O><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -3123,6 +3123,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><1><J><j><s><S><y><Y><o><O><)/>><.><*>"
|
||||
noexpr "<<(><0><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><1><J><j><s><S><y><Y><o><O><)/>><.><*>"
|
||||
noexpr "<'/>><<(><0><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -3068,6 +3068,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><1><J><j><s><S><y><Y><o><O><)/>><.><*>"
|
||||
noexpr "<<(><0><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><1><J><j><s><S><y><Y><o><O><)/>><.><*>"
|
||||
noexpr "<'/>><<(><0><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -89,6 +89,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -89,6 +89,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -89,6 +89,6 @@ t_fmt_ampm "<%><I><:><%><M><:><%><S><SP><%><p>"
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><y><Y><s><S><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><y><Y><s><S><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2106,8 +2106,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2106,8 +2106,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2165,6 +2165,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><E><e><N><n><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><E><e><N><n><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -29,8 +29,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><b><B><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><e><E><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><b><B><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><e><E><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2160,6 +2160,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><K><k><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><N><n><E><e><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><K><k><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><N><n><E><e><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -76,6 +76,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><N><n><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><N><n><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -28,8 +28,8 @@ copy "en_DK"
|
||||
END LC_COLLATE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><o><O><j><J><y><Y><1><)/>><.><*>"
|
||||
noexpr "<<(><n><N><0><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><o><O><j><J><y><Y><1><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><0><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -28,8 +28,8 @@ copy "en_CA"
|
||||
END LC_COLLATE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><o><O><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><o><O><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -28,8 +28,8 @@ copy "en_DK"
|
||||
END LC_COLLATE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><O><o><j><J><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><O><o><j><J><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -28,8 +28,8 @@ copy "en_DK"
|
||||
END LC_COLLATE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><o><O><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><o><O><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -28,8 +28,8 @@ copy "en_DK"
|
||||
END LC_COLLATE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><o><O><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><o><O><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -87,6 +87,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><t><T><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><t><T><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -3056,8 +3056,8 @@ toupper (<a>,<A>);(<a!>,<A!>);/
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><n*><N*><)/>><.><*>"
|
||||
noexpr "<<(><o*><O*><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><n*><N*><)/>><.><*>"
|
||||
noexpr "<'/>><<(><o*><O*><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -88,6 +88,6 @@ t_fmt_ampm "<%><I><:><%><M><:><%><S><SP><%><P>"
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><Y><y><K+><)/>><.><*>"
|
||||
noexpr "<<(><N><n><L+><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><Y><y><K+><)/>><.><*>"
|
||||
noexpr "<'/>><<(><N><n><L+><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -2114,8 +2114,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><d><D><y><Y><)/>><*><.>"
|
||||
noexpr "<<(><n><N><)/>><*><.>"
|
||||
yesexpr "<'/>><<(><d><D><y><Y><)/>><*><.>"
|
||||
noexpr "<'/>><<(><n><N><)/>><*><.>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2194,8 +2194,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><I><i><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><I><i><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2196,6 +2196,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><j><J><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><j><J><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -28,8 +28,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><s><S><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -88,6 +88,6 @@ t_fmt_ampm "<%><I><:><%><M><:><%><S><SP><%><P>"
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><Y><y><K+><)/>><.><*>"
|
||||
noexpr "<<(><N><n><L+><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><Y><y><K+><)/>><.><*>"
|
||||
noexpr "<'/>><<(><N><n><L+><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -2573,9 +2573,9 @@ LC_MESSAGES
|
||||
# Installations may add other definitions such as for
|
||||
# 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
|
||||
|
||||
|
@ -77,6 +77,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><J><j><Y><y><A><a><)/>><.><*>"
|
||||
noexpr "<<(><N><n><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><J><j><Y><y><A><a><)/>><.><*>"
|
||||
noexpr "<'/>><<(><N><n><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -2160,6 +2160,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><T><t><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><N><n><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><T><t><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><N><n><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -2153,6 +2153,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><N><n><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><N><n><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -2161,6 +2161,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><N><n><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><J><j><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><N><n><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><T><t><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><T><t><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -24,8 +24,8 @@ copy "en_DK"
|
||||
END LC_COLLATE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><S><s><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><S><s><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><D><d><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><D><d><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -3014,8 +3014,8 @@ toupper (<a>,<A>);(<a!>,<A!>);/
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><D=><d=><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><N=><n=><N><n><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><D=><d=><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><N=><n=><N><n><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2090,8 +2090,8 @@ copy "en_DK"
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><Y><y><J><j><)/>><.><*>"
|
||||
noexpr "<<(><N><n><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><Y><y><J><j><)/>><.><*>"
|
||||
noexpr "<'/>><<(><N><n><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
||||
LC_MONETARY
|
||||
|
@ -2160,6 +2160,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><j><J><y><Y><)/>><.><*>"
|
||||
noexpr "<<(><n><N><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><j><J><y><Y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><n><N><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -3007,8 +3007,8 @@ toupper (<a>,<A>);(<a!>,<A!>);/
|
||||
END LC_CTYPE
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><e><E><)/>><.><*>"
|
||||
noexpr "<<(><h><H><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><e><E><)/>><.><*>"
|
||||
noexpr "<'/>><<(><h><H><)/>><.><*>"
|
||||
yesstr "<e><v><e><t>"
|
||||
nostr "<h><a><y><i.><r>"
|
||||
END LC_MESSAGES
|
||||
|
@ -93,6 +93,6 @@ t_fmt_ampm ""
|
||||
END LC_TIME
|
||||
|
||||
LC_MESSAGES
|
||||
yesexpr "<<(><1><c0357><c0389><c4239><Y><y><)/>><.><*>"
|
||||
noexpr "<<(><0><c0378><c0346><c2381><N><n><)/>><.><*>"
|
||||
yesexpr "<'/>><<(><1><c0357><c0389><c4239><Y><y><)/>><.><*>"
|
||||
noexpr "<'/>><<(><0><c0378><c0346><c2381><N><n><)/>><.><*>"
|
||||
END LC_MESSAGES
|
||||
|
@ -1,5 +1,5 @@
|
||||
/* 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.
|
||||
Based on mcheck.c by Mike Haertel.
|
||||
|
||||
@ -29,7 +29,7 @@
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_ELF
|
||||
#include <link.h>
|
||||
#include <elf/ldsodefs.h>
|
||||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
|
@ -79,6 +79,7 @@ static const struct argp_option options[] =
|
||||
{ "debug", 'd', NULL, 0,
|
||||
N_("Do not fork and display messages on the current tty") },
|
||||
{ "shutdown", 'K', NULL, 0, N_("Shut the server down") },
|
||||
{ "statistic", 'g', NULL, 0, N_("Print current configuration statistic") },
|
||||
{ NULL, 0, NULL, 0, NULL }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user