--- glibc-2.5.orig/debian/TODO +++ glibc-2.5/debian/TODO @@ -0,0 +1,34 @@ +Outstanding concerns +==================== + + - no entry + +TODO +==== + +* General: + + - Make sure that prep.sh and version aren't in the root of the source + package. + +* libc: + - Only add some libraries to the optimized packages instead of all of them? + - Add patch to display (or ignore) linux-gate.so.1 in ldd. + - Check dpkg-shlibdeps for linux-gate.so.1 handling. + - Don't do make install for libc6-i686 if we aren't going to use the + results - it's very slow. + - Add alpha EV67 opt package support (#229251). + +* libc-dev: + + - What do we do for headers on 32/64 systems? Do we generate + #if wrappers for /usr/include? This looks like a non-issue since + only asm needs it. + +* locales: + + - locales debconf template is a bit difficult for newbie users. + Using localedata/locales/*, it can be readable. For example, + "ja_JP" -> "Japanese", "Japan". + + --- glibc-2.5.orig/debian/FAQ +++ glibc-2.5/debian/FAQ @@ -0,0 +1,124 @@ +Q1: Why does the Debian libc6-dev package create /usr/include/linux and +/usr/include/asm directories containing header files from a specific +kernel, instead of using the "established" convention of making those +directories into symlinks pointing to the currently installed kernel? + +A1: Occasionally, changes in the kernel headers cause problems with +the compilation of libc and of programs that use libc. To ensure that +users are not affected by these problems, we configure libc to use the +headers from a kernel that is known to work with libc and the programs +that depend on stable kernel headers. + +[Note: /usr/include/linux is now in the linux-libc-dev package.] + +Q2: What if I want to compile a program that needs a feature from a +later kernel than is used by libc? + +A2: In practice, most programs will not have this problem. However, +depending on the scope of the problem you have several options available: + +If the situation is one like "kernel driver development", where all use +of the machine for development is expected to be against a different set +of kernel headers than are supplied with the "stock" libc6-dev, rebuilding +the glibc packages against that particular kernel will create a full set of +libc6 packages that are "compliant" with the new kernel. All development +done on machines with these packages installed will be done against the +new kernel. To build libc6-dev against your particular kernel, export the +environment variable LINUX_SOURCE, set to the path to that particular kernel +source directory and then build the package. + +If you want this new glibc package to stick against further upgrades, simply +use dselect and place the packages on HOLD. This will keep them from being +upgraded against your wishes. + +If there is just one particular program/package that needs different headers, +and your kernel of choice is installed in the usual place, you can use the +-I/usr/src/linux/include option on the gcc command line, when compiling that +specific program. + +Q3: My program is trying to use a kernel header that is in libc-dev, and +it is causing problems. (or) Why are the kernel headers not the same for +all architectures in Debian, for a given version of libc-dev? + +A3: For starters, you should never use kernel headers directly from user +space programs. You cannot be guaranteed a consistent interface across +different versions of the kernel, much less across architectures (even for +the same version of kernel source). + +Kernel headers are included with libc-dev _only_ to support those headers +in libc-dev. They are not there for userspace programs to include. If you +need kernel headers, then use one of the provided kernel-headers-x.x.x +packages provided for each architectures, or include the kernel headers +(or just the parts of the headers) you need directly in your source for +compilation. Only this way can you ensure a consistent state. + +Q4: Why does Debian's glibc seem to follow the stable CVS branch? + +A4: During our development cycle we follow the stable CVS branch so that +we can cause as little disruption as possible, and catch problems easier. +Differences between minor releases of glibc are known to be very large, +contain many changes, and generally affect all architectures differently. +We sync frequently with CVS so that we can take this large amount of +changes in smaller chunks, simplifying the process, and allowing us to +communicate problems to upstream much easier. + +Q5: How to setup my own language/regional (locale) setting? + +A5: Glibc provides "locale" defined in POSIX. Locale is a framework +to switch between multiple languages for users who can select to use +their language, country, characters, collation order, etc. For +example, some program display messages in your own language, if you +set the appropriate locale. Default locale is C (or POSIX) which +behaves traditional Unix with ASCII message. For more information, +look locale (5). + +If you want to use your own locale, install "locales" package. With +debconf interface, you can setup which locale is generated, and which +locale is used in default on your machine. + +Q6: I get this message when I run a program: + ld.so: Incorrectly built binary which accesses errno or h_errno directly. + ld.so: See /usr/share/doc/libc6/FAQ.gz. +A6: + +The program is broken. It probably says "extern int errno" somewhere, +instead of including . Errno in recent glibc versions is a macro, +which calls the function __errno_location; when glibc is built with +thread-local storage enabled, there is no extern int variable named errno. +In addition, "extern int errno" is not thread-safe. + +The application should continue to run for now, but when the warning message +is printed use of the NPTL threading library, and other new kernel-2.6 +features, it's worth trying to set environment variable LD_ASSUME_KERNEL=2.4.1 +(switch to LinuxThreads instead of NPTL). + +Please file a bug if the workaround doesn't work. + +NOTE: Currently this error message is suppressed, for the benefit of some +truly buggy programs which redirect stderr into something important, like a +network socket. + +Q7: I get this error when I compile an static linked application that's +compiled with glibc 2.2 or before: + gcc -o foo.o libbar.a + libbar.a(obj.o): In function `func(char *)': + : undefined reference to `__ctype_toupper' + +A7: +During glibc 2.3.x development, some symbols (__ctype_b, __ctype_toupper, +__ctype_tolower) are changed to hidden attributes. This means old static +linked applications/libraries built with glibc 2.2.x cannot be linked on glibc +2.3.x systems any more. + +But it made a lot of user applications unusable, we applied a workaround patch +for glibc in Sarge. Therefore your applications worked OK, and you didn't +need to consider about this problem. However, most other distros already +dropped such local modification. For that reason, we decided to drop +supporting such old static linked applications/libraries from Etch, you need +to recompile them. + +If you want to keep this workaround that was applied in Sarge for the present, +please recompile Debian glibc package with adding "glibc23-ctype-compat" line +at the end of debian/patches/00list, and install it on your local machine. +Note that we don't support this patch nowadays, please use it at your own +risk. --- glibc-2.5.orig/debian/quiltrc +++ glibc-2.5/debian/quiltrc @@ -0,0 +1 @@ +QUILT_PATCHES="debian/patches" --- glibc-2.5.orig/debian/README +++ glibc-2.5/debian/README @@ -0,0 +1,37 @@ +This directory contains the files needed to build glibc for the Debian +GNU/Linux and GNU/Hurd distributions. + +If you have pulled this version from CVS, you will probably need to go +and get the tar.bz2 files that match the file 'version'. You can +generally find these at sources.redhat.com in pub/libc. Put both the +regular glibc tar.bz2 *AND* the matching linuxthreads tar.bz2. After +that follow the usual build procedures. + +Compiling the GNU C library yourself requires a lot of resources. For +a complete build using dpkg-buildpackage you need at least 750MB free +disk space and at least 16MB of RAM and 32MB of swap space (if you +have only that much you're better off not running X at the same +time). Note that the C library on the Hurd is also somewhat larger: +you'll need over 800MB of free disk space to build Hurdish packages. + +A complete build takes 45 minutes on a Pentium III 735Mhz machine, and +25 minutes to run the test suite. The cause for this is the intricate +Makefile structure of glibc which needs a lot of computing power for +make to figure out the automatically generated dependencies. If you +are building all of the optimized libraries for the IA32 family, allow +2.5 hours for this build. + +For Linux, you will need at least the kernel headers for the specific +kernel version required for your machine's architecture. These are +specified in the `debian/sysdeps/linux.mk' file, and can be overridden +by exporting the environment variable LINUX_SOURCE set to the path to +the desired kernel. + +For the Hurd, you will need to have installed the GNU Mach and Hurd +header files (which come with the `gnumach-dev' and `hurd-dev' +packages). See the Hurd source package's `INSTALL' file for more +information. + +Please consider reading the `FAQ' file in this directory. It is also +suggested that you also read the `README' and `INSTALL' files in the +top-level of the glibc source tree. --- glibc-2.5.orig/debian/locales-depver +++ glibc-2.5/debian/locales-depver @@ -0,0 +1,20 @@ +# When glibc is uploaded into unstable, the locales package is immediately +# available because it is arch:all. But libc binary parckages are processed +# by autobuilders and become available later. +# +# If compiling locales depend on a given version of localedef (for instance +# when ISO codes are updated), the idea is to first bump LOCALES_COMPAT_VER and +# make an upload without changing locales. When this version is available on +# all architectures in unstable, locales can be modified and LOCALES_DEP_VER +# is bumped too. +# +# LOCALES_COMPAT_VER must always contain two values during the transition phase +# so that dependencies in unstable can always be satisfied, and +# LOCALES_DEP_VER point to the highest value of LOCALES_COMPAT_VER when +# packages are available for all architectures in unstable. + +LOCALES_DEP_VER = 2.5-1 +LOCALES_COMPAT_VER = 2.5.0-0exp2 2.5-1 + +# Previous versions: +# 2.5.0-0exp2: glibc 2.5 --- glibc-2.5.orig/debian/changelog +++ glibc-2.5/debian/changelog @@ -0,0 +1,7065 @@ +glibc (2.5-5ubuntu1) gutsy; urgency=low + + * Merge Debian changes (2.5-2 - 2.5-5). + + -- Matthias Klose Wed, 02 May 2007 09:04:02 +0200 + +glibc (2.5-5) unstable; urgency=low + + [ Aurelien Jarno ] + * Rename patches/all/submitted-iconv-E13B.diff into + patches/all/cvs-iconv-E13B.diff as the patch has been accepted + upstream. + * debian/debhelper.in/libc.NEWS: new file to warn user to upgrade + to a 2.6.1 or later kernel before upgrading the glibc. + * debian/script.in/kernelcheck.sh: improve the kernel error message. + * New Tamil debconf translation, by Tirumurti Vasudevan. Closes: + #420755. + * script.in/nohwcap.sh: use sed instead of awk. Closes: #420799. + * Update Catalan debconf translation, by Jordà Polo. Closes: #420835. + * Add support for n32 and 64 ABIs on mips and mipsel, but keep it + disabled for now: + - control.in/main: add libc6-dev-mipsn32, libc6-dev-mips64 to the + build-dependencies. + - control.in/mips64: add libc6-mips64 and libc6-dev-mips64 packages. + - control.in/mipsn32: add libc6-mipsn32 and libc6-dev-mipsn32 packages. + - rules.d/control.mk: use control.in/mips64 and control.in/mipsn32. + - sysdeps/mips.mk: add two new passes for n32 and 64 ABIs. + - sysdeps/mipsel.mk: likewise. + * debian/control.in/main: drop build-depends on libssp32 and libssp64, + build-depends on gcc-4.1 (>= 4.1.2-5) instead. Drop build-conflicts + on gcc-4.1 (= 4.1.1-14). Closes: #413370. + * debian/sysdeps/hppa.mk: switch back to gcc-4.1. + * debian/debhelper.in/libc.preinst: add a check for silly users having + LD_ASSUME_KERNEL=2.4.1 in their /etc/profile, ~/.bashrc or shell + init script. + * debian/control.in/main: build depends on binutils (>= 2.17cvs20070426-1). + Closes: #405738. + * debian/shlibver: bump shlib to 2.5-5 for the transition to + hash-style=gnu. + * debian/control.in/main: build depends on gcc-4.1-multilib on bi-arch + architectures. + * control.in/amd64, control.in/i386, control.in/kfreebsd-i386, + control.in/mipsn32, control.in/mips64, control.in/powerpc, + control.in/ppc64, control.in/s390x, control.in/sparc64: drop the + depends on lib32gcc1/lib64gcc1. Recommends gcc-multilib. + * debhelper.in/libc.postint: remove the version check when creating + ld.so.conf. Closes: #420726. + + [ Michael Banck ] + * patches/hurd-i386/local-dl-dynamic-weak.diff: new patch (turn + _dl_dynamic_weak on by default for hurd-i386). + + [ Pierre Habouzit ] + * nscd.init: + + use nscd --shutdown rather than start-stop-daemon to stop nscd more + gracefuly. Closes: #338507. + + also invalidate hosts on reload. + + drop oldies (nscd_nischeck things, does not exists anymore). + * patches/any/cvs-scanf_hexfloat.diff: fix a bug when parsing a float in + hexadicimal form with no exponent. Closes: #166403. + * disable hosts caching in nscd by default as it breaks gethostby* calls + (does not respect DNS TTLs, see #335476): + + document it in nscd.NEWS.Debian. + + patches/any/local-disable-nscd-host-caching.diff: update nscd.conf. + + [ Clint Adams ] + * Switch from linux-kernel-headers to linux-libc-dev | linux-kernel-headers. + + -- Aurelien Jarno Mon, 30 Apr 2007 21:55:09 +0200 + +glibc (2.5-4) unstable; urgency=low + + * debian/rules.d/build.mk: fix the testsuite workaround on the MIPS SB1 + platform. + * debian/locales-all.README.Debian: Remove again, it is useless now. + (Closes: #378191) + * debhelper.in/libc.preinst: use dpkg-query instead of looking into + /var/lib/dpkg/info. Thanks to Guillem Jover for the hint. + * patches/mips/cvs-ldsodefs_h.diff: new patch (correct multiple + inclusion guard in sysdeps/mips/ldsodefs.h) from CVS. + * patches/any/cvs-printf_fp-c.diff: update patch from CVS (fix exponent + -4 special case handling when wcp == wstartp + 1). Closes: #419225. + * patches/any/cvs-bits_in_h-ipv6.diff: new patch from CVS (defines + IPV6_V6ONLY in bits/in.h). Closes: #420188. + * debhelper.in/libc.preinst: check the library files instead of links + while checking for a non-dpkg owned libc6 in /lib/tls. Links are + recreated by ldconfig. + * patches/any/cvs-realpath.diff: new patch (fix wrong comment about + realpath() in /usr/include/stdlib) from CVS. Closes: #239427. + * debian/local/manpages/iconv.1: mention that -t is optional. Closes: + #354292. + * debian/local/manpages/iconv.1: mention that multiple fils could be + specified on the command line. Closes: #340911. + * debian/patches/any/submitted-strfry.diff: new patch (fix strfry() + distribution) by Steinar H. Gunderson. Closes: #341903. + * patches/all/submitted-iconv-E13B.diff: new patch to fix wrong E13B + charset alias. patches/any/submitted-iconv-colon.diff: new patch to + allow colons in charset names. Closes: #91935. + * New Hungarian debconf translation, by Attila Szervác. Closes: #420420. + * debian/patches/any/local-ldd.diff: update to discard the error message + that appears if one of the dynamic loader is not supported by the + kernel. Closes: #263494. + * debian/patches/arm/cvs-check_pf.c: new patch (fix assertion in + check_pf.c) from CVS. Closes: #420552. + * debian/debhelper.in/glibc-doc.links: add missing manpages links for + functions documented with others. Closes: #413989. + + -- Aurelien Jarno Mon, 23 Apr 2007 11:41:18 +0200 + +glibc (2.5-3) unstable; urgency=low + + [ Pierre Habouzit ] + * patches/any/submitted-unistd_XOPEN_VERSION.diff: set _XOPEN_VERSION to 600 + when __USE_XOPEN2K is set. Closes: #203412. + * patches/any/cvs-glob-c.diff: fixes glob wrt \/ escapes (among other + fixes). Closes: #234880. + + [ Aurelien Jarno ] + * Update Italian debconf translation, by Luca Monducci. Closes: #419399. + * Put back ld.so into optimized packages, it can be useful in some cases. + * Update French debconf translation, by Christian Perrier. Closes: #419445. + * Switch from gzip to lzma for compressing the locales in the locales-all + package. The unpacked size is decreased by 10 and the packed size by 4 for + no measurable difference on the unpacking time. + * patches/any/submitted-gethostbyname_r.diff: new patch to fix unaligned + memory access in gethostbyname_r.diff(). Closes: #419459. + * Rewrite from scratch /etc/ld.so.nohwcap handling. Closes: #419036 + - script.in/nohwcap.sh: new snipplet to check dpkg and handle + /etc/ld.so.nohwcap + - rules.d/debhelper.mk: replace NOHWCAP with nohwcap.sh in debhelper + scripts + - debhelper.in/libc.preinst: only touch /etc/ld.so.nohwcap + - debhelper.in/libc.postinst: replace the old code with NOHWCAP, + add code to remove /etc/ld.so.hwcappkgs file on upgrade + - debhelper.in/libc-otherbuild.postrm: replace the old code with NOHWCAP + - debhelper.in/libc-otherbuild.postinst: ditto + - debhelper.in/libc-otherbuild.preinst: remove + * debhelper.in/libc.install: remove /usr/bin/lddlibc4 from the libc6 + package. + * debhelper.in/libc.preinst: check for a non-dpkg owned libc6 in /lib/tls. + Closes: #419189. + * Update Dutch debconf translation, by Bart Cornelis. Closes: #419729. + * debhelper.in/libc.postinst: fix the chroot detection, code taken from + udev scripts. + * debian/rules.d/build.mk: disable testsuite on the MIPS SB1 platform. + * patches/localedata/first_weekday.diff: Add first_workday for *_NO + and *_DK. Closes: #379100. + + -- Aurelien Jarno Thu, 19 Apr 2007 07:55:58 +0200 + +glibc (2.5-2ubuntu1) gutsy; urgency=low + + * Merge Debian changes (2.5-0exp6 - 2.5-2). + + -- Matthias Klose Wed, 18 Apr 2007 22:14:32 +0200 + +glibc (2.5-0ubuntu21.2) toolchain-test; urgency=low + + * libc6-dev-sparc64: Copy headers into /usr/include/sparc64-linux-gnu. + A symlink to /usr/include works for libc6-dev-sparc64, but not for + other packages which install into /usr/include/sparc64-linux-gnu. + + -- Matthias Klose Fri, 6 Apr 2007 13:45:41 +0200 + +glibc (2.5-0ubuntu21.1) toolchain-test; urgency=low + + * Update to current glibc-2_5-branch. + - debian/patches/sparc/local-pthread-shlib.diff: Update. + - debian/patches/any/branch-pr3429.diff: Remove. + * Merge Debian changes (2.5-0exp3 - 2.5-0exp6). + + -- Matthias Klose Wed, 21 Mar 2007 17:22:13 +0100 + +glibc (2.5-2) unstable; urgency=low + + * Update Portuguese debconf translation, by Ricardo Silva. Closes: #418301, + #418472. + * Update Brazilian Portuguese debconf translation, by Felipe Augusto van de + Wiel. Closes: #418332. + * Update Romanian debconf translation, by Stan Ioan-Eugen. Closes: #418337. + * Update Turkish debconf translation, by Erçin Eker. Closes: #418340. + * Update Galician debconf translation, by Jacobo Tarrio. Closes: #418365. + * Update Arabic debconf translation, by Ossama Khayat. Closes: #418378. + * Update German debconf translation, by Helge Kreutzmann. Closes: #418426. + * Update Basque debconf translation, by Piarres Beobide. Closes: #418521. + * Update Swedish debconf translation, by Daniel Nylander. Closes: #418545. + * Update Spanish debconf translation, by Carlos Valdivia Yagüe. Closes: + #418720. + * Update Russian debconf translation, by Yuri Kozlov. Closes: #418748. + * Update Czech debconf translation, by Miroslav Kure. Closes: #418767. + * debian/locales-depver: remove exp from the locales version. + * Replace patches/alpha/submitted-sigsuspend.diff by + patches/alpha/cvs-sigsuspend.diff from upstream. + * patches/any/local-ldconfig-fsync.diff: call fsync() before closing + /etc/ld.so.cache. Closes: #416716. + * Update Korean debconf translation, by Sunjae Park. Closes: #418872. + * patches/any/local-notls.diff: also include pthread.h from + linuxthreads/sysdeps/pthread/gai_misc.h. + m68k/cvs-m68k-update.diff: update from CVS. Closes: #418881. + * debian/local/usr_sbin/tzconfig: removed. + * debian/local/manpages/tzconfig.8: removed. + * debian/sysdeps/depflags.pl: conflict with tzdata (<< 2007e-2). Older + versions need tzconfig. + * patches/any/cvs-printf_fp-c.diff: update patch from CVS (fix exponent + -4 special case handling when wcp == wstartp + 1). Closes: #419225. + + -- Aurelien Jarno Sat, 14 Apr 2007 17:23:17 +0200 + +glibc (2.5-1) unstable; urgency=low + + * New upstream version 2.5. + - Adds support of POSIX_MADV_* on mips, mipsel, arm and hppa. Closes: + #381294. + - Fixes a pointer-to-long overflow in sunrpc code. Closes: #389084. + - Fixes getent wrt ipv4 hosts lookups. Closes: #347358. + - Fixes strtod wrt hex floats with negative exponent. Closes: #172562. + - Fixes nice() errno when called without appropriate privileges. Closes: + #286825. + - Provides sys/inotify.h. Closes: #369402. + - Fixes strtod("INF") with some locales. Closes: #415417. + + [ Aurelien Jarno ] + * debian/shlibver: Bump up to 2.5. + * debian/copyright: update. + * Remove locale/cvs-iso3166.diff (merged upstream). + * Remove localedata/locale-ro_RO.diff (merged upstream). + * Remove arm/cvs-portshead.patch (merged upstream). + * Remove arm/local-dwarf2-buildfix.diff (merged upstream). + * Remove hppa/cvs-clone.patch (merged upstream). + * Remove hppa/cvs-portshead.diff (merged upstream). + * Remove hppa/submitted-drop-utimes.diff (merged upstream). + * Remove hurd-i386/cvs-machrules-make.diff (merged upstream). + * Remove mips/cvs-fork.diff (merged upstream). + * Remove mips/cvs-resource.diff (merged upstream). + * Remove powerpc/cvs-procfs.diff (merged upstream). + * Remove any/cvs-argp_h.diff (merged upstream). + * Remove any/cvs-getcwd_c.diff (merged upstream). + * Remove any/cvs-sysctl.diff (merged upstream). + * Remove any/cvs-thread_signals.diff (merged upstream). + * Remove any/cvs-uio_h.diff (merged upstream). + * Remove any/cvs-sunrpc-xdrmem_setpos.diff (merged upstream). + * Remove any/cvs-getent-wrong-struct-size.diff (merged upstream). + * Remove any/submitted-strfmon.diff (merged upstream). + * Remove all/submitted-uninitialized-byte-LC_CTYPE.diff (merged upstream). + * Remove any/local-ttyname-devfs.diff (devfs is not supported anymore). + * Update arm/local-no-hwcap.diff. + * Update any/local-ldso-disable-hwcap.diff. + * Update all/submitted-new-brf-encoding.diff. + * debhelper.in/libc.docs: remove INTERFACE as it has been removed upstream. + * sysdeps/depflags.pl: don't make libc6 depends on tzdata, as this package + is of priority required. Should help to debconfize tzdata. + * sysdeps/i386.mk: put the static Xen libc flavour in /usr/lib/xen. Closes: + #391372. + * sysdeps/powerpc.mk: install 64-bit headers (actually gnu/stubs-64.h) + directly into /usr/include and provide /usr/include/powerpc64-linux-gnu as + a symlink to /usr/include for compatibility reasons. Closes: #391858. + * sysdeps/ppc64.mk: install 32-bit headers (actually gnu/stubs-32.h) + directly into /usr/include and provide /usr/include/powerpc-linux-gnu as + a symlink to /usr/include for compatibility reasons. + * kfreebsd/local-scripts.diff: update. + * kfreebsd/local-sys_queue_h.diff: update. + * kfreebsd/local-sysdeps.diff: update to revision 1689 (from glibc-bsd). + * kfreebsd/local-sysdeps-2.4.diff: remove. + * sysdeps/kfreebsd: enable the ports add-on. + * sysdeps/kfreebsd-i386.mk: ditto. + * any/local-stubs_h.diff: new patch to fix a warning in stubs.h. Closes: + #394128. + * alpha/submitted-sigsuspend.diff: new patch (fix the build on alpha) from + the libc-alpha mailing list. + * debian/local/manpages/*: fix typos. Closes: #395427. + * debian/debhelper.in/libc.dirs: don't provide /sys, now provided by + initscripts. + * debian/debhelper.in/nscd.init: add lsb header. + * debian/rules.d/debhelper.mk: add support for installing lintian and linda + overrides files. + * debian/debhelper.in/libc.overrides: new file. + * debian/debhelper.in/libc-dev.overrides: new file. + * debian/debhelper.in/libc-alt.overrides: new file. + * debian/debhelper.in/libc-otherbuild.overrides: new file. + * debian/debhelper.in/libc-dev-otherbuild.overrides: new file. + * debian/any/submitted-getcwd-sys_param_h.diff: new patch (fix the build + with linuxthreads) from the libc-alpha mailing list. + * debian/powerpc/cvs-tls-debug.diff: new patch (fix for debugging + thread-local variables on powerpc) from CVS. + * Build depends on gcc-4.2 on hppa to enable TLS on hppa. Closes: #397813. + * debian/patches/hppa/cvs-hppa-update.diff: new patch (CVS update). + * debian/sysdeps/hppa.mk, debian/script.in/kernelcheck.sh: bump minimum + kernel requirement to 2.6.9 on hppa to get LWS CAS support. + * debian/any/patches/local-linuxthreads-semaphore_h.diff: new patch (fix + /usr/include/semaphore.h with linuxthreads). + * sysdeps/sparc.mk: install 64-bit headers (actually gnu/stubs-64.h) + directly into /usr/include and provide /usr/include/sparc64-linux-gnu as + a symlink to /usr/include for compatibility reasons. Closes: #403980. + * sysdeps/*.mk: build with -g instead of -g1. Closes: bug#403270. + * debhelper.in/libc.install: install gai.conf in /etc. Closes: #404379. + * Add patches/any/local-ldconfig-timestamps.diff (use the timestamps to + update the cache only when needed) by Josselin Mouette. Closes: #374945. + * Add partial support for armel, from http://armel-debs.applieddata.net/diffs/. + * debian/debhelper.in/: delete /usr/doc removal from postinst scripts. + * debian/control.in: drop the dependency on tzdata. It is a required package + and the glibc from Etch depends on it, ensuring tzdata is always present + post-Etch. + * debian/script.in/kernelcheck.sh, debian/sysdeps/linux.mk: set the minimum + kernel version to 2.6.1, except on m68k where it is set to 2.4.1. + * patches/any/cvs-2.5-branch-update.diff: new patch (2.5 branch update) from + upstream CVS. + * patches/any/cvs-lt-update.diff: new patch (linuxthreads update) from + upstream CVS. + * debhelper.in/locales.templates: recommends UTF-8 locales by default. + Closes: #312927. + * control.in/main, rules.d/debhelper.mk: use dh_shlibdeps to set the + dependencies of nscd. Closes: #409288. + * sysdeps/s390.mk: install 64-bit headers (actually gnu/stubs-64.h) + directly into /usr/include and provide /usr/include/s390x-linux-gnu as + a symlink to /usr/include for compatibility reasons. + * patches/all/local-pthread-manpages.diff: update to fix a typo in + pthread_detach(3). Closes: #98852. + * Change any/local-__thread.diff into any/local-notls.diff. + * Update any/local-notls.diff (make glibc buildable without TLS support) + from Petr Salinger and Aurelien Jarno. + * hurd-i386/submitted-trivia.diff: new patch from Thomas Schwinge (make glibc + partly buildable on Hurd). + * hurd-i386/submitted-stat.diff: new patch from Thomas Schwinge (update + struct stat on Hurd). + * hurd-i386/submitted-libc_once.diff: new patch from Thomas Schwinge (add + __libc_once_else to make glibc buildable on Hurd). + * hurd-i386/local-msg-nosignal.diff: new patch from Thomas Schwinge + (workaround the missing MSG_NOSIGNAL support). + * m68k/cvs-m68k-update.diff: new patch (bits from CVS). Closes: #364098. + * any/submitted-clock-settime.diff: new patch (include to get + clockid_t). + * hurd-i386/local-sigsuspend-nocancel.diff: new patch (workaround missing + sigsuspend_not_cancel() on Hurd). + * debhelper.in/glibc-doc.links: add symlinks from pthread_setcanceltype(3), + pthread_setcancelstate(3) and pthread_testcancel(3) to pthread_cancel(3). + Closes: #411132. + * debian/control.in/i386: Changed the conflicts on ia32-libs-dev to a + versioned conflict. Closes: #407540. + * any/local-mktemp.diff: new patch (also propose mkdtemp as an alternative + to mktemp). Closes: #377310. + * any/cvs-ftw-c.diff: new patch (fix nftw() with FTW_CHDIR in /) from CVS. + Closes: #367522. + * any/cvs-printf_fp-c.diff: new patch (fix printf %#.0g) from CVS. + Closes: #209136. + * New Norwegian bokmål debconf translation, by Bjørn Steensrud. Closes: + #412559. + * Remove patches/arm/local-softfloat.diff and patches/series.arm-softfloat. + Remove arm-softfloat from debian/rules.d/control.mk. armel (ARM EABI) + replaces the softfloat architecture. + * patches/any/cvs-pow.diff: new patch (fix pow(-inf, nan)) from upstream. + Closes: #226291. + * Update Catalan debconf translation, by Jordà Polo. Closes: #413259. + + [ Denis Barbier ] + * Remove localedata/locale-en_NZ.diff (merged upstream). + * Remove localedata/locale-nr_ZA.diff (merged upstream). + * Remove localedata/new-catalan-locales.diff (merged upstream). + * Remove localedata/update-ZA.diff (merged upstream). + * Remove localedata/locale-te_IN.diff (merged upstream). + * Remove locale/iso4217-RON.diff (merged upstream). + * Update localedata/locales_CH.diff + * Update localedata/supported.diff + * Update localedata/locale-hy_AM.diff + * Update localedata/locale-csb_PL.diff + * Update localedata/dz_BT-collation.diff + * Update localedata/locale-ia.diff + * Update localedata/locales-sr.diff + * Update localedata/tailor-iso14651_t1.diff + * Update localedata/fix-lang.diff + * Update localedata/first_weekday.diff + + [ Pierre Habouzit ] + * Adding myself to Uploaders. + * Rework patches/any/local-ldd.diff so that we don't use file(1) anymore (it + wasn't used anyway). Closes: #165417, #413095. + * Rework patch for #340871 (patches/m68k/local-mathinline_h.diff to use + __NTH rather than __THROW) in function implementations. + * Fix rpcgen(1) manpage, to match rpcgen(1) behaviour more closely. + Closes: #46175. + * patches/any/submitted-date-and-unknown-tz.diff: fix date output in case of + an unknown timezone in $TZ, submitted upstream as #4028. + Closes: #55648, #119540, #269238. + + [ Michael Banck ] + * patches/hurd-i386/local-tls.diff: New patch (fixes building with TLS) by + Samuel Thibault and Barry deFreese. Closes: #413787. + + [ Clint Adams ] + * debian/watch: add watch file. + * debian/control, debian/control.in/opt, debian/control.in/main, + debian/control.in/libc0.1, debian/control.in/libc, + debian/debhelper.in/locales.templates: English corrections from + Christian Perrier for Debconf templates and package descriptions. + Closes: #418006. + + -- Clint Adams Mon, 09 Apr 2007 16:17:20 -0400 + +glibc (2.5-0ubuntu12) feisty; urgency=low + + * debian/patches/any/branch-pr3429.diff: Fix a race condition in + _dl_open with r_debug.r_state consistency check. Ubuntu #72639. + * debian/debhelper.in/nscd.init: Invalidate the hosts database as + well. Ubuntu #72647. + * debian/local/manpages/nscd.conf.5: Fix formatting. Ubuntu #55331. + * Fix typo in libc6-i686 package description. Ubuntu #81153. + * debian/patches/any/local-iconv-fix-trampoline.diff: Import from + Debian; new patch (fix iconvconfig segfault when run under exec-shield, + PaX or similar) from hlfs. Ubuntu #63353. + * Set Ubuntu maintainer address. + + -- Matthias Klose Wed, 21 Mar 2007 08:16:00 +0100 + +glibc (2.5-0ubuntu11) feisty; urgency=low + + * debian/patches/hppa/cvs-missing-cfi_procend.diff: New file to work around + FTBFS uncovered by January CVS binutils. + * debian/patches/series: Use it. + + -- Jeff Bailey Sun, 11 Feb 2007 08:51:24 -0700 + +glibc (2.5-0ubuntu10) feisty; urgency=low + + [ Colin Watson ] + * debian/debhelper.in/libc.postinst: Correct grammar of NSS reboot warning + (LP: #70567). + + [ Jeff Bailey ] + * debian/patches/hppa/submitted-nptl-carlos2.diff: New patch to add + STACK_GROWS_UP case to NPTL. + * debian/patches/series: Use it. + + -- Jeff Bailey Sat, 10 Feb 2007 12:03:41 -0500 + +glibc (2.5-0ubuntu9) feisty; urgency=low + + * debian/debhelper.in/libc.preinst: turn libc6 duplication + check from an error to a warning and point to the bug when + printing the warning. + (Closes Ubuntu: #81125) + + -- Fabio M. Di Nitto Sat, 06 Jan 2007 07:06:22 +0100 + +glibc (2.5-0ubuntu8) feisty; urgency=low + + * no change upload to rebuild with proper binutils/gcc-4.1 + + -- Fabio M. Di Nitto Sat, 06 Jan 2007 06:46:26 +0100 + +glibc (2.5-0ubuntu7) feisty; urgency=low + + [ Colin Watson ] + + * debian/debhelper.in/glibc-doc.links: Restore + /usr/share/doc/glibc-doc/html/index.html symlink. + + [ Fabio M. Di Nitto ] + + * debian/patches/sparc/local-pthread-shlib.diff: New file. + * debian/patches/series: Update. + + -- Fabio M. Di Nitto Thu, 04 Jan 2007 17:36:19 +0100 + +glibc (2.5-0ubuntu6) feisty; urgency=low + + * Rebuild using gcc 4.1.1-21ubuntu3. + + -- Fabio M. Di Nitto Thu, 21 Dec 2006 08:52:45 -0800 + +glibc (2.5-0ubuntu5) feisty; urgency=low + + * Rebuild using gcc 4.1.1-21ubuntu2. + + -- Matthias Klose Thu, 14 Dec 2006 14:12:56 +0000 + +glibc (2.5-0ubuntu4) feisty; urgency=low + + [ Fabio M. Di Nitto ] + * Fix path to patch in ubuntu2 changelog. + * debian/sysdeps/sparc.mk: re-enable testsuite on Niagara. + It was a kernel bug and fix is on the way upstream. + * debian/debhelper.in/libc.postinst: set back NSS version check. + It was bumped by mistake. + (Closes Ubuntu: #21117) + + -- Fabio M. Di Nitto Wed, 29 Nov 2006 06:26:46 +0100 + +glibc (2.5-0ubuntu3) feisty; urgency=low + + * debian/rules.d/build.mk: Do not define MAKEINFO to :, this prevented + generation of the info documentation, which we are happy to distribute. + * debian/control.in: + * main: + * glibc-doc Provides/Replaces/Conflicts glibc-doc-reference instead of + Suggests. Fix description. + * debian/control: Regenerate. + + -- Scott James Remnant Fri, 24 Nov 2006 14:05:17 +0000 + +glibc (2.5-0ubuntu2) feisty; urgency=low + + [ Jeff Bailey ] + * debian/patches/hppa/submitted-ustat.diff: New file. + * debian/patches/series: Update. + + -- Jeff Bailey Wed, 1 Nov 2006 14:53:41 -0500 + +glibc (2.5-0ubuntu1) feisty; urgency=low + + [ Jeff Bailey ] + * debian/rules: Define BUILD_CXX + * debian/sysdeps/sparc.mk: Define sparc64v_CXX, sparc64b_CXX, sparc64_CXX + * debian/sysdeps/powerpc.mk: Define ppc64_CXX. + * debian/sysdeps/i386.mk: Define amd64_CXX. + * debian/sysdeps/amd64.mk: Define i386_CXX. + * debian/control.in/main: Set minimum b-d version of linux-libc-dev to + 2.6.19-1.1 + Add build-dep on lib64c++6 for powerpc and sparc. + * debian/control: Regenerate. + * debian/patches/any/local-2.6.19-linux-libc-dev.diff: Patch to cope + with kernel headers from 2.6.19. + * debian/patches/series: Update. + Prune localedata, alpha, arm, hppa linuxthreads and kernel version + hurd, m68k, and mips patches. + + [ Fabio M. Di Nitto] + * use original glibc-2.5.tar.bz2 tarball from ftp.gnu.org: + * debian/patches/series: drop all/local-remove-manual.diff. + * debian/control.in: + * readd libc-dbg. + * main: + * readd Build-Depends: texinfo (>= 4.0), texi2html. + * change Build-Depends: linux-kernel-headers to linux-libc-dev. + * drop Build-Depends: lib32ssp0 and lib64ssp0. + * drop Conflicts: belocs-locales-bin, belocs-locales-data. + * opt: + * drop libc6-sparcv9. + * readd libc6-sparcv9v. + * readd libc6-sparc64b. + * readd libc6-sparc64v. + * merge descriptions from glibc 2.4 (WARNINGs and NPTL). + * Regenerate debian/control. + * debian/debhelper.in: + * readd glibc-doc.doc-base, glibc-doc.info and glibc-doc.install. + * readd libc-alt-dev.postinst. + * libc.install: drop usr/bin/locale nad usr/bin/localedef. + * libc.manpages: drop locale.1 and localedef.1. + * libc.postinst: + * fix $preversion quoting. + * bump version checking for $preversion to 2.5-0ubuntu1 for some cases. + * fix hwcappkgs lists for sparc. + * remove kernel version detection at startup. + * drop locales-all.* + * Merge debian/FAQ. + * debian/rules: + * drop locales-all and locales packages. + * readd CXX for cross-compiling. + * force -fno-stack-protector to disable automatic enablement from Ubuntu's + glibc. Glibc itself will enable it as necessary. + * debian/rules.d: + * build.mk: + * readd CXX for cross-compiling. + * drop localedir (requires check). + * readd manual generation (requires check). + * keep using /etc/ld.so.conf.d/$triplet. New debian packages use + triplet.conf, and that would require a conffile migration script. + * readd nptl bits. + * debhelper.mk: + * readd nptl bits. + * install $(libc)-dev-$$x.postinst from libc-alt-dev.postinst. + * debian/script.in/kernelcheck.sh: fix kernel version check on != m68k. + (this should be pushed to debian too) + * debian/shlibver: bump to 2.5-0ubuntu1. + * debian/sysdeps: + * amd64.mk: + * default to nptl for amd64. + * set i386 configure target to i686-linux. + * set i386 CC to use $(BUILD_CC). + * readd --disable-profile to i386_extra_config_options. + * readd i386_MAKEFLAGS to set gconvdir. + * set i386_extra_cflags back to -march=i686 -mtune=i686. + * drop i386_rtlddir (requires check). + * set i386_slibdir and _libdir to use */lib32. + * change symlinking for */lib32. + * depflags.pl: + * change linux-kernel-headers into linux-libc-dev. + * readd Recommends: tzdata. + * readd Depends: locales (>= 2.3.11). (requires review) + * readd hack to cope with */lib64. + * hppa.mk: enable nptl. + * i386.mk: + * readd no-tls-direct-seg-refs to generic libc cflags. + * make symlink absolute again. (requires review - might be droppable) + * restore nptl_* options. + * change i686_slibdir to /lib/tls/i686/cmov. + * change xen_slibdir to /lib/tls/i686/nosegneg. + * keep using /etc/ld.so.conf.d/xen.conf. New debian packages use + libc6-xen.conf, and that would require a conffile migration script. + * drop ldconfig from libc6-xen. + * linux.mk: + * readd comments about nptl. + * readd nptl config. + * powerpc.mk: revert change to fix bug #391858 that is a gcc bug + (already addressed in Ubuntu) and not a glibc one. + * sparc.mk: + * readd sparc64b pass. + * readd sparc64v pass. + * disable sparcv9 pass. + * readd sparcv9v pass. + * fix sparc64 headers install. + * dynamically disable testsuite when building on Niagara. + * debian/patches: + * port forward ubuntu dir from 2.4: + * drop local-dynamic-resolvconf.diff. now part of debian. + * readd local-altlocaledir.diff. + * series: update. + + -- Fabio M. Di Nitto Wed, 01 Nov 2006 12:49:55 +0100 + +glibc (2.5-0exp2) UNRELEASED; urgency=low + + * New upstream version 2.5. + + [ Aurelien Jarno ] + * debian/shlibver: Bump up to 2.5-1. + * debian/copyright: update. + * Remove locale/cvs-iso3166.diff (merged upstream). + * Remove localedata/locale-ro_RO.diff (merged upstream). + * Remove arm/cvs-portshead.patch (merged upstream). + * Remove hppa/cvs-portshead.patch (merged upstream). + * Remove hppa/submitted-drop-utimes.diff (merged upstream). + * Remove hurd-i386/cvs-machrules-make.diff (merged upstream). + * Remove mips/cvs-fork.diff (merged upstream). + * Remove mips/cvs-resource.diff (merged upstream). + * Remove powerpc/cvs-procfs.diff (merged upstream). + * Remove any/cvs-argp_h.diff (merged upstream). + * Remove any/cvs-getcwd_c.diff (merged upstream). + * Remove any/cvs-sysctl.diff (merged upstream). + * Remove any/cvs-thread_signals.diff (merged upstream). + * Remove any/cvs-uio_h.diff (merged upstream). + * Remove any/submitted-strfmon.diff (merged upstream). + * Remove all/submitted-uninitialized-byte-LC_CTYPE.diff (merged upstream). + * Remove any/local-ttyname-devfs.diff (devfs is not supported anymore). + * Update arm/local-no-hwcap.diff. + * Update any/local-ldso-disable-hwcap.diff. + * Update all/submitted-new-brf-encoding.diff. + * debhelper.in/libc.docs: remove INTERFACE as it has been removed upstream. + * sysdeps/depflags.pl: don't make libc6 depends on tzdata, as this package + is of priority required. Should help to debconfize tzdata. + * sysdeps/i386.mk: put the static Xen libc flavour in /usr/lib/xen. Closes: + #391372. + * sysdeps/powerpc.mk: install 64-bit headers (actually gnu/stubs-64.h) + directly into /usr/include and provide /usr/include/powerpc64-linux-gnu as + a symlink to /usr/include for compatibility reasons. Closes: #391858. + * sparc/cvs-pause-sigprocmask.diff: new patch (fix sparc64 build) from + upstream CVS. + * kfreebsd/local-scripts.diff: update. + * kfreebsd/local-sys_queue_h.diff: update. + * kfreebsd/local-sysdeps.diff: update to revision 1689 (from glibc-bsd). + * kfreebsd/local-sysdeps-2.4.diff: remove. + * sysdeps/kfreebsd: enable the ports add-on. + * sysdeps/kfreebsd-i386.mk: ditto. + * any/local-stubs_h.diff: new patch to fix a warning in stubs.h. Closes: + #394128. + * alpha/submitted-sigsuspend.diff: new patch (fix the build on alpha) from + the libc-alpha mailing list. + + [ Denis Barbier ] + * Remove localedata/locale-en_NZ.diff (merged upstream). + * Remove localedata/locale-nr_ZA.diff (merged upstream). + * Remove localedata/new-catalan-locales.diff (merged upstream). + * Remove localedata/update-ZA.diff (merged upstream). + * Remove localedata/locale-te_IN.diff (merged upstream). + * Remove locale/iso4217-RON.diff (merged upstream). + * Update localedata/locales_CH.diff + * Update localedata/supported.diff + * Update localedata/locale-hy_AM.diff + * Update localedata/locale-csb_PL.diff + * Update localedata/dz_BT-collation.diff + * Update localedata/locale-ia.diff + * Update localedata/locales-sr.diff + * Update localedata/tailor-iso14651_t1.diff + * Update localedata/fix-lang.diff + * Update localedata/first_weekday.diff + + -- Aurelien Jarno Wed, 11 Oct 2006 16:27:42 +0200 + +glibc (2.4-1) UNRELEASED; urgency=low + + * New upstream version 2.4: + - NPTL is used instead of linuxthreads on alpha. Closes: #325600. + - NPTL being the default thread library when available, only one + version of the thread library is available (either linuxthreads or + NPTL). Closes: #399035. + - .eh_frame has been fixed. Closes: #349688. + - Fix a memory leak in getprotobyname. Closes: #365233. + - Support for MALLOC_PERTURB has been added. Closes: #350579. + - Support for 2.4 kernels has been removed. Closes: #258740. + + [ Clint Adams ] + * Remove all/cvs-manual-memory.diff (merged upstream). + * Remove all/cvs-manual-string.diff (merged upstream). + * Remove any/cvs-divdi3-moddi3.diff (merged upstream). + * Remove any/cvs-errlist.diff (merged upstream). + * Remove any/cvs-siginfo_h.diff (merged upstream). + * Remove any/cvs-regcomp_c.diff (merged upstream). + * Remove any/cvs-tst-setcontext_c.diff (merged upstream). + * Remove any/local-dash.diff (merged upstream). + * Remove any/local-gcc4-elf.diff (merged upstream). + * Remove powerpc/cvs-executable-got.diff (merged upstream). + * Remove sparc/cvs-datastart.diff (merged upstream). + * Remove sparc/cvs-gcc4-inline.diff (merged upstream). + * Remove sparc/local-gcc4-mv8.diff (merged upstream). + * Remove sparc/submitted-socket-weakalias.diff (merged upstream). + * Remove everything to do with nscd_nischeck. + * Remove any/local-linuxthreads-sizefix.diff (not necessary anymore). + * Update hppa/submitted-lt.diff. + * debian/shlibver: Bump up to 2.4-1. + * Update any/local-bashisms.diff: fix invalid test operator (==) + in run-iconv-test.sh + * debian/rules.d/build.mk: don't try to build html documentation. + * debian/sysdeps/hppa.mk: use ports and linuxthreads add-ons + * debian/sysdeps/m68k.mk: use ports and linuxthreads add-ons + * debian/sysdeps/m32r.mk: use ports and linuxthreads add-ons + * debian/sysdeps/mips.mk: use ports add-on + * debian/sysdeps/mipsel.mk: use ports add-on + * debian/sysdeps/arm.mk: use ports add-on + * Build with gcc 4.1 on all architectures but hurd-i386. + * debian/debhelper.in/nscd.init: partially sync nscd initscript + with upstream. + * Remove mips/local-librt.diff. + * debian/rules.d/tarball.mk: no longer run tar with -v. + * Add hppa/cvs-portshead.patch (update hppa code to ports HEAD) + * Add arm/cvs-portshead.patch (update arm code to ports HEAD) + + [ Denis Barbier ] + * Remove locale/complex-collate.diff (merged upstream). + * Remove locale/cvs-{iso4217,iso639}.diff, locale/cvs-localedata.diff + * Remove from any/local-forward-backward-collation.diff a chunk merged + upstream. + * debian/rules.d/tarball.mk: glibc--2.4.tar.bz2 add-on unpacks + into either or glibc--2.4, in which case it is renamed + into . + + [ Michael Banck ] + * debian/sysdeps/hurd.mk: Only use libidn for add-ons. + + [ Aurelien Jarno ] + * Update all/submitted-new-brf-encoding.diff. + * Remove alpha/cvs-gcc4-profile.diff (not needed anymore). + * Update alpha/submitted-xstat.diff. + * Update arm/cvs-gcc4-inline.diff. + * Remove arm/cvs-gcc4.1-raise.diff (merged upstream). + * Remove arm/cvs-float-byteorder.diff (merged upstream). + * Remove arm/cvs-socket-weakalias.diff (merged upstream). + * Update arm/local-ioperm.diff to reflect the new port add-on. + * Update arm/local-no-hwcap.diff to reflect the new port add-on. + * Remove any/cvs-argp_h.diff (merged upstream). + * Remove any/cvs-ctan.diff (merged upstream). + * Remove any/cvs-futimes.diff (merged upstream). + * Remove any/cvs-nfs_h.diff (merged upstream). + * Remove any/cvs-path_log.diff (merged upstream). + * Remove any/cvs-resource_h.diff (merged upstream). + * Remove any/cvs-static-getpid.diff (merged upstream). + * Remove any/cvs-tls-crashfix.diff (merged upstream). + * Add any/cvs-uio_h.diff from upstream to allow inclusion of bits/uio.h from + fcntl.h and prevent multiple inclusions. + * Remove any/local-kernel-features.diff (merged upstream). + * Update any/local-ldso-disable-hwcap.diff. + * Add any/local-linuxthreads-tst-sighandler.diff to disable + tst-sighandler{1,2} tests, which seems to be buggy. + * Update any/local-rtld.diff. + * Update any/local-sysctl.diff to reflect the new port add-on. + * Update any/local-version-sanity.diff. + * Remove any/submitted-eh-frame-terminator.diff (merged upstream). + * Update any/submitted-nis-netgrp.diff. + * Remove i386/local-i486_ldt_support.diff (merged upstream). + * Remove ia64/cvs-gcc41-atomic_h.diff (merged upstream). + * Remove hppa/cvs-linesep.diff (merged upstream). + * Remove hppa/cvs-no-ldbl-128 (merged upstream). + * Replace hppa/cvs-pie-relocs.diff by submitted-nptl-carlos.diff, see + http://lists.parisc-linux.org/pipermail/parisc-linux/2006-July/029549.html. + * Remove hppa/local-gcc-4-profile.diff (not necessary anymore). + * Update hppa/local-inlining.diff to reflect the new port add-on. + * Remove hppa/local-remove-mallocdef.diff (not necessary anymore as + spinlock ldcw fix has been applied). + * Update hppa/submitted-drop-utimes.diff. + * Remove hppa/submitted-fenv-align.diff (merged upstream). + * Remove hppa/submitted-fpu.diff (merged upstream). + * Remove hppa/submitted-iitlbp.diff (merged upstream). + * Remove hppa/submitted-sysdeps.diff (merged upstream). + * Remove hurd-i386/cvs-ioctl-pfinet.diff (merged upstream). + * Remove hurd-i386/cvs-getresuid-dyslexia.diff (merged upstream). + * Remove hurd-i386/cvs-posix-opts.diff (merged upstream). + * Update hurd-i386/submitted-sysvshm.diff. + * Remove kfreebsd/local-nscd_no_mremap.diff (not necessary anymore). + * Update kfreebsd/local-scripts.diff. + * Add kfreebsd/local-ftw.diff. + * Add kfreebsd/local-sysdeps-2.4.diff. + * Add kfreebsd/local-memusage_no_mremap.diff. + * Remove m32r/cvs-elf-m32r_rel32.diff (merged upstream). + * Update m68k/local-compat.diff. + * Update m68k/local-mathinline_h.diff to reflect the new port add-on. + * Update m68k/local-fpic.diff. + * Update m68k/local-reloc.diff to reflect the new port add-on. + * Update m68k/submitted-gcc34-seccomment.diff. + * Add mips/cvs-fork.diff (fix the path to i386/fork.c) from CVS. + * Add mips/cvs-resource.diff (fix a typo in bits/resource.h) from CVS. + * Remove mips/cvs-gcc4-inline.diff (merged upstream). + * Remove mips/cvs-gcc4-sysdeps.diff (merged upstream). + * Update mips/submitted-msq.diff to reflect the new port add-on. + * Remove powerpc/cvs-gcc41-initfini.diff (merged upstream). + * Update any/local-libgcc-compat-{all,others}.diff and split them into + any/local-libgcc-compat-{main,ports}.diff. Move mips/libgcc-compat.c to + mips/mips32/libgcc-compat.c as it is only needed for the o32 ABI, and not + needed for n32 and n64 ABIs. + * Add sparc/local-fork.diff (use fork.c instead of fork.S). + * Add any/local-__thread.diff (make glibc buildable without __thread support) + from Michael Banck. + * debian/script.in/kernelcheck.sh: set the minimum kernel version to 2.6.0, + except on m68k where it is set to 2.4.1. + * debian/sysdeps/i386.mk: install the xen flavour in /lib/i686/nosegneg and + create /etc/ld.so.conf.d/libc6-xen.conf which uses the new hwcap feature. + Closes: #363442. + * debian/FAQ: Remove LD_ASSUME_KERNEL workaround, as linuxthreads versions + of the glibc are not built anymore. + + [ Jeff Bailey ] + + * debian/control.in/libc: Move tzdata dependancy to ... + * debian/sysdeps/depflags.mk: ... here. + + * debian/sysdeps/powerpc.mk: Include biarch headers in libc6-dev-ppc64 + + * debian/patches/any/local-dynamic-resolvconf.diff: New file to + check for updated resolv.conf before a nameserver call. (Closes: + #272265). + * debian/patches/series: Use it. + + -- Clint Adams Sun, 28 May 2006 03:28:14 +0200 + +glibc (2.3.6.ds1-12) UNRELEASED; urgency=low + + [ Pierre Habouzit ] + * patches/any/cvs-sunrpc-xdrmem_setpos.diff: fix a pointer-to-cast problem + in sunrpc, backport from glibc-2.5. Closes: #389084. + * patches/any/cvs-getent-wrong-struct-size.diff: fix a bad struct size in + nss/getent.c, backport from glibc-2.5. Closes: #347358. + * patches/any/local-sysctl.diff: sysctl is back for good it seems, remove + the link warning from the patch. Closes: #410816. + + [ Aurelien Jarno ] + * debian/control.in/opt: fix a typo: Ezla -> Ezra. Closes: #410839. + + -- Aurelien Jarno Tue, 13 Feb 2007 23:43:39 +0100 + +glibc (2.3.6.ds1-11) unstable; urgency=low + + * patches/kfreebsd/local-sysdeps.diff: update to revision 1886 (from + glibc-bsd). + * patches/any/cvs-itoa-c.diff: new patch from CVS (fix sprintf %0lld when + argument equals to 0). Closes: bug#292523. + * patches/all/local-pthread-manpages.diff: fix pthread manpages. Closes: + bug#220719. + * debhelper.in/libc-otherbuild.postinst: fix handling of + /etc/ld.so.hwcappkgs. Closes: bug#409374. + * debhelper.in/libc.postinst: fix code adding /etc/ld.so.conf.d support to + /etc/ld.so.conf. Closes: bug#409516. + + -- Aurelien Jarno Sat, 3 Feb 2007 20:13:29 +0100 + +glibc (2.3.6.ds1-10) unstable; urgency=low + + * sysdeps/kfreebsd.mk: Link all machine*/ directories to support + new bi-arch headers. + * Add bi-arch support on kfreebsd-amd64: + - debian/sysdeps/kfreebsd-amd64.mk: New pass for 32-bit glibc + - debian/control.in/main: Add build-depends on libc0.1-dev-i386 + - debian/control.in/kfreebsd-i386: add libc0.1-dev-i386 and + libc0.1-i386 packages + * patches/kfreebsd/local-sysdeps.diff: update to revision 1853 (from + glibc-bsd). + * debian/control.in/libc: downgrade priority of libc-dev to optional + from standard to match overrides. + * debian/patches/hppa/cvs-clone.diff: new patch by Helge Deller + inspired from upstream CVS code (fix LTP clone04 and + clone06 test). Closes: #405411. + * debian/patches/any/cvs-zdump-64-bit.diff: new patch from CVS to fix zdump + on 64-bit architectures. Closes: #402776. + * debian/quitlrc: new file. + * debian/rules.d/quilt.mk: use debian/quiltrc instead of default ~/.quiltrc. + Closes: #406136. + + -- Aurelien Jarno Mon, 8 Jan 2007 22:29:37 +0100 + +glibc (2.3.6.ds1-9) unstable; urgency=low + + [ Aurelien Jarno ] + * patches/kfreebsd/local-sysdeps.diff: update to revision 1775 (from + glibc-bsd). + * debian/po/eu.po: new file, thanks to Piarres Beobide. Closes: #398984. + * debian/wrapper/objcopy: remove useless .debug_loc (patch from Daniel + Jacobowitz). Closes: #399217. + * debian/po/de.po: Fix German translation. Closes: #372817. + + [ Michael Banck ] + * patches/hurd-i386/submitted-futimes.diff: Moved to ... + * patches/hurd-i386/cvs-futimes.diff: ... here, updated with the + version committed upstream by Roland McGrath. + + -- Aurelien Jarno Thu, 7 Dec 2006 11:27:42 +0100 + +glibc (2.3.6.ds1-8) unstable; urgency=high + + * any/local-iconv-fix-trampoline.diff: new patch (fix iconvconfig segfault + when run under exec-shield, PaX or similar) from hlfs. Closes: #397020. + * debian/po/ro.po: new file, thanks to Stan Ioan-Eugen. Closes: #395348. + * debhelper.in/locales.prerm; debhelper.in/locales.prerm, + debhelper.in/locales-all.prerm: fixed bad interactions between locales + and locales-all. Closes: #396354. + * patches/kfreebsd/local-sysdeps.diff: update to revision 1703 (from + glibc-bsd). + + -- Aurelien Jarno Sat, 4 Nov 2006 23:36:19 +0100 + +glibc (2.3.6.ds1-7) unstable; urgency=low + + [ Aurelien Jarno ] + * New any/local-no-pagesize.diff (remove the usage of PAGE_SIZE) by + Steve Langasek. Closes: #394385. + + -- Aurelien Jarno Sat, 21 Oct 2006 22:41:39 +0200 + +glibc (2.3.6.ds1-6) unstable; urgency=low + + [ Aurelien Jarno ] + * Improve the heuristic used to detect other copy of the C library. Closes: + #390950. + * Add m68k/local-pthread_lock.diff (fix deadlock with pthread_spinlock) by + Roman Zippel. Closes: #385917. + * Build-conflicts with buggy gcc-4.1 (= 4.1.1-14). Closes: #391485. + + -- Aurelien Jarno Sat, 7 Oct 2006 23:54:49 +0200 + +glibc (2.3.6.ds1-5) unstable; urgency=low + + [ Aurelien Jarno ] + * debian/local/manpages/ldconfig.8: Update the manpage. Closes: #325921. + * debian/local/manpages/ld.so.8: Update the manpage. Closes: #171145, + #357676, #280027. + * rules.d/debhelper.mk: don't make ld.so.8.gz or ld.so.conf executable. + * debian/FAQ: specify that LD_ASSUME_KERNEL does not work on amd64. + Closes: #386924. + * patches/any/cvs-sqrt.diff: New patch from upstream to fix sqrt computation + for negative imaginary number. Closes: #388852. + + [ Michael Banck ] + * Add hurd-i386/cvs-getsid.diff (fix getsid(0) on the Hurd) by + Samuel Thibault (patch from glibc-2.4). + * Add hurd-i386/submitted-futimes.diff (fix touch on the Hurd) by + Thomas Schwinge and Samuel Thibault. Closes: #388785. + + [ Denis Barbier ] + * Add sr_ME and sr_RS locales, and keep sr_CS for backward compatibility. + * First weekday is Sunday in Brazil. Closes: #385859 + Thanks Gunther and Felipe Augusto van de Wiel. + + -- Aurelien Jarno Sun, 1 Oct 2006 18:48:27 +0200 + +glibc (2.3.6.ds1-4) unstable; urgency=low + + * debian/control.in/opt: add a new line at the end of the file. (Closes: + #384375). + * debian/rules.d/control.mk: add a check to make sur that all files in + debian/control.in have a new line at the end. + + -- Aurelien Jarno Thu, 24 Aug 2006 00:21:25 +0200 + +glibc (2.3.6.ds1-3) unstable; urgency=low + + * patches/any/cvs-sysctl.diff: patch from upstream to fix the sysctl() + problem for NPTL. + * patches/any/local-sysctl.diff: remove the NPTL fix from this patch, apply + the same kind of fix for linuxthreads than for NPTL. (Closes: #383976). + * patches/any/local-sysctl.diff: fix for arm. + * patches/any/local-bashisms.diff: fix bashisms in the testsuite. + * debian/control.in/{i386,powerpc,ppc64,s390x,sparc64}: change the bi-arch + package priority to optional (but keep libc6-i386 on amd64 to standard). + (Closes: #344253). + * debian/control.in/opt: Removed the comment about the IBM's JDK in the + descriptions of the optimized packages, as an NPTL version is also present + in the main libc. + * debian/rules.d/build.mk: force the locale directory to /usr/lib/locale. + This way the 32-bit libc6 on amd64 is able use the locales correctly (it + was already done for other bi-arch architectures). (Closes: #379959). + + -- Aurelien Jarno Wed, 23 Aug 2006 00:38:22 +0200 + +glibc (2.3.6.ds1-2) unstable; urgency=low + + [ Aurelien Jarno ] + * rules.d/build.mk: removed the call to texi2html. (Closes: #383276). + * New debian/patches/any/cvs-ctermid.diff from upstream to fix a segfault in + ctermid(NULL). Thanks Denis for the hint. (Closes: #380504, #383362). + * New debian/patches/localedata/reverted-for-etch.diff: revert a few + locales changes done in 2.3.6.ds1-1 and refused by the release managers: + - locales/vi_VN: Various fixes + - locales/ru_RU: Use U2002 for thousands_sep and mon_throusands_sep. + + [ Denis Barbier ] + * debian/patches/localedata/cvs-localedata.diff: A new test target + tst-strfmon1 was previously added into localedata/Makefile, + so add localedata/tst-strfmon1.c to really perform this test. + + -- Aurelien Jarno Thu, 17 Aug 2006 00:32:25 +0200 + +glibc (2.3.6.ds1-1) unstable; urgency=low + + [ Denis Barbier ] + * New all/submitted-uninitialized-byte-LC_CTYPE.diff patch to fix + uninitialized bytes or misaligned words in locale files. + * debian/debhelper.in/locales-all.postinst: Make localedef silent, and + fix an error, this script could not be run more than once. + * debian/debhelper.in/locales-all.prerm: New file, to remove + /usr/lib/locale/locale-archive. Thanks Lars Wirzenius. + (Closes: #382136) + * debian/debhelper.in/locales.postinst: Pass --no-checks to update-locale + to not break installation of this package even if non working locales + are selected. Thanks Robert Millan. (Closes: #365628) + * debian/patches/locale/cvs-iso4217.diff: Update to CVS 2006-08-12. + * debian/patches/localedata/cvs-localedata.diff: Update to CVS 2006-08-12 + Among other changes: + * New locale files: as_IN, ca_AD, csb_PL, el_CY, fr_AD, it_AD, nr_ZA, + or_IN, pa_PK and tr_CY. + * charmaps/MIK: New file. + * Sync bg_BG bs_BA es_MX ru_RU tg_TJ tt_RU with latest iso-4217.def + * Add transliateration support to LC_CTYPE for most locales. + * Fix date fields for several *_IN locales. + * locales/{*_ZA,ro_RO,vi_VN}: Various fixes + * locales/de_DE: Fix date_fmt. + * locales/hu_HU: Better month name abbreviations. + * locales/pl_PL: Don't ignore U0020 in collation. + * locales/ru_RU: Use U2002 for thousands_sep and mon_throusands_sep. + * locales/es_UY: Change currency_symbol. Closes: #378151 + * locales/de_CH: Change thousand separator to '. + * The following patches have been merged into localedata/cvs-localedata.diff + and are dropped: + locale/iso4217-RON.diff localedata/locale-ro_RO.diff + localedata/new-catalan-locales.diff localedata/locale-te_IN.diff + localedata/locale-nr_ZA.diff localedata/update-ZA.diff + + [ Aurelien Jarno ] + * sysdeps/{powerpc,s390,ia64}.mk: make the NPTL version buildable on 2.4 + kernels. + * New any/local-sysctl.diff patch to remove the annoying warning messages + that appear with 2.6.18+ kernels, and to warn users to not use sysctl(). + * debian/debhelper.in/libc.postinst: update list of optimized glibc + packages. Thanks Petr Salinger. (Closes: #383168). + * New any/cvs-static-getpid.diff patch from upstream to fix getpid() in + statically linked programs on some architectures. (Closes: #367656). + + -- Aurelien Jarno Tue, 15 Aug 2006 23:01:43 +0200 + +glibc (2.3.6-19) unstable; urgency=low + + [ Michael Banck ] + * debhelper.in/libc-udeb.install.hurd-i386: New file; libpthread is + not part of glibc on the Hurd. + + [ Aurelien Jarno ] + * Ship librt in the libc udeb (closes: bug#381881). + + -- Aurelien Jarno Tue, 8 Aug 2006 18:18:48 +0200 + +glibc (2.3.6-18) unstable; urgency=medium + + (urgency set to medium as it fixes a FTBFS) + + [ Aurelien Jarno ] + * Update ia64/cvs-gcc41-atomic_h.diff again (fix build failure with gcc-4.1, + nptl part) from upstream. + + -- Aurelien Jarno Tue, 1 Aug 2006 16:59:33 +0200 + +glibc (2.3.6-17) unstable; urgency=medium + + (urgency set to medium as it fixes a FTBFS) + + [ Aurelien Jarno ] + * Update ia64/cvs-gcc41-atomic_h.diff (fix build failure with gcc-4.1) from + upstream. + + [ Michael Banck ] + * debian/sysdeps/hurd.mk: Disable RUN_TESTSUITE. + + -- Aurelien Jarno Sun, 30 Jul 2006 21:25:32 +0200 + +glibc (2.3.6-16) UNRELEASED; urgency=low + + (urgency set to medium as it fixes a FTBFS) + + [ Aurelien Jarno ] + * Add arm/cvs-gcc4.1-raise.diff (fix build failure with gcc-4.1) from + upstream. + * Add ia64/cvs-gcc41-atomic_h.diff (fix build failure with gcc-4.1) from + upstream. + * Build with gcc 4.1 on all architectures but hurd-i386. + * debian/sysdeps/s390.mk: switch s390x to nptl. + * debian/rules.d/build.mk: use ld.so libc.so instead of libc.so to + determine if the host CPU is able to run the testsuite. + * debian/sysdeps/kfreebsd.mk: also use the nfs/ directory from kernel + headers. + * debian/sysdeps/kfreebsd.mk: also use the nfs/ directory from kernel + headers. + * patches/kfreebsd/local-sysdeps.diff: update to revision 1631 (from glibc-bsd). + * debian/local/manpages/iconv.1: fixed the description of the --silent + option. (Closes: #375741) + * debian/local/manpages/iconv.1: fixed the use of the TH keyword. (Closes: + #372510) + * debian/locales-all.README.Debian: File removed, it is useless now. + (Closes: #378191) + * Update Russian debconf translation, by Yuri Kozlov. (Closes: #379395) + * debian/debhelper.in/libc.postinst: add /etc/ld.so.conf.d/ support. + * Drop any/local-ldconfig-multiarch.diff, use /etc/ld.so.conf.d/ to + configure multiarch libraries. + * Update m68k/local-mathinline_h.diff (fix bits/mathinline.h), by Roger Leigh. + (Closes: #340871) + + [ Denis Barbier ] + * debian/control.in/main: also make locales Conflicts: belocs-locales-bin. + * debian/debhelper.in/locales.config: some programs keep modifying + /etc/environment to store locale variables, so read /etc/environment + even when upgrading new versions. Of course, /etc/default/locale has + still a higher precedence over /etc/environment. (Closes: #363644) + * Add new Lithuanian debconf translation, by Gintautas Miliauskas. + (Closes: #374365) + * Update Brazilian Portuguese debconf translation, by Felipe Augusto + van de Wiel. (Closes: #375451) + * debian/debhelper.in/libc.postinst: Call iconvconfig to generate + /usr/lib/gconv/gconv-modules.cache. (Closes: #376811) + * debian/debhelper.in/libc.postrm: Remove this cache file. + + -- Aurelien Jarno Thu, 8 Jun 2006 08:03:49 +0200 + +glibc (2.3.6-15) unstable; urgency=low + + * debian/rules.d/build.mk: generate a test log file even if the testsuite + is disabled, too make debhelper 5 happy. + + -- Aurelien Jarno Thu, 8 Jun 2006 08:02:47 +0200 + +glibc (2.3.6-14) unstable; urgency=low + + [ Aurelien Jarno ] + * debian/debhelper.in/nscd: explicitely list the tables to invalidate. + (Closes: #370124) + * debian/debhelper.in/nscd: create /var/run/nscd if it does not already + exist. (Closes: #370122) + * Update m68k/local-mathinline_h.diff (fix bits/mathinline.h), by Roger Leigh. + Enable it. (Closes: #340871) + * debian/debhelper.in/libc.preinst: also check for other copies of the libc in + /lib32 and /lib64. + * debian/debhelper.in/libc.preinst, debian/rules.d/debhelper.mk: only use + the default system linker when searching for other copies of the libc. + * debian/sysdeps/i386.mk: make /lib/i386-linux-gnu and /usr/lib/i386-linux-gnu + symlinks relative. + * debhelper.in/libnss-dns-udeb.install, debhelper.in/libnss-files-udeb.install: + fix the installation path. (Closes: #370523) + * patches/kfreebsd/local-sysdeps.diff: update to revision 1583 (from glibc-bsd) + to fix the build with gcc-4.1. + * patches/m32r/local-ports-m32r.diff: remove libc_cv_gcc_unwind_find=yes + from m32r/configure by Kazuhiro Inaoka. (Closes: #371052) + * rules.d/debhelper.mk: don't install librpcsvc.a when cross-compiling. + (Closes: #369657) + * debian/compat, debian/control.in/main: switch to debhelper 5.0. + + [ Denis Barbier ] + * debian/patches/localedata/tailor-iso14651_t1.diff: Fix several collation + rules, which could cause errors in regular expressions with character + ranges, in particular with et_EE locale. (Closes: #362514) + * debian/patches/localedata/locale-csb_PL.diff + * debian/patches/localedata/locale-ro_RO.diff + * debian/patches/localedata/locale-se_NO.diff: Apply similar fixes. + * debian/main/control.in: make locales Conflicts: belocs-locales-data. + + -- Aurelien Jarno Wed, 7 Jun 2006 23:16:58 +0200 + +glibc (2.3.6-13) unstable; urgency=low + + * debian/patches/alpha/local-gcc4.1.diff: fix a small typo. sigh. + * debian/control.in/main: build-depends on libc6-dev-s390x on s390. + * Remove any/local-libgcc-static.diff. (Closes: #369636, #369641) + + -- Aurelien Jarno Wed, 31 May 2006 07:20:14 +0200 + +glibc (2.3.6-12) unstable; urgency=low + + * Don't do a udeb pass, it is still too buggy. (Closes: #369492) + * debian/control.in/main: build-depends on libc6-dev-sparc64 on sparc. + * Add patches/alpha/local-gcc4.1.diff (fix build with gcc-4.1) from + Falk Hueffner. + * patches/kfreebsd/local-sysdeps.diff: update to revision 1571 (from + glibc-bsd). + + -- Aurelien Jarno Tue, 30 May 2006 22:35:35 +0200 + +glibc (2.3.6-11) unstable; urgency=low + + [ Aurelien Jarno ] + * debian/rules/build.mk: don't remove ld.so from udeb packages. + * debian/rules: move udeb_add-ons to debian/sysdeps/{kfreebsd,linux}.mk. + * M32R support: (Closes: #366962) + - debian/rules.d/control.mk: add m32r. + - Add debian/sysdeps/m32r.mk. + - Add debian/patches/any/cvs-futimes.diff (use fnctl64 if fnctl is no + available). + - Add debian/patch/any/local-kernel-features.diff (fix the include path + for kernel-features.h) so that it could be used from other files. + - Add debian/patches/any/local-libgcc-static.diff (link with libgcc_s). + - Add debian/patches/m32r/local-ports-m32r.diff (m32r support). + - Add debian/patches/m32r/cvs-elf-m32r_rel32.diff (Add R_M32R_REL32 to + elf/elf.h). + * debian/local/manpages/localedef.1: fix a typo. (Closes: #310477) + * debian/local/manpages/iconv.1: fix the indentation (Closes: #316148) + * debian/local/manpages/iconv.1, debian/local/manpages/localedef.1: change + sarge into etch. + * debian/sysdeps/kfreebsd.mk: build the udeb package with -Os on + kfreebsd-i386 and kfreebsd-amd64. + * debian/sysdeps/*.mk: build the udeb with -Os, except on m68k and s390. + * debian/sysdeps/hppa.mk: build the udeb with gcc 4.1. + mipsel, powerpc and sparc. + * debian/sysdeps/arm.mk: set udeb_MIN_KERNEL_SUPPORTED to 2.4.1, as the + arm build daemons are still running a 2.4 kernel. + * debian/sysdeps/sparc.mk: set udeb_MIN_KERNEL_SUPPORTED to 2.4.1, as d-i + still needs a 2.4 kernel. + * patches/kfreebsd/local-sysdeps.diff: update to revision 1577 (from + glibc-bsd). + * Add debian/patches/powerpc/cvs-gcc41-initfini.diff (fix build with gcc 4.1 + on powerpc) from upstream CVS. + * debian/sysdeps/i386.mk: add a symlink (/usr)/lib/i386-linux-gnu -> + (/usr)/lib/i486-linux-gnu. + * Remove patches/i386/local-sse-oldkernel.diff (we don't support 2.2 kernels + anymore). + * Merge debian/local/etc_init.d/nscd and debian/debhelper.in/nscd.init. + (Closes: #368587) + * Remove debian/local/etc_init.d/nscd. + + [ Denis Barbier ] + * Add patches/all/submitted-new-brf-encoding.diff: Add new BRF encoding + (ASCII Braille), submitted upstream by Samuel Thibault. + * Add patches/localedata/locale-zh_TW.diff: Remove from + dates. Thanks Dan Jacobson (Closes: #352600) + + [ Clint Adams ] + * debian/debhelper.in/libc.preinst: use POSIX syntax for kill. + * debian/control.in/main: bump to Standards-Version 3.7.2. + + -- Aurelien Jarno Tue, 30 May 2006 02:28:33 +0200 + +glibc (2.3.6-10) unstable; urgency=low + + [ Aurelien Jarno ] + * debian/debhelper.in/libc.preinst: use the original path if readlink -f + fails to canonicalize the path. (Closes: #368116) + * Add patches/arm/local-softfloat.diff (support for arm softfloat), and + enable on arm-softfloat only, as it breaks other architectures. (Closes: + #358772) + * debian/rules.d/control.mk: Add arm-softfloat to the architectures list. + * Do a separate pass for the udeb package, so that it could use different + build options. + * Set the minimum kernel to 2.6.1 for the udeb package, except for i386, + m68k, mips, mipsel, powerpc and s390. + * Enable the locales-all package. (Closes: #308020) + * debian/sysdeps/i386.mk: build the glibc with --without-__thread again on + i386 (Closes: #368022, #368326). + * debhelper.in/libc.preinst, debhelper.in/libc-otherbuild.postinst, + debhelper.in/libc.postinst, debhelper.in/libc-otherbuild.preinst: use + /bin/sh instead of /bin/bash. (Closes: #267594) + * patches/kfreebsd/local-sysdeps.diff: update to revision 1571 (from + glibc-bsd). + + -- Aurelien Jarno Sun, 21 May 2006 22:36:27 +0200 + +glibc (2.3.6-9) unstable; urgency=low + + * Don't run make install with -j, as it is not SMP safe. + + -- Aurelien Jarno Thu, 18 May 2006 17:54:39 +0000 + +glibc (2.3.6-8) unstable; urgency=low + + [ Aurelien Jarno ] + * Disable m68k/local-mathinline_h.diff, it breaks the build of the glibc on + m68k. + * Add all/local-pt_BR.diff (fix a small typo in the Brazilian Portuguese + translation) by Guilherme de S. Pastore. (Closes: #319422) + * Add hurd-i386/local-mlock.diff (fix mlock on Hurd/Mach), by Samuel + Thibault. (Closes: #349204) + * sysdeps/i386.mk: build glibc with --with-__thread on i386. + * debian/local/manpages: s/woody/etch/g. (Closes: #364198) + * sysdeps/depflags.pl: bumped the versioned conflicts with initrd-tools + to 0.1.84.1, as older version use LD_ASSUME_KERNEL=2.4. (Closes: #365647) + * Follow symlinks while checking for other copy of the C library. + (Closes: #365838) + * Invalidate nscd cache when calling /etc/init.d/nscd restart. + (Closes: #365676, #365677) + * /usr/sbin/tzconfig: set umask to 022. (Closes: #367145) + * debian/main/control.in: make locales Replaces: lliurex-belocs-locales-data. + (Closes: #365651) + * Move the NJOBS part to debian/sysdeps/(system) to debian/rules. + * debian/debhelper.in/libc-otherbuild.postinst: fixed parsing of + /etc/ld.so.hwcappkgs. (Closes: #364666) + + [ Denis Barbier ] + * Fix location of locales/NEWS.Debian. Thanks Matthijs Mohlmann. + (Closes: #362763) + * locales.postinst: Do not abort if the current locale is not generated. + * locales.config: Fix shell scripting when "All locales" is selected along + with other choices, Thanks Olivier Trichet. (Closes: #364251) + * update-locale: When checking for invalid locale settings, do not mess up + with current environment settings. + * Remove sem_*.3 manual pages from glibc-doc, these manual pages are updated + and maintained in the manpages-dev package. (Closes: #365547) + + [ Michael Banck ] + * Add hurd-i386/cvs-posix-opts.diff (Define many missing options, most + notably _POSIX_THREAD_SAFE_FUNCTIONS) by Roland McGrath (patch from + HEAD). + + -- Aurelien Jarno Thu, 18 May 2006 15:34:08 +0000 + +glibc (2.3.6-7) unstable; urgency=medium + + [ Aurelien Jarno ] + * Urgency set to medium because this version fixes and RC bug in testing. + * Optimized libraries should actually be cross-compiled as we don't know the + CPU that will be used. + * Allow the glibc to be cross-compiled for Linux and kFreeBSD. (Closes: + #358771) + * Bumped the minimum kernel to 2.4.1 instead of 2.4.0 as there are some + important new features in this version. Thanks to Petr Salinger for + noticing me. + * Add m68k/local-mathinline_h.diff (fix bits/mathinline.h), by Roger Leigh. + (Closes: #340871) + * Add beginning and end timestamps to both the build logs and the + testsuite logs. (Closes: #155690) + * debian/sysdeps/sparc.mk: build sparcv9b optimized libraries with + -mtune=ultrasparc3. + * debian/sysdeps/kfreebsd/local-sysdeps.diff: update from the latest SVN. + * debian/patches/series: Fix the patchlevel for local-i486_ldt_support.diff + (Closes: #226716) + * Fix a typo in the previous changelog entry (s/not/now/). (Closes: #362460) + + [ Denis Barbier ] + * Remove ldd calls from libc.preinst. + * Do no more transfer variables from /etc/environment to /etc/default/locale + in locales.postinst, but instead add /usr/share/doc/locales/NEWS.Debian + to explain that /etc/environment needs to be cleaned up. + (Closes: #361048) + * Create a new locales-all package with all supported locales precompiled, + but keep it disabled for now. + Both locales and locales-all packages provide a virtual generated-locales + package. Packages which currently depends on locales should instead + depend on 'locales | generated-locales'. + * Add a new ca_ES@valencia locale, requested by Robert Millan (Closes: #361972) + + -- Aurelien Jarno Fri, 14 Apr 2006 13:48:30 +0200 + +glibc (2.3.6-6) unstable; urgency=low + + [ Aurelien Jarno ] + * Remove the timezone database from the libc6 package. It is now provided + by a separate package called tzdata. + * Put each test log file in the corresponding package instead of putting all + of them in libc6. + * Remove sparc/local-sparc64-fixups.diff as /lib64 and /usr/lib64 are now a + default search path on 32/64-bit architectures. + * Switch minimum kernel to at least 2.4.0 on all arches but m68k, and change + kernelcheck.sh accordingly. Affected architectures: + - alpha: from 2.2.0 to 2.4.0 + - arm: from 2.2.0 to 2.4.0 (but 2.4.0 was checked at installed time) + - i386: from 2.2.0 to 2.4.0 + - powerpc: from 2.2.0 to 2.4.0 + - s390: from 2.2.10 to 2.4.0 + - sparc: from 2.2.0 to 2.4.0 + (Closes: #174270, #220992) + * Add i386/local-i486_ldt_support.diff (add ldt support and thus TLS support + on i486 machines). Thanks to Petr Salinger for the hint. (Closes: #226716) + * Bump shlib to (>= 2.3.6-6) on i386. + * debian/debhelper.in/libc-alt.install: Add gconv-modules to the bi-arch + packages. (Closes: #361642) + * /etc/ld.so.nohwcap is now supported on non-Linux architectures. Drop the + "Linux" check from libc-otherbuild.preinst. + * Build a libc6-xen flavour on i386. + * Fix a typo in the description of the libc6-sparcv9 and libc6-sparcv9b + packages. + * local/usr_sbin/tzconfig: + - Put a copy of the current timezone into /etc/localtime instead of a + symlink. (Closes: #346342) + - Handle the case where /etc/localtime does not exists. (Closes: + #360383). + * local/manpages/tzconfig.8: Update the manpage accordingly. + * script.in/kernelcheck.sh: Also take in account 64-bit mips(el) kernels. + * Add GNU/kFreeBSD patches, using conditional patching until they get + accepted upstream. + * Correctly replace DEB_HOST_ARCH by its value in libc6.preinst. Thanks to + Denis for noticing me. + + [ Denis Barbier ] + * debian/debhelper.in/locales.config: /etc/locale.gen was not generated at + initial installation. (Closes: #357523) + * update-locale: Fix buggy sanity check between LANGUAGE and LANG. + (Closes: #361091) + * update-locale: Drop the --remove flag, it is useless. + * update-locale: Fix the --locale-file flag. + * Add new Galician debconf translation, by Jacobo Tarrio. (Closes: #361101) + * Use new features of po-debconf 1.0 to remove unneeded strings from PO + files. + * Fix day, abmon and mon fields for wo_SN locale. (Closes: #361338) + + [ Michael Banck ] + * Add hurd-machrules-make.diff (fixes build problems with make-3.81 for + Mach interface generation rules) by Roland McGrath (patch from HEAD). + * Add hurd-sysvshm.diff (implements SysV shared memory for GNU/Hurd) + by Marcus Brinkmann. + + -- Aurelien Jarno Mon, 10 Apr 2006 20:19:55 +0200 + +glibc (2.3.6-5) unstable; urgency=low + + [ Denis Barbier ] + * Add am_pm formatting information to en_NZ. (Closes: #356328) + * Add interlingua locale. (Closes: #224756) + * Move locale variables from /etc/environment into a dedicated + /etc/default/locale file. (Closes: #214898, #349503) + * Add a new /usr/sbin/update-locale program to handle this new file. + + [ Aurelien Jarno ] + * Fix ldconfig multiarch patch for reiserfs filesystems. + * Make ldconfig look into /lib32 and /usr/lib32 on amd64. Add /lib32 -> + /emul/ia32-linux/lib and /usr/lib32 -> /emul/ia32-linux/usr/lib links. + * Remove glibc235-gcc4-ppc-procfs.diff from debian/patches/series. + (Closes: #360126) + * Add siginfo_h.diff (fixes a typo in ILL_ILLOPN definition), backported + from upstream. (Closes: #358041) + * Replace getcwd_ia64.diff by getcwd_c.diff (fix getcwd on platforms where + PAGE_SIZE >> PATH_MAX), backported from upstream. (Closes: #355109) + * debian/control: drop alternative build-depends on ia32-libs-dev as this + package does not exist anymore. + + -- Denis Barbier Tue, 4 Apr 2006 18:07:21 +0200 + +glibc (2.3.6-4) unstable; urgency=low + + [ Aurelien Jarno ] + * Set configure_build to the same value as configure_host for sparc + optimized libraries (as on i386). This way they will be tested. + * If the CPU has biarch support, run tests for cross-compiled libraries. + * Remove ld.so from optimized libraries as it is not used. + * Add regcomp_c.diff (Call __libc_lock_init after init_dfa) from upstream + (Ulrich Drepper). This make possible to run the testsuite again on hppa. + * Enable the testsuite on hppa. + * Add tst-setcontext_c.diff (fix the arguments passed to setcontext during + test) from upstream. + * Create a link /usr/lib32 -> /emul/ia32-linux/usr/lib on amd64. + * Add argp_h.diff fixes (Remove __NTH for __argp_usage inline function) + by Ulrich Drepper (patch from HEAD). (Closes: #355264) + * Add getcwd_ia64.diff (Remove the assertion so that the behaviour is the + same on all platforms, including ia64). This is a temporary fix to bug + #355109, until the upstream takes a decision. + * debian/sysdeps/kfreebsd-amd64.mk: + - s/libc6/libc0.1/g + - Change rtlddir from /lib64 to /lib + + [ Denis Barbier ] + * locales.config: If $DEBCONF_IS_A_REGISTRY is set to a non-empty value, + the content of /etc/locale.gen does not override debconf values. + * Add strfmon.diff: the negative sign is not printed by strfmon when + current locale defines sign_posn == 4 (as in de_CH) and format + argument contains the ! modifier. + * Fix forward-backward-collation.diff: the change in strcoll_l.c has to + be applied at several places. (Closes: #357390) + * Update timezone data files to tzdata2006b (no data change, only comments). + * Fix resource_h.diff: there was a typo for mips: + s/_RLIMIT_RTPRIO/__RLIMIT_RTPRIO/ (Closes: #357419) + + -- Denis Barbier Sat, 18 Mar 2006 10:26:45 +0100 + +glibc (2.3.6-3) unstable; urgency=low + + [ Aurelien Jarno] + * Use a shell function instead of ifneq when testing a variable depending on + $(curpass), otherwise it is only evaluated at the first pass. + * Add support for the ppc64 architecture. (Closes: #301438). + * Use the new slibdir, libdir, rtlddir variables to build the various + flavours of the libc. Put them directly in the final directory, and + remove the corresponding tweaks done after the make install phase. + * Install the 32-bit libraries in /emul/ia32-linux(/usr)/lib on amd64. + * Only create the multiarch directories and the symlinks in /lib/ldconfig + for the main pass. Otherwise alternate libraries would conflict with the + main one when using multiarch. + * Fix the build-dependencies for kfreebsd-amd64. + * Add sysdeps/kfreebsd-amd64.mk and add kfreebsd-amd64 to + rules.d/control.mk. + * Make libc6-i386-dev conflicts with all versions of ia32-libs-dev. As it + won't be built anymore on amd64, this will automatically remove it during + the upgrade. + + [ Clint Adams ] + * Get rid of -o as a binary operator to [ in tzconfig and postinst. + + [ Denis Barbier ] + * Update localedata/locales/ro_RO. Thanks Eddy Petrişor. (Closes: #347173) + * Bump LOCALES_DEP_VER to 2.3.6-2. All locales can be compiled with + localedef from 2.3.6-2 and 2.3.6-3. (Closes: #352620) + * Updated Italian debconf translation, by Luca Monducci. + + -- Aurelien Jarno Wed, 1 Mar 2006 17:11:36 +0100 + +glibc (2.3.6-2) unstable; urgency=low + + [ Denis Barbier ] + * Modify debver2localesdep.pl, locales-depver and control files to provide + a smooth upgrade in unstable when locales require changes in localedef. + This is the first part for solving #352620, the proper dependency for + locales will be set by the next upload. + * debian/control: Clean up. Remove versioned dependencies on gettext, + debianutils, tar, texinfo; these versions were already in oldstable. + Drop references to localebin, wg15-locale, i18ndata, locale-ja, locale-ko, + locale-vi, locale-zh, libc6-doc, glibcdoc and libc6 (<< 2.1-4). + * debian/control: Split Build-Depends on several lines for readability + purpose. + * Add RON to locale/iso-4217.def and bump LOCALES_COMPAT_VER to 2.3.6-2. + * Fix thousand separator for de_CH, and let other Swiss locales copy + de_CH for LC_NUMERIC and LC_MONETARY sections. (Closes: #345481) + * Apply a patch from Fedora to define AM/PM strings in cy_GB and en_GB + locales. (Closes: #240901) + * Fix the week definition for the C locale. + * Check first_weekday fields against current CLDR snapshot. Modified + locales are *_GB (=2), ar_SY (=5), ms_MY (=2), id_ID (=2). Add + this field to more locales. + * locale-gen: Replace 'test ... -a ...' by two tests. + * Add an "All locales" option to the locales/locales_to_be_generated + template. When it is selected, /etc/locale.gen is a symlink to + /usr/share/i18n/SUPPORTED. (Closes: #321580, #323013) + * Updated debconf translations: (Closes: #353611) + - Brazilian Portuguese, by André Luís Lopes (Closes: #352416) + - Czech, by Miroslav Kure + - Danish, by Morten Brix Pedersen + - Dutch, by Bart Cornelis + - French, by Denis Barbier + - German, by Helge Kreutzmann + - Polish, by Emilian Nowak + - Portuguese, by Simão Pedro Cardoso + - Spanish, by Carlos Valdivia Yagüe + - Swedish, by Daniel Nylander + - Ukrainian, by Eugeniy Meshcheryakov + + [ Clint Adams ] + * Add hurd-getresuid-dyslexia.diff (fixes incorrect ordering of + arguments) with patch from Samuel Thibault. (Closes: #352500) + * Add hppa-no-ldbl-128.diff (stops implying that PA needs + 128-bit long double support in glibc) from Aurelien Jarno. + (Closes: #344836). + * debian/local/manpages/locale.1: remove double quotes from + synopsis. (Closes: #352597) + + [ Aurelien Jarno ] + * Move dependency on lib64gcc1 from libc6-amd64 to libc6-dev-amd64 to + avoid a dependency loop. (Closes: #352263) + * Use sed and test in /etc/init.d/glibc.sh to compare kernel versions. + Put the Debian architecture name in the script at build time instead + of using 'dpkg --print-architecture'. Thanks to Florent Bayle for + the idea. (Closes: #325802, #328088, #339482) + * Fix example code showing how to use hooks for malloc. (Closes: + bug#333565). + * Add hurd-ioctl-decode-argument.diff (fixes decoding of ioctl + arguments) from Samuel Thibault. (Closes: #320273) + * Fix the prototype of sbrk() in the manual. (Closes: #281863) + * Fix the strcasestr() examples in the manual. (Closes: #289853) + * Install libc_nonshared.a in /usr/lib/nptl, and fix the location + of the static libraries of the NPTL ld scripts. (Closes: #347762) + * Update debian/ files for GNU/kFreeBSD. (Closes: #351638) + * Regenerate debian/control, generate debian/control.in/libc0.1. + * Lintian cleans: + - Remove build-dependencies on tar and debianutils, they are + build-essential packages + - Fix FSF postal address + - Use policy compliant links in libc6-dev-amd64 + - Use an absolute symlink for /lib64 on amd64 + * Add myself to Uploaders. + * Switch to gcc-4.0 on powerpc. + * Remove old hack for gcc-3.4 on amd64. + * Build with the compiler defined as default for glibc (ie currently + gcc-4.0) instead of gcc on amd64. + * Decrease priorities of 64-bit main and -dev packages to standard + and optional for all architectures. It better matches override, + though it will still have to be changed. + * Fix glibc235-hppa-lt.diff (restore ret0 across calls to CDISABLE) + from Randolph Chung. (Closes: #326581) + * Switch to gcc-4.0 on hppa. + * Add support for extra_pkg_install hooks for udeb packages. + * Build back with -g1 on amd64, it was removed to permit the build with + gcc-3.4. + * Remove --with-tls and --with-__thread in sysdeps/* as they are the + default option since version 2.3.5. + * Multiarch support: + - Add ld-multiarch.diff (add (/usr)/lib/$(config-machine)-$(config-os)) + to the search path of the dynamic linker) from Tollef Fog Heen. + (Closes: #295855) + - Add ldconfig-multiarch.diff (add directories pointed from /lib/ldconfig + to the search path). + - Create (/usr)/lib/$(config-machine)-$(config-os) and add symlinks to + these directories in /lib/ldconfig/ + - Add rtld.diff (add a new configuration variable rtlddir to change the + dynamic linker in the ELF binaries) partly from Andreas Jochen. This is + necessary to be able to install a glibc in the multiarch dir while still + conforming to the various ABIs which specify a linker in /lib or /lib64. + * Remove the patch to install the libc into /lib instead of /lib64 on + amd64. Use the new libdir, slibdir and rtlddir options in configparm to + install the glibc in (/usr)/lib, and to use the dynamic linker path + specified by the ABI for path for libc objects. (Closes: #325226) + * Add -u option to the ldd manpage. (Closes: #354074) + * Merged a patch from Michael Banck to use gcc-4.0 on Hurd. + * Add resource_h.diff (RLIMIT_NICE and RLIMIT_RTPRIO support) from MAIN. + (Closes: #352636) + * Add hppa-inlining.diff (Increase the maximal overall growth of the + compilation unit caused by inlining for dl-reloc.c on hppa). + * Build a 32-bit libc on amd64, using the new multiarch directories. + (Closes: #274367) + + -- Aurelien Jarno Thu, 23 Feb 2006 17:47:58 +0100 + +glibc (2.3.6-1) unstable; urgency=low + + [ Denis Barbier ] + * debian/debhelper.in/libc.postinst: Restart webmin on upgrade. + (Closes: #345641) + * debian/debhelper.in/libc.postinst: Restart dropbear on upgrade. + (Closes: #351036) + * Fix yesexpr/noexpr in tl_PH locale. Reported by eric pareja. + (Closes: #295810) + * Fix langinfo(_NL_TIME_FIRST_WEEKDAY) for C locale. Reported by + Graham Wilson (Closes: #327025) + * Add first_weekday fields to most locales. + (Closes: #343885, #347323, #347686, #348518, #351375) + * Apply various fixes to French locales. (Closes: #248377) + * Fix d_t_fmt and date_fmt in fo_FO. Reported by Jacob Sparre Andersen. + * New sa_IN locale file, provided by Vidya Ayer and Christian Perrier. + (Closes: #331377) + * Add several locales to SUPPORTED: + - ru_RU.CP1251, requested by Michael Bravo. (Closes: #225516) + - uz_UZ.UTF-8 (its ISO-8859-1 counterpart had no UTF-8 variant) + - da_DK.ISO-8859-15, en_GB.ISO-8859-15, en_US.ISO-8859-15, no_NO.UTF-8, + no_NO and sv_SE.ISO-8859-15 are found in fedora-branch CVS branch. + * Apply several improvements to hy_AM found in upstream Bugzilla. + * Fix LC_MONETARY section of en_DK and provide en_DK.ISO-8859-15. + (Closes: #323159) + * Improve localedef(1) manual page, by Lars Wirzenius (Closes: #309846) + * Fix LC_MONETARY section of pl_PL. Reported by Michał Politowski. + (Closes: #227214) + * New wo_SN locale file, provided by Samba Ndao Diop and Christian + Perrier. (Closes: #279697) + * Add new ca_AD, ca_FR and ca_IT locale files, sent upstream by Robert + Millan. + * New csb_PL locale file, sent upstream by Andrzej Krzysztofowicz. + * Rewrite collation rules of several locales to include iso14651_t1. + This eases maintenance and saves about 1MB for installed size. + * Sort SUPPORTED to list UTF-8 locales first. This change partly + solves #312927. + * Modify localedata/locales/no_NO to copy definitions from nb_NO. + * Fix lang_* fields in gez_ER, gez_ET, tr_TR and wal_ET. + * Fix unknown symbols in collation rules of several locales: da_DK, + fa_IR, is_IS, lo_LA, lv_LV, nb_NO and sr_CS. + * Apply updates for st_ZA, xh_ZA and zu_ZA sent upstream by Dwayne Bailey. + * Add new nr_ZA locale, sent upstream by Dwayne Bailey. + * Rewrite collation rules for dz_BT, in collaboration with Pema Geyleg. + * Revert upstream change of postal_fmt in te_IN because localedef + complains. (Closes: #348804) + * New debconf translations: + - Italian, by Luca Monducci (Closes: #329428) + - Swedish, by Daniel Nylander (Closes: #334864) + * Slightly reword locales.templates to be DTSG-compliant, thanks Thomas + Huriaux. + * Updated debconf translations: (Closes: #350103) + - Brazilian Portuguese, by André Luís Lopes (Closes: #352416) + - Czech, by Miroslav Kure + - Danish, by Morten Brix Pedersen + - Dutch, by Bart Cornelis + - French, by Denis Barbier + - German, by Helge Kreutzmann + - Polish, by Emilian Nowak + - Turkish, by Erçin EKER + - Ukrainian, by Eugeniy Meshcheryakov + - Vietnamese, by Clytie Siddall + * Update timezone data files to tzdata2006a. (Closes: #345479, #347315, #351049) + * Drop Build-Depends-Indep: po4a from control file, translated manual pages + are currently not built. + + [ Clint Adams ] + * Move to upstream version 2.3.6. + - Redo debian/patches/localedata/cvs-localedata.diff + - Remove glibc235-gcc4-cvs.diff + - Remove glibc235-gcc4-jis0208.diff + - Remove glibc235-binutils216-ia64.diff + - Remove glibc235-gcc4-ia64-profile.diff + - Remove glibc235-gcc4-ppc-procfs.diff + - Remove glibc235-execvp-fix.diff + - Delete CSD (Serbian Dinar) hunk from locale-iso4217.diff + - Redo glibc235-dl-execstack.diff + - Remove glibc235-alpha-divqu.diff + - Remove amd64-semtrywait-weakalias.diff + - Remove strfry-segv.diff + - Remove ia64-binutils-libm.diff + - Remove glibc235-leapsecond.diff + - Delete several hunks from glibc235-gcc4-sparc-inline.diff + - Remove hurd-libpthread-indirect-loading.diff + - Remove glibc235-gcc4-hurd.diff + - Delete several hunks from glibc235-gcc4-arm-inline.diff + - Remove glibc235-gcc4-s390-inline.diff + * Add hppa-pie-relocs.diff, thanks to Aurelien Jarno. This + fixes nscd on hppa. (Closes: #350501) + + [ Daniel Jacobowitz ] + * Remove mips-bits-syscall.diff, merged. + + [ GOTO Masanori ] + * Update po/ja.po. + + -- Clint Adams Thu, 9 Feb 2006 21:45:45 -0500 + +glibc (2.3.5-13) unstable; urgency=low + + [ Clint Adams ] + * Acknowledge NMU. (Closes: #342545) + + [ Denis Barbier ] + * debian/rules.d/control.mk: Make sure that debian/control is regenerated. + (Closes: #351704) + + -- Denis Barbier Mon, 6 Feb 2006 22:22:23 +0100 + +glibc (2.3.5-12.1) unstable; urgency=low + + * NMU + * glibc235-hppa-fpu.diff: New, fixes hppa FPU issues. Closes: #342545 + + -- LaMont Jones Wed, 1 Feb 2006 09:47:57 -0700 + +glibc (2.3.5-12) unstable; urgency=low + + * debian/patches/glibc235-nis-netgrp.diff: New file to fix assertion + failures with NIS. (Closes: #322011) + * Switch to quilt to handle Debian patches. + - debian/control.in/main: add Build-Depends: quilt. + - Replace debian/rules.d/dpatch.mk by debian/rules.d/quilt.mk. + - Rename debian/patches/*.dpatch into debian/patches/*.diff. + - Move localedata patches into debian/patches/localedata/ + * debian/patches/localedata/cvs-localedata.diff: Update to latest CVS. + Among other changes: + - locales/mn_MN: Fix date_fmt. (Closes: #328831) + - locales/de_DE: Add transliterations for quoting characters. + (Closes: #235759) + - locales/ss_ZA locales/tn_ZA locales/ve_ZA locales/nso_ZA + locales/ts_ZA: New files. (Closes: #254417) + - locales/km_KH: New file. (Closes: #334762) + - locales/mg_MG: New file. (Closes: #271549) + - locales/sr_CS: New file. (Closes: #254993) + * debian/patches/locale-iso4217.diff: Update to latest CVS. + This includes changes from glibc235-localedata-sr_CS.diff, which + is no more needed. + * debian/patches/locale-iso639.diff: New file. + * debian/patches/locale-ku_TR.diff: New file, to provide a Kurdish + locale needed by d-i. This locale comes from upstream CVS, and has + been updated to the latest patch sent to BZ870. + * debian/patches/localedata/locale-eo_EO.diff: Apply minor updates to + this locale file. Add eo and eo.UTF-8 to SUPPORTED. (Closes: #233308) + * Import collation fixes and enhancements for localedef from + belocs-locales-bin. + * debian/patches/forward-backward-collation.diff: New file. Due to the + fixes in localedef, some bugs in code which was previously never run + did show up. (Closes: #310635) + * debian/patches/locale/locale-print-LANGUAGE.diff: New file, so that + locale displays the LANGUAGE environment variable when called without + argument. + * Add myself to Uploaders. + + -- Denis Barbier Sun, 15 Jan 2006 00:54:16 +0100 + +glibc (2.3.5-11) unstable; urgency=low + + [ Phil Blundell ] + * Apply patch from Colin Watson to add "--keep-existing" option to + locale-gen. (Closes: #298913) + * Also restart exim4 on upgrade. (Closes: #326554) + * debian/debhelper.in/libc.preinst: Clarify wording of message about + detection of services needing to be stopped before upgrade. + + [ GOTO Masanori ] + * debian/po/pt.po: New file, add Portuguese translation. + Patched by Rui Branco . (Closes: #339110) + + [ Clint Adams ] + * Patch from Lars Wirzenius to not rely on bash-like echo + behavior. (Closes: #207391). + * Add allowance for the 2005 leap second. (Closes: #345310) + + -- Clint Adams Sun, 1 Jan 2006 11:29:08 -0500 + +glibc (2.3.5-10) unstable; urgency=low + + [ GOTO Masanori ] + * debian/local/etc_init.d/glibc.sh: Change the last 'exit 0' to + ': exit 0' to not block sourcing. (Closes: #340147) + + [ Phil Blundell ] + * Merge patch from upstream CVS (courtesy Daniel Jacobowitz) to + fix weak alias related build problem on ARM. + * Merge patch from upstream CVS (courtesy Ulrich Drepper) to fix + strfry() crash. (Closes: #343365) + * Merge patch from upstream CVS (courtesy Roland McGrath and Anton + Blanchard) to fix problem with execute permissions on GOT when using + 64kB pages on PowerPC. (Closes: #344105) + * Require binutils 2.16.1cvs20051109-1 to ensure that i386 biarch + linking works properly. + * debian/script.in/kernelcheck.sh: Require kernel >= 2.4.0 on arm to + avoid llseek problem. (Closes: #324795) + * Also restart atd on upgrade. (Closes: #331293) + * Merge patch from upstream CVS (courtesy Ulrich Drepper) to fix + problems with accuracy of tanh and related functions, per request of + Rafael Laboissiere. (Closes: #328504) + * Add "validlocale" program (ex base-config) to locales package, per + request of Joey Hess. (Closes: #344954) + * sysdeps/hppa.mk: Add new /usr/hppa64-linux-gnu/include symlink, per + request of Matthias Klose. (Closes: #326583) + + [ Clint Adams ] + * Steal glibc-235-sparc-datastart.dpatch from Ubuntu. + * Steal ia64 libm symbol patch from Ubuntu. + * Compile with -g2 instead of -g1 on sparc. + + -- Clint Adams Wed, 28 Dec 2005 13:18:56 -0500 + +glibc (2.3.5-9) unstable; urgency=low + + [ Daniel Jacobowitz ] + * Downgrade priority of amd64 libraries on i386. + * Move packages from base to libs. + + [ Clint Adams ] + * Remove sparc64 TLS patch, and disable TLS for sparc64 build + (Closes: #340835, #341514). + * Add patch to fix build failure with __bind and other + socket-related symbols being already defined on + sparc (Closes: #342755). + * Add patch from Anton Blanchard to fix build failure with + __bind and other socket-related symbols being already + defined on powerpc (Closes: #343571). + * Replace amd64 sem_trywait patch from Kurt Roeckx's NMU with + fix from upstream glibc CVS (Closes: #339389). + * Add patch from Anton Blanchard to fix build failures with + "__moddi3" and friends being already defined on i386 + and powerpc (Closes: #339415). + * Bump Standards-Version to 3.6.2 and add myself to Uploaders. + + -- Clint Adams Sat, 17 Dec 2005 10:33:38 -0500 + +glibc (2.3.5-8.1) unstable; urgency=low + + * Non-maintainer upload. + * Rename sem_trywait to __new_sem_trywait in amd64 nptl code + so the alias works properly, and it can be build. + (Closes: #339389) + + -- Kurt Roeckx Sun, 27 Nov 2005 11:22:03 +0100 + +glibc (2.3.5-8) unstable; urgency=low + + * Add missing build dependency on libc6-dev-ppc64 on powerpc. + * Add patch to fix sparc64 TLS build failure, from Aurelien Jarno + (Closes: #335821). + * Also restart saslauthd at upgrades, from Philipp Hug (Closes: #334101). + * Merge .eh_frame terminator fix, by Richard Sandiford (Closes: #334112). + * Merge armeb support, from Lennert Buytenhek (Closes: #335116). + * Add LSB headers to glibc.sh and nscd init scripts, from Petter + Reinholdtsen (Closes: #335308, #335343). + * Remove obsolete mountkernfs, tmpfs, and devpts.sh files from debian/. + * Temporarily set hppa back to gcc 3.4, from Steve Langasek + (Closes: #326581). + * Re-enable libidn (Closes: #181025). + + -- Daniel Jacobowitz Sat, 12 Nov 2005 19:15:29 -0500 + +glibc (2.3.5-7) unstable; urgency=low + + [ GOTO Masanori ] + * debian/script.in/kernelcheck.sh: Drop real-i386 kernel support. + + [ Daniel Jacobowitz ] + * Build 64-bit packages on i386 - based on patches from both Ubuntu + and Andreas Jochens . + - Build depend on a biarch linux-kernel-headers package. + - Build depend on new libc6-dev-amd64 package. + - Conflict with amd64-libs to avoid stale libraries. + - Replace files from amd64-libs-dev. + - Use lib64 for 64-bit libraries on i386. + - Search lib64 for ldconfig. + - Install 64-bit headers in /usr/include/x86_64-linux-gnu. + * Remove obsolete references to NPTL as an add-on. + * Conflict with broken versions of libterm-readline-gnu-perl + (Closes: #326856, #326492). + * Merge makefile patch from Goswin Brederlow + to fail earlier if builds fail + (but omit the bit for make -k check) (Closes: #325460). + * Update debconf dependency to work with cdebconf (Closes: #331838). + * Merge MIPS fix from CVS (Closes: #329043). + * Do not complain about incompatible libraries in /etc/ld.so.conf + (Closes: #310047). + * Update hppa assembly for current CVS binutils. + * Use 8-byte-aligned buffers for doubleword FPU transfers on HPPA + (Closes: #333766). + + -- Daniel Jacobowitz Fri, 14 Oct 2005 14:18:22 -0400 + +glibc (2.3.5-6) unstable; urgency=low + + * GOTO Masanori + + * debian/script.in/kernelcheck.sh: Use sed instead of bash extension. + (Closes: #325373, #325471, #325504, #325511) + + -- GOTO Masanori Mon, 29 Aug 2005 12:40:32 +0900 + +glibc (2.3.5-5) unstable; urgency=low + + * GOTO Masanori + + * debian/debhelper.in/debhelper.mk: Don't expand debug-packages with + DEB_INDEP_REGULAR_PACKAGES. It causes binary-indep is unexpectedly + included. (Closes: #233390, #233391, #233392) + + * Add the correct new line. (Closes: #324450) + - debian/control.in/sparc64: Likewise. + - debian/control: Update. + + * Support Hurd again. (Closes: #324165) + - debian/sysdeps/gnu.mk: Rename to... + - debian/sysdeps/hurd.mk: ... this. + + * debian/local/usr_sbin/locale-gen: Don't break locale-gen when locale-def + warns errors. + + * debian/patches/glibc235-localedata-sr_CS.dpatch: New file, to fix + sr_CS localedef breakage. (Closes: #321580, #322655) + * debian/patches/glibc235-localedata-locales.dpatch: New file, to fix + mn_MN and sid_ET localedef breakage. (Closes: #321634) + + * debian/sysdeps/powerpc.mk: Enable PowerPC NPTL. + (Closes: #246689, #307984) + + * debian/README: Add the description about dropping __ctype_* symbol support + of static linked application/libraries in etch. (Closes: #324526) + + * debian/sysdeps/linux.mk: Check SETNJOBS environment variable to specify + the number of parallel make by users. + + * debian/sysdeps/depflags.pl: Add Conflicts: e2fsprogs (<< 1.35-7) + because new ldd cannot work with old e2fsprogs. (Closes: #324550) + + * debian/patches/glibc235-alpha-divqu.dpatch: New file, to fix alpha + divqu/remqu that does not return the correct result when their dividend + and divisor are the same and 63bit is 1. (Closes: #324455) + + * Hurd requires gcc-3.3 to compile instead of gcc-4.0. Requested by + Michael Banck . + - debian/sysdeps/hurd.mk: Change CC/BUILD_CC to gcc-3.3. + - debian/control.in/main: Build-Depends falls back to gcc-3.3. + - debian/control: Update. + + * Introduce bootstrap kernel version check script. + - debian/debhelper.in/libc.preinst: Move detection script to... + - debian/script.in/kernelcheck.sh: ...this, new file. + - debian/local/etc_init.d/glibc.sh: New file, it includes kernelcheck.sh. + - debian/debhelper.in/libc.postinst: Invoke /etc/init.d/glibc.sh as S01. + - debian/rules.d/debhelper.mk: Add replacing KERNEL_VERSION_CHECK and + EXIT_CHECK for libc.preinst and glibc.sh. + - debian/debhelper.in/libc.dirs: Create etc/init.d. + + * Don't use absolute path name. + - debian/debhelper.in/libc.dirs: Suppress the first slash. + - debian/debhelper.in/libc-pic.dirs: Likewise. + - debian/debhelper.in/nscd.dirs: Likewise. + - debian/debhelper.in/locales.dirs: Likewise. + + * Michael Banck : + - debian/patches/glibc235-gcc4-hurd.dpatch: New file, to build glibc + on Hurd with gcc-4.0. (Closes: #324549) + + -- GOTO Masanori Sun, 21 Aug 2005 12:33:42 +0900 + +glibc (2.3.5-4) unstable; urgency=low + + * The "hppa is important to someone, really - LaMont" release. + + * GOTO Masanori + + * d-i wants to remove libnss-files-udeb and libnss-dns-udeb dependency + from libc-udeb. Suggested by Joey Hess . + (Closes: #322506) + - debian/control.in/libc: Remove libnss-files-udeb libnss-dns-udeb + dependency. + - debian/control: Update. + + * Build-Depends fixes: + - debian/control.in/main: Change gcc-* dependency from | to ,. + Suggested by Andreas Jochens . + - debian/control.in/main: Add gcc-4.0 (>= 4.0.1-5) [hppa], because prior + versions cannot generate sane glibc binaries. + - debian/control: Update. + + * Enable libnss upgrade guard again. + (Closes: #321561, #321712, #321796, #322768, #323560) + - debian/debhelper.in/libc.preinst: Change guard to 2.3.5-1. + - debian/debhelper.in/libc.postinst: Likewise. + - debian/debhelper.in/libc.postinst: Fix to invoke NSS check again. + + * debian/debhelper.in/nscd.dirs: Add /var/db/nscd. + (Closes: #323352, #323487) + + * debian/debhelper.in/locales.prerm: Add purge to remove locale-archive. + (Closes: #321719) + + * debian/patches/00list: Drop glibc234-hppa-remove-mallocdef.dpatch. + It causes unconditional locking problem, because it was already replaced + by Carlos' new patches. Reported by LaMont Jones . + + * Add Depends: lib64gcc1 and provide lib64c-dev for 64bit -dev packages. + Suggested by Matthias Klose . (Closes: #323552) + - debian/control.in/sparc64: Likewise. + - debian/control.in/ppc64: Likewise. + - debian/control.in/s390x: Likewise. + - debian/control: Update. + + * debian/patches/glibc235-dl-execstack.dpatch: New file, to fix execstack + failed to check on kernel <= 2.4.18. (Closes: #321717, #321718, #323409) + + * Roland Stigge : + - debian/debhelper.in/glibc-doc.install: Install HTML documents + correctly. (Closes: #321740) + + -- GOTO Masanori Sat, 6 Aug 2005 06:52:42 +0900 + +glibc (2.3.5-3) unstable; urgency=low + + * The "Keep Debconf5 speed" and the "Welcome back the recent glibc to + unstable" release. + * Glibc bumps up from 2.3.2.ds1 to 2.3.5 on etch. + + * GOTO Masanori + + * Localedata update: + - debian/patches/cvs-localedata.dpatch: New file, to update localedata + to the latest cvs. Reported by Safir Secerovic , + Reviewed by Denis Barbier . (Closes: #312902) + - debian/patches/locale-iso4217.dpatch: New file, to fix localedef + breakage for tr_TR.ISO-8859-9. (Closes: #314855) + + * To make glibc-2.3.5 buidable with gcc-4.0: + - debian/patches/00list: Drop glibc234-hppa-full-nptl-2004-12-20.dpatch + line replaced by the new patches: glibc235-hppa-sysdeps.dpatch and + glibc235-hppa-lt.dpatch. It'll be removed when hppa unstable works + nicely. + - debian/patches/glibc235-gcc4-sparc-inline.dpatch: Update the patch + to compile sparc64. + - debian/patches/glibc235-gcc4-s390-inline.dpatch: New file, fix s390 + compilation breakage by changing static inline to auto inline for + dl-machine.h. + - debian/patches/glibc235-gcc4-alpha-profile.dpatch: New file, fix + alpha compilation breakage by removing strong_alias. + - debian/patches/glibc235-gcc4-hppa-profile.dpatch: New file, fix hppa + compilation breakage by removing strong_alias. + - debian/sysdeps/alpha.mk: Disabled __thread for static linked + executables. + - debian/control.in/main: Add Build-Depends: gcc-3.4 for powerpc and + m68k. + - debian/control: Regenerated. + + * To make glibc-2.3.5 buildable with gcc-3.4: + - debian/sysdeps/m68k.mk: New file, to use gcc-3.4 as CC and BUILD_CC + due to gcc-4.0 ICE. See #319312. + - debian/patches/glibc235-gcc34-m68k-seccomment.dpatch: New file, fix + m68k binutils comment parse error. + + * Introduce RUN_TESTSUITE for disabling make check, taken from Jeff + Bailey : + - debian/rules: Enable RUN_TESTSUITE in default. + - debian/rules.d/build.mk: Check RUN_TESTSUITE before invoking tests. + - debian/sysdeps/hppa.mk: Disable RUN_TESTSUITE because linuxthreads + cannot work correctly. + - debian/sysdeps/alpha.mk: Likewise. + + * Introduce loose locales version dependency to avoid locales version + mismatch for FTBFS architectures, taken from Jeff Bailey + (Closes: #204696, #308824): + - debian/locales-depver: New file, describes minimum locales dependency + version. It's renamed from locales-shlibver because it's not "shlib". + - debian/rules.d/debhelper.mk: Use LOCALES_DEP_VER to generate locales + dependency. + - debian/rules: Include debian/locales-depver. + + * debian/rules.d/build.mk: Add --without-selinux for nscd. It should be + removed after this version ASAP. + + * debian/sysdeps/depflags.pl: Drop Depends: libdb1-compat because it's + until sarge stuff. Suggested by Colin Watson . + (Closes: #318885) + + * debian/debhelper.in/nscd.dirs: New file, add /var/run/nscd dir to + invoke nscd correctly. (Closes: #314892) + + * debian/local/manpages/locale.gen.5: Fix typo, charsets -> charmaps. + (Closes: #312297, #318982) + + * debian/debhelper.in/libc.preinst: Remove dpkg --assert-support-predepends + check like base-passwrd, suggested by Bastian Blank . + (Closes: #316217) + + * debian/patches/locales-supported.dpatch: Don't apply to drop UTF-8@euro + locales from SUPPORTED. (Closes: #274491) + + * debian/debhelper.in/libc.preinst: Fix typo. (Closes: #306136) + * debian/debhelper.in/libc.postinst: Likewise. + + * Michael Banck : + - debian/patches/hurd-enable-ldconfig.dpatch: New file, to build ldconfig + again on Hurd. (Closes: #309489) + - debian/sysdeps/gnu.mk: Hurd-i386 needs --without-tls option to build. + - debian/patches/hurd-libpthread-indirect-loading.dpatch: New file, to + make libpthread load indirectly on Hurd. (Closes: #312488) + - debian/patches/hurd-ioctl-pfinet.dpatch: New file, to support part of + SIOCGIFHWADDR for pfinet on Hurd. (Closes: #295117) + + * Jeff Bailey : + - debian/patches/glibc235-hppa-sysdeps.dpatch: New file, to build hppa + linuxthreads locking problem and sysdeps correctly again. + - debian/patches/glibc235-hppa-lt.dpatch: New file, likewise. + + * Denis Barbier : + - debian/debhelper.in/locales.config: Use LANG=C for locale-dependent + commands. (Closes: #314717) + - debian/debhelper.in/locales.postinst: Likewise. + - debian/debhelper.in/locales.postinst: Fix repeated locale entry + duplication when at least a locale is defined twice in /etc/locale.gen. + (Closes: #271526) + + * Stephen Gildea : + - debian/debhelper.in/nscd.init: Provides a "status" option, fix the exit + status if the script is given an unsupported option. (Closes: #312404) + + * Serge Belyshev : + - debian/patches/glibc235-execvp-fix.dpatch: Fix execvp segv caused by + invalid free pointer. + + * This version fixes some bugs that are already marked as + fixed-in-experimental and explained the reason in this changelog. + (Closes: #144670, #185991, #258647, #276062, #279423, #280030, #298784) + (Closes: #300806, #300842, #304963, #305400, #305662, #305666, #309618) + (Closes: #311793, #313404, #314084, #315347, #315793) + + * This version fixes some bugs that are already confirmed as fixed + (fixed-in-experimental) in the experimental glibc: + - Can compile rpc/xdr.h with gcc-4.0. (Closes: #315198, #320963) + - Support posix_fadvise64 correctly on 2.4 kernel. + (Closes: #312406, #313219) + - Can static link with the recent toolchain changed with TLS/non-TLS + errno definition on amd64 and ia64. + (Closes: #317674, #317946, #318956, #318963, #319115) + - Fix mktime when setting a timezone value to AC_FUNC_MKTIME. + (Closes: #177940) + - Fix libc6-i686 to reexec init. (Closes: #270745) + + * This version fixes some bugs that are marked as fixed-upstream: + - Fix ucontext.h failure with g++-4.0 on ia64. + (Closes: #318429, #320240) + + - Missing icache flushing on PPC caused sometimes segv, and now cache + management is reworked and fixed. (Closes: #146489) + - Fix alpha atan() that gave wrong results for some operands. + (Closes: #210613) + - Fix PPC rint() that gave wrong result for negative arguments in the + rounding toward -inf and +inf mode. (Closes: #216800) + - Fix that the pmaplist frees the freed memory in xdr_pmaplist. + (Closes: #230219) + - Don't export unneeded symbol _fp_hw on s390. (Closes: #247681) + - Set locale correctly for generated threads in static linked binaries. + (Closes: #260221) + - Make g++ compilation with nptl pthread.h by changing initializers. + (Closes: #276309) + - Fix a race condition with pthread_cond_broadcast. (Closes: #276312) + - Fix re_exec() segv that caused on UTF-8 locales. + (Closes: #175163, #237681, #290551, #299137, #310443) + - Implement getcontext on alpha. (Closes: #293653) + - Fix an incorrect value of ceill and floorl on amd64. (Closes: #302458) + - Fix memory leaks in getaddrinfo/freeaddrinfo. (Closes: #304022) + - Fix mips/mipsel incomplete clobbered registers for syscalls. + (Closes: #304426) + - Support working sched_setaffinity on powerpc. (Closes: #311053) + - Support _SC_HOST_NAME_MAX in sysconf. (Closes: #314350) + - Fix pthread_rwlock_wrlock hangs with NPTL on amd64. (Closes: #314408) + + - Check timezone changes for localtime and friends. (Closes: #48184) + - Fix a race condition of sigaction and signal handler. + (Closes: #136990) + - Fix segmentation fault when invoking nscd -d. + (Closes: #156923, 245208) + - Support POSIX style strerror_r implementation. + (Closes: #159298, #169370, #182542, #202209) + - Enable to use short IPv4 address notation again. (Closes: #192091) + - Fix broken pthread_cleanup_push on Alpha. (Closes: #197988) + - Support POSIX message queues. (Closes: #202197, #280137) + - Don't use ?: in bits/mathinline.h. (Closes: #206015, #304500) + - Update Norwegian translation that fixes confusing text. + (Closes: #207266) + - Enable executable again for libc.so.*. (Closes: #215463, #264948) + - Improve putchar and io performance by changes to pthread locking code. + (Closes: #219205) + - Update sys/vm86.h. (Closes: #219476) + - Fix invalid __libc_dlclose() in nsswitch.c. (Closes: #222130) + - Support backtrace on ia64 and x86_64. (Closes: #235876) + - Fix nl_langinfo(ERA) returns NULL, not "". (Closes: #245836) + - Libintl.h is ready for some g++ compilation option. (Closes: #252753) + - Fix pthread_cond_timedwait and mutex hang with cancellation. + (Closes: #253303) + - Fix too long fraction digits handling in strtold(). (Closes: #260377) + - Fix some regexec() segv in UTF-8 locales. (Closes: #261135) + - Fix pthread_cond_timedwait with a outdated timespec destroys the + pthread_cond_t variable. (Closes: #261237) + - Declare EPOLLONESHOT in sys/epoll.h. (Closes: #261541) + - Fix returning invalid pointer when freeing valloc()-ed memory. + (Closes: #262782) + - Replace gcc-3.4 option for ppc64. (Closes: #263959) + - Fix zdump -v segv on ia64. (Closes: #266438) + - Support pthread_create with attributes. (Closes: #266507) + - Change __vector to __iovec for sys/io.h to prevent conflicts with + altivec. (Closes: #267442) + - Fix atan2 infinit loop on amd64. (Closes: #270823) + - Avoid memory leak for some gconv encoding by calling gconv_end. + (Closes: #274390) + - Fix mplayerplug-in crash closed by mozilla. (Closes: #275240) + - Fix invalid memory access of printf when its specifier combines + parameter number specification and floating point values. + (Closes: #277667, #312036) + - Don't touch unrelated bits in __feclearexcept on i386. + (Closes: #279294) + - Don't invoke unneeded cancellation if PTHREAD_CANCEL_DISABLE is set. + (Closes: #281775) + - Fix a race condition between pthread_create and pthread_exit. + (Closes: #282091, #292154) + - Fix for setfacl to handle many files in ntfw64. (Closes: #288710) + - Support large dev_t. (Closes: #289945, #299139) + - Use the correct ifndef __GNUC_PREREQ. (Closes: #315345) + + - Fix the indended first line of ldd output. (Closes: #209145, #276223) + - Fix misleading error message of ldd when kernel version is old. + (Closes: #224665) + - Fix typo of the language name in te_IN. (Closes: #276527) + - Replace old --help message that indicated glibcbug script. + (Closes: #315448) + + - Support IDN. (Closes: #181025) + - Support O_NOATIME. (Closes: #284131, #297010, #298488) + - The first day of a week in Finnish is Monday. (Closes: #288472) + + -- GOTO Masanori Sun, 17 Jul 2005 17:27:30 +0900 + +glibc (2.3.5-2) experimental; urgency=low + + * Debconf5 release. + + * GOTO Masanori + + * Merge glibc-2.3.4 branch to the main trunk for etch development. + + * These dpatches are removed from debian/patches because the similar + patches are already applied in the latest version: + - debian/patches/rtld-vdso-assertion.dpatch + - debian/patches/glibc232-sigsetjmp.dpatch + - debian/patches/hurd-weak-aliases.dpatch + - debian/patches/sched-update.dpatch + - debian/patches/glibc232-pthread-cancellation.dpatch + - debian/patches/glibc232-clock_settime.dpatch + + * The New dpkg-architecture changes: + - debian/rules: Replace DEB_HOST_BUILD_SYSTEM, use DEB_HOST_ARCH_OS. + Reported by Arthur Marsh . + (Closes: #315347, #315793) + - debian/control.in/main: Bump up Build-Depends: dpkg-dev (>= 1.13.5). + - debian/control: Updated. + - debian/debhelper.in/libc.preinst: Replace "dpkg + --print-installation-architecture", use "dpkg --print-architecture". + - debian/debhlper.in/libc.postrm: Likewise. + - debian/debhlper.in/libc.postinst: Likewise. + - debian/sysdeps/depflags.pl: Change checks from i386 to i486. + It also replaces -linux, use -linux-gnu. + + * Default compiler moves from gcc-3.3 to gcc-4.0: + - debian/rules: Use gcc-4.0 instead of gcc-3.3. (Closes: #315198) + - debian/control.in/main: Define Build-Depends: gcc-4.0. + - debian/control: Updated. + - debian/sysdeps/i386.mk: Replace depreciated "-mcpu", use "-mtune". + + * These dpatches are added to make glibc-2.3.5 buidable with gcc-4.0: + - debian/patches/glibc235-gcc4-cvs.dpatch: Fix some bad defintion of + internal for all architectures. + - debian/patches/glibc235-gcc4-elf.dpatch: Remove elf_machine_rel* + definitions for all architectures. + - debian/patches/glibc235-gcc4-jis0208.dpatch: Fix compilation breakage + for all architectures. + - debian/patches/glibc235-gcc4-wcstol_l.dpatch: Fix wcstol_l.c + compilation breakage for all 64bit architectures. + - debian/patches/glibc235-binutils216-ia64.dpatch: Fix _init/_fini was + not defined within procedure with binutils 2.16 for ia64. + - debian/patches/glibc235-gcc4-ia64-profile.dpatch: Fix compilation + breakage by removing strong_alias for ia64. + - debian/patches/glibc235-gcc4-ppc-procfs.dpatch: Fix ppc32 compilation + breakage by removing __uint128_t use. (Closes: #304963) + - debian/patches/glibc235-gcc4-arm-inline.dpatch: Fix arm compilation + breakage by changing static inline to auto inline for dl-machine.h. + - debian/patches/glibc235-gcc4-sparc-inline.dpatch: Fix sparc compilation + breakage by changing static inline to auto inline for dl-machine.h. + - debian/patches/glibc235-gcc4-sparc-mv8.dpatch: Fix obsolete gcc option + to replace newer standard one. + - debian/patches/glibc235-gcc4-mips-inline.dpatch: Fix mips compilation + breakage by changing static inline to auto inline for dl-machine.h. + - debian/patches/glibc235-gcc4-mips-sysdeps.dpatch: Fix mips compilation + breakage by changing large syscall arguments handling. + + * Move /etc/locale.alias to /usr/share/locale/locale.alias. + Don't install locale.alias.5. (Closes: #144670, #185991, #298784) + - debian/local/usr_sbin/locale-gen: Use /usr/share/locale/locale.alias + instead of /etc/locale.alias. + - debian/local/manpages/locale-gen.8: Delete reference to + locale.alias.5. + - debian/local/manpages/locale.gen.5: Likewise. + - debian/debhelper.in/locales.links: Remove file, don't link to /etc. + - debian/debhelper.in/locales.install: Install locale.alias under + /usr/share/locale, not /etc/. + - debian/debhelper.in/locales.manpages: Don't install locale.alias.5 + + * Add documents: + - debian/debhelper.in/libc.docs: Add CONFORMANCE and NAMESPACE. + + * Fix messages to add a patience message. (Closes: #305400) + - debian/local/usr_sbin/locale-gen + + * Move sprof from libc-prof to libc-dev. (Closes: #280030) + - debian/sysdeps/depflags.pl: Add Replaces: libc-dev (<< 2.3.5-2). + - debian/debhelper.in/libc-prof.install: Remove sprof install. + - debian/debhelper.in/libc-dev.install: Install sprof moved from -prof. + - debian/debhelper.in/libc-dev.install.hurd-i386: Likewise. + - debian/debhelper.in/libc-dev.manpages: Add sprof.1 install. + - debian/debhelper.in/libc-prof.manpages: Remove file, don't install + sprof.1. + + * Remove Depends: lib64gcc1 from libc6-sparc64. (Closes: #258647) + - debian/control.in/sparc64: Delete Depends: lib64gcc1. + - debian/control: Likewise. + + * Small change for libc6 upgrade problem. + - debian/debhelper.in/libc.postrm: Add plain messages and clean up. + + * Add conflicts to old initrd-tools for avoiding new glibc 2.3.4/5 ldd + blocks to generate initrd images. Suggested by Goswin von Brederlow + . + - debian/sysdeps/depflags.pl: Add conflicts initrd-tools (<< 0.1.79). + + * Add support PowerPC64, based on patches and suggestions by Bastian Blank + and Jeff Bailey : + - debian/control.in/main: Add Build-Depends: gcc-3.4 [powerpc] because + powerpc porting does not support gcc-4.0 currently. + - debian/control: Updated. + - debian/rules.d/control.mk: Add ppc64. + - debian/sysdeps/powerpc.mk: Added to support ppc64 target. + + * debian/sysdeps/hppa.mk: Add /usr/hppa64-linux-gnu/include symlinks for + dpkg-architecture changes. Reported by Matthias Klose + . (Closes: #313404) + + * A Costa . (Closes: #305662, #305666) + - debian/local/manpages/tzconfig.8: Fixed typo. + - debian/local/manpages/ldconfig.8: Likewise. + + * Clytie Siddall : + - debian/po/vi.po: Add the Vietnamese translation for locales. + (Closes: #309618, 311793) + + * Jens Seidel : + - debian/po/de.po: Fix typo. (Closes: #314084) + + -- GOTO Masanori Thu, 21 Apr 2005 16:52:36 +0900 + +glibc (2.3.5-1) experimental; urgency=low + + * GOTO Masanori + + * New upstream release. + - debian/shlibver: Bump up to 2.3.5-1. + + * Drop patches: + - debian/patches/hurd-malloc.dpatch: Removed, it's already applied in + the upstream source. + + * Merge with 2.3.2.ds1-21, added: + - debian/patches/linuxthreads-sizefix.dpatch: Added. + - debian/po/fi.po: Added. + - debian/patches/glibc23-mips-lazy-eval.dpatch: Added, drop dl-machine.h + because the recent upstream should not need such change. + - debian/patches/glibc232-tls-crashfix.dpatch: Added, remove some parts + that are applied in the recent version. + + * Merge with 2.3.2.ds1-21, changed: + - debian/debhelper.in/libc.preinst: Fix typo, proofreading. + - debian/debhelper.in/libc.preinst: Add export LC_ALL=C. + - debian/patches/00list: Update. + + * Update linuxthreads size fix for not only ia64, but also alpha, + amd64, i386, powerpc, s390, sh and sparc. + - debian/patches/linuxthreads-sizefix.dpatch: Update. + + * Fix more libc6 upgrade problem from old <= 2.3.4-1: + - debian/debhelper.in/libc.postinst: Don't use uname -m, use + dpkg --print-installation-architecture. Hwcappkgs mechanism does not + work on (ex:) install architecture: i386, kernel architecture: amd64. + - debian/debhelper.in/libc.postrm: Likewise. + + * Support libc6-dev NPTL static libraries and headers into + /usr/lib/nptl and /usr/include/nptl. (Closes: #276062, #279423) + - debian/rules.d/build.mk: Add installation code from tmp-nptl to + tmp-libc. + - debian/debhelper.in/libc-dev.install: Add tmp-libc/usr/lib/nptl*. + + -- GOTO Masanori Sun, 10 Apr 2005 14:02:19 +0900 + +glibc (2.3.4-3) experimental; urgency=low + + * GOTO Masanori + + * The complete libc6 installation breakage is fixed when hwcap packages + (libc6-i686 and libc6-sparcv9/sparcv9b) is installed. It introduced + /etc/ld.so.hwcappkgs to track hwcap packages. + - debian/debhelper.in/libc.postinst: Create /etc/ld.so.hwcappkgs if + such file is not existed. Check hwcap packages and decide to keep + /etc/ld.so.nohwcap. Put special ld.so.nohwcap string when the + downgraded version does not support ld.so.hwcappkgs. + - debian/debhelper.in/libc-otherbuild.postinst: When it's configured, + check /etc/ld.so.hwcappkgs and decides to keep /etc/ld.so.nohwcap. + - debian/debhelper.in/libc-otherbuild.postrm: When it's removed, + check /etc/ld.so.hwcappkgs and search other hwcap package's version + consistency. Then it decides to remove /etc/ld.so.nohwcap. + - debian/debhelper.in/libc.postrm: Leave /etc/ld.so.nohwcap if it's + downgrade to hwcappkgs incompatible version. + - debian/rules.d/debhelper.mk: Include "libc-" into OPT string + replacement. + + -- GOTO Masanori Tue, 29 Mar 2005 17:22:25 +0900 + +glibc (2.3.4-2) experimental; urgency=low + + * GOTO Masanori + + * Fix libc6 installation breakage when old libc6 and libc6-i686 was + installed, and it's replaced with a new libc6. This fix is limited + for i686 optimized package, not for sparc multiple opt packages. + (Closes: #300806, #300842) + - debian/debhelper.in/libc.postinst: Add check for the existence of + multiple optimized packages. + - debian/rules.d/debhelper.mk: Add the replace code from CURRENT_VER + to $(DEB_VERSION) for libc.postinst. Install libc-otherbuild.postrm. + - debian/debhelper.in/libc-otherbuild.postrm: Added to remove + unneeded ld.so.nohwcap for single optimized package. + + -- GOTO Masanori Tue, 22 Mar 2005 11:17:32 +0900 + +glibc (2.3.4-1) experimental; urgency=low + + * GOTO Masanori + + * Reflect from glibc-snapshot package 2.3.4-0.3.snapshot20041220.2. + + * Add glibc-libidn package handling for the following files: + - debian/sysdeps/gnu.mk + - debian/sysdeps/linux.mk + - debian/sysdeps/kfreebsd-gnu.mk + - debian/rules + + * Add separated shlibver file: + - debian/rules: Include debian/shlibver. + - debian/shlibver: Bump up shlibver to 2.3.4-1. + + * Delete removed file info/libc-dir-add.info: + - debian/debhelper.in/glibc-doc.install + - debian/rules.d/build.mk + + * These dpatches are added in debian/patches/: + - glibc234-alpha-xstat.dpatch: Fix alpha compilation failure when + kernel headers < 2.6.4 is used. + - glibc234-hppa-linesep.dpatch: Add to fix hppa compilation failure. + - glibc234-hppa-remove-mallocdef.dpatch: Add to + fix hppa compilation breakage until ldcw lock change is introduced. + This patch will be removed when ldcw patch is revised to apply. + - glibc234-m68k-linuxthreads-fPIC.dpatch: Add to fix m68k compilation + warnings to remove linuxthreads o-iterator. + - glibc234-hppa-full-nptl-2004-12-20.dpatch: Remove in-cvs parts, + apply the remained stuff for hppa, except for ldcw lock change. + This file is renamed from 50_glibc232-hppa-full-nptl-2003-10-22.dpatch. + + * These dpatches are modified/replaced with the newer patches in + debian/patches/: + - glibc-i686-timing.dpatch: Modify makefile. Fix i686 library breakage. + - glibc23-cmov.dpatch: Drop additional TLS parts. + - glibc23-sse-oldkernel.dpatch: Regenerated. + - hppa-drop-utimes.dpatch: Regenerated. + - ldconfig.dpatch: The previous patch seems being wrong because it + supresses all warnings about error. The new patch I introduced should + not warn during debootstrap, and works finely during normal operation. + - ldd.dpatch: Regenerated. + - ldso-disable-hwcap.dpatch: Regenerated. + - locale-no_NO.dpatch: Drop locale.alias part which is already applied. + - makeconfig.dpatch: Regenerated. + - 50_glibc232-arm-dwarf2-buildfix.dpatch: Modify to fix sjlj compilation. + - 50_glibc232-m68k-dwarf2-buildfix.dpatch: Likewise. + + * These dpatches are currently suspended to apply (those entries in + 00list are commented out) with various reasons, they need update or + confirmation: + - 30_glibc232-base.dpatch: If this patch is needed, the another + binutils related problem should be occured. It's disabled for a + while, then remove iff no problem is reported. + - alpha-pic.dpatch: #175511 said the upstream should have another + different fix. After confirmation, it should be removed. + - arm-output-format.dpatch: I believe the recent arm glibc should work + without this patch. If arm still has problem, then enable it. + - glibc232-globfree-clear.dpatch: The latest upstream has gl_pathv=NULL + part, bug gl_pathc=0 part. I think the current code is harmless. + It needs confirmation to Jeff Licquia. + - translation-fr.dpatch: The upstream rejects this wishlist bug. After + confirmation, it'll be removed. + - mips-asm-unistd.dpatch: I need to look at the result of the current cvs + unistd.h. + - hurd-enable-ldconfig.dpatch: Disabled currently. + + * These dpatches are currently applied, but it may be removed from + 00list as until sarge stuff: + - libgcc-compat-all.dpatch: It'll be removed in future. + - libgcc-compat-other.dpatch: Likewise. + + * These dpatches are currently suspended to apply from 00list because + we plan to be removed after sarge release: + - glibc23-ctype-compat.dpatch: Until sarge stuff. + - glibc23-errno-hack.dpatch: Until sarge stuff. + - glibc23-errno.dpatch: This patch should not be considered permanent; + it may be one of until sarge stuff. + - glibc23-function-compat.dpatch: Until sarge stuff. + - locales-supported.dpatch: Debian specific, until sarge stuff. + + * This dpatch is not used currently: + - 10_cvs.dpatch + + * These dpatches are removed from debian/patches/ because they are already + in upstream cvs: + - 11_cvs_locales.dpatch + - 11_shlib-lds.dpatch + - 51_glibc232-hppa-dist.dpatch + - 51_glibc232-hppa-nopltrel.dpatch + - 51_glibc232-hppa-profiling.dpatch + - 52_glibc233-hppa-feupdateenv.dpatch + - 90_glibc232-statvfs.dpatch + - 90_glibc232-timezones.dpatch + - alpha-crti.dpatch + - alpha-rtsigaction-fix.dpatch + - fno-unit-at-a-time.dpatch + - glibc23-dlclose-l_opencount.dpatch + - glibc23-libio-compat.dpatch + - glibc23-powerpc-sigcontext.dpatch + - glibc23-sparc-pread64.dpatch + - glibc232-catchsegv-insecure-temp.dpatch + - glibc232-hppa-unwindinfo.dpatch + - glibc232-ia64-unwindinfo.dpatch + - glibc232-iconv-ucs2-unalign.dpatch + - glibc232-mips-dl-machine.dpatch + - glibc232-misc-syslog.dpatch + - glibc232-nptl-posix-timer.dpatch + - glibc232-ppc32-nanosecond.dpatch + - glibc232-remove-vsyscall.dpatch + - glibc232-sparc64-softfp.dpatch + - glibcbug.dpatch + - hppa-syscall.dpatch + - hurd-cleanup.dpatch + - hurd-exit-attr-hidden.dpatch + - hurd-i386-hwcap.dpatch + - hurd-libc-lock.dpatch + - hurd-utmp-file.dpatch + - locale-byn_ER.dpatch + - locale-et_EE.dpatch + - locale-ro_RO.dpatch + - locale-strfmon.dpatch + - mips-sgidefs.dpatch + - nptl-io-locking.dpatch + - nptl-page-align.dpatch + - nptl-pthread-c++.dpatch + - nptl-pthread-create-attr.dpatch + - nptl-pthread-once.dpatch + - pthread-cleanup.dpatch + - s390-backtrace.dpatch + - s390-pthread-fpic.dpatch + - syslog-locale.dpatch + + * Hurd update: + - debian/patches/hurd-string.dpatch: Removed, it's already in cvs. + - debian/patches/00list.hurd-i386: Removed. + - debian/patches/hurd-malloc.dpatch: Add to fix Hurd build fix, patch + from Michael Banck . + + -- GOTO Masanori Fri, 18 Mar 2005 09:41:49 +0900 + +glibc (2.3.2.ds1-22) unstable; urgency=medium + + * Daniel Jacobowitz + + - debian/patches/rtld-vdso-assertion.dpatch: Fix an assertion failure + running /lib/libc.so.6. + - debian/rules.d/debhelper.mk: Mark runnable libraries +x again. + + -- Daniel Jacobowitz Tue, 10 May 2005 15:11:53 -0400 + +glibc (2.3.2.ds1-21) unstable; urgency=high + + * GOTO Masanori + + - debian/patches/linuxthreads-sizefix.dpatch: Fix ia64 TLS_PRE_TCB_SIZE + alignment where TLS_DTV_AT_TP is defined between linuxthreads and nptl. + It breaks evolution on ia64 linuxthreads ld.so + nptl environment. + (Closes: #292673) + - debian/patches/glibc232-sigsetjmp.dpatch: Fix gcc-4.0 compilation + breakage on amd64. (Closes: #295457) + - debian/debhelper.in/libc.manpages: Add tzconfig.8. Reported by Matthijs + Mohlmann . (Closes: #182981) + - debian/patches/90_glibc232-timezones.dpatch: Update to tzdata2005h. + - debian/patches/hurd-weak-aliases.dpatch: Add to fix undefined references + to build putty on Hurd, patched by Michael Banck . + (Closes: #295118) + - debian/debhelper.in/libc.preinst: Fix typo, proofreading. + (Closes: #294816, #303478) + - debian/rules: Bump up shlib_dep_ver 2.3.2.ds1-21. It's required by + adding GLIBC_2.3.4 symbol. + + - Bastian Blank : + - debian/patches/sched-update.dpatch: Update sched_[gs]et_affinity to + new interface and library version. Add GLIBC_2.3.4 versioned symbol + for new interface. (Closes: #297769) + - Jeff Bailey : + - debian/patches/glibc232-tls-crashfix.dpatch: Fix tls assertion that + crashes xmms/nvidia. (Closes: #219352) + - debian/patches/glibc232-pthread-cancellation.dpatch: Fix pthread + cancellation bug that causes JVM lockups. (Closes: #300943) + - Denis Barbier : + - debian/debhelper.in/libc.preinst: Add export LC_ALL=C like + libc.postinst, it corrects some locale dependent behavior, + especially for `tr'. (Closes: #304257) + - Lars Wirzenius : + - debian/local/manpages/iconv.1: Escape hyphens for Unicode + environments. (Closes: #292013) + - Emilian Nowak : + - debian/po/pl.po: Add Polish debconf translation. (Closes: #294444) + - Matti Polla : + - debian/po/fi.po: Add Finnish debconf translation. (Closes: #303816) + - Khalid Aziz : + - debian/patches/glibc232-clock_settime.dpatch: Fix clock_settime + always fails with EINVAL. (Closes: #304668) + - Thiemo Seufer : + - debian/patches/glibc23-mips-lazy-eval.dpatch: Workaround fix for + broken symbol resolving of lazy evaluation stubs on mips/mipsel, + that causes fakeroot breakage. (Closes: #265678, #264920) + + -- GOTO Masanori Mon, 14 Feb 2005 09:26:26 +0900 + +glibc (2.3.2.ds1-20) unstable; urgency=high + + * GOTO Masanori + + - debian/patches/hppa-drop-utimes.dpatch: Fix sudo breakage because + system call utimes() is not defined on hppa. Patched by Randolph Chung + . (Closes: #284449) + + - Fix ia64 unwind FTBFS. Patched by Matthias Klose : + - debian/patches/glibc232-ia64-unwindinfo.dpatch: Modify Makeconfig + which unconditionally set the libunwind macro to -lunwind, until the + it's safe again to regenerate the configure script, on advice of + Jeff Bailey. (Closes: #284563) + - debian/control.in/main: Tighten build dependency on ia64 to + gcc-3.3_3.3.5-5. + - debian/control: Likewise. + + - debian/sysdeps/amd64.mk: Add /lib64 and /usr/lib64 symlinks which are + provided by glibc instead of base-files for amd64. Requested by Goswin + Brederlow . (Closes: #259302) + - debian/rules.d/debhelper.mk: Replace from extra_pkg_install to + extra_debhelper_pkg_install rule which are used for debhelper.mk only. + + - debian/patches/librt-mips.dpatch: Update to provide clock_{set,get}time + with versioned symbol both GLIBC_2.0 and GLIBC_2.2. This patch should + be applied until sarge+1 will be released. + + - debian/local/manpages/locale.1: Add the description about + /usr/share/i18n/SUPPORTED. Requested by Guillermo S. Romero + . (Closes: #284137) + + -- GOTO Masanori Wed, 15 Dec 2004 19:44:47 +0900 + +glibc (2.3.2.ds1-19) unstable; urgency=high + + * GOTO Masanori + + - debian/local/manpages/gencat.1: Use \fR instead of \fT for bold + font, and use .TP instead of .PP for option usage. Patched by + Lars Wirzenius . (Closes: #279685) + - debian/local/manpages/iconvconfig.8: Likewise + fix typo. + - debian/local/manpages/mtrace.1: Likewise. + - debian/local/manpages/locale.1: Add "SEE ALSO" to the end of the + manual. (Closes: #282128) + + - debian/sysdeps/linux.mk: Drop -fomit-frame-pointer from compiling + option to build NPTL packages in order to get valid backtrace. + -D__USE_STRING_INLINES is also dropped to consider about backtraces. + Requested by David Mosberger . + - debian/sysdeps/amd64.mk: Likewise. + - debian/sysdeps/i386.mk: Likewise. + - debian/sysdeps/s390.mk: Likewise. + - debian/sysdeps/sparc.mk: Likewise. + + - debian/patches/glibc232-hppa-unwindinfo.dpatch: Add for unwind + information for hppa plt fixup routine. Patched by + Randolph Chung . (Closes: #281993) + - debian/patches/glibc232-ia64-unwindinfo.dpatch: Add to work + ia64 unwind info and libunwind properly. Requested by David Mosberger + . (Closes: #278837) + + - debian/patches/glibc232-catchsegv-insecure-temp.dpatch: Add fix + CAN-2004-0968: catchsegv creates insecure temporary file. + (Closes: #278278) + - debian/debhelper.in/libc.install: Remove glibcbug to fix CAN-2004-0968, + and it's meaningless to include nowadays. (Closes: #205600) + - debian/debhelper.in/libc.manpages: Remove glibcbug.1 from manpage. + - debian/patches/glibcbug.dpatch: Add comment to be removed. + + - debian/make-cvs-patch.sh: Change like make-cvs-locales-patch.sh. + + - debian/patches/s390-pthread-fpic.dpatch: Add to fix lam build failure. + It changes pthread_atfork in libpthread_nonshared.a is built with + -fPIC, not -fpic, that is already applied in libc_nonshared.a. + (Closes: #280445) + + - debian/control.in/libc: Add gcc | c-compiler to Recommends of libc-dev. + This change avoids that aptitude tries to install various compiler + packages if only c-compiler is specified. (Closes: #283668) + - debian/control.in/main: Add Build-Depends: gcc-3.3 (>= 1:3.3.5-3) [ia64] + | gcc-3.4 (>= 3.4.3-2) [ia64] because ia64 should be built with gcc + which supports libunwind. Requested by Matthias Klose + . + - debian/control: Update. + + - debian/patches/nptl-pthread-c++.dpatch: Add to disable using C99 + designators for nptl pthread.h to fix C++ breakage. Patched by + Andreas Jochens and Matthias Klose + . (Closes: #275997, #283461) + + -- GOTO Masanori Sat, 6 Nov 2004 19:04:26 +0900 + +glibc (2.3.2.ds1-18) unstable; urgency=high + + * GOTO Masanori + + - debian/patches/glibc232-sparc64-softfp.dpatch: Add to fix + glibc build breakage on sparc with binutils 2.15. It's caused by + the register misusage, that was allowed by the previous binutils. + (Closes: #266598) + - debian/debhelper.in/libc.postinst: Fix to execute NSS services + correctly when file-rc is used. (Closes: #275403) + + - debian/patches/90_glibc232-timezones.dpatch: Update to tzdata2004e. + + - debian/debhelper.in/locales.prerm: Add to fix warning not to remove + /usr/lib/locale/locale-archive. (Closes: #264020) + - debian/debhelper.in/locales.postrm: Add to remove /etc/locale.gen + when purge is specified. + + -- GOTO Masanori Tue, 5 Oct 2004 09:32:01 +0900 + +glibc (2.3.2.ds1-17) unstable; urgency=high + + * GOTO Masanori + + - debian/sysdeps/depflags.pl: Fix typo, from "kerberos4th-dev" to + "kerberos4kth-dev". (Closes: #266637) + - debian/patches/00list: Add locale-byn_ER.dpatch that was missing + when I fixed. (Closes: #270998) + + - debian/patches/glibc23-dlclose-l_opencount.dpatch: Fix reference + counter in dl that does not sometimes decrement correctly. + (Closes: #233301, #259211) + - debian/patches/glibc232-globfree-clear.dpatch: Workaround and + to make sure that fix to enforce clear gl_pathc and gl_pathv in + globfree() for sarge to conform LFS test, requested by Jeff Licquia. + (Closes: #264884) + + - debian/local/manpages/tzselect.1: Fix typo. (Closes: #269747) + + - debian/debhelper.in/libc.preinst: Don't install glibc when kernel + is not 2.6 on amd64. + - debian/sysdeps/amd64.mk: Patch from Andreas Jochens: + - Drop the 'nptl' pass from GLIBC_PASSES. + - Use 'nptl' instead of 'linuxthreads' in the 'libc' pass (this + requires kernel >= 2.6.0, but 2.4 is not supported by the amd64 + port anyway). + + -- GOTO Masanori Thu, 19 Aug 2004 12:39:35 +0900 + +glibc (2.3.2.ds1-16) unstable; urgency=high + + * GOTO Masanori + + - debian/FAQ: Add note about errno + NPTL workaround. + (Closes: #261035) + - debian/patches/glibc232-mips-dl-machine.dpatch: Fix mips/mipsel + compilation breakage with the recent binutils. (Closes: #262646) + - debian/patches/glibc232-m68k-reloc.dpatch: Fix m68k compilation + breakage with the recent binutils. (Closes: #263601) + + * Jeff Bailey + + - debian/debhelper.in/libc-dev.install.hurd-i386: Don't install + getconf. + + -- GOTO Masanori Mon, 2 Aug 2004 11:53:54 +0900 + +glibc (2.3.2.ds1-15) unstable; urgency=high + + * Jeff Bailey + + - debian/sysdeps/depflags.pl: Replace ${libc}, not libc6. + (Closes: #262669) + + - Marking urgency as high, last upload should have been marked + this way for RC bug fix. + + -- Jeff Bailey Sun, 1 Aug 2004 08:50:13 -0400 + +glibc (2.3.2.ds1-14) unstable; urgency=low + + * GOTO Masanori + + - debian/patches/glibc232-iconv-ucs2-unalign.dpatch: Add to fix + iconv unalignment access with UCS-2BE/UCS-2LE on some architectures. + (Closes: #234691) + - debian/patches/locale-byn_ER.dpatch: Add to fix byn_ER localedef + breakage. Patched by Denis Barbier . + (Closes: #246270, #257658) + - debian/patches/locales-supported.dpatch: Add no_NO.ISO-8859-1 into + SUPPORTED. (Closes: #246170) + - debian/patches/glibc232-nptl-posix-timer.dpatch: Fix posix timer + SIGEV_THREAD notification is broken. (Closes: #259878) + - debian/patches/glibc232-remove-vsyscall.dpatch: Remove __ASSUME_VSYSCALL + to fix the system startup failure on the machine using PAX. + (Closes: #245563) + - debian/patches/90_glibc232-timezones.dpatch: Updated to tzcode2004b + and tzdata2004b. + - debian/patches/locale-eu_FR.dpatch: Add eu_FR and eu_FR@euro. + Patched by Christian Perrier . (Closes: #257840) + - debian/patches/locale-sr_CS.dpatch: Add sr_CS and sr_CS@cyrillic. + Patched by Christian Perrier . But this patch is + conflicted to sr_YU things - it's disabled for a while. + + - debian/local/etc_init.d/nscd: Rewritten the whole script to make + use of the initscript's method. Patched by Thomas Hood + . + (Closes: #229273, #229484, #253119, #252284, #222953) + + - debian/local/manpages/iconv.1: Add small description for `-c' and + so on. (Closes: #189958) + - debian/local/manpages/rpcgen.1: Add -M option description. + (Closes: #193467) + - debian/po/de.po: Updated. Patched by Helge Kreutzmann + . (Closes: #251732) + + - debian/debhelper.in/libc.postinst: Add apache-ssl and apache-perl to + restart script. Suggested by Daniel Jacobowitz . + (Closes: #208997) + - debian/debhelper.in/libc.postinst: Add vsftpd to restart script. + Suggested by Jeff Bailey . (Closes: #213535) + - debian/debhelper.in/libc.postinst: Add lpr-ppd. Change init script + name from lpr, lpr-ppd to lpd, lpd-ppd. (Closes: #205084) + - debian/debhelper.in/libc.postinst: Fix package detection failure when + uninstalled package is encountered during NSS upgrade. + (Closes: #193278) + - debian/debhelper.in/libc.postinst: Add export LANG=C to work scripts + correctly even if user sets locale environment variable. + - debian/debhelper.in/libc.postinst: Change sleep time from 1 to 2. + It's work-around fix, actual fix is start-stop-daemon --stop should + check the process termination. See: #211784. + + - debian/local/usr_sbin/tzconfig: Fix typo: old_timezone vs oldtimezone. + Reported by Kai Henningsen . (Closes: #213159) + + - debian/control.in/libc-dbg: Add Provides: libc-dbg for -dbg package. + (Closes: #219145) + - debian/control.in/libc, debian/control: likewise. + + - /usr/bin/getconf and getconf.1 are moved from libc-dev to libc. + (Closes: #239170) + - debian/debhelper.in/libc-udeb.install: Add libutil* and libcrypt* + to -udeb. (Closes: #258956) + + - Put amd64 port from Andreas Jochens. + - debian/control: Updated. + - debian/control.in: Modify Build-Depends: gcc-3.3 | gcc-3.4. + glibc can build at least gcc-3.3 and later. And this will make it + possible to build glibc with gcc-3.4 when gcc-3.4 becomes the default + on amd64 without changing glibc again. + - debian/sysdeps/amd64.mk: Use workaround -g0 option when gcc-3.4 is + used, because gcc-3.4 on amd64 with -g0 + nested functions are broken: + http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=260710 + + * Andreas Jochens + + - debian/rules.d/control.mk: Add amd64 at the appropriate places. + - Add debian/patches/amd64-lib.dpatch to disable the biarch lib64 dir on + amd64 and enable this patch in debian/patches/00list. (Closes: #246547) + - Add a new file debian/sysdeps/amd64.mk with GLIBC_PASSES += nptl + (Closes: #248192) + - debian/sysdeps/amd64.mk: Use gcc instead of gcc-3.3 on amd64. + - debian/patches/fno-unit-at-a-time.dpatch: Add -fno-unit-at-a-time + test to configure for amd64 + gcc-3.4. (Closes: #261082) + + * Jeff Bailey + + - debian/patches/syslog-locale.dpatch: Include patch from Jakub + Jelinek to make sure syslogging happens in the C locale. + Thanks to pere for catching this. (Closes: #161340, #158651) + + - debian/patches/hurd-string.dpatch: New file + - debian/patches/00list.hurd-i386: Only load hurd-string on hurd-i386. + + -- GOTO Masanori Mon, 31 May 2004 23:43:29 +0900 + +glibc (2.3.2.ds1-13) unstable; urgency=low + + * Jeff Bailey + + - debian/control.in/main: Change to new email address. + - debian/debhelper.in/libc-dev.install.hurd-i386: Add missing files. + Thanks to Michael Banck (Closes: #246355) + - debian/sysdeps/gnu.mk: Stub out kernel_check. + Thanks to Michael Banck + + * GOTO Masanori + + - debian/debhelper.in/libc.preinst: Fixed to work when kernel version is + x.y.zFOOz pattern. (Closes: #245643) + - debian/patches/locale-ro_RO.dpatch: Fix Romania can't be built. + (Closes: #245657) + - debian/local/manpages/locale.1: Fix typo: LOC_PATH -> LOCPATH. + (Closes: #246557) + - debian/rules: Fix build correctly when we execute "debian/rules binary". + Patched by Jurij Smakov . (Closes: #247241) + - debian/patches/glibc232-misc-syslog.dpatch: Fix syslog segv under + memory shortage. (Closes: #249559) + - debian/patches/s390-backtrace.dpatch: Fix 900 test failures in the + libjava testsuite in gcc-3.4 on s390. (Closes: #243394) + - debian/sysdeps/linux.mk: Fix build failure when kernel headers directory + in /usr/src has symlink asm direcotry. Patched by Wolfram Gloger + . (Closes: #249408) + + - debian/debhelper.in/libc-udeb.install: Add libnss_files.so*, + - debian/libnss-dns-udeb, libnss-dns-files: Update description. + - debian/control: Update. + + * Colin Watson + + - debian/rules: Add libnss-dns-udeb and libnss-files-udeb. + (Closes: #247430) + - debian/.cvsignore: Likewise. + - debian/control.in/libc: libc-udeb depends on libnss-dns-udeb and + libnss-files-udeb. + - debian/debhelper.in/libc-udeb.install: Remove libnss_dns and libnss_files. + - debian/rules.d/control.mk: Likewise. + - debian/control.in/libnss-dns-udeb: Update description. + + -- GOTO Masanori Wed, 26 May 2004 00:18:06 +0900 + +glibc (2.3.2.ds1-12) unstable; urgency=low + + * GOTO Masanori + + - debian/local/etc_init.d/mountkernfs: Fix typo. (Closes: #229340) + - debian/local/etc_init.d/mountkernfs: Fix error if the kernel does not + set CONFIG_TMPFS on 2.4. (Closes: #230758) + - debian/local/etc_init.d/mountkernfs: Check each mount directory is + actually directory or not. (Closes: #234813) + - debian/local/etc_init.d/mountkernfs: remove "set -e". + - debian/debhelper.in/libc.postinst: use invoke-rc.d to invoke + mountkernfs when it's available, suggested by Junichi Uekawa + . (Closes: #230008) + + - debian/debhelper.in/libc.install: drop installing three files: + debian/local/etc_init.d/mountkernfs, debian/local/etc_default/devpts, + and debian/local/etc_default/tmpfs. Because initscripts now provides + those files. (Closes: #238963) + - debian/debhelper.in/libc.preinst: devpts.sh should be actually replaced to + mountkernfs. But by now mounting filesystems should be done with + mountvirtfs in initscripts. Initscripts needs to remove devpts.sh and + mountkernfs. + - debian/debhelper.in/libc.postinst: likewise. + - debian/debhelper.in/libc.postrm: likewise. + + - debian/debhelper.in/libc.preinst: Fix kernel version detection correctly. + Patched by Goswin von Brederlow . + (Closes: #241395). + + - debian/rules.d/debhelper.mk: Fix build failure in strip processing. + + - debian/patches/51_glibc232-hppa-nopltrel.dpatch: Do not process + lezy relocations if no DT_PLTREL is present. Reported by + Richard Hirst and Patched by + Carlos O'Donell . (Closes: #228375) + - debian/patches/glibc232-ppc32-nanosecond.dpatch: Fix ppc32 stat + reports bogus nanosecond data. Patched by Anton Blanchard + . (Closes: #231358) + - debian/patches/nptl-io-locking.dpatch: Add stdio performance + improvement for nptl. Dpatched by Michael Clark + . (Closes: #238213) + - debian/patches/52_glibc233-hppa-feupdateenv.dpatch: + The newest compiler in unstable has caught a bug in the feupdateenv + implementation for hppa. The code should not be using the constant input + argument as temporary scratch. Patched by Carlos O'Donell + . + - debian/patches/localedef-fix-trampoline.dpatch: Fix localedef segv + when run under exec-shield/PaX and so on due to trampoline issue. + Dpatched by James Troup . + (Closes: #231438, #198099, #215624, #215821, #221740) + - debian/patches/alpha-rtsigaction-fix.dpatch: Fix alpha sigaction with + SA_SIGINFO (rt_sigaction), keep program execution after exiting signal + handler, with correctly calling rt_sigreturn. (Closes: #221969) + - debian/patches/translation-fr.dpatch: Include fr.po translation patch. + Patched by Petter Reinholdtsen . Related bug #243183 + is currently suspended. + - debian/patches/locale-et_EE.dpatch: Fix et_EE locale incorrect charset. + Patched by Petter Reinholdtsen . (Closes: #208238) + + - debian/debhelper.in/libc.postinst: add rsync to NSS checking code. + (Closes: #229196) + - debian/debhelper.in/libc.preinst: add kernel version check code if + real i386 is used. (Closes: #231538) + + - debian/po/da.po: added. Patched by Morten Brix Pedersen . + (Closes: #230669) + - debian/po/cs.po: added. Patched by Miroslav Kure + . (Closes: #230969) + - debian/po/el.po: added. Patched by Konstantinos Margaritis + . (Closes: #230997) + - debian/po/ru.po: added. Patched by Ilgiz Kalmetev + . (Closes: #221657) + - debian/po/uk.po: added. Patched by Eugeniy Meshcheryakov + . (Closes: #235850) + - debian/po/zh_CN.po: added. Patched by Hiei Xu + and Carlos Z.F. Liu . (Closes: #231907) + - debian/po/tr.po: added. Patched by Ercin EKER + and Recai Oktas . (Closes: #240654) + + - debian/debhelper.in/glibc-doc.links: add manpages links for sem_*. + + - debian/patches/template.dpatch: split Author to Dpatch author and + Patch author. + + - debian/sysdeps/hppa.mk: added to create symlink + /usr/hppa64-linux/include to /usr/include for hppa64. (Closes: #239020) + - debian/sysdeps/depflags.pl: added conflicts to gcc-3.3-hppa64 and + gcc-3.4-hppa64. + - debian/sysdeps/depflags.pl: Add replaces: kerberos4th-dev (<< 1.2.2-10) + to avoid conflicting /usr/include/ifaddrs.h. (Closes: #234347) + + - debian/control.in/opt: made libc6-i686 description easier to + understand from users' requests. (Closes: #218396, #239555, #242546) + + - debian/local/usr_sbin/locale-gen: Add code to write an error if the + line doesn't satisfy the format. Patched by Petter Reinholdtsen + . (Closes: #207199) + + * Jeff Bailey + + - debian/debhelper.in/libc.preinst: Don't use awk except in + upgrade mode. (Closes: #229461) + Also make sure that it doesn't trip on words being added to the + upstream revision number. Thanks to James Troup for + mentioning this. + Thanks to Bastian Blank for the fix. + - debian/debhelper.in/libc.postinst: Respect DEBIAN_FRONTEND=noninteractive + for setting timezone. Default to UTC. (Closes: #196382) + + - debian/debhelper.in/libc.docs: Add TODO. + + Hopefully the last round of hurd-i386 fixes: + + - debian/debhelper.in/libc-dev.install.hurd-i386: New file. + - debian/rules.d/debhelper.mk: Deal with the arch-specific install files. + - debian/patches/hurd-cleanup.dpatch: New file for dl-procinfo.c and + missing include in malloc.c (Both in upstream) + - debian/patches/00list: Update + + Locales surgery, with many thanks to Petter Reinholdtsen: + + - debian/patches/glibc22-eo_EO.dpatch: Rename to ... + - debian/patches/locale-eo_EO.dpatch: ... this. + - debian/patches/11_cvs_locales.dpatch: New generated file from CVS. + - debian/patches/locales-stuff.dpatch: Remove bogs code and split + into .. + - debian/patches/locale-de_CH.dpatch: ... this and ... + - debian/patches/locale-ru_RU.dpatch: this. + - debian/patches/locale-no_NO.dpatch: New file to keep no_NO around + during the transition to nb_NO. + - debian/patches/locale-strfmon.dpatch: New file from CVS needed + for new locales formatting. (Closes: #226047) + - debian/patches/00list: Update. + + - debian/patches/glibc22-locales.dpatch: Obsoleted by CVS update. + - debian/patches/locale-es_AR.dpatch: Add template header. + - debian/patches/locales-supported.dpatch: Remove entries provided + by CVS. Add no_NO for transition. + + (Closes: #211607, #215466, #218424) + + - debian/patches/template.dpatch: Tweak to make it easier to + generate patches. + - debian/make-cvs-locales-patch.sh: New file. + + * Daniel Jacobowitz + + - Add separate-debug-info files to libc6-dbg to allow backtraces through + optimized libraries (Closes: #227097, #219459) + - debian/control.in/main: Bump build dependencies for binutils and + debhelper. + - debian/control.in/libc-dbg: Update package description. + - debian/rules: Set NOSTRIP after loading sysdeps rules files, so that + it actually gets set. + - debian/rules.d/debhelper.mk: Generate separate debug info libraries. + Touch stamp file for libc-udeb. + - debian/sysdeps/i386.mk, debian/sysdeps/linux.mk, s390x_extra_cflags, + debian/sysdeps/sparc.mk: Use -g1 instead of -g0 so that we get + unwind information. + - debian/wrapper/objcopy: Wrapper script to remove excess debug + info, for now. + - Remove tabs from debian/changelog, since they confuse + dpkg-parsechangelog. + - Add missing quotes in debhelper.mk NOSTRIP test. + - Don't add libc-dir-add.info to info after all + (Closes: #222171, #230765). + (debhelper.in/glibc-doc.info, debhelper.in/glibc-doc.install) + + * Ben Collins + + - Added and enabled a sparc v9b target (UltraSPARC III). + + * Bastian Blank + + - Add libnss-dns-udeb package. + - Rename udebs to match the real packages. (Closes: #183139) + - Fix provides of udebs. (Closes: #183143) + - Use debhelper udeb knowledge. + + -- GOTO Masanori Wed, 21 Apr 2004 00:40:55 +0900 + +glibc (2.3.2.ds1-11) unstable; urgency=low + + * Jeff Bailey + + - debian/control.in/s390x: Remove -dev dependency on gcc-3.2. + - debian/sysdeps/s390.mk: Add missing ) + - debian/rules: Fixes for cross-compiling + - debian/patches/90_glibc233_tcsetaddr.dpatch: LSB Fix for tcgetattr + (Closes: #218131) + - debian/sysdeps/depflags.pl: Update wine conflicts. + (Closes: #218717) + - debian/sysdeps/depflags.pl: Update cyrus-imapd conflicts. + (Closes: #220983) + - debian/sysdeps/sparc.mk: Force -m32 when building sparcv9 + - debian/patches/glibc-sparc-timing.dpatch: New file to let sparcv9 works. + (Closes: #222886) + - debian/patches/nptl-page-align.dpatch: New file to fix page + alignment troubles. (Closes: #223241, #225466) + + - debian/patches/hurd-exit-attr-hidden.dpatch: New file to fix + compilation on gcc-3.3 and hurd-i386 + - debian/patches/hurd-i386-hwcap.dpatch: New file to give the needed + i386 HWCAP defines on hurd-i386 + - debian/patches/hurd-libc-lock.dpatch: New file to fix FTBFS on hurd-i386 + - debian/patches/hurd-utmp-file.dpatch: New file to fix FTBFS on + non-Linux. + - debian/patches/glibc23-cmov.dpatch: Update for moved i386 HWCAP + definitions. + - debian/patches/glibc23-sse-oldkernel.dpatch: Updated for + severelly munged sysdeps/unix/sysv/linux/i386/dl-procinfo.h + Thanks to Barry deFreese for helping get these in order. + + - debian/patches/00list: Update + + - debian/debhelper.in/libc.preinst: For Linux kernels of the form + x.y.z-n, fail the install if z >= 255. (Closes: #226688) + Thanks to James Morrison and Kevin Everets for help on the wording + of the error message. + + - debian/sysdeps/sparc.mk: Revert Ben's change of '-mcpu=v8 + -mtune=ultrasparc'. This was misleading because it was always + overridden by the glibc Makefile and had no effect. + + * Phil Blundell + + - Require linux-kernel-headers >= 2.5.999-test7-bk-9 to avoid module- + related problems on ARM. + + * Ben Collins + + - Bump sparcv9 back to -mcpu=v8 -mtune=ultrasparc. Should fix sparcv9. + + * Daniel Jacobowitz + + - Pass CC to configure; should fix sparc64. + - Suppress the errno warning message for now. Update to point to + README.Debian.gz. + - debian/patches/glibc23-errno-hack.dpatch, debian/FAQ + - Redirect dpkg -s sysvinit's stderr to /dev/null (Closes: #225601). + - Fix on MIPS targets. Thanks to Guido Guenther + for testing and improvements to the patch (Closes: #223891, #226483). + - debian/patches/mips-asm-unistd.dpatch + - Fix for GCC changes from Thiemo Seufer (Closes: #224744). + - debian/patches/mips-sgidefs.dpatch + - Fix i386-linux build failure. + - debian/patches/glibc23-sse-oldkernel.dpatch + - Quote a backslash in libc.preinst + + * GOTO Masanori + + - debian/debhelper.in/glibc-doc.links: add missing links for + pthread_mutex_*(), pthread_mutexattr_*(), pthread_cond_*(), and + pthread_condattr_*(). + - debian/control.in/main: remove Build-Depends-Indep: latex2html. + (Closes: #221317) + + - debian/local/etc_init.d/devpts.sh: rename to mountkernfs. + - debian/local/etc_init.d/mountkernfs: rename from devpts.sh, for + adding to mount tmpfs(shmfs), sysfs, and usbfs. + - debian/local/etc_default/tmpfs: add to control tmpfs upper limit size. + - debian/debhelper.in/libc.dirs: add to make /sys. + - debian/debhelper.in/libc.install: add mountkernfs and tmpfs, + remove devpts.sh. + - debian/debhelper.in/libc.postrm: rename devpts.sh to mountkernfs. + - debian/debhelper.in/libc.postinst: likewise. + - debian/local/etc_init.d/mountkernfs: fix devpts_mounted to check + its pathname is exactly started from the top directory. + + - debian/debhelper.in/libc.preinst: fix preinst does not stop + on mips even if it's kernel version is < 2.4.22. (Closes: #223769) + + - debian/po/pt_BR.po: Update pt_BR debconf template translation. + Patched by Andre Luis Lopes . (Closes: #219839) + - debian/po/nl.po: Update nl debconf template translation. + Patched by cobaco . (Closes: #220693) + + * Carlos O'Donell + + - debian/patches/51_glibc232-hppa-dist.dpatch: Add entry.h to dist. + - debian/patches/51_glibc232-hppa-profiling.dpatch: Fix profile support. + (Closes: #221010) + + -- Daniel Jacobowitz Tue, 20 Jan 2004 09:41:48 -0500 + +glibc (2.3.2.ds1-10) unstable; urgency=low + + This is the "Swimming to the surface" release. + + * GOTO Masanori + + - debian/control.in/opt: Add more ix86 CPUs in the description. + - debian/debhelper.in/libc.preinst: Ignore old libc4/5. + (Closes: #218449) + + * Daniel Jacobowitz + + - Add a patch to automatically disable NPTL for programs which + reference the old errno; and update the FAQ to match. + (glibc23-errno-hack.dpatch). + - Update make build dependency as reported by Mikko Kautto + (Closes: #218595). + - Update debian/po/nl.po with new translation from Bart Cornelis + (Closes: #218642). + - Update SSE disabling patch to work for static binaries too + (Closes: #218524, #219025). + - debian/debhelper.in/libc.preinst: Ignore ia32-libs also + (Closes: #219176). + - debian/control.in/main: Build depend on fixed linux-kernel-headers + to get ia64 module syscalls (Closes: #218645). + + * Jeff Bailey + + Update to Standards-Version 3.6.1: + - debian/changelog: Convert from Latin-1 to UTF-8. 1 Line affected. + - debian/control.in/main: Update version number. + Fix some lintian warnings: + - debian/changelog: Remove obsolete user-emacs settings. + - debian/control.in/libc: Remove trailing periods from synopis'. These + aren't full sentences. + - debian/local/manpages/gencat.1: New file. + - debian/local/manpages/trace.1: New file. + - debian/debhelper.in/libc-dev.manpages: Install them. + - debian/local/manpages/iconvconfig.8: New file. + - debian/debhelper.in/libc.manpages: Install it. + - debian/patches/90_glibc232-statvfs.dpatch: Don't get confused on bad + mtab. (Closes: #219271) + - debian/patches/90_glibc232-timezones.dpatch: Update timezone + information. + + * Phil Blundell + + - debian/patches/arm-ioperm.dpatch: Third time lucky? + + -- Jeff Bailey Wed, 5 Nov 2003 10:53:14 -0500 + +glibc (2.3.2.ds1-9) unstable; urgency=low + + * GOTO Masanori + + - debian/po/es.po: Update. Patched by Carlos Valdivia Yagüe + . + - debian/debhelper.in/libc.preinst: Replace s/libc6/glibc/ + in messages, actually there are not only libc6, but also + libc6.1, libc0.3, and so on. + + * Daniel Jacobowitz + + - Export libpthread symbols needed for thread debugging + (glibc23-thread-debugging.dpatch). + - Remove glibc23-thread-debugging.dpatch in response to upstream + comments. Don't strip libpthread symbols needed for thread debugging. + - Add version sanity check for kernels whose extraversion starts with a + dot (Closes: #218546). + - Disable SSE for pre-2.4 kernels (Closes: #218524). + - Symlink asm-sparc and asm-sparc64 into debian/include if necessary. + - Don't duplicate .so symlinks in libc6-s390x and libc6-dev-s390x. + - Add a build fix for sparc64; pread syscall has been renamed to + pread64. + - Add a FAQ entry for unresolved errno (Closes: #218561). + - Import patch from CVS to fix ucontext_t/mcontext_t on powerpc32 + (Closes: #207806). + - Patch from Randolph Chung for HPPA system calls + (hppa-syscall.dpatch). + + -- Daniel Jacobowitz Sat, 1 Nov 2003 18:54:16 -0500 + +glibc (2.3.2.ds1-8) unstable; urgency=low + + * Daniel Jacobowitz + + - Don't use --enable-omitfp since we don't install libc_g.a. + - Enable NPTL for S/390. + - Fix the /lib/ld64.so.1 symlink for s390x. + - Update maintainer scripts for fixes lost in the rewrite. + - Enable NPTL for ia64. Thanks to Ian Wienand for testing. + - Automatically cross-compile if the kernel is too old to build + an optimized library. + - Do not run make check if cross compiling. + - Fix msqid_ds on MIPS. Dpatch from Guido Guenther, patch by + Thiemo Seufer (Closes: #215273, #200215, #217593). + - Check for old copies of glibc in a couple of places (Closes: #212224). + - Fix a libio compatibility code bug which crashed the Citrix client + (glibc23-libio-compat.dpatch). + - Remove fuzzy markers from fr.po. Patch from Denis Barbier + (Closes: #217865). + - Re-add debian/patches/80_glibc232-locales-nb_NO-fix.dpatch, which had + gotten lost. + - Re-add typo fixes to iconv.1 and rpcgen.1. (Closes: #202161) + - Merge iconv.1 fix to iconv.pod. + - Re-add fix for locale-gen and POSIXLY_CORRECT. + - Update ldso-disable-hwcap.dpatch and preinst/postinst scripts. + - Update maintainer scripts not to use basename; dpkg invokes the + scripts as tmp.ci/postinst, not libc6.postinst. + - Add a patch for building shlib.lds which fixes a parse error when + building without an existing -dev package installed. + - debian/patches/11_shlib-lds.dpatch + + * Jeff Bailey + + - debian/sysdeps/linux.mk: Use getconf _NPROCESSORS_ONLN instead + of /proc/cpuinfo to calculate NJOBS. The cpuinfo file format + is not consistent between arch's. + - debian/.cvsignore: New file. + + * GOTO Masanori + + - debian/debhelper.in/locales.dirs: Add /usr/lib/locale, because + localedef stops to create locale data if this dir is not found. + - debian/debhelper.in/libc-otherbuild.preinst: Fix typo which + disturbs to install libc-otherbuild package. + - Dan's checking code for old copies in libc6 preinst fixes + installation breakage for example /usr/lib/debug is in + /etc/ld.so.conf, or so on. + (Closes: #165374, #212224). + - debhelper.in/libc.preinst: add kernel version sanity check for + sun4m arch which needs at least 2.4.21 due to hardware multiplication + instruction is used by default. (Closes: #215010, #215012) + - debian/debhelper.in/libc.preinst: fix check_dirs return value. + + -- Daniel Jacobowitz Tue, 28 Oct 2003 18:29:09 -0500 + +glibc (2.3.2.ds1-7) experimental; urgency=low + + * Daniel Jacobowitz + + - Fix TLS libraries, which belong in /lib/tls, not /libtls. + - Fix -march for NPTL libraries on i386 - was i686, should have + been i486. + - Move i686 libraries to /lib/tls/i686/cmov. + - Include make check output in the libc package. + - S/390 perversely uses /lib/ld64.so.1 as the dynamic linker; include + a symlink. + - Leave /lib64/ld64.so.1 executable on S/390. + - Generate SUPPORTED again. + - Update ldconfig to prefer /lib/tls to /lib/i686/cmov. + - Disable conflicts between optimized libraries and libsafe/memprof; + they've worked for a while. + - Switch the i686 optimized libraries to use NPTL, and update their + description. + - Fix dependencies for locales package. + - Include SONAME symlinks in libc6-dbg. + - Remove vestigial gconv-modules Provides. + - Install more files for libc6 and locales packages. + - Correct section for zdump.8 man page. + - Install ld.so.8 in the right directory (debhelper thinks that .so is a + language extension). + - Install info menu entries for functions provided by libc, in + glibc-doc. + - Include changelog in glibc-doc also. + - Re-add libc6-dev dependency on matching libc6. + - Fix libc-udeb build. + + * Phil Blundell + + - debian/patches/arm-ioperm.dpatch: Try again. + + * Jeff Bailey + + Welcome back HPPA, Thanks to Carlos O'Donell + + - debian/patches/50_glibc232-hppa-full-nptl-2003-10-22.dpatch: New. + - debian/patches/50_glibc23-hppa-entry.dpatch: Remove. + - debian/patches/glibc23-00-hppa-pthreads.dpatch: Remove. + - debian/patches/glibc23-01-hppa-dl-machine.dpatch: Remove. + - debian/patches/glibc23-07-hppa-atomicity.dpatch: Remove. + - debian/patches/glibc23-hppa-compat.dpatch: Remove. + - debian/patches/glibc23-hppa-malloc8.dpatch: Remove. + + - debian/patches/00list: Update. + + - debian/rules: Define NJOBS as 1. + - debian/sysdeps/linux.mk: Define NJOBS based on number of processors + - debian/rules.d/build.mk: Use -j $(NJOBS) during build. + Based on patch from Ian Wienand + + - debian/debhelper.in/libc.install: Install pt_chown + - debian/rules.d/debhelper.mk: Don't clobber SUID on pt_chown + - debian/debhelper.in/glibc-doc.docs: Install DEB_SRCDIR/ChangeLog* + - debian/rules.d/build.mk: Don't run testsuite if DEB_BUILD_OPTIONS + contains nocheck + + - debian/sysdeps/gnu.mk: Define slibdir. + - debian/rules.d/build.mk: Only set slibdir in configparms if its set. + - debian/debhelper.in/glibc-doc.doc-base: New file. + - debian/debhelper.in/glibc-doc.install: New file. + - debian/debhelper.in/glibc-doc.links: New file. + - debian/rules.d/build.mk: Generate HTML files. + - debian/rules.d/debhelper.mk: Map LIBC to $(libc) in generated files. + - debian/debhelper.in/libc.install: Install Linuxthreads ChangeLog. + - debian/debhelper.in/libc.docs: Install various docs. + - debian/sysdeps/kfreebsd-gnu.mk: New file. Put in all the magic + from the old packaging. + - debian/sysdeps/kfreebsd.mk: Deleted. + - debian/sysdeps/gnu.mk: Add in GLIBC_OVERLAYS to allow patching to work, + create ld.so symlink at end of build. + - debian/sysdeps/sparc.mk: Change MIN_KERNEL_REQUIRED to + MIN_KERNEL_SUPPORTED. + - debian/sysdeps/s390.mk: Likewise. + - debian/rules: Define kernel_check macro. + - debian/sysdeps/linux.mk: Override kernel_check for Linux. + - debian/rules.d/build.mk: Call kernel_check macro when --build == + --host + + * GOTO Masanori + + - debian/po/ru.po: Update. Patched by Ilgiz Kalmetev + . (Closes: #214349) + + -- Daniel Jacobowitz Sat, 25 Oct 2003 15:09:02 -0400 + +glibc (2.3.2.ds1-6) experimental; urgency=low + + * Phil Blundell + + - debian/patches/arm-ioperm.dpatch: New. + + * Daniel Jacobowitz + + - Add debhelper build dependency. + - Use linux-kernel-headers package for headers. + - Add S/390 support. + - Build libc6-dev-sparc64. + + -- Daniel Jacobowitz Mon, 20 Oct 2003 16:27:39 -0400 + +glibc (2.3.2.ds1-5) experimental; urgency=low + + * Daniel Jacobowitz + + - Fix a thinko in i686 timing patch for non-HP_TIMING architectures. + - Add -k to make check. + + -- Daniel Jacobowitz Mon, 13 Oct 2003 10:53:31 -0400 + +glibc (2.3.2.ds1-4) experimental; urgency=low + + * Daniel Jacobowitz + + - Update i686 timing patch to fix clock_gettime. + - Update glibc23-cmov patch to let ld load tls libraries from + ld.so.cache. + - Include symlinks in optimized library directories to placate + dpkg-shlibdeps. + - Fix shlibs files to include a version again. + - Re-enable make check. + - Update makeconfig.dpatch to fix a typo that broke make check. + - Add glibc-make-check-perms.dpatch to fix an upstream make check + problem. + - Build some optimized libraries using appropriate --build options + so that they can run make check. + + * Jeff Bailey + + - Build libraries for sparcv9 and sparc64. + - Enable TLS for ia64. + + -- Daniel Jacobowitz Sun, 12 Oct 2003 19:42:11 -0400 + +glibc (2.3.2.ds1-3) experimental; urgency=low + + * Daniel Jacobowitz + + - Use ldd* in debhelper.in/libc6, because non-i386 arches don't have + lddlibc4. + - Include gconv-modules in libc6. + - Don't include some unnecessary generated kernel headers. + - Merge previous .dpatch files (Closes: #214470). + - Run depflags.pl again (Closes: #214468). + - Don't include profiled libraries in libc-dev (Closes: #214504). + - Ship /usr/include/asm-generic (Closes: #214512). + + -- Daniel Jacobowitz Mon, 6 Oct 2003 21:18:28 -0400 + +glibc (2.3.2.ds1-2) experimental; urgency=low + + * Daniel Jacobowitz + + - Install the right headers in /usr/include/asm, instead of trying to + replace the directory with a symlink (Closes: #214233). + - Map DEB_HOST_GNU_CPU to a uname value for creating the asm symlink. + - Move libc6-dev's postinst back to preinst. + - Support multiple autoconf.h headers. + - Add an ia64 autoconf.h, from Branden Robinson. + + -- Daniel Jacobowitz Sun, 5 Oct 2003 14:47:05 -0400 + +glibc (2.3.2.ds1-1) experimental; urgency=low + + * Essentially redo the debian/ packaging directory. + + Specifically, the following directories were changed: + - debian/sysdeps/*: Redo into os-based and arch-based handling. + - debian/debhelper.in/*: Use debhelper for all package management. + - debian/rules.d/*: Split out rules file into logical pieces. + - debian/local/*: Move all of the files that Debian provides to here. + + Update dpatch to more closely match the debian package: + - debian/patches/0list: Rename to 00list to match dpatch update. + - debian/rules.d/dpatch.mk: Sync with Debian package with the + following four changes: + 1) Support srcdir != builddir builds. + 2) Support $(stampdir) + 3) patch target depends on unpack + 4) Use $(DEB_SOURCE_PACKAGE) instead of $(PACKAGE) + + Remove dependency on various kernel-headers packages, bring into + the package: + - linux-kernel-headers/: New directory, import from 2.6.0-test2 + + Add NPTL support on i386: + - debian/sysdeps/i386.mk: Add NPTL patterns, set minimum kernel. + + Redo "DBS-Style" tarball support: + - debian/rules.d/tarball.mk: New file + - debian/sysdeps/linux.mk: Bring in linuxthreads and nptl overlays. + - prep.sh: Remove. + - version: Remove. + + Update to recent CVS snapshot to support NPTL: + - debian/patches/10_cvs.dpatch: update + + This cleanup project is the result of several discussions between + Jeff Bailey, GOTO Masanori, Daniel Jacobowitz, and Philip Blundell. + + The initial work here was done by Jeff Bailey, Branden Robinson, + and Daniel Jacobowitz. + + -- Daniel Jacobowitz Thu, 2 Oct 2003 13:47:40 -0400 + +glibc (2.3.2-9) unstable; urgency=medium + + Urgency set to medium, because this version should bring HPPA alive again. + + * GOTO Masanori + + - debian/patches/82_glibc232-iconv-euc-jp-ms-fix.dpatch: Fix EUC-JP-MS + does not work even if they are listed as available in iconv. + Dpatched by Topia . (Closes: #212080) + + - debian/manpages/iconv.1: Fix typo in -o option. Patched by + Max Vozeler . (Closes: #211733) + + - debian/manpages/rpcgen.1: Fix typo which cause some infos for the '-o' + option are not shown, and add -Sm option description. Patched by + Nicolas Francois . + (Closes: #211984) + + - debian/libc/DEBIAN/preinst: Updated libc6 libnss restarting version + from 2.2.94-1 to 2.3.2-2 in preinst. Postinst code was already fixed + in 2.3.2-2. (Closes: #211825) + + - debian/locales/DEBIAN/template: There is no reason to + set LANG=C in /etc/environment, so do not display this locale + in the locales/default_environment_locale question. + - debian/locales/DEBIAN/config: Likewise. + - debian/locales/DEBIAN/postinst: If /etc/environment sets the LANG + variable and a new configuration asks for not setting it, the + line was not removed from this file. + - debian/po/templates.pot: Update templates followed by above changes. + - debian/po/fr.po: Update accordingly using debconf-updatepo with new + translation. + - debian/po/ja.po: Likewise. + - debian/po/ca.po: Update accordingly using debconf-updatepo. + - debian/po/de.po: Likewise. + - debian/po/es.po: Likewise. + - debian/po/fr.po: Likewise. + - debian/po/ko.po: Likewise. + - debian/po/pt_BR.po: Likewise. + - debian/po/ru.po: Likewise. + - debian/po/nl.po: Update accordingly using debconf-updatepo with + fixing line invalid wrapping. + All patched by Denis Barbier . + + - debian/patches/80_glibc232-locales-nb_NO-fix.dpatch: Added to fix + nb_NO as real locale, not an alias. Patched by Petter Reinholdtsen + . (Closes: #206474) + + * Jeff Bailey : + + - 20_glibc232-hppa-full-2003-10-20.dpatch: New HPPA patch. + (Closes: #209253) Thanks to Carlos O'Donell + + - 50_glibc23-hppa-entry.dpatch: Remove. + - 80_glibc232-locales-nb_NO-fix.dpatch: Remove. + - glibc23-00-hppa-pthreads.dpatch: Remove. + - glibc23-01-hppa-dl-machine.dpatch: Remove. + - glibc23-07-hppa-atomicity.dpatch: Remove. + - glibc23-hppa-compat.dpatch: Remove. + - glibc23-hppa-malloc8.dpatch: Remove. + + - 0list: Update + + -- Jeff Bailey Wed, 22 Oct 2003 13:46:39 -0400 + +glibc (2.3.2-8) unstable; urgency=low + + * Phil Blundell + + - debian/control.in/main: add gawk to Build-Depends, since testsuite + apparently requires it. + + - debian/patches/pthread-cleanup.dpatch: Vector __pthread_cleanup_push + and __pthread_cleanup_pop through __libc_pthread_functions. + (Closes: #205234) + + - debian/patches/arm-no-hwcap.dpatch: Admit HWCAP_FAST_MULT again, + since we want to start using this for openssh. + - debian/patches/arm-updates.dpatch: Add some miscellaneous arm + changes taken from upstream. + - debian/patches/arm-vfork.dpatch: Avoid bad interaction between + vfork and libpthread. + + * GOTO Masanori + + - debian/patches/80_glibc232-fesetround-fix.dpatch: Fix fesetround static + link time failure. (Closes: #211135) + + - debian/patches/lo_LA.UTF-8_not_supported.dpatch: Dropped, to support + lo_LA.UTF-8 again. + - debian/patches/80_glibc232-locales-lo_LA.dpatch: Added to support + lo_LA.UTF-8 again. + + - debian/locales/usr/sbin/locale-gen: Fix locale-gen breaks with bash + 2.03, unset POSIXLY_CORRECT iff it's previously defined. + Patched by Daniel Verite . (Closes: #210301) + + -- Philip Blundell Wed, 17 Sep 2003 20:44:48 +0100 + +glibc (2.3.2-7) unstable; urgency=medium + + * GOTO Masanori + + - debian/patches/90_glibc232-mathinline_iso.dpatch: Fix inline math + function complaints with gcc -pedantic -ffast-math. Patched by + Thomas Richter . (Closes: #208016, #207221) + + - debian/patches/template.dpatch: Added DP: Related bugs: field. You can + use it to put which bugs are related with this dpatch. + + * Daniel Jacobowitz + + - debian/control.in/main: Update binutils dependency for !s390. + + - debian/patches/linuxthreads-push-pop.dpatch: Add __libc_cleanup_push + and __libc_cleanup_pop. + - debian/patches/syslog-backrev.dpatch: Remove, no longer necessary. + This should fix the crashes in syslog without libpthread loaded. + + - debian/patches/linuxthreads-jumptable-wine.dpatch: Move + pthread_cond_timedwait out of the way, so that it doesn't break + the way Wine pokes into this structure (Closes: #210347). + + - debian/patches/ia64-memccpy.patch: Fix a segfault on ia64 + (Closes: #210441). + + -- Daniel Jacobowitz Fri, 12 Sep 2003 14:56:19 -0400 + +glibc (2.3.2-6) unstable; urgency=low + + * Phil Blundell + + - debian/control.in/main: require kernel-headers-2.4.20-m68k (>= + 2.4.20-1) for m68k. Requested by Adam Conrad . + + - debian/patches/pthread_cond_timedwait.dpatch: avoid problem when + pthread_cond_timedwait is used in code that doesn't link with + -lpthread. (Closes: #209139) + + * GOTO Masanori + + - debian/sysdeps/kfreebsd-gnu.mk: Added to support kfreebsd-gnu. + Patched by Robert Millan . (Closes: #206663) + - debian/sysdeps/freebsd.mk: Dropped because of replacing kfreebsd-gnu.mk. + - debian/sysdeps/soname.mk: Modified from freebsd to kfreebsd-gnu. + + -- Philip Blundell Mon, 8 Sep 2003 08:51:49 +0100 + +glibc (2.3.2-5) unstable; urgency=low + + * Phil Blundell + + - debian/control: change section for -pic, -dbg, -prof packages + from devel to libdevel. + + - debian/control.in/main: add Build-Depends changes from 2.3.2-3 + here as well. + + - debian/packages.d/*.mk: add md5sums for generated packages, + thanks to Petr Konecny. (Closes: #158354) + + - debian/patches/80_glibc232-locales-header.dpatch: adjust + filenames so patch applies correctly. + + - debian/locales/DEBIAN/config: The "Leave alone" option has been + removed, but locale-gen crashes if it was set by a previous run, + so really discard it. Patch by Denis Barbier (Closes: #204958) + + - debian/patches/lo_LA.UTF-8_not_supported.dpatch: remove this + locale from SUPPORTED file; requested by Denis Barbier. + (Closes: #205118) + + - debian/patches/nss_compat-shadow: fix problem with shadow + passwords and NIS. Patch from Thorsten Kukuk. (Closes: #204711) + + * GOTO Masanori + + - debian/control.in/libc: Add more missing change section for -pic, + -dbg, -prof packages from devel to libdevel. + - debian/control.in/libc-dbg: likewise. + + - debian/patches/80_glibc232-locales-header.dpatch: Fix an_ES, + wa_BE, yi_US localedata header. (Closes: #194289) + + - debian/locales/usr/sbin/locale-gen: Add "unset POSIXLY_CORRECT" + because if user set POSIXLY_CORRECT, this script is interrupted. + (Closes: #206784) + + - debian/patches/glibc22-ttyname-devfs.dpatch: Fix one byte leak + in getttyname_r. Patched by Hunor Csordas . + (Closes: #194637) + + - debian/sysdeps/freebsd.mk: Modified config-os from freebsd-gnu + to kfreebsd-gnu. Patched by Robert Millan . + (Closes: #206663) + + - debian/patches/80_glibc232-iconvdata-fix.dpatch: Fix cp932 + does not work. (Closes: #205679) + + -- Philip Blundell Tue, 26 Aug 2003 22:51:03 +0100 + +glibc (2.3.2-4) unstable; urgency=low + + * Jeff Bailey + - debian/locales/DEBIAN/postinst: Use tail -n 1 instead of tail -1. + Thanks to Jurij Smakov (Closes: #206464) + + * Phil Blundell + - debian/patches/glibc23-arm-waitpid.dpatch: deleted. + - for arm, Build-Depend on kernel-headers 2.4.19-4 or newer. + (Closes: #206895) + - debian/patches/revert-old-libio.dpatch: back out changes causing + problems with fseek in binaries linked with glibc 2.0. + (Closes: #206839) + - debian/libc/DEBIAN/postinst: also restart cucipop (Closes: #206783) + - debian/patches/arm-output-format.dpatch: Very bad hack to avoid + problem with libc.so on ARM until a proper fix is forthcoming. + - debian/patches/81_glibc232-utimes-fix.dpatch: replace with version + that applies cleanly to current sources. + - debian/control: require sed 4.0.5-4 or later. + + * GOTO Masanori + + - debian/po/es.po: Updated Spanish (es) debconf template. + Patched by Carlos Valdivia Yagüe . + - debian/patches/81_glibc232-utimes-fix.dpatch: Fix utimes wrong time + calculation. Patched by Paul Eggert . + (Closes: #204728, #202243, #205110) + + -- Philip Blundell Tue, 26 Aug 2003 17:27:00 +0100 + +glibc (2.3.2-3) unstable; urgency=low + + * GOTO Masanori + + - debian/patches/80_glibc232-futimes-buildfix.dpatch: Fix build failure + on arm, mips, mipsel, due to be missing #include . + (Closes: #204768) + + - debian/libc/DEBIAN/preinst: Modified chown owner:group separater from + `.' to `:', according to POSIX 1003.1-2001. (Closes: #205527) + - debian/packages.d/glibc-doc.mk: likewise. + - debian/packages.d/libc-dbg.mk: likewise. + - debian/packages.d/libc-dev.mk: likewise. + - debian/packages.d/libc-pic.mk: likewise. + - debian/packages.d/libc-prof.mk: likewise. + - debian/packages.d/libc-udeb.mk: likewise. + - debian/packages.d/libc.mk: likewise. + - debian/packages.d/locales.mk: likewise. + - debian/packages.d/nscd.mk: likewise. + - debian/packages.d/optimized.mk: likewise. + - debian/packages.d/s390x.mk: likewise. + - debian/packages.d/sparc64.mk: likewise. + + - debian/libc/DEBIAN/postinst: Restarting script supported dovecot. + (Closes: #205566) + + - debian/po/pt_BR.po: Updated Brazilian Portuguese (pt_BR) debconf + template. Patched by Andre Luis Lopes . + (Closes: #195873) + - debian/po/nl.po: Added nl.po debconf template. Patched by + Bart Cornelis . (Closes: #205090) + + -- GOTO Masanori Fri, 8 Aug 2003 20:32:24 +0900 + +glibc (2.3.2-2) unstable; urgency=low + + This is the "fleeing to the horizon" release... + + * GOTO Masanori + + - debian/patches/glibc23-arm-waitpid.dpatch: Fix arm ld-linux failure due + to sys_waitpid missing. Patched by Philip Blundell . + - debian/patches/50_glibc232-arm-dwarf2-buildfix.dpatch: Avoid arm dwarf2 + build failure. Patched by Philip Blundell . + - debian/patches/50_glibc232-m68k-dwarf2-buildfix.dpatch: Avoid m68k + dwarf2 build failure. Suggested by Philip Blundell , + Andreas Schwab . + - debian/libc/DEBIAN/postinst: Modified watermark of restarting NSS + services from 2.1.94-1 to 2.3.2-2, because libnss_compat is changed in + 2.3.2-1 (2003-06-17 Upstream change). + - debian/patches/80_glibc232-wcsmbs-fix.dpatch: Added to fix wcsmbs bugs + which is lacked in 2003-07-15 upstream cvs. (Closes: #202969) + + - These bugs are fixed in this update: + * Bug in dlopen/dlclose leads to segfaults with kdecore is fixed in this + version. (Closes: #201221) + * Static linking adjtimex() on alpha failed to compile due to undefined + reference to `__adjtimex_tv32'. It's fixed in this version. + (Closes: #186331) + + * Jeff Bailey + - debian/packages.d/s390x.mk: Remove gcc-3.2 hardcode + + * Phil Blundell + - debian/patches/alpha-crti.dpatch: remove stray .prologue causing + alpha build failure. + - debian/patches/alpha-pwrite.dpatch: add missing __GI___pwrite64 alias. + - debian/control: demand binutils 2.14.90.0.5-0.1 or later (required + for .usepv on alpha) + + -- GOTO Masanori Sat, 19 Jul 2003 00:37:11 +0900 + +glibc (2.3.2-1) experimental; urgency=low + + ** UPLOADING THIS TO EXPERIMENTAL ** + + * Clint Adams + - debian/control: build-dep on gcc-3.3 for sparc(64) + - debian/rules: re-enable sparc64 build + - debian/packages.d/sparc64.mk: use gcc-3.3 to build sparc64 + - debian/sysdeps/linux.mk: re-enable sparc64 build + + * Jeff Bailey + - debian/patches/hurd-enable-ldconfig.dpatch: New file + - debian/packages.d/libc.mk: Install regular ldconfig, not + debian/ldconfig-hurd.sh on hurd-i386 + - debian/patches/0list: Add hurd-enable-ldconfig + - debian/sysdeps/paths.mk: Comply with FHS, use $(prefix)/lib, not + $(prefix)/libexec + - debian/rules: Introduce "perfect_make_check_archs" concept - + arch's listed in this variable must pass make check cleanly, + or the build will fail. Start off with i386, powerpc, sparc, alpha + and s390. + - debian/control.in/main: Build-dep on gcc-3.3 + - debian/sysdeps/tools.mk: Use gcc-3.3 + - debian/patches/sparc32-buildfix.dpach: Prune after yet another CVS + update + - debian/patches/syslog-backrev.dpatch: New file + + * GOTO Masanori + - Updated glibc 2.3.2. + - debian/patches/cvs.dpatch: rename it to 10_cvs.dpatch. + I plan to introduce <2digitnumber>_.dpatch filename. + - debian/patches/10_cvs.dpatch: update 2003-07-15 upstream cvs. + - version: bump up to 2.3.2. + - rules.d/shlibs.mk: bump up to 2.3.2. + - debian/sysdeps/sysdeps.mk: i386 optimization level is back to -O2. + + - These debian/patches/ are removed from cvs because + they are no longer being used and were superceeded by CVS patches: + * document-fix.dpatch + * glibc23-cert-rpcxdr.dpatch + * glibc23-getdents64-fix.dpatch + * glibc23-getaddrinfo.dpatch + * glibc23-hppa-shmlba.dpatch + * glibc23-m68k-madv.dpatch + * glibc23-malloc-check.dpatch + * glibc23-regcomp.dpatch + * signal-texi.dpatch + * glibc23-ia64-strncpy.dpatch + * elf-machine-rela-mips.dpatch + * glibc23-linuxthreads-fix.dpatch + * locales-monetary.dpatch + + - These debian/patches/ are removed from cvs because + they are no longer being used and already fixed the previous versions: + * rtsig.dpatch + * crypt.dpatch + * s390x-lib64.dpatch + * hurd-fork-fix.dpatch + + - These debian/patches/ are fixed to apply for glibc + 2.3.2 + cvs.dpatch. + * alpha-pic.dpatch: Fix the diff conflict. + * glibc23-hppa-Rminkernel.dpatch: likewise. + * libgcc-compat-all.dpatch: remove reflected entries in glibc-2.3.2. + * libgcc-compat-other.dpatch: likewise. + * ldconfig.dpatch: modify to be enable to compile again + + - These bugs are fixed in this update: + * glibc 2.3.2 can handle errno correctly if 32 bit uid or gid is used + and errno=ENOSYS is defined before geteuid() is called. + setfsuid(), setfsgid() and getgroups() are also fixed with my patch, + bug reported by Fumihiko Kakuma. (Closes: #183694) + * Submitter Neil's patch is applied in the upstream. (Closes: #181701) + * cfmakeraw definition in manual terminal.texi is fixed with my patch. + It can be reassign only to manpages-dev. + * sparc and powerpc has O_DIRECT definition in fcntl.h. + (Closes: #157142, #157143) + * The definition both __bswap_16 and __bswap_32 in bits/byteswap.h is + fixed and it can be ready for non-gcc C-compilers. (Closes: #181910) + * BSD derived random functions are correctly braced into #if defined + __USE_BSD with my patch. (Closes: #108619) + * Dynamic loading problems with the recent OpenOffice.org, KDE, + Wine/Mono, Quake3 Arena, Oracle, and NVidia libGL library, is fixed. + Glibc TLS does not properly handle using dlopen() to access shared + libraries which utilize some TLS models. + (Closes: #171695, #184696, #167564, #192096, #200386) + * Missing ntp_adjtime weak reference on alpha is defined. + (Closes: #182654) + * Sparc64 sysdep.h typo is fixed. (Closes: #185648) + * stdio-common/sscanf.c for libc6-sparc64 with gcc-3.3 can become to be + compiled. (Closes: #185649) + * Timezone data is updated to tzdata2003a. + (Closes: #140788, #149862, #186210, #164719, #190322) + * /usr/bin/locale -a searches both /usr/lib/locale// and + /usr/lib/locale/locale-archive in this release. (Closes: #166979) + * Powerpc fpu_control.h is fixed to be enable to compile _FPU_SETCW + macro. (Closes: #137020) + * The IA-64 versions of __sigsetjmp() and getcontext failed to restore + ar.unat before returning, is fixed in this version. (Closes: #186654) + * regcomp() crashed with some regexp pattern is fixed. + (Closes: #187475) + * pthread_atfork() is removed from unistd.h. Including this definition + in unistd.h is implementation dependent issue, and the upstream + decided not to keep it. (Closes: #106254) + * It's fixed that malloc_stats() segfaults if you don't first allocate + memory. (Closes: #191295) + * Typo in the symbol lookup code is fixed, which causes the loading of + the oracle binary to fail (and possibly affects other apps as well). + (Closes: #191952) + * The abday values for de_DE is changed to two letters. (Closes: #115536) + * IA64 umount needs to set second parameter for sys_umount. It's fixed + in 2003-05-14 cvs. (Closes: #193327) + * tmpfile64() is now available on hurd-i386. (Closes: #171022) + * SIOCSIFNAME is added. (Closes: #164638) + * cos() now correctly returns the cosine, not the sine, of values near + 0.80 on machines lacking an optimised libm. (Closes: #153548) + * ioperm() returns -ENODEV on ARM machines without ISA or PCI. + (Closes: #199134) + + - debian/locales/usr/sbin/locale-gen: Fix the localedef invocation + argument order, to run under POSIXLY_CORRECT=1 environment. + (Closes: #185924) + + - debian/sysdeps/depflags.pl: add Suggests: manpages-dev in libc-dev + package. (Closes: #158410) + - debian/sysdeps/depflags.pl: Adding entry "Suggests: glibc-doc" + into depflags.pl push. + - debian/control.in/libc: Remove "Suggests: glibc-doc" in each -dev + package entry. + - debian/control: likewise. + + - debian/patches/s390-tls.dpatch: add to build glibc 2.3.2 on s390. + The correct fix is to modify the kernel headers, but for the present + we use it regardless of the kernel issue. + Patched by Gerhard Tonn . + - debian/packages.d/libc-dev.mk: s390 kernel-headers package does not have + generate-asm.sh. The current libc-dev.mk assumes the existence of this + script, but on s390 it's not existed. Now libc-dev.mk s390 asm setup + part does not use generate-asm.sh, and has the generate-asm.sh + functionality in its own. This makes s390 which has 32/64 bit multi + libraries are much easier to build. + Patched by Gerhard Tonn . + - debian/packages.d/s390x.mk: likewise. + + - debian/locales/DEBIAN/postinst: add "rm -rf /usr/lib/locale/*" + to remove all old locale dir and locale-archive in locales + configuration time. Requested by Denis Barbier . + - debian/locales/DEBIAN/config: /usr/lib/locale/* files are no more + deleted when /etc/locale/gen is not managaed by debconf. Patched by + Denis Barbier + - debian/locales/DEBIAN/postinst: likewise. + + - debian/locales/DEBIAN/{config,postinst,templates}: Debconf must not + be used to store configuration items; another even more important is + that user changes in configuration files must be preserved. + These files are now fixed with this issue. Patched by Denis Barbier + . Some suggestions by Joey Hess . + - debian/locales/DEBIAN/config: + * Replace /bin/bash by /bin/sh on the shebang line. + * Add support for backing up. + * Parse configuration files and set debconf values. + - debian/locales/DEBIAN/postinst: + * Recreate configuration files from debconf values and run locale-gen + * As explained by Joey Hess, this script should be safer because some + border cases are now taken into account: configuration files might + have no EOL at EOF, and line order is preserved. + - debian/locales/DEBIAN/templates: + * Apply patch from #117509 and another typo fix by Joey Hess + (Closes: #117509) + * In locales/locales_to_be_generated, Choices is no more translatable + because it is set to Choices: ${locales} + - debian/locales/usr/sbin/locale-gen: + * Clean up /usr/lib/locale/ before generating locales + - debian/po/{ca.po, de.po, es.po, fr.po, ja.po, ko.po, pt_BR.po, ru.po, + templates.pot}: update with debconf-updatepo. + + - debian/control: Change Section: from devel to libdevel for packages: + libc0.3-dev, libc6-dev, libc6-dev-s390x, libc6-dev-sparc64, libc6.1-dev + and libc1-dev. + - debian/control.in/libc: likewise. + - debian/control.in/s390x: likewise. + - debian/control.in/sparc64: likewise. + + - debian/control: Remove "Conflicts: php4" from libc1 and libc0.3. + - debian/control: Add "Conflicts: gcc-3.0 (<< 1:3.0.4ds3-11), libgcc1 + (<< 1:3.0.4ds3-11), fakeroot (<< 0.4.5-2.7)" to fix /usr/lib/64 vs + /usr/lib64 issue with upgrading from woody for sparc64 (see bug 156947). + Suggested by Dagfinn Ilmari Mannsaker . + (Closes: #188383, #193331) + - debian/control.in/sparc64: likewise. + + - debian/copyright: update the version and the year 2003. + + - debian/patches/locales-monetary.dpatch: add to change some locales + LC_MONETARY symbols: ar_SD, sr_YU, sr_YU@cyrillic, and es_EC. + And now this patch is merged into the upstream cvs, drop dpatch. + (Closes: #160040, #173963, #185342, #187142, #188159, #190785, #193020) + (Closes: #193508, #193509, #193510, #194791) + + - debian/manpages/localedef.1: remove "-h" from --help option entry. + (Closes: #187621) + + - debian/debver2localesdep.pl: add clever version recognition for binary + only NMU or source NMU/local packaging. + Patched by Gerhard Tonn . + + - debian/patches/glibc23-linuxthreads-fix.dpatch: add to revert Jakub's + change in 2003-04-02 to be enable to compile librt.so for the present. + And this bug is fixed during the development, this patch is dropped now. + Thanks to Jack Howarth . + + - debian/libc/etc/init.d/devpts.sh: Modify mounting devpts for 2.5.68 and + later. As of 2.5.68, devpts is not automounted when using devfs. So + even in that case, devpts needs to be mounted via the devpts.sh script + as well as the case that devfs is not used. + (Closes: #189792, #189879, #191785) + + - debian/libc/DEBIAN/postinst: Add code to remove a relic of the past + /usr/doc/ symlinks. This script should keep at least until + sarge release. (Closes: #189854) + - debian/glibc-doc/DEBIAN/postinst: likewise. + - debian/locales/DEBIAN/postinst: likewise. + - debian/nscd/DEBIAN/postinst: likewise. + - debian/libc/DEBIAN/postinst: Remove symlinks for libc-{dbg,dev,pic,prof}. + + - prep.sh: Add NPTL extract code. + - version: Add NPTL version. + + - debian/packages.d/sparc64.mk: bumping up --enable-kernel version from + 2.4.0 to 2.4.1. + - debian/packages.d/s390x.mk: likewise. + + - debian/patches/50_glibc232-mips-buildfix.dpatch: add for building + mips/mipsel correctly. Patched by Guido Guenther , + Thiemo Seufer . + + - debian/packages.d/libc-udeb.mk: libc-udeb includes libnss_dns and + libresolv. (Closes: #192577) + + - debian/patches/50_glibc23-hppa-entry.dpatch: added to fix funcptr + (function descriptors) for _start on hppa, so we need a + sysdeps/hppa/elf/entry.h (similar to ppc64, ia64, etc). + Patched by Randolph Chung . (Closes: #193656) + + - debian/patches/30_glibc232-base.dpatch: add that binutils 2.14.90.0.2 + has entered in sid, which contain the binutils portion of the base fix. + Reported by Jack Howarth . + + - debian/patches/sparc32-buildfix.dpatch: added to fix sparc32 build. + + * Ben Collins + - debian/contron.in/sparc64: Remove the superflous (and incorrect) dep on + gcc-3.2 for libc6-dev-sparc64. Add lib64gcc1 as a dep for libc6-sparc64. + - Use CC for building sparc64 libs. + - Remove build-dep for gcc-3.3 on sparc. + - Really fix devpts.sh so that it mounts devpts whenever devpts is + available and not mounted. + - sparcv8-target.dpatch: New patch that enables v8 optimizations for + sparc-linux compiles. Debian specific. For some reason config.sub + doesn't recognize sparcv8, else I'd just pass sparcv8-linux as the host + target. + - Change how things are passed to configure for optimized packages, so + that we let glibc set all the optimizations for us. + - Change how sparc64 and s390x are built. Before the binary stage would + force the build of the packages. Now, the build/install phases dep on + the same for sparc64 and s390x. Same way that the OPT packages are done. + + -- Jeff Bailey Tue, 15 Jul 2003 14:35:58 -0400 + +glibc (2.3.1-17) unstable; urgency=low + + * GOTO Masanori + - debian/libc/DEBIAN/preinst: Add NSS restarting preinstallation + service detection routine and messages. xdm, kdm, gdm, + postgresql, xscreensaver needs user's hand restart. + (Closes: #165258, #165915, #184036, #184495, #188724) + - debian/libc/DEBIAN/postinst: Edit NSS restarting messages to + adopt some preinst messages. + - Cleanup optimized and sparc64 builds. + + -- GOTO Masanori Sat, 19 Apr 2003 22:01:40 +0900 + +glibc (2.3.1-16) unstable; urgency=high + + * GOTO Masanori + - debian/patches/glibc23-cert-rpcxdr.dpatch: Fix "CERT Advisory + CA-2003-10 Integer overflow in Sun RPC XDR library routines" + (Closes: #185508). + + - debian/packages.d/glibc-doc.mk: Fix unneeded file '[' and ']' in + /usr/share/man/man3. + - These debian/patches/ are removed from cvs because + they are no longer being used and were superceeded by CVS patches: + - libgcc-compat-mips.dpatch + - libgcc-compat-sparc.dpatch + - debian/libc/DEBIAN/postinst: add spamassassin to restart during + upgrade from 2.2 to 2.3. (Closes: #185275) + - debian/control.in/opt: add one empty line at the end of file. + This fix avoids opt packages to get mixed debian/control + message with libc-udeb package. (Closes: #185688) + + -- GOTO Masanori Tue, 18 Mar 2003 00:04:13 +0900 + +glibc (2.3.1-15) unstable; urgency=low + + * GOTO Masanori + - debian/packages.d/optimized.mk: drop configure --disable-static + option, because it does not work. enable-kernel version bumps + up to 2.4.1. + + - debian/manpages/nscd.8: Apply slightly improvement for the nscd(8), + nscd_nischeck(8), and nscd.conf(5) man pages. Patched by + Sebastian Rittau (Closes: #94058) + - debian/manpages/nscd.conf.5: likewise. + - debian/manpages/nscd_nischeck.8: likewise. + - debian/manpages/zdump.1: add the description that zonename should be + relative path name from /usr/share/zoneinfo. (Closes: #171017) + - debian/manpages/locale.1: add the description for LOCPATH. + (Closes: #176661) + + - debian/locales/DEBIAN/templates: Add a description "what is the + locale?". (Closes: #119197) + - debian/FAQ: Add description how to setup your own locale with + debconf + locales. (Closes: #99763) + + - debian/locales/DEBIAN/templates: Introducing new templates format + with po-debconf. Thanks to Denis Barbier . + - debian/packages.d/locales.mk: likewise. + - debian/po/*: likewise. + - debian/control.in/main: Build-Depends-Indep: po-debconf. + - debian/po/ja.po: Update translation data. + - debian/po/fr.po: Update translation data. Translated by + Denis Barbier . (Closes: #183652, #193083). + + - debian/sysdeps/depflags.pl: Remove conflicts: file-rc (<< 0.7.0) + - debian/libc/DEBIAN/postinst: Use /usr/sbin/update-rc.d in updatercd(), + suggested by Anthony Towns . + - debian/libc/DEBIAN/postinst: Check /usr/{lib,share}/file-rc/ + because file-rc >= 0.7.0 does not use /usr/lib/file-rc. + + - debian/patches/glibc23-hppa-compat.dpatch: add hppa libgcc-compat + symbols patch, patched by Randolph Chung . + - debian/patches/libgcc-compat-all.dpatch: update for mips and add + for alpha, patched by Guido Guenther . + - debian/patches/libgcc-compat-other.dpatch: add for arm, m68k, ia64 + and s390. Patched by GOTO Masanori . + + - debian/locales/usr/sbin/locale-gen: add "set -e" in order to return + value. (Closes: #183449) + + - debian/packages.d/libc-udeb.mk: contain libpthread.so to support + installer using pthread. (Closes: #183155) + + - debian/sysdeps/depflags.pl: remove php4 conflicts from libc6. + (Closes: #183477, #184091) + + - debian/libc/DEBIAN/postinst: add proftpd-{ldap,mysql,pgsql} to + restart during upgrade from 2.2 to 2.3. (Closes: #184129) + - debian/libc/DEBIAN/postinst: add cupsys. (Closes: #184257) + + - debian/patches/glibc23-m68k-madv.dpatch: add to fix build error + for some MADV_* used software on m68k, pulled from the latest cvs. + (Closes: #159723, #181661, #184589) + + - debian/patches/glibc23-00-hppa-pthreads.dpatch: add to improve + linuxthreads on hppa. Pathced by Carlos O'Donell + . His summary: LinuxThreads is now using a + self-aligning lock. + - debian/patches/glibc23-hppa-malloc8.dpatch: add to improve malloc + on hppa. Patched by Carlos O'Donell . + His summary: Malloc alignment has been moved back to 8 for optimal + performance. + + - These debian/patches/ are removed from cvs because + they are no longer being used and were superceeded by CVS patches: + - glibc23-02-hppa-min-kern-unwind-fde.dpatch + - glibc23-03-hppa-mcontext.dpatch + - glibc23-04-hppa-fcntl64.dpatch + - glibc23-05-hppa-buildhack.dpatch + - glibc23-06-hppa-tests.dpatch + - glibc23-08-hppa-configure.dpatch + + - Glibc 2.3 uses another regex engine: "sed: woody version more than + 1000 times slower than potato version" should be fixed. + (Closes: #155751) + - en_CA can generate without warnings. In addition, we use debconf + interface in these days, this kind of "manual edit /etc/locale.gen" + bug should be avoided. (Closes: #151631) + - libc6.postinst restarts samba in these days. (Closes: #168189) + - _FPU_SETCW/_FPU_GETCW macro works fine on powerpc in these days. + "Incorrect macro _FPU_SETCW in " should be fixed. + (Closes: #137020) + - hyper and unsigned hyper are supported in the current glibc. + "rpcgen(1) doesn't handle 64 bit types" should be fixed. + (Closes: #69041) + + -- GOTO Masanori Wed, 26 Feb 2003 18:44:08 +0900 + +glibc (2.3.1-14) unstable; urgency=low + + * GOTO Masanori + - debian/patches/glibc23-cmov.dpatch: Fix hwcap condition code again, + previous version did not work properly under some situation. + - debian/sysdeps/depflags.pl: Fix libnss-db dependency from << 2.2-6 + to <= 2.2-6.1.1, because the first version of libnss-db to work + with libc6 2.3 is 2.2-6.1, and 2.2-6.2 works under all architectures + correctly. Suggested by Ryan Murray . + (Closes: #181834) + - debian/sysdeps/depflags.pl: Fix libc6.postinst breakage with file-rc + (<< 0.7.0), now libc6 conflicts them. (Closes: #181683, #182320) + + -- GOTO Masanori Fri, 21 Feb 2003 09:19:45 +0900 + +glibc (2.3.1-13) unstable; urgency=low + + * GOTO Masanori + - debian/libc/DEBIAN/postinst: Replace from "/usr/lib/file-rc" to + "/usr/share/file-rc" to follow up file-rc 0.7. + (Closes: #181551, #181556, #181606) + - debian/libc/etc/init.d/devpts.sh: Fix devpts.sh failure if + $devfs_mounted is empty. (Closes: #181541, #181591) + + -- GOTO Masanori Wed, 19 Feb 2003 09:26:17 +0900 + +glibc (2.3.1-12) unstable; urgency=low + + * GOTO Masanori + - debian/patches/glibc23-malloc-check.dpatch: Fix hppa MALLOC_CHECK_ + invalid pointer problem. (Closes: #177242) + - debian/patches/libgcc-compat-sparc.dpatch: Fix sparc libgcc compat + symbol problem. Patched by Guido Guenther + (Closes: #178645) + - debian/patches/locales-supported.dpatch: This dpatch addes many + locales especially for UTF-8 and ISO-8859-15, to display debconf + locale menu using SUPPORTED.orig. + (Closes: #135334, #154556, #177472, #99623, #130517) + - debian/packages.d/glibc-doc.mk: add pthread_{getspecific, key_delete, + setspecific} manpage symlinks to pthread_key_create. (Closes: #99530) + - debian/manpages/ldconfig.8: Update from the redhat manpages. + (Closes: #180916) + - debian/patches/libgcc-compat-all.dpatch: Fix i386 libgcc compat + symbol problem, this dpatch merges with + libgcc-compat-{sparc,mips}.dpatch, patched by Guido Guenther + . (Closes: #179781, #180330) + - debian/locales/DEBIAN/{postinst,templates,config}: Fix default + environment variable "Leave alone" does not affect its meaning. + (Closes: #180040) + * Daniel Jacobowitz + - debian/libc/etc/init.d/devpts.sh: Update devpts.sh to work with the + new grep package (Closes: #181409). + + -- GOTO Masanori Sat, 8 Feb 2003 22:08:59 +0900 + +glibc (2.3.1-11) unstable; urgency=low + + * GOTO Masanori + - debian/libc/DEBIAN/preinst: Fix silly bug at parisc64 kernel version + check, replace from $ver to $kernel_ver. (Closes: #178159, #178217) + - debian/patches/glibc23-cmov.dpatch: Fix hwcap inappropriate handling + not to load CMOV libraries (/*/lib/i686/cmov/) on VIA C3 architecture. + - debian/patches/libgcc-compat-mips.dpatch: Fix undefined some symbols + like __umoddi3 to export libgcc compat symbol. Patched by + Guido Guenther . + - debian/patches/0list: Disabled ldso-disable-hwcap.dpatch because + (1) -opt is not provided currently, (2) disabling hwcap is not good + way whether -opt package is installed or not. + + -- GOTO Masanori Wed, 22 Jan 2003 22:17:45 +0900 + +glibc (2.3.1-10) unstable; urgency=low + + * The "trudging the sludge" release. + + * GOTO Masanori + - debian/packages.d/glibc-doc.mk: install linuxthreads/man/*.man + manpages into glibc-doc package. (Closes: #155794) + - debian/libc/DEBIAN/preinst: add kernel version check compared with + 2.4.19-pa17 on parisc64. Suggested by Randolph Chung. + - debian/libc/DEBIAN/preinst: add kernel version requirement for + 2.5.53-pa3 in 2.5 series kernel on parisc64. + - debian/locales/DEBIAN/config, debian/locales/DEBIAN/templates: + add translated selection "Leave alone" and "None" because such strings + were hardcoded and could not be localized in the templates file. + Patched by Denis Barbier . (Closes: #171502) + - debian/packages.d/glibc-doc.mk: Fix glibc-doc dangling symbolic link for + /usr/share/doc/glibc-doc/html/index.html. (Closes: #169878, #176701) + - debian/libc/DEBIAN/postinst: Fix to work $DEBIAN_FRONTEND value + regardless its case insensitivity. See #176483. + - debian/sysdeps/depflags.pl: Fix again to conflict against wine + (<< 0.0.20021007-1) and php4 (<< 4:4.2.3-5). (Closes: #170385) + - debian/control: Fix unneeded Conflicts: wine and php4, as denoted above. + - debian/control.in/libc: likewise. + - debian/patches/glibc23-cmov.dpatch: Add CMOV to hwcap, for VIA C3 which + is i686 class processor, but does not have 686 optional instruction CMOV. + - debian/patches/glibc23-regcomp.dpatch: Fix regex crash, if clearing + buffer, clear allocated too. This patch is pulled from the current + upstream glibc cvs. (Closes: #175529) + + * Daniel Jacobowitz + - debian/patches/alpha-pic.dpatch: Fix errno reporting from syscalls + on Alpha (Closes: #175511). + + -- GOTO Masanori Sun, 5 Jan 2003 09:13:22 +0900 + +glibc (2.3.1-9) unstable; urgency=low + + * Daniel Jacobowitz + - debian/packages.d/s390x.mk: Don't try to install CVS directories + (Closes: #174267). + - debian/packages.d/optimized.mk, debian/packages.d/sparc64.mk: + Likewise. + - debian/patches/glibc23-errno.dpatch: Updated for "h_errno" and "_res" + also. + - Upload properly this time, with a .diff.gz (Closes: #174436). + + * GOTO Masanori + - debian/patches/glibc23-hppa-shmlba.dpatch: Applied hppa SHMLBA + definition. (Closes: #170507) + - debian/libc/DEBIAN/postinst: add mysql-server in restarting service + list. (Closes: #172123) + - debian/patches/document-fix.dpatch: Applied patches sent by + H. S. Teoh and GOTO Masanori. (Closes: #117680) + - debian/patches/glibc23-asserth-decls.dpatch: Applied patches send by + Jeroen T. Vermeulen . (Closes: #106253, #164571) + - debian/libc/DEBIAN/postinst: Removed 'logind' from checking list + because it does not exist. + - debian/libc/DEBIAN/postinst: Replaced dpkg -s from apache2 to + apache2-common correctly. + - debian/libc/DEBIAN/postinst: Redirect dpkg stderr message to /dev/null, + which is showed if there are not installed packages. (Closes: #168481) + - debian/libc/DEBIAN/postinst: Message typo fixed as "successfully." + (Closes: #168483) + - debian/manpages/ldd.1: Updated newer version which is pulled from + RedHat manpages. + - debian/locales/usr/sbin/locale-gen: add '-A /etc/locale.alias' into + localedef option to consult locale alias name when making archives. + + -- Daniel Jacobowitz Thu, 2 Jan 2003 12:02:13 -0500 + +glibc (2.3.1-8) unstable; urgency=high + + * Daniel Jacobowitz + - debian/patches/glibc23-errno.dpatch: Temporarily re-enable linking + to "errno" to fix compatibility with broken binaries + (Closes: #174040, #174004). + - debian/patches/glibc23-getaddrinfo.dpatch: Add getaddrinfo patch + from CVS (Closes: #174027). + - debian/control.in/main: Add myself to Uploaders. + + -- Daniel Jacobowitz Tue, 24 Dec 2002 12:35:39 -0500 + +glibc (2.3.1-7) unstable; urgency=high + + * The "Climb Ev'ry Mountain" release. + + * GOTO Masanori + - debian/packages.d/s390x.mk: typo fixed, s390x-linux should be + ok to rebuild. (Closes: #173874) + - debian/patches/glibc23-getdents64-fix.dpatch: Fix getdents64 + failure on linux kernel 2.2. (Closes: #173913) + + * Jeff Bailey + - sysdeps/linux.mk: Finish disabling sparc64. + + -- GOTO Masanori Sun, 22 Dec 2002 01:35:43 +0900 + +glibc (2.3.1-6) unstable; urgency=low + + * The "I will not be thwarted" release. + + * Daniel Jacobowitz + - Update glibc23-ctype-compat.patch to fix segfaults in old static + binaries (Closes: #171451). + - Allow building from the CVS checkout without getting CVS dirs in the + resulting packages. Whew. + + * Jeff Bailey + - debian/patches/cvs.dpatch: Update. + (Closes: #171550, #170507) + - debian/patches/0list: Update + - debian/control.in/libc: Conflict against wine (<< 0.0.20021007-1) + (Closes: #170385) + Also conflict against php4 (<< 4:4.2.3-5) + Thanks to Steve Langasek for hunting this down! + - debian/rules: Disable sparc64 build targets for now. + - debian/packages.d/s390x.mx: Setup the 64 bit build as a cross-compile, + because 's390' cannot run binaries intended for 's390x' + + * GOTO Masanori + - cvs.dpatch update resolve some bugs (Closes: #169919, #165603) + - debian/patches/glibc23-hppa-Rminkernel.dpatch: Added hppa kernel + version checking due to prevent people from installing unmatched version. + Patched by Carlos O'Donell (Closes: #171804) + - debian/libc/DEBIAN/preinst: likewise. + - glibc23-function-compat.dpatch: Added for some bad application to + keep running and not to resolve some symbols like __libc_wait, + __libc_waitpid, so on. This patch will be removed when sarge will be + relased apparently. (Closes: #165358, #173201) + + - debian/locales/DEBIAN/config: db_set is set if and only if locale.gen + is existed. Patched by Masato Taruishi + His note: + The previous config script always set locales_to_be_generated + even when /etc/locale.gen doesn't exist. So the question in + dpkg-preconfigure time became empty in dpkg --configure locales time. + This change resolves long outstanding locales bug. + (Closes: #156386, #151784, #154244, #164523) + + -- Daniel Jacobowitz Mon, 2 Dec 2002 17:26:38 -0500 + +glibc (2.3.1-5) unstable; urgency=low + + * This is the "Leonids" release. + + * Jeff Bailey + - debian/packages.d/libc-udeb.mk: Do not rename file to SONAME if it's + a symlink. Needed for hurd-i386. + - debian/patches/signal-texi.dpatch: New file to remove link to + linuxthreads manual. Needed for hurd-i386. + + Welcome back, hppa: + + - debian/patches/glibc23-00-hppa-pthreads.dpatch + - debian/patches/glibc23-01-hppa-dl-machine.dpatch + - debian/patches/glibc23-02-hppa-min-kern-unwind-fde.dpatch + - debian/patches/glibc23-03-hppa-mcontext.dpatch + - debian/patches/glibc23-04-hppa-fcntl64.dpatch + - debian/patches/glibc23-05-hppa-buildhack.dpatch + - debian/patches/glibc23-06-hppa-tests.dpatch + - debian/patches/glibc23-07-hppa-atomicity.dpatch + - debian/patches/glibc23-08-hppa-configure.dpatch + Thanks to Carlos O'Donell for these! + + - debian/control.in/libc-udeb: Remove missing trailing blank line. + Thanks to Tollef Fog Heen. Closes: #169342 + - debian/control.in/s390x: Remove missing trailing blank line. + Thanks to Gerhard Tonn. + + - debian/libc/DEBIAN/postinst: Fix error in apache2 restart logic. + Thanks to Carlos O'Donell. + + - debian/packages.d/libc-dev.mk: Fix missing tabs from s390x section. + - debian/patches/s390-types.dpatch: New file to fix __ssize_t + Thanks to Gerhard Tonn for these. + + - debian/packages.d/libc-udeb.mk: use DEB_HOST_ARCH, not DEB_BUILD_ARCH + for determining package name. Fixes cross-compilation case. + + - debian/patches/0list: Update for above + + -- Jeff Bailey Mon, 18 Nov 2002 23:12:47 -0500 + +glibc (2.3.1-4) unstable; urgency=low + + * Daniel Jacobowitz + - debian/patches/cvs.patch: Fix RCS ID tags. + - debian/rules, debian/sysdeps/sysdeps.mk: Move i386 optimization + hack out of the rules file and put debugging information back in + libc6-dbg for i386 (Closes: #165892). + - debian/patches/crypt.dpatch: Fix initialization in crypt_r + (Closes: #163260). + - debian/patches/rtsig.dpatch: Fix the value of SIGRTMIN in non-threaded + applications (Closes: #165412). + - debian/rules, debian/packages.d/libc-dev.mk, + debian/packages.d/libc-udeb.mk: Don't use '{}' wildcards, to fix + building with /bin/sh -> ash. + + * GOTO Masanori + - debian/libc/DEBIAN/postinst: add more NSS services: + samba, courier-authdaemon + - debian/packages.d/sparc64.mk: fix build error. + - debian/libc/DEBIAN/postinst: modify apache2 service, + apache2 ships its init script in apache2-common, but the script + is in apache2. So replace from apache2-common to apache2 is needed. + Closes: #165959 + - debian/patches/cvs.patch: Hurd trailing slash handling fixed. + Closes: #162414 + - debian/patches/locales-stuff.dpatch: Fixed error generating de_CH, + it's caused by typo. Closes: #140054 + + * Jeff Bailey + - debian/patches/cvs.dpatch: New file. + - debian/patches/0list: Update + - debian/sysdeps/depflags.pl: Conflict against libnss-db <= 2.2-6 + Thanks to Ryan Murray for the patch. Closes: #168890 + + - debian/patches/s390x-lib64.dpatch: New file. + - debian/control.in/s390x: New file. + - debian/libc-s390x/postinst: New file. + - debian/packages.d/libc-dev.mk: Handle asm-s390x + - debian/packages.d/s390x.mk: New file. + - debian/rules: Include s390x files. + - debian/rules.d/control.mk: Add s390x to control_deps, and include + control.in/s390x + - debian/sysdeps/linux.mk: Add s390x support. + + Thanks to Gerhard Tonn. Closes: #169176, #166450. + + - debian/control.in/main: Update Standards-Version to 3.5.7.0 + + - debian/patches/glibc22-hppa-fcntl.dpatch: Remove File + - debian/patches/glibc22-hppa-fcntl-lfs.dpatch: Remove File + - debian/patches/glibc22-hppa-mcontext.dpatch: Remove File + - debian/patches/glibc22-hppa-pthreads.dpatch: Remove File + - debian/patches/glibc22-hppa-rela.dpatch: Remove File + - debian/patches/glibc22-hppa-tests.dpatch: Remove File + - debian/patches/glibc22-hppa-unwind.dpatch: Remove File + + - debian/patches/hurd-fork-fix.dpath: New File. + + Note: CVS patch disabled for this upload + + -- Daniel Jacobowitz Tue, 29 Oct 2002 13:14:51 -0500 + +glibc (2.3.1-3) unstable; urgency=low + + * GOTO Masanori + - debian/patches/librt-mips.dpatch: librt is not worked on + mips/mipsel architecture, we apply it until sarge will be + released. Thanks to Guido Guenther . + - debian/patches/glibc23-ctype-compat.dpatch: added. + glibc 2.3.x changes some symbols (__ctype_b, __ctype_toupper, + __ctype_tolower) as hidden attribute. These symbols that are + crashing the old 2.2.x dynamic linking code in static binaries + are now exported. + This patch is originally pulled from RedHat patch, I modified + it for current debian glibc. Closes: #165554 + + -- GOTO Masanori Sun, 20 Oct 2002 15:04:48 +0900 + +glibc (2.3.1-2) unstable; urgency=low + + * This is the "Why did everything stop working, mommy?" release + + * Jeff Bailey + - debian/libc/DEBIAN/postinst: Warn about NSS changes if upgrading + from older than 2.2.94-1. Add ssh-krb5 and apache2 to list of + services that definetly need restarting. + + Add libc-udeb (closes: #158589) Thanks to Tollef Fog Heen. + - debian/control.in/libc-udeb: New file + - debian/packages.d/libc-udeb.mk: New file + - debian/rules: Call udeb machinery. + - debian/rules.d/control.mk: Call udeb machinery. + + - debian/sysdeps/build-options.mk: Strip libc on alpha + + - debian/control.in/main: 2.13.90.0.10-1 is broken on s390 + require 2.13.90.0.4-1 for them. + + * GOTO Masanori + - debian/patches/0list: disable ip6-fix.dpatch. Closes: #165287 + - debian/packages.d/libc-udeb.mk: Clean up and fix indent crap. + - debian/rules.d/shlibs.mk: bump up to 2.3.1-1. Closes: #165456 + + -- Jeff Bailey Fri, 18 Oct 2002 11:27:07 -0400 + +glibc (2.3.1-1) unstable; urgency=low + + * This is the "twilight" release... + + * Jeff Bailey + - Upgrade tarballs to 2.3.1 + - version: Update to 2.3.1 + + - debian/sysdeps/linux.mk: Do not build optimized libraries + - debian/rules.d/control.mk: Likewise + + - debian/control.in/main: Require binutils 2.13.90.0.10-1 for ppc + + - debian/patches/elf-machine-rela-mips.dpatch: New file + - debian/patches/0list: Update accordingly. + + - debian/rules: Use -O on i386. This should go somewhere else, + but I want to get this release out. + + * XXX Below here was during the 2.3 development, and never released. + + * Jeff Bailey + - Upgrade tarballs to 2.3 + - version: Update to 2.3 + + - debian/patches/hppa-data-start.dpatch: Remove, incorporated upstream + - debian/patches/various-lsb-fixes.dpatch: Remove, incorporated upstream + + - debian/patches/0list: adjust accordingly + Also, prune ia64-reloc-none from the list. + I can't tell from the code snippet if this + has been incorporated or not. + + - .cvsignore: Add the stamp directories + + - debian/rules: Don't put CFLAGS in configparms, resolves ldconfig + miscompile on i386 + + - debian/rules: Add freebsd-i386 support + - debian/rules.d/control.mk: Add freebsd-i386 support + - debian/sysdeps/freebsd.mk: New file to add freebsd-i386 support + - debian/sysdeps/paths.mk: Add freebsd-i386 support + - debian/sysdeps/soname.mk: Add freebsd-i386 support + + * XXX Below here was during the 2.2.94 development, and never released. + + * Jeff Bailey + - Upgrade tarballs to 2.2.94 + - version: Update to 2.2.94 + + - debian/patches/cvs: Remove + - debian/patches/manual-texinfo4: Remove, incorporated upstream. + - debian/patches/i386-mathinline.dpatch: Remove, glibc headers require + ANSI compilers. + - debian/patches/db1-addon-enabler.dpatch: Remove + - debian/patches/0list: adjust accordingly + + - debian/patches/0list: Comment out string2-pointer-arith. + This was originally created to fix #44697, but without this + patch, 44697 is no longer reproducable. + + - debian/patches/fhs-linux-paths.dpatch: Update to new template format + + - .cvsignore: New file + + * XXX Below here was during the 2.2.93 development, and never released. + + * Jeff Bailey + - Upgrade tarballs to 2.2.93 + - version: Update to 2.2.93 + + The following important patches are still disabled: + + glibc22-hppa-pthreads, glibc22-hppa-rela, ia64-perf + + - debian/patches/0list: prune commented out patches that won't + be needed anymore + + - debian/patches/ia64-reloc-none.dpatch: Updated, thank to + Randolph Chung + + - debian/make-cvs-patch.sh: New file. + + - debian/patches/template.dpatch: Update headers to new format. + + - debian/patches/hurd-ioperms.dpatch - Deleted + - debian/patches/hurd-lfs64.dpatch - Deleted + - debian/patches/hurd-update.dpatch - Deleted + - debian/patches/syserrlist.dpatch - Deleted + + - debian/README - More updates + + - debian/rules.d/control.mk: debian/control should Depend on + debian/sysdeps/depflags.pl + + - debian/sysdeps/depflags.pl: Actually add the dependancy on + libdb1-compat. This is an update to GOTO Masanori's change, + Thanks to Ryan Murray for catching this. + + - debian/patches/mathpatch.dpatch: Prune + + - debian/rules.d/patch.mk: Add `setup' as an alias for `patch' + to provide dbs compatability. + + - debian/patches/cvs.dpatch: Sync with CVS from September 14th. + - debian/patches/0list: Updated + + * GOTO Masanori + - debian/packages.d/glibc-doc.mk: change texi2html processed file from + chapters.texi to libc.texinfo. Closes: #159417 + - debian/packages.d/libc-{dbg,pic,prof}.mk: fix /usr/doc removal + compilation failure. + - debian/libc/DEBIAN/postinst: Fix 'grep -v' failure if the size of + /etc/ld.so.nohwcap is 0. + - debian/rules.d/control.mk: Generate libc-opt control information. + + - Updating 2.2.9x fixes LSB 1.2 compliance. Closes: #156821 + - debian/control: add Depends: libdb1-compat. + Until woody, libdb1 is included in libc6 package. However after sarge, + libdb1 support is removed. libdb1-compat contains libdb1 which is + formerly provided by libc6. Now libc6 depends on libdb1-compat, + so upgrading from woody to sarge does not break any libdb1 issues. + Closes: #155904 + + - debian/patches/glibc22-hppa-fcntl.dpatch: added, patched by + Carlos O'Donell . + - debian/patches/glibc22-hppa-fcntl-lfs.dpatch: added, patched by + Randolph Chung . Closes: #160846 + + * Ben Collins + - Make sparc64 build use gcc-3.2. + - Update all config options to not use --disable-sanity-checks, since we + are actually using gcc-3.2 for everything. + - Patch cleanups. + - Re-enable optimized libs. Includes a simple mechanism which should fix + the conflicting symbols during libc/libc-opt upgrade scenarios. This + means that libc6-v9, libc6-i586 and libc6-i686 are back in full swing. + - Remove all references to /usr/doc symlink crap, which is deprecated. + + * XXX Below here was during the 2.2.92 development, and never released. + + * Jeff Bailey + - Upgrade tarballs to 2.2.92 + - version: Update to 2.2.92 + - debian/control.in/main: Require gcc-3.2 for all archs + - debian/patches/0list: prune glibc-cvs, glibc22-s390-resource, + gmon-start, locales-de_CH, sh-sysdep, alpha-build-failure + + These are already included in the 2.3 series. + + - debian/patches/glibc22-misc.dpatch: Split into ... + debian/patches/makeconfig.dpatch: ... this + debian/patches/locale-es_AR.dpatch: ... and this + debian/patches/i386-mathinline.dpatch: ... and this + debian/patches/ldconfig.dpatch: ... and this. + + - debian/patches/makeconfig.dpatch: Update for 2.3 series + + - debian/patches/0list: Temporarily disable some other patches: + + glibc22-hppa-pthreads, glibc22-hppa-rela, ia64-perf + + - debian/rules: memset.S works on ppc now, so stop deleting it. Thanks + to Jack Howarth for letting us know. + + - debian/sysdeps/gnu.mk: Remove --enable-libio, now set by default. Add + NO_TEST = yes, make check does not run on i386-gnu. + + - debian/sysdeps/tools.mk: Hardcode gcc-3.2 for $(CC) and $(BUILD_CC) + until gcc-defaults switches. + + - debian/rules: use CC=$(CC) when calling configure to get any changed + definitions. + + - debian/control.in/main: Require binutils (>= 2.13.90.0.4-1) + + - debian/rules: Add time/date stamps to beginning and end of log files + + - db1-addon-2.1.3.tar.bz2: Delete + + - debian/ppc-memset.S: Delete + + - debian/README: Update + + * GOTO Masanori + - debian/packages.d/libc-dbg.mk: update libpthread-0.9 -> 0.10. + - packages.d/libc.mk: likewise. + - packages.d/optimized.mk: likewise. + - packages.d/sparc64.mk: likewise. + + - debian/patches/glibc22-hppa-mcontext.dpatch: Fix unmatched userland + mcontext_t definition differed from kernel. Patched by + Carlos O'Donell . Closes: #157374 + + * XXX Below here was during the 2.2.5 development, and never released. + + * GOTO Masanori + - debian/patches/glibc-cvs.dpatch: Update from Glibc CVS. + - debian/patches: Dropped applying below patches due to updating + glibc-cvs.dpatch. + hurd-update, hurd-ioperms, ia64-strncpy, sparc-misc, resolv-nss_dns, + glibc-openoffice-fixes, xdr-array-security, hurd-lfs64, + syserrlist, mathpatch + - Fix gcc 3.1/3.2 compatibility building for glibc on ppc, with upstream + patched by Jack Howarth and + Franz Sirl . + Closes: #155606 + + -- Jeff Bailey Thu, 17 Oct 2002 08:37:52 -0400 + +glibc (2.2.5-15) unstable; urgency=low + + * debian/patches/dl-procinfo-fix.dpatch: Fix libssl optimization + problem occured by glibc dl-procinfo. + Closes: #161700, #161717, #161720, #161740, #161773, #161774 + Closes: #161786, #161788, #161813 + + -- GOTO Masanori Thu, 3 Oct 2002 09:56:46 +0900 + +glibc (2.2.5-14.3) unstable; urgency=low + + * NMU + * debian/patches/glibc22-mips-mcontext.dpatch: delete. + + -- Ryan Murray Sun, 15 Sep 2002 14:21:21 -0700 + +glibc (2.2.5-14.2) unstable; urgency=medium + + * NMU + * debian/patches/alpha-stxncpy.dpatch: keep testsuite patch (accepted + upstream), but disable all use of stxncpy until a correct patch can + be made. + + -- Ryan Murray Thu, 12 Sep 2002 13:04:47 -0700 + +glibc (2.2.5-14.1) unstable; urgency=low + + * NMU + * sysdeps/depflags.pl: Make libc{6,6.1} depend on libdb1-compat + (closes: #155904) + * debian/patches/alpha-stxncpy.dpatch: Add patch from Daniel Jacobowitz + for alpha stxncpy (closes: #159633) + * debian/patches/glibc22-mips-msq.dpatch: Add + sysdeps/unix/sysv/linux/mips/bits/msq.h for mips (closes: #159923) + * debian/patches/glibc22-hppa-fcntl.dpatch: Add DN_* and F_NOTIFY definitions + for hppa (closes: #159636) + * debian/patches/glibc22-hppa-mcontext.dpatch: correct definition of mcontext + to match kernel (closes: #157374) + * debian/patches/glibc22-mips-mcontext.dpatch: correct definition of mcontext + to match kernel (closes: #160462) + * add build-depends on dpkg 1.10.8 to ensure we use the install-info that + has the perl 5.8 workaround. + + -- Ryan Murray Tue, 10 Sep 2002 22:35:48 -0700 + +glibc (2.2.5-14) unstable; urgency=low + + * GOTO Masanori + - debian/patches/sh-sysdep.dpatch: Added the patch to compile for sh[34] + sh[34]eb. Closes: #156273 + - debian/patches/glibc22-m68k-compat.dpatch: Newer m68k debian specific + compatibility patch. Patched by Michael Fedrowitz . + - debian/patches/malloc-security.dpatch: Applied malloc security patch + Patched by Wolfram Gloger . + - debian/patches/alpha-build-failure.dpatch: Fix alpha build failure. + + -- GOTO Masanori Wed, 7 Aug 2002 20:56:54 +0900 + +glibc (2.2.5-13) unstable; urgency=low + + * Ben Collins + - Last maintainer upload for me. + - Fix double getent listing for build of libc package. + Closes: #154133, #152866 + - Set maintainer to the debian-glibc mailing list. Set uploaders to myself + and others. + - Placed into CVS (this log entry is the first test commit). + - ia64 build failure was fixed in last NMU. Closes: #151956 + - This sshd/libc bug is long since gone. Closes: #72596, #82468 + - ldconfig search order has also since been fixed. Closes: #105249 + - Add patches that OpenOffice needs in order to build. Closes: #153107 + - Bump min kernel supported to 2.2.0. Closes: #149529 + - Remove db1 compat library. The only user I know of this is coda. Coda + can include it's own version of the library now. I've emailed the coda + maintainer. + - Bump the shlibs ver because of the min-kernel change, and db1 removal. + - Add xdr-array.c security patch, Closes: #154992 + + * GOTO Masanori + - applied patches/locale-de_CH. + - debian/control: fix my uploader address due to my obsolete gpg key. + - debian/copyright: update copyright year. + + * Jeff Bailey + - Add hurd-i386 patch for support LFS from CVS + - Add patch to only declare sys_errlist and sys_nerr on Linux. This + allows gcc to build cleanly on hurd-i386. + - Require mig >= 1.3-2 (hurd-i386 only), and hurd-dev >= 20020608-1 + (hurd-i386 only) + - Prune hurd-ldflags from Hurd patch list. Noone is quite sure what + it's for. With this change, all hurd-i386 patches are now upstream + in CVS. + - Add 'mathpatch' to fix a math testsuite failure. + + -- Ben Collins Thu, 25 Jul 2002 11:13:22 -0400 + +glibc (2.2.5-12) unstable; urgency=low + + * Non-maintainer upload to fix build problems on ia64 + * replaces ia64-asm-fixes.dpatch with ia64-perf.dpatch, ia64-strncpy.dpatch + + -- Bdale Garbee Tue, 16 Jul 2002 17:09:24 -0600 + +glibc (2.2.5-11) unstable; urgency=low + + * Yet another NMU + * Build with a -11 version to work around fragile logic that breaks + locale dependencies when using NMU versioning. Closes: Bug#152968 + + -- Wichert Akkerman Sun, 14 Jul 2002 23:59:04 +0200 + +glibc (2.2.5-10.0) unstable; urgency=low + + * Non-maintainer upload by the security team + * Rebuild, uploads to both testing and unstable are not allowed + + -- Wichert Akkerman Sun, 14 Jul 2002 04:48:50 +0200 + +glibc (2.2.5-9) testing-security unstable; urgency=low + + * Something fucked up. Not sure why the .diff.gz size didn't match the + .changes/.dsc. Not sure why katie didn't reject the upload when it found + that out aswell. + + -- Ben Collins Sat, 13 Jul 2002 10:08:51 -0400 + +glibc (2.2.5-8) testing-security unstable; urgency=low + + * Resolver security bug fix. + + -- Ben Collins Fri, 12 Jul 2002 18:24:28 -0400 + +glibc (2.2.5-7) unstable; urgency=low + + * Misc ia64 asm updates, and strncpy fix + * Misc sparc patches from DaveM + * Revert sparc64 back to lib64 from my rebelious lib/64 effort. Use gcc-3.1 + now. + + -- Ben Collins Mon, 17 Jun 2002 22:33:39 -0400 + +glibc (2.2.5-6) unstable; urgency=low + + * Fix locales/config to be 755. + * Add big fat note to default nscd.conf about how host cache is insecure, + and disable it by default. This lowers the severity of #139879 for the + time being. I'll close it when a proper fix is in. + * Hurd patches from Jeff Bailey. Hurd goes to libc0.3! + + -- Ben Collins Sun, 28 Apr 2002 11:21:48 -0400 + +glibc (2.2.5-5) unstable; urgency=low + + * Fix missing LOCALES var in locale-gen. + * Fix space before "]" in locales/postinst. Closes: #139902, #139977, + #140048, #140464, #141408, #141515, #141558, #141617, #141786 + * Generate list of locales directly in locales/DEBIAN/config, so that we + have a working list during pre-inst. Closes: #76954, #141384 + * Backout nice changes for now. + + -- Ben Collins Mon, 25 Mar 2002 21:05:44 -0500 + +glibc (2.2.5-4) unstable; urgency=low + + * Include s/ip6.arpa/ip6.int/ patch from Fabbione. Closes: #119773, + #132310 + * Fix perms on locales/DEBIAN/config. Closes: #134094, #139682 + * Update from Glibc CVS: Lots of euro conversions and locales updates. + Closes: #128181, #130259 + Lots of other various fixes (please read the ChangeLog). Closes: #138094 + * Upstream fixed ia64 ldd rewrite problem. Closes: #128451 + * Upstream fixed nice return. Closes: #136815 + * pt_BR translation is ok now, Closes: #128530 + * Applied patch from Ganesan R to better handle some locale names. + Closes: #128969 + * Add ARM patch to disable hardware caps. + * Fix typos in catalan template. Closes: #133247 + * Add a "Leave alone" option for locales setting of /etc/environment. + Make it the default. Closes: #133315, #133315 + * HPPA patch from Randolph Chung. Closes: #133666 + * Fix zh_HK date output, from Anthony Fok. + * s/Noninteractive/noninteractive/ (hopefully for the last time). + Closes: #134381, #137348 + * Fix locales/config for when locale.gen doesn't exist. + Closes: #135343, #134613, #139284 + * Patch from Gary Hade (via Randolph Chung) to fix gmon-start. + Closes: #135748, #129903 + * Fix locale.1 - s/LC_PAPR/LC_PAPER/ Closes: #114174 + * Add glibc22-hppa-tests patch from Randolph Chung. Closes: #137513 + * Alistair McKinstry: + - Added locale.alias(5) and locale.gen(5) man pages. Closes: #106117 + - Patch for glibcbug to correctly handle bad EDITOR setting. + Closes: #128699 + - Include glibcbug.1 manpage. Closes: #128701 + - Add patch to fix segv in localedef. + - Patch for locale.1 and localedef.1 to add missing LC_* vars. + Closes: #114174 + - Fix for the d_fmt field in de_CH. Closes: #27397 + - Fix locale.alias so Russion charset is KOI8-R instead of ISO-8859-5. + Closes: #62586 + - s/Jun/Juni/ s/Jul/Juli/ for sr_YU. Closes: #131846 + - Typo in categories.def. Closes: #133379 + - Update iso-4217.def Closes: #133380 + - Re-enable el.po since we are using newer gettext. Closes: #133383 + * nscd.conf.5: Clarification. server-user option cannot be used with + -S/--secure. It will fail to start. Also note that using server-user other + than root may break some lookup services. Closes: #139433 + * Completely remove the pthread man pages. They are _way_ out of date (last + updated in 1998 according to the ChangeLog). Use the info or html docs + instead. Feel free to send me mucho patches for them, if you want them + back. Closes: #139052, #139042 + * Various LSB conformance patches from Joey Hess. Closes: #136815 + * ia64 patch for R_IA64_NONE relocs. Closes: #135314 + + -- Ben Collins Sun, 24 Mar 2002 09:49:37 -0500 + +glibc (2.2.5-3) unstable; urgency=low + + * Fix logic in locales postinst which would fail on empty or missing + /etc/environment. Closes: #132025, #131999, #132244 + * Remove build-dep on gcc-3.0-sparc64 + * Fix case where no locales are selected, so the only choices for LANG are C + and None. This left a hangin comma which debconf doesn't seem to like. + Closes: #132245 + + -- Ben Collins Sun, 3 Feb 2002 23:13:29 -0500 + +glibc (2.2.5-2) unstable; urgency=low + + * Remove glibc22-m68k-resource.dpatch. Patch is already included upstream. + Closes: #130922 + * Fix thinko in locales postinst. Also add a "None" option for LANG, and + check for it in postinst. + * HPPA correct unwind setting, from Matthew Wilcox. Also update patch + splitting the linuxthreads and rel/rela changes. Closes: #131216 + * Fix copyright shown for the GNU Libc Manual. Closes: #130866 + * Fix problem where a binary-NMU rebuild of libc would provide a version + that was incompatible with the current locales dep. + * Fix atomic_lock_t decleration for hppa. Closes: #131367 + * Fix logic in locales where LANG wasn't being set in /etc/environment. + Closes: #131040 + * Moved SUPPORTED list to /usr/share/i18n/, since policy says it can't be in + /usr/share/doc/locales/. Fixup debconf scripts to notice this. + * A few patches from CVS: + - Fixes bad optimization in dynamic linker + - Updates m68k and arm for unwind + - tzdata2002b updates + - Some irrelevant (for us) x86_64 updates + * Patch from Gerhard Tonn for s390-32 for bits/resource.h. + * libc6-sparc64-dev: Change dep to gcc-3.0 instead of gcc-3.0-sparc64. The + packages are now merged. + + -- Ben Collins Fri, 1 Feb 2002 11:52:54 -0500 + +glibc (2.2.5-1) unstable; urgency=low + + * New upstream. Closes: #122980, #126441 + * locales.postinst: Add a signature line to /etc/locale.gen so people can + take over the file manually instead of through debconf. + * Added -de template for locales. Closes: #114078 + * Removed need for generate-config.mk. SUPPORTED list for debconf is now + generated dynamically using SUPPORTED.gz. + * Added debconf option in locales to choose LANG= default in + /etc/environment based on contents of /etc/locale.gen. Closes: #117216, + #120410 + * Patched nscd init script. Patch supplied by Grant Bowman. Closes: #121942 + * Do not install tzconfig(8), Closes: #123679 + * Removed obsolete BSD license clause in debian/copyright. Closes: #123821 + * Applied spelling patch for locales description. Closes: #125092 + * Updated glibc-doc description to note that it includes html docs too. I am + not, however, splitting info and html docs into seperate packages. Closes: + #125825 + * Check for the existence of libdb.so.3 before cat'ing it. Closes: #126459 + * Added powerpc sysconf patch from David Schleef. Closes: #127560 + * Added SuperH support. Closes: #127740 + * No longer apply glibc-vs-gcc3 patch. Implementation merged upstream. + * Last minute ARM patch to fix unwind. + + -- Ben Collins Thu, 24 Jan 2002 00:31:40 -0500 + +glibc (2.2.4-7) unstable; urgency=low + + * glibc22-hppa: Fix mips/pt-machine.h, so that it patches both the ISA-1 and + ISA-2 cases of testandset(). Also add IPC updates from Willy. Closes: #120383 + * glibc22-hppa: Updated, from Mathew Wilcox. + + -- Ben Collins Mon, 3 Dec 2001 12:09:26 -0500 + +glibc (2.2.4-6) unstable; urgency=low + + * glibc22-hppa.dpatch: Fix lock_held macro on non-hppa. This patch is now + enabled by default for all archs. + * Update patches for HPPA dynamic loader from. + * m68k resource.h patch from Roman Zippel, Closes: #118909 + + -- Ben Collins Fri, 9 Nov 2001 21:20:59 -0500 + +glibc (2.2.4-5) unstable; urgency=low + + * Added patch from Ulrich to really fix the [x-] fnmatch() case. + Closes: #96013 + * Updated gcc3 compat patch. + * Several changes to ldconfig: + - Parse the config file before checking system directories. This is needed + to make sure it is possible to override system directories. + - Cleanup the config file parsing routine a bit. Make sure we open the + config file with correct perms in case it gets created by this call. + * Pulled from CVS as of Oct 27, 2001: + - Includes fnmatch fix upstream. + - strxfrm fix. + - dlfcn fix for C++ program usage. + - ENABLE_NLS fixes for various functions (doesn't affect us, since it is + mainly meant for non-nls builds). + - IPv6 reverse lookup fixes. + - Lots of libm fixes. + - Several language translation updates. + - Several m68k setjmp fixes. + - Some mips fixes merged. + - Timezone updates. + - S390 ucontext fixes. + - Several hurd fixes. + - ELFOSABI_* Updates. + * Update the kernel headers on all the systems I build for (arm, ppc, i386, + mips, sparc, sparc64, hppa). + * Added "es" template for locales, from Carlos Valdivia. Closes: #117413 + * Fixup ttyname patch for devfs, which broke some things. Closes: #117551 + * Remove the errno.texi explanation for _GNU_SOURCE for two defines. The + thing is, according to the libc manual conventions, this is not the + correct way to handle it. In fact, it is already done according to the + convention of the rest of the manual. The two items are tagged with the + "GNU" comment, meaning they are GNU extensions. The libc manual explains + in its introductory chapters that this means it needs the _GNU_SOURCE + define. + + -- Ben Collins Mon, 29 Oct 2001 20:25:40 -0500 + +glibc (2.2.4-4) unstable; urgency=low + + * Hopefully fix the damn .html docs. Looks good to me. Closes: #84237, + #89382 + * Fix inttypes.h typo. Closes: #114483 + * Disable sanity checks for gcc-3.0 archs, Closes: #114724 + * Fix entry for locales depending on debconf. Closes: #115155 + * Fix echo commands when generating locales.config. The -e option is not + portable. + * New hppa patch from several people. This, along with the .10 binutils, + should fix all of hppa's problems. + * Apply devfs compatibility patch for ttyname. Closes: #74911 + * Add (modified) patch for ldconfig to create ld.so.conf if it doesn't + exist. Original patch from David Whedon, Closes: #98763 + * Clarify some errno.texi functions wrt _GNU_SOURCE. Patch from Jeremiah + Savage. Closes: #99683 + * Add conflicts/replaces for all the potato locales that cannot be installed + with this glibc (and are actually supported now). Closes: #108015 + * Fix comma in confnames.h to make all the -pedantic folks happy :). + Closes: #113498, #113816, #114672 + * Include a mips termios.h cleanup patch, sent by Ryan Murray, patch by Ralf + Baechle. + * Add Russion template for locales package, by Ilgiz Kalmetev. Closes: + #114303 + * Fix sed in ia64/ldd-rewrite.sh: Closes: #115784 + * Add Brazilian Portuguese locales template from Andre Luis Lopes, closes: + #116435 + + -- Ben Collins Wed, 24 Oct 2001 12:28:49 -0400 + +glibc (2.2.4-3) unstable; urgency=low + + * Apply patch to fix es_AR number formatting. Closes: #108373 + * Fix SA_* defines on some archs. Patch sent upstream, and accepted. + Closes: #113273 + * Brought in dynamic module patch from CVS that fixes + mozilla/galeon/konquerer. Closes: #113457, #113481, #113708 + * Fixed libc postinst for the readlink call. Based on patch supplied by + Branden Robinson. Closes: #113459 + * Increase shlib dep to 2.2.4-2. Closes: #113731 + + -- Ben Collins Sat, 29 Sep 2001 23:38:11 -0400 + +glibc (2.2.4-2) unstable; urgency=low + + * Updates from CVS Head, includes some s390 fixes, closes: #109072 + * Reincluded some missed patches (notable the fakeroot fix), closes: + #109162 + * Include the iconvconfig program in the libc6 package, closes: #109600 + * Fixup locales/libc dep back to the old way, closes: #109850 + * Apply patch for locale-gen.8, closes: #110554 + * Apply patch to make /etc/locale.gen generated by debconf interface. + Thanks to Ho-seok Lee, closes: #110980, #110661 + * glibc22-fts.dpatch: Remove, fixes upstream now. + * libc/DEBIAN/postinst: Before calling init u, make sure /proc/1/exe + resolves to /sbin/init. This should help ensure we don't muck up + debootstrap. closes: #110615 + + -- Ben Collins Fri, 7 Sep 2001 14:52:02 -0400 + +glibc (2.2.4-1) unstable; urgency=low + + * Final release of 2.2.4. Not much changed from 2.2.3-11. + * Remove cruft from debian/patches/ + + -- Ben Collins Thu, 16 Aug 2001 09:29:14 -0400 + +glibc (2.2.3-11) unstable; urgency=low + + * Updated to HEAD of CVS as of Aug 11, 2001 + - Misc fixes found in 2.2.4pre2 + - This is basically 2.2.4pre3 + * New glibc-vs-gcc3 patch, closes: #108408, #108364, #108415, #108364, + #108454, #108476 + + -- Ben Collins Sun, 12 Aug 2001 10:02:12 -0400 + +glibc (2.2.3-10) unstable; urgency=low + + * Updated to HEAD of CVS, as of Aug 4, 2001 + - Mostly arch specific bug fixes. + - This is actually the same as 2.2.4-pre2 (releasing in a day or so) + * Ok, I give up. I don't want any more bug reports, so I've added the + nfs getdents fix. If it breaks anything, I will hunt down all of those + who submitted the patch/bug. closes: #86877 + * Added two more Q/A's to the Debian FAQ (AKA "The Overfiend Clause" :) + This documents Debian's glibc following stable CVS, and also + kernel-headers desync. + * Added latex2html to build-dep-indep, closes: #101662 + * Fix tzconfig so it handles ambiguous names correctly, closes: #105580 + Patch by Martin Pool + * Add copyright and license to tzconfig, closes: #105581 + * Updated libc0.2 hurd dep to (>= 20010718-1), closes: #106291 + * Include locale-gen.8 manpage from Eduard Bloch + * Duh. We don't need to cat in the saved libdb.so.3 to the new location. + Ldconfig does the work for us by creating a symlink to it. + * Remove sysdeps/powerpc/memset.S so ppc gets the generic C version for + now (which is actually faster on most machines anyway), until they get + their memset.S fixed (especially for Power3). + * Added updates for hppa patch from Matthew Wilcox. + * debian/rules.d/control.mk: Added hppa to list of archs for libc6 + + -- Ben Collins Tue, 7 Aug 2001 10:11:22 -0400 + +glibc (2.2.3-9) unstable; urgency=low + + * Really fix the timezone problem this time. I moved the UTC check + before the TZ check, and then reuse that to get the TZ date, instead + of the other way around. That solves the problem. Using this method, I + can get the UTC date first setting LC_ALL=C, and then allow the + override for the real UTC0 and $TZ date, so we get lang support + without breakage now. + + -- Ben Collins Tue, 24 Jul 2001 12:19:48 -0400 + +glibc (2.2.3-8) unstable; urgency=low + + * Use glibc- instead of glibc_ for the provides between libc and + locales. Underscores are actually not allowed in package names. + * CVS as of July 22, 2001 + * Use LC_ALL instead of LANG in libc postinst, closes: #106043, #106078, + #106081, #106187, #106215 + * Use Noninteractive, not noninteractive in postinst's, closes: #105902 + * SUPPORTED file ends in .gz...guess some people can't bother to add + that themselves. Also, add notes about locale-gen closes: #105915 + * Fix cp -L calls, use cat instead to make sure we avoid any command + line problems, closes: #106120, #106096 + * MIPS WARNING: The MAP_BASE_ADDR patch does not apply anymore, since it + seems that whole bit of code was removed. MAKE SURE THIS DOESN'T BREAK + ANYTHING! :) + + -- Ben Collins Sun, 22 Jul 2001 23:04:15 -0400 + +glibc (2.2.3-7) unstable; urgency=low + + * CVS as of 7-9-2001, closes: 101308, 103251, 100398, 100398 + * New hppa patch, still not enabled by default since I got deadlocks in + the linuxthreads tests (ex2 and ex10) on sparc. + * Increased shlibdep to 2.2.3-7 + * SUPPORTED locales list is now in doc dir, and locale.gen is a + non-changing file (still a conffile, but it doesn't change when glibc + changes). + * Fix fts patch so it doesn't break Hurd, closes: 102826 + * Make libc provide glibc_$DEBVERSION, and locales depend on it. This + way we make sure everything matches up. closes: 100605, 100605, + 101034, 100605, 99344 + * Added some more UTF-8 locales, closes: 103742, 86372 + * Fixed hurd's ldconfig, closes: #101691 + * Already fixed ld_envlib_path, closes: 101622 + * In libc preinst, detect if we are upgrading from a version where we + used to provide our own libdb.so.3, and keep a copy. We reuse it + during postinst. This way, we have no time where libdb.so.3 doesn't + exist. closes: 101795, 103586 + * Removed depends on libdb2 from libc6, since our hack above makes it + pointless. Now, libc6 should get installed before libdb2 (since it + depends on libc6), which will leave a working libdb.so.3. After libdb2 + is upgraded, the new libdb.so.3 will be installed, which will work + since the new libc6 that it depends on is also working. + * Fixed calls for zoneinfo as per JoeyH's suggestion. closes: 100461 + * Updated copyright notice since LGPL 2.1 is now used. + + -- Ben Collins Tue, 10 Jul 2001 14:00:59 -0400 + +glibc (2.2.3-6) unstable; urgency=low + + * CVS As of 6-9-2001, closes: #100055 + * debian/sysdeps/depflags.pl: Fix typo where netbase/netkit-rpc wasn't + being added to libc-dev control flags, closes: #98735, #99460, #99990, + #100382 + * Moved rpcinfo from /usr/sbin to /usr/bin... closes: #100279 + * Added fts() security patch + * Updated patch for HPPA, now also enabled per default + + -- Ben Collins Sat, 9 Jun 2001 16:35:29 -0400 + +glibc (2.2.3-5) unstable; urgency=low + + * CVS as of 5-28-2001 + * Added fake ldconfig script for hurd, provided by Robert Bihlmeye, + closes: #95189 + * Add replaces for netbase (<< 4.0), closes: #98708, #98735 + * Install rpcgen/rpcinfo manpages, closes: #98710 + + -- Ben Collins Mon, 28 May 2001 14:36:32 -0400 + +glibc (2.2.3-4) unstable; urgency=low + + * CVS as of 5-24-2001 + * Add forgotten mips ld.so patch + * Added s390 to arch lists, closes: #97718 + * Add m68k fPIC patch for libc_nonshared, closes: #97663 + * Add LD_LIBRARY_PATH to --library-path, closes: #98638 + + -- Ben Collins Thu, 24 May 2001 16:10:09 -0400 + +glibc (2.2.3-3) unstable; urgency=low + + * Upgraded to CVS as of 5-20-2001 + * New HPPA patch (applies cleanly) + * Fix prep.sh, closes: #97600 + * Add rpcinfo to libc, and rpcgen to libc-dev. Add Conflicts/Replaces + for both packages with netkit-rpc, closes: #93280 + + -- Ben Collins Mon, 21 May 2001 09:56:47 -0400 + +glibc (2.2.3-2) unstable; urgency=low + + * Enable threads for hppa + * Updated to CVS as of May 10, 2001, closes: #96968, #94501 + * Run locale-gen on upgrades from before 2.2.3-1, closes: #96767, #96913 + * Should be fixed, old regex problems, closes: #86728, #88677 + * This should be fixed now too, closes: #88662 + * There were some regcomp related fixes that appear to have fixed this, + closes: #93167 + * Build-Depends-Indep: s/perl5/perl/, closes: #95782 + * Updated eo_EO from Edmund GRIMLEY, closes: #78085 + + -- Ben Collins Thu, 10 May 2001 13:54:42 -0400 + +glibc (2.2.3-1) unstable; urgency=low + + * Were up to 2.2.3 now. + * libc-dev: Conflict with older gcc's that do not have the weak-sym or + pic-kludge patches. + * ldd.dpatch: New and improved fix for the "no execute permissions" + buglet. Now, ldd will not call the "file" command for every file. This + should speed up dpkg-shlibdeps a lot. + * Removed some obsolete db2 patches + * Removed some other obsolete patches + * Conflict with libnss-db that used db2 + * Depends on current libdb2 which contains libdb.so.3...hopefully this + wont make apt choke because of a dep loop + * Use the new gcc-3.0 to build sparc64 64bit libc/libc-dev packages. + * Build-Depend += gcc-3.0-sparc64 [sparc] + + -- Ben Collins Thu, 12 Apr 2001 21:08:33 -0400 + +glibc (2.2.2-4) unstable; urgency=low + + * Yeah! We can disable our libdb.so.3 (db2) interface in favor of the + one in libdb2. That package now has a symboled version so we can start + to migrate away from this cruft. However, we do still have the db1 + support. + + -- Ben Collins Fri, 23 Mar 2001 19:17:39 -0500 + +glibc (2.2.2-3) unstable; urgency=low + + * Disable building of optimized libs for now. I did not forsee the + problems involved with symbol skew between ld-linux.so.2 and the + optmized libc.so.6. As of now, I can see no way around this. + * Make libc6 conflict with the optimized libs for now, so we can get rid + of them, closes: #90753, #90758, #90763, #90770, #90778, #90779 + * RPC patch from Jakub Jelenik, probably closes: #90830 + * Add build-dep for file, m4 not needed now that opt libs are gone. + closes: #90773 + + -- Ben Collins Fri, 23 Mar 2001 10:31:24 -0500 + +glibc (2.2.2-2) unstable; urgency=low + + * Fix ld.so shlib output, closes: #87655 + * Update to latest CVS, as of 2001-03-21 + * manual/arith.texi: Fix documentation of fast and least integer + typedef's. Patch sent upstream, closes: #84711 + * glibc22-getaddrinfo.dpatch: Add fix from Hiroyuki YAMAMORI + , closes: #85304 + * i386/mathinlines.h: Fix non-ANSI ?: construct, closes: #85322 + * sysdeps/unix/sysv/linux/mips/bits/mman.h: Add and fix some madvise + declerations, closes: #86676 + * Explicitly list inetd to be restarted, closes: #86715 + * Updated Hurd SIOCS patch from Marcus Brinkman + , closes: #87903 + * Added eo_EO locale by Robert Thomson + * Check to make sure any services actually need to be restarted, closes: + #88440 + * Conflict with old strace, which appears to break under new libc6, + closes: #88775 + * Make sure we remove any CVS cruft, closes: #90173 + * Removed -O2 override for hppa, at Matt Taggart's request. + * Build-Depend on latest gcc so we get the weak sym stuff right. + * Made opt libs compiled specifically for 2.4.0+ kernels. This should + make them even faster and smaller since it reduces the compatibility + code. + * libc-opt/DEBIAN/preinst: Check to make sure we are running under a + 2.4.0 kernel, and under the correct cpu + * libc/DEBIAN/{prerm,postinst}: Changed check for package name to use + basename of $0 as opposed to uname. + + -- Ben Collins Fri, 23 Mar 2001 10:30:47 -0500 + +glibc (2.2.2-1) unstable; urgency=low + + * New upstream version + * Updated to CVS as of 2001-02-16, should make alpha build now. + + -- Ben Collins Thu, 15 Feb 2001 23:55:24 -0500 + +glibc (2.2.1-4) unstable; urgency=low + + * Fixup section "disparities" between control and overrides on + ftp-master + + -- Ben Collins Tue, 13 Feb 2001 11:47:22 -0500 + +glibc (2.2.1-3) unstable; urgency=low + + * Update CVS, should fix regex memleak, closes: #85788 + + -- Ben Collins Mon, 12 Feb 2001 22:57:56 -0500 + +glibc (2.2.1-2) unstable; urgency=low + + * Synced with CVS as of 2001-02-09, 2.2.2-pre1 + * shlibs: s/libdb1/libdb/ + * debian/rules (clean): remove shlibs file, since it is generated + * move getaddrinfo patch to it's own .dpatch + * Added some ia64 setups, closes: #82384 + * clean target, remove debian/control.in/libc?*, since they are + generated + * debian/control.d/main (locales): Fix description to reflect recent + merging of the i18ndata package, closes: #82347 + * Added hppa patch from Matt Taggart + * db/ndbm.h: s,db.h,db1/db.h, closes: #83171, #83443 + * Added extra disclaimer to the locale postinst warning. closes: #83394 + * libc/DEBIAN/postinst: change logic in check for init. closes: #84287 + + -- Ben Collins Mon, 29 Jan 2001 10:54:53 -0500 + +glibc (2.2.1-1) unstable; urgency=low + + * Upstream version 2.2.1 release, not many changes for us really, since + we've been using CVS all along. + * Included Hurd-SIOCS patch from Marcus Brinkman. + * segfault.c: s/__access/access/. Patch sent upstream. closes: #82026 + * Increase shlibdep version to 2.2.1 + * Merged i18ndata package into locales package. closes: #81990 + * Added snmpd to the restart list, closes: #81736 + * Resynced bug list. Count is 57 now... + + -- Ben Collins Wed, 10 Jan 2001 08:55:08 -0500 + +glibc (2.2-11) unstable; urgency=high + + * Synced to CVS as of 2001-01-09 - 52 unique bugs and decrementing... + This fixes the RESOLV_HOST_CONF security problem. + * Included nscd(8), nscd_nischeck(8) and nscd.conf(5) man pages by + Sebastian Rittau . closes: 66365 + * /etc/init.d/nscd: Actually uncomment and use the nscd_nischeck to see + if we want to start in secure mode. + * debian/manpages/getconf.1: New manpage for getconf utility. closes: + #63897 + * debian/manpages/catchsegv.1: New manpage for catchsegv utility. + closes: #70740 + * debian/glibc-doc/usr/share/doc-base/glibc-manual: Fix for new html + setup. + * sysdeps/posix/getaddrinfo.c (gaih_inet): Try absolute lookups first. + closes: #64192 + * manual/conf.texi (File Minimums): make _POSIX_PATH_MAX match the + posix1_lim.h value, patch sent upstream aswell. closes: #81628 + + -- Ben Collins Sun, 7 Jan 2001 16:15:34 -0500 + +glibc (2.2-10) unstable; urgency=low + + * Synced to CVS as of 2001-01-05 - 64 unique bugs and decrementing... + * manual/stdio.texi: getline(): Clarify the return value if EOF is + reached before a newline. Patch sent upstream aswell. closes: #14590 + * manual/string.h: basename()/dirname(): Added documentation for these. + Basename() required two definitions, one for the GNU version, the + other for the XPG version. Included examples. Patch sent upstream. + closes: #27586 + * DISCLAIMER: All three of the above changelog entries did in fact change + the state of the files in this source. It is the opinion of the + maintainer (hereto after refered to as GOD), that the changes made do + in fact make the package(s) better. GOD does not warantee that these + changes will make your life (be it sex life, or no life) better. GOD + does guarantee that you (hereto after refered to as NON-DIETY) will + gain great wisdom simply by using this(these) package(s). The + NON-DIETY shall not, in any event, hold GOD responsible for misreadings + of these statements. + + -- Ben Collins Fri, 5 Jan 2001 10:46:42 -0500 + +glibc (2.2-9) unstable; urgency=low + + * CVS synced as of 2001-01-03. Happy freaking new year. + * Remove FAKEROOT check, since we don't build locales now, we don't have + to worry about it. + * dlfcn/dlerror.c: dlerror(): Check for result->errstring being NULL, + closes: #80991 + * No offense, but I cannot be expected to debug fortran programs + compiled with a commercial(?), non-GNU compiler. Talk to them about + getting it to work. As for the "works on RH, but not Debian", most + likely that didn't do anything to make it very portable. closes: #68510 + * Tested with current NIS, and the test cases passes with no open fd's. + closes: #52222 + * Make note of AMD in libc6-i[56]86 descriptions. closes: #77791 + * Make note about some commercial programs not liking our optimized + libraries (IBM JDK for one). closes: #78656 + NOTE: To the submitter of this bugreport, I'm pretty sure the JDK + relies on frame-pointer to handle some special ass-backwards stuff, + which wont work with these libraries since they are compiled without + frame-pointer (making it hard to strace, and debug using these libs). + * Yes, semget(2) refers to SEMMSL, but nothing I can find says it should + be defined in userspace. closes: #11560 + * This patch only applies to kernel-headers, and since they don't need + to be used in userspace, it's ok to have some oddities, closes: #55578 + * I was able to write an 90 byte "Hello World" .c, and compile it into + an 800 byte static binary using -nostdlib and -Wl,-lc. closes: #21676 + * Making an ar archive from one .o is just silly, closes: #58606 + * Patch sent upstream. Might change a bit, but the result should be the + same, closes: #73003 + * I believe the reason the .pwd.lock file remains is to avoid a race + condition, where something might be waiting for the lock, and + unlinking it would cause something else to be able to obtain the lock, + even though it isn't available. closes: #14093 + * I tried to reproduce this, but glob kept working right for me. I think + the user is misusing the function. Most likely they are passing the + glob on the command line, which is in turn doing some escape + processing, and not working right with glob() itself. closes: #67921 + * In Debian, locales are not required to be installed. closes: #35875 + * Could not reproduce in the latest glibc. Upstream seems to have fixed + this. closes: #75163 + * Bug report log says this is fixed in glibc 2.1.1, closes: #36775 + * I think this was an issue with the gcc-2.95 compiler defaulting to + 486 instruction sets. This was fixed by gcc some time ago. closes: + #38998 + * The "order" directive in host.conf is supposed to be a space seperated + list of sources, not comma. This is a bug in host.conf(5), which has + already been reported. I'm closing this one to avoid duplication. + closes: #35731 + * Appears to be related to #36775, but I checked the test case anyway, + and it worked as expected. closes: #35035 + * I tried the test program, and it worked fine. So either guile or glibc + fixed the bug already. closes: #36030 + * The locales package is not referenced by any other package ATM. + closes: #38742 + * Symlink /usr/share/zoneinfo/localtime to /etc/localtime for libc5 + compat. closes: #48705 + * SUSv2 defines putenv as "int putenv(char *)", closes: #60960 + * From my understanding of of the SUSv2 definition, the pointer + reference of inbuf may be incremented to the current position of + translation. So in actuality, the object is not const. GLibc + interprets this using the __restrict compiler option (defined in gcc's + later than 2.92, e.g. egcs 1.1.2, and gcc 2.95). closes: #77312 + * Fixed ambiguity problem in tzconfig, closes: #69045 + * This was a netscape/libc5/plugin issue, closes: #50672 + * User error. He is setting all of the fd's in the pollfd struct to -1, + which returns POLLNVAL, which is the expected response. closes: #51877 + * objstack_* does use const definitions now, closes: #68918 + * This was the old xmms-segv's-on-exit bug, fixed by glibc 2.1.9X (can't + remember which version exactly). closes: #74345 + * leading zero makes sscanf determine the number as an octal, closes: + #69278 + * zic.8: zdump is section 1, not 8. closes: #72095 + * Old libdb2 upgrade issue, fixed in during the 2.1.9x uploads. closes: + #72663 + * Update this changelog to include the revisions from the stable (potato) + updates. + * Patch sent upstream. Fixes timezone showing up as "/etc/localtime". + closes: #71060 + + -- Ben Collins Tue, 2 Jan 2001 20:22:11 -0500 + +glibc (2.2-8) unstable; urgency=low + + * The one-liner fix for devpts.sh + * Patch sent and accepted upstream, closes: #80485 + * CVS synced as of 2000-12-30 + + -- Ben Collins Thu, 28 Dec 2000 09:49:30 -0500 + +glibc (2.2-7) unstable; urgency=low + + * Synced to CVS as of 2000-12-25 + * Patches sent upstream, closes: #75334, #34550, #71928, #11839, #75349 + closes: #38392, #68923, #77416, #39440 + * TCPOPT_EOL, TCPOPT_NOP, TCPOPT_MAXSEG: not declared in glibc (was a + libc5 thing), so they don't need to be documented, closes: #9888 + * Use texi2html for .html output, which actually does split the file, + closes: #61257, #76678 + * Hmm, not sure I can fix hamm->slink upgrades for libc6-doc->glibc-doc, + closes: #32792, #32801 + * Fixed by upstream, closes: #62173, #10686, #37014, #54051, #57297 + closes: #53786, #74611, #37162, #41388, #60255, #63569, #67204 + closes: #67205, #60034, #42850, #60320, #39594, #59800, #48371 + closes: #66803 + * Could not reproduce. My test program showed that it resolved the + libpthread properly. I am going to assume user error, or some + funkiness on the user's system. closes: #78585 + * This is reported as a kernel issue, and the submitter was asked to try + a newer kernel, but never replied. I'm closing on the grounds that I + believe it was a kernel issue, closes: #45693 + * The iconv test program seems to work as expected in glibc 2.2, + closes: #39762 + * lt_LT uses ISO-8859-13 now, closes: #10358 + * Things relying on sort to work correctly, should set LANG=C to get + expected behavior, closes: #56195, #61746, #69544 + * Fixed long long ago, closes: #58226, #58586, #35948, #76246, #53530 + closes: #39584, #13800, #34452, #53894, #54096, #42490, #30683, #32468 + closes: #29619, #34816, #35113, #39071, #35334, #35497, #42867, #36212 + closes: #59316, #62826, #35131, #36952, #43659, #24090, #36076, #45041 + closes: #54156, #37307, #27146, #34729, #47457, #34699, #35250, #34538 + closes: #30054, #35389, #36655, #36762, #36932, #36933, #61163, #58954 + * We no longer build locales at build time, but at install time, closes: #69172 + * I don't see the problem in this testcase, works for me, closes: #73018 + * debian/control.in/main: Show in description that nscd also handles + host lookups, closes: #48716 + * Unreproducable, probably fixed in 2.2, closes: #57026, #42726, #40768 + closes: #45848, #58367, #62990, #40870, #67296, #38897, #60099, #66769 + * nscd now has a --invalidate option, closes: #42727, #43729 + * adduser now calls nscd -i, so works correctly, closes: #36080 + * Hey, it's one of my bugs, and it isn't any good! closes: #34940 + * Yeah, I agree with the bug report. If you don't want nscd to run on a + particular system, just uh, don't install it, closes: #36621 + * Setting Fixed to, closes: #47289 + * Do not use UNIX_PATH_MAX, use SUN_LEN(ptr) (defined in sys/un.h), + closes: #61963 + * _PATH_DEFPATH is the bare minimum for linux. If you want more, use the + PATH env, closes: #31983 + * The man page is wrong. dlerror.c, and dlfnc.h both show that the + return string is allocated, so it is not const. closes: #35694 + * All together now, "Using kernel headers in userspace is BAD", + closes: #12207, #19646, #43105 + * Ran the test case with -O0, -O2, -O3, -O6 on sparc and i386, and did + not see the problem reported, closes: #37154, #27516 + * Seems perl has worked around this (or libc has), since perl modules + are building fine, AFAICT, closes: #34110 + * Linus does not suggest doing /usr/include/{linux,asm} symlinks + anymore. closes: #24949 + * This isn't a glibc bug, it was a gdb bug that is now fixed. closes: #27544 + * lrint is defined with -D_ISOC99_SOURCE, closes: #43530 + * No reference to which docs, nor is there a test case, so: closes: #63511 + * Doh, this was already fixed by me in 2.2-6! closes: #79666 + * User malfunction, not a bug. closes: #39648, #50261, #36075 + * Including stdio.h only ensures that getline will work, it does not + guarantee you that it's return type is defined, which you must do + yourself. closes: #62511 + * O_LARGEFILE is only usable when compiling with -D_LARGEFILE64_SOURCE, + closes: #68873, #52455 + * Ok, strcoll doesn't seem as slow now as shown in the bug report when + LANG is set. The thing is, this function will always be slower when it + has to take localization into account. closes: #62803 + * Re bug #44093 + a) I'm pretty sure there is no problem with libc translating errno + from the kernel, else we'de have some serious problems. + b) The ioctl() manpage cannot document all returns (and in fact it + says that it does not document all ioctl types). + c) I'm pretty sure the EIO return on this particular case is generated + by the kernel. + closes: #44093 + * Tested this, and I was able to get 1022 temp files from mkstemp on a + single run, using the same template, closes: #31415 + * Ulrich Drepper, Re: sortlist in libresolv: + >It never was and in general is not wanted. Beside, it is another poor + >DNS feature which doesn't work with IPv6. Finally, the NSS gethost*() + >functions don't have the supporting code. + closes: #64327 + * lpd should not be using internal glibc functions. closes: #33686 + * makedb -V has no translation now, closes: #34702 + * Checking printf returns is left to the programmer, closes: #28250 + * Ok, the 51 pages of flaming in tis bug report leads me to believe that + this will never be resolved in glibc. IMO, it is up to the programmer + to be smart enough to check these things (where it matters). I am + closing this bug report on the precedence that it is not really a bug + because current functionality meets specs (and this bug report would + break that compatibility). This entire bug report should be archived + all on it's own. Hell, it should have it's own BTS just to track the + conversation. closes: #28251 + * mkstemp complies with SUSv2 and BSD 4.3. Changing it's bahvior would + cause portability problems. closes: #34793 + * Downgrading is not supported, closes: #36578 + * The test case did not use pthread_detach(), which resolved the issue. + closes: #25879 + * Fix devpts regex for when to mount devfs. closes: #79830 + * I believe Wichert found out that base-passwd did have a bug that was + causing this, and fixed it. closes: #55367, #79043 + * First of all, I do think tzconfig manpage needs to be in section 8. + However, changing the execute permissions does very little. In fact it + does nothing. Since normal users don't have perms to change the system + tz, it doesn't matter if they can execute tzconfig. closes: #62397 + * Added autofs to the services that need to be restarted. + closes: #80453, #79926 + * Use neat dpkg/awk one-liner from Adam Heath to get list of installed + services for the daemon check. closes: #80454 + * tzconfig allows you to choose UTC now. Just go to "12" (none of the + above), and then choose UTC. closes: #38556, #35094 + * Ok, my opinion on this is that you should check dlopen's return every + time. The example program shows that they did not do this. closes: #37604 + * Looks like a bug in haskell to me. closes: #37902 + * IIRC, all the BSD code is gone. closes: #58270 + * Bug report claims it is not a bug. closes: #42155 + * We have optimized libs now, so that should solve this. closes: #44619 + * I'm pretty sure this "large" wtmp file with only 3 entries is a sparse + file (check with du). closes: #43950 + * I seriously doubt that ld.so's LD_LIBRARY_PATH stopped working. + closes: #59110 + * I don't think this is a glibc bug. Sounds more like a cross-compiler + bug. closes: #68424 + * In Debian, 2.1.2 and 2.1.3 are binary compatible. closes: #60113 + * To get i18n/charmaps, you need to install i18ndata. closes: #65132 + * We don't need to mount shmfs anymore, closes: #65510 + * Fixed by dpkg, closes: #66913, #64906 + + -- Ben Collins Mon, 25 Dec 2000 08:42:49 -0500 + +glibc (2.2-6) unstable; urgency=low + + * Added m68k lchown fixes, plus removed conflict for libstdc++2.10-dev + on m68k. Bug/patch provided by Michael Fedrowitz + , closes: #78937 + * libc-opt: added memprof to the death list of packages that don't work + with our optimized libraries, closes: #79224 + * Added Provides: glibc2.2 to libc6/libc6.1/libc0.2 so I can make + locales dep on it, closes: #78495 + * CVS sync as of 2000-12-15 + * Fixed previously: closes: #75865, #77170, #75473 + * Added a "." counter while checking services for install, closes: #78881 + * %hhn works as expected in i386 in this version of glibc, closes: #79221 + * Looks like this is resolved, closes: #59429 + * The libc info page says not to use fgets on streams that may have NULL + char's, which sockets might, closes: #57729 + * This is probably fixed, if not reopen it please, closes: #24414 + * Well this bug report has no report in the BTS, I am going to assume + from the age and type of the title, that it is fixed, closes: #21272 + * Old ld.so issue, most likely resolved in hamm, closes: #46173 + * This bug is a simple programming mistake. For one the child never + * fills the buffer in certain cases, so it's contents are never flushed. + If the program called fflush after every output, then it works fine, + closes: #26226 + * The new upgrade code in libc postint should resolve this, closes: #64074 + * This is a compilation error. libc.so.6 does not contains fxstat + (libc-nonshared.a does), so if you don't link properly (like with + gcc), you will miss some symbols, closes: #36139 + * Similar to the above, also resolved, closes: #30427 + * Old ld.so bug, fixed, closes: #70658 + * Current localedef doesn't seem to segv on improper input, closes: #65634, #64878 + * YAOLDSOB (Yet Another LDSO Bug), closes: #42944 + * Lack of useful info in the BTS ("I suspect glibc" doesn't cut it), + closes: #36498 + * Someone needs to read release notes, closes: #41455 + * Uh, tzconfig works. Tzselect is not for changing timezones, but for + querying what the available ones are. From tzselect(1): + + Note that tzselect will not actually change the timezone + for you. Use the tzconfig(8) utility to achieve this. + + So you see, this is how it's meant to be, closes: #37409 + * Fixed in glibc 2.2, closes: #42512 + * a) all init scripts need to support restart + b) postinst uses stop/start now anyway + c) postinst fails much better now when things go wrong + + closes: #52914 + * getaddrinfo does DNS lookups regardless because of the nature of the + function. Also it handles ipv4/ipv6 better now, closes: #60743 + * I don't see why libc6 needs to create /etc/rcS.d/ when dpkg does it so + closes: #66138 + * strstr seems pretty fast now, closes: #10689 + * Latest emacs/libc6 is working fine, closes: #48476 + * YAOLDSOB, closes: #42135 + * libstdc++-v3/glibc2.2 compiles fine together, closes: #66757 + * strerror() with maxerror+1 works as expected now, closes: #40184 + * No other info, and no similar reports. Assuming user error, closes: #31465 + * Old ssh-nonfree getting a sigsegv is not a bug in libc6, but sshd, + closes: #41800 + * Restarting woffle already, closes: #74164 + * I believe this was due to some old nss1 issues, which are now resolved + during upgrades, closes: #35089 + * This is something libc6 itself cannot fix. Either way, rsh/rlogin is + broken by nature, closes: #19168 + * Well, I can't retroactively go back to hamm and add a stub for + setresuid(), closes: #29675 + * Fixed upstream a long time ago, closes: #39693 + * From unix/getlogin.c: + + /* Get name of tty connected to fd 0. Return NULL if not a tty or + if fd 0 isn't open. Note that a lot of documentation says that + getlogin() is based on the controlling terminal---what they + really mean is "the terminal connected to standard input". The + getlogin() implementation of DEC Unix, SunOS, Solaris, HP-UX all + return NULL if fd 0 has been closed, so this is the compatible + thing to do. Note that ttyname(open("/dev/tty")) on those + systems returns /dev/tty, so that is not a possible solution for + getlogin(). */ + + So basically, closes: #17528 + * Current nis/nss-compat code looks like it handles this right, + closes: #33197 + * libc6 cannot compensate for broken coding, closes: #42912 + * nprocs is fixed in 2.2, closes: #57101 + * libdb.so.2 does have shlibs now, closes: #39578 + * getcwd now returns NULL in the case shown in this bug report, so there + is no suprise if the program checks the return correctly, closes: + #27227 + * Adduser now restarts nscd as needed, closes: #37296 + * getaddrinfo fixes for ipv4/ipv6 fixes this, closes: #58713 + * Programs using libc5/libc6 at the same time via dynamically loading + libc5 apps from a libc6 apps) simply does not work, closes: #42088 + * getaddrinfo fix, closes: #70012 + * libc-64 was never meant to work right, closes: #53748 + * libNoVersion.so.1 is gone, closes: #37681 + * libc/postinst is file-rc friendly now, closes: #40053 + * libdb2 is no longer a reference for libdb stuff, closes: #61154 + * ld.so/ldconfig now have man pages, closes: #41917 + * Bah, libtricks is old and gone, closes: #39080 + * /var/state/glibc is gone, closes: #39562, #39705 + * glibc no longer includes db/db2, so look for docs in those seperate + packages, closes: #23547 + * scsi/scsi.h is there, closes: #31502 + * linux/joystick.h is there, closes: #38028 + * db.h is no longer in libc6-dev, closes: #39077, #74945 + * nprocs works on sparc now, closes: #52420 + * ldd now supports libc5 better, closes: #35644 + * Unreproducable, closes: #39582, #25773, #35624, #35123 + * /var/lib/misc/Makefile does not refer to /var/db, closes: #41947 + * llseek is obsolete, use lseek64 now, closes: #20988 + * Actually this looks like an error in the program, closes: #41952 + * Hmm, I would guess that libc6/libc5.4.38 is correct, and libc5.4.17 is + wrong, close: #21839 + * Fixed in the Before Time, during the Great Long-Long Ago, + closes: #39585, #34442, #59622, #24652 + * That's all for now... + + -- Ben Collins Fri, 15 Dec 2000 15:30:16 -0500 + +glibc (2.2-5) unstable; urgency=low + + * Update to CVS as of 2000-11-27 + - Includes hppa config stuff + * Ok, libsafe seems to be broken with our optimized packages. I + reassigned the bug report to that package. Most likely this wont be + fixed in libsafe for a bit, so for now I am making the optimized + packages conflict with it. The likely cause is the inline string + functions (-D__USE_STRING_INLINES). + * libc/postinst: added lprng and lpr to the list of daemons to restart, + closes: #78132 + + -- Ben Collins Mon, 27 Nov 2000 11:33:25 -0500 + +glibc (2.2-4) unstable; urgency=low + + * Dear god! Who changed things to a symlink in the kernel-headers and + didn't tell me of all people!? This must be a conspiracy! Some one is + out to get me! Everyone, I am going to go underground until the + security of my system is safe once again! (btw, I fixed the asm + include problem before I took a vacation from my sanity...) + + -- Ben Collins Thu, 23 Nov 2000 18:19:24 -0500 + +glibc (2.2-3) unstable; urgency=low + + * Damn, really remove libc6 dep from locales this time + * Include shlibs file with optimized libs, so dpkg-shlibdeps will be + happy with people using them. + * Added updates eo_EO locale + + -- Ben Collins Wed, 22 Nov 2000 15:40:12 -0500 + +glibc (2.2-2) unstable; urgency=low + + * Update to CVS to 2000-11-19 + - Includes the ldconfig patch, so removed from local set + - WOOHOO! Includes a patch to getaddrinfo, so that it only returns + failure if both ipv4 AND ipv6 lookups fail for PF_UNSPEC. + closes: #72764, #72905, #74692, #74692, #74367, #75388, #74692 + - Now includes the USAGI ipv6 patch + * control/locales: remove $(libc) dep...bad for a arch-all package, + closes: #76830 + * Move locales to binary-indep targets, closes: #76830 + * Add another hppa patch for _setjmp. Also, make hppa build with -O for + now. + * libc-dbg: make debug/ld*.so executable + * $(libc): suggests libnss-db + * locale-gen: set umask to 022, closes: #77191 + * etc/locale.gen: uncomment en_US as a default + * debian/sysdeps/optimized.mk: New make snippet, which allows building + optimized sets of runtime libraries. Right now, only sparc and i386 + seem to support hwcap, so we only build i586, i686 and v9 optimized + libraries. When other archs start supporting hwcap, then they too can + join the club. + * prep.sh: use ./version, so ash will work too + * Fixed prior to this release: closes: #71938, #75295, #75488, #76168 + + -- Ben Collins Sun, 19 Nov 2000 16:32:27 -0500 + +glibc (2.2-1) unstable; urgency=low + + * ALL HAIL GLIBC 2.2 RELEASE! Please put seats in full upright position, + remain seated until installed, and do not panic. The ride is almost + over. Once you have installed Glibc 2.2, please procede to our new + Debian-Rough-Ride, Xfree86-4.0.1, which is currently in progress. + * glibc22-ipv6-USAGI.dpatch: New patch, brings some stability and + compatibility to ipv6. This will most likely fix ipv6 issues with + things like ssh (let me know). + * Totally whack job on the locales package! We now do not provide *any* + precompiled locales. Instead we allow the admin to selectively decide + which ones to compile. + * Start of support for future upgrades. A new patch that should make + upgrades easier, post woody. This deals soley with the NSS module + problem and daemons running during upgrade. + * glibc22-hppa-config-fix: Fix config.{sub,guess} so hppa builds (From + the nice Debian folks at HP). BTW, where's my HP/PA BOX!? :) + * glibc22-ldconfig-fix: Fix bad allocation in ldconfig + * Bugs closed by this release: closes: #74057, #74362, #74692, #75249, + #75956, #76390, #76451 + + -- Ben Collins Fri, 10 Nov 2000 12:47:02 -0500 + +glibc (2.1.97-1) unstable; urgency=low + + * New upstream, + recent CVS + - includes lockf fix now + - fixes fmemopen issues + - adds ja_JP.ujis alias, closes: #72686 + - fixes for sparc mathinline.h + - lots of locale related updates + - mips patches are now included upstream + * depflags.pl: added replaces ldso for libc6 too (ldd), closes: #76126 + * Set --enable-kernel for Linux builds, so we can control how much + backward compatibility we have. + * Fix build-depends for gcc to include epoch + * Up'd the shlibs deps to 2.1.97 + * Removed static nss + + -- Ben Collins Tue, 7 Nov 2000 14:04:36 -0500 + +glibc (2.1.96-1) unstable; urgency=low + + * New upstream release (close to a final 2.2), closes: #73058 + - fixes ld.so reference counting (fixes some obscure bugs with + loadable modules, like NSS). + - fixes for ppc + - netinet/tcp.h fixes for uint8, closes: #74061 + - fixes limits.h/LONG_MAX declerations, closes: #75720 + * When running "$(MAKE) test" use -k so we complete as much as possible + * db/Makefile: remove patch that inhibited the db1 headers. Now, db1 + applications can be built again. This is temporary, to give poeple + time to migrate (db2 maintainer can use this for db_dump185), + closes: #72723 + * shlibs.mk: Use $(objdir)/soversions.i for generating the shlibs file, + which is more correct. Thanks to Marcus Brinkman for pointing this + out, closes: #75685 + * debian/glibc-doc/usr/share/doc-base/linuxthreads-faq: removed, no + longer in upstream source, closes: #74046 + * libc/postinst: added wu-ftpd, wu-ftpd-academ, slapd, openldapd and + logind to list of daemons to to restart, closes: #74158 + * libc/postinst: added support for filerc, thanks to Roland Rosenfeld + , closes: #74290 + * libc/postinst: check for existence of /sbin/init before restarting it, + closes: #75310 + * sysdeps/depflags.pl: Change g++ conflict to libstdc++-dev so we + precludes the right package (i.e., we need a newer libstdc++-dev, not a + new g++), closes: #75019 + * sysdeps/depflags.pl: make libc6 depend on libdb2 from woody so we + don't make apt act all weird with a three layer dependency of sorts + (ask Jason, I'm not sure of all the issues, but it seems it is needed + for now), closes: #75601, #75689 + * sysdeps/generic/lockf.c: explicitly set l_type to F_RDLCK (help from + Anton on this one) + * dl-machine.h.mips-2: new patch from Florian Lohoff to + fix ld.so segv on mips (I expect to see some .deb's in the official + archive soon, my Indy is getting jealous :) + + -- Ben Collins Sun, 29 Oct 2000 16:39:12 -0500 + +glibc (2.1.95-1) unstable; urgency=low + + * New upstream release + * debian/sysdeps/depflags.pl: Don't conflict/replace old libdb2, just + conflict. + * debian/libc/DEBIAN/postinst: Don't just check the service name with + "dpkg -s" since we miss things like inetd, which isn't in a package + named "inetd". Check for "installed" and "", then -x of the init.d + file + * debian/patches/ldd.dpatch: fixup so we don't get double output of + libraries, closes: #72710 + * debian/sysdeps/depflags.pl: Hmm...where did the libnss-db dep go + anyway? There now. + * debian/manpages/: Added man pages for ldd, ldconfig and ld.so + to replace the ones removed from ld.so, closes: #72648, #72727 + * locales fixed in -2, closes: #72752 + + -- Ben Collins Mon, 2 Oct 2000 11:18:48 -0400 + +glibc (2.1.94-3) unstable; urgency=low + + * updated CVS post-2.1.94 to 20000929 + * Put db/db2 libs back in for runtime use only (not linkable and no + headers). Closes a shitload of bugs, and makes everyone happy. Oh, let + the sun shine down. + * alpha-dwarf2-dl-machine: merged upstream + * debian/sysdeps/depflags.pl: removed all the db2 cruft conflicts + * debian/libc/DEBIAN/postinst: Use /etc/rc${rl}.d/ instead of + /etc/init.d/ when restarting services. This way, we don't start any + services that were meant to be off. Also, check for a non-zero exit when + starting and report such failures. This will give people a heads up to + any problems. + + -- Ben Collins Fri, 29 Sep 2000 16:29:59 -0400 + +glibc (2.1.94-2) unstable; urgency=low + + * Removed WANT_LDD, we now install it for every arch. This removes the + need for the ldso package completely, on systems without libc5 (YAH!) + * debian/sysdeps/depflags.mk: removed cruft + * debian/sysdeps/depflags.pl: new script with a simplified control deps + setup to replace depflags.mk. The former was getting too complex + * debian/rules.d/shlibs.mk: fixed logic preventing it from actually + installing the new shlibs file + * debian/sysdeps/depflags.pl: Added lots of conflicts for NMU'd packages + that fell prey to the db2 problems. + * debian/contron.in/main: Fix nscd depend on libc6 + + -- Ben Collins Wed, 27 Sep 2000 10:09:51 -0400 + +glibc (2.1.94-1) unstable; urgency=low + + * New maintainer, "Lector, si monumentum requiris, circumspice" + * New upstream version, pre 2.2 now + - crypt is now in glibc source, so is not a seperate tarball + - removed nss1 compat tarball + - db2 is gone aswell + - without db2, upstream split nss_db from main source (*sigh*) + * Added inetd to list of services to restart + * modfl/fmodl: documented in info pages, closes: #17874 + * Just a quick list of bugs that I can verify do not exist any longer, + closes: #45903, #26514, #46547, #32345, #30987, #48713 + * fcloseall: in the case of stdio/fcloseall.c, yes, it only ever + returns success. However, we use libio/fcloseall.c, who does in fact + have a chance to return EOF, closes: #20973 + * libio/libio.h: shows that the Stream Hooks do in fact take (void *) as + the first argument as shown in the protos, closes: #61497 + * trunc/floor: documented correctly in this release, closes: #65683, #65684 + * Hurd maintainers say this can be closed, closes: #54154 + * I'm pretty sure this isn't an issue anymore, else potato wouldn't be + releasing, closes: #35049 + * Sorry this isn't a glibc bug. The kernel handles error returns on a + failed executable. Most likely this is bin_interp's problem, but I + seriously doubt it will be fixed because of conventions, standards and + the like, closes: #22301 + * keyenvoy: no longer compiled for linux (it seems), closes: #47560 + * infnan: is defined now, closes: #19264 + * libc5 bug, no longer applies, closes: #11300 + * Make sure we copy over asm-sparc for sparc aswell as "generate-asm.sh" + script used to generate /usr/include/asm + * Disable parallel build on sparc (broken for some reason, might not be + sparc specific) + * devpts.sh: used a more devfs friendly version from bug submitter, + closes: #65276 + * libc/postinst: cannot reproduce problem, appears to be user error, + closes: #64865 + * glibc-doc: this bug is no longer valid, closes: #33759 + * We now use ldconfig from libc6 for all archs, ldso will conform. + * Change build deps to just "kernel-headers" for non-Hurd archs. With + mips and other coming down the pipe, this is bound to get ugly if we + specify the particular version for each. + * Add checks to automatically detect proper kernel-headers, error out + otherwise. + * hurd: add Depends: hurd (>= 20000803) for libc0.2 + * libpthread: soname version is now 0.9 + * debian/libc/DEBIAN/shlibs: bump to 2.1.94 + * libc6: add temporary depend on libdb2 + * debian/rules: check for FAKEROOTKEY, and fail if it's there. We cannot + build under fakeroot, we need real rewt. Fear my hacking skillz. + + -- Ben Collins Mon, 25 Sep 2000 11:30:45 -0400 + +glibc (2.1.3-14) stable; urgency=low + + * Stable upload for some serious issues in potato + * Patch to match glibc 2.2 to not set personality, closes: #72165 + * Arm ld.so patch, closes: #75982 + * Add check for FAKEROOTKEY, to $(checkroot) to make sure we build as + real root, and not fakeroot. This is required for locale definitions + to be generated properly. closes: #70806, #70876 + * Backport the fix to lockf(F_TEST), which fixed this on alpha and + sparc. + + -- Ben Collins Tue, 2 Jan 2001 17:15:44 -0500 + +glibc (2.1.3-13) stable; urgency=low + + * Damnit...used the 0824 patch set, now there's an 0827 :/ + + -- Ben Collins Fri, 1 Sep 2000 10:54:11 -0400 + +glibc (2.1.3-12) stable; urgency=low + + * Ugh, add three patches posted by Solar Designer which include the ldso + bug (better patch), locales bug, and md5 fixups. + + -- Ben Collins Thu, 31 Aug 2000 11:10:46 -0400 + +glibc (2.1.3-11) stable; urgency=low + + * Security upload for ldso problem + * Fix sparc headers too + * Might aswell change the maintainer too (So long Joel, you are missed) + + -- Ben Collins Thu, 31 Aug 2000 11:10:36 -0400 + +glibc (2.1.3-10) frozen unstable; urgency=low + + * The "Ask not for whom the feep tolls" release. + * zic -l will use hardlinks if /etc and /usr are on the same + filesystem, so revert to ln -s. + * Update Build-Depends to kernel-headers-2.2.15. + + -- Joel Klecker Fri, 28 Apr 2000 18:45:49 -0700 + +glibc (2.1.3-9) frozen unstable; urgency=low + + * The "Insert clever reference here" release. + * debian/patches: + - i386-sys-io-c++: Change '::' to ': :' to avoid confusing g++ + + closes: Bug#57914 + - zic-l: Fix -l in zic(8) (taken from OpenBSD) + * Teach tzconfig to acquire current timezone from /etc/localtime + symlink if necessary. + * Use zic -l instead of ln to make /etc/localtime symlink. + + -- Joel Klecker Fri, 21 Apr 2000 13:30:47 -0700 + +glibc (2.1.3-8) frozen unstable; urgency=low + + * The "What's my name? Say my name, bitch!" release. + * debian/patches: + - i386-linux-ucontext: Don't use ERR. + + closes: Bug#59962 + - ldd: + + Improve non-executable shared object handling. + + Revert ${RTLD} --list stuff. (closes:Bug#60869) + + alpha will break again, someone needs to fix ld.so. + * debian/control.in/main: locales: Depends: @libc@ (= ${Source-Version}) + This will insulate us from data format changes. + * Fix tzconfig man page (closes:Bug#61610,#61613). + * Revert /etc/localtime to a symlink (closes:Bug#60744). + + -- Joel Klecker Mon, 3 Apr 2000 08:40:07 -0700 + +glibc (2.1.3-7) frozen unstable; urgency=low + + * The "Light my Alpha fire with a SPARC" release. + * debian/patches: + - libc-pr-fixes: Fixes for post-2.1.3 PRs + + closes: Bug#59802,#59257 + - tzdata2000c: Includes AR timezone correction + + closes: Bug#59790,#59806 + - sparc-linux-getsysstats: Update so it actually works. + - alpha-dwarf2-dl-machine: Fix for unaligned traps from C++ EH code + + closes: Bug#59789 + + -- Joel Klecker Tue, 7 Mar 2000 10:31:42 -0800 + +glibc (2.1.3-6) frozen unstable; urgency=low + + * The "Smash Everything with a _Huge Steamroller_!" release. + * debian/sysdeps/gnu.mk: Define WANT_LDD (closes:Bug#59165). + * debian/libc/DEBIAN/preinst: Make this as /bin/bash script (closes:Bug#59613). + * debian/libc/DEBIAN/postinst: + - Only make /var/mail symlink on upgrades. + - Make this a /bin/bash script. + * debian/sysdeps/depflags.mk: (libc_control_flags) + C/R/P gconv-modules where necessary, Replace locales (<< 2.1.3-5). + * debian/control.in/main: Build-Indep-Depends: perl5 (closes:Bug#59350). + * debian/libc/etc/init.d/devpts.sh: Remove version check, checking for + the filesystems alone should be sufficient (closes:Bug#59576). + + -- Joel Klecker Sat, 4 Mar 2000 09:28:08 -0800 + +glibc (2.1.3-5) frozen unstable; urgency=high + + * The "Down, not across" release. + * 2.1.3 final. + * Pre-Depends were a bad idea + - quit using readlink. + - removed pre-depends on debianutils. + * Add devpts.sh again, this time not as a conffile. + * Build-Depends: gcc (>= 2.95.2-6) [alpha], remove sharutils [alpha]. + * Move /usr/lib/gconv to $(libc). + + -- Joel Klecker Sat, 26 Feb 2000 00:14:34 -0800 + +glibc (2.1.3-4) frozen unstable; urgency=low + + * The "Pain as bright as steel squared" release. + * glibc 2.1.3pre4. + * Remove debian/patches/po-it-po.dpatch, + debian/patches/powerpc-linux-sys-procfs.h.dpatch, and + debian/patches/powerpc-linux-syscalls.list-mmap64.dpatch; + Integrated upstream. + * Add back debian/patches/linuxthreads-lock.dpatch now that I know + what it's for (closes:Bug#58385). + * Bugs closed since devpts.sh is gone (closes:Bug#57584,#57698,#57580). + * debian/libc/DEBIAN/preinst: + - Save a copy of /etc/timezone in /etc/timezone.save. + - Convert /etc/localtime from link to file. + * debian/libc/DEBIAN/postinst: + - Use /etc/timezone.save if necessary. (closes:Bug#57885,#57922). + - Remove some unnecessary timezone code that caused some odd behavior + (closes:Bug#57456). + * tzconfig: /etc/localtime is a file, not a link. + * $(libc): Pre-Depend on debianutils (>= 1.13.1) for readlink. + + -- Joel Klecker Fri, 18 Feb 2000 17:35:19 -0800 + +glibc (2.1.3-3) frozen unstable; urgency=low + + * The "Pain as bright as steel" release. + * Move iconv, locale, localedef to $(libc). + * Remove devpts.sh. + * debian/patches/po-it-po.dpatch: + Add "portable object" for Italian (closes:Bug#57031). + * $(libc): Replaces: locales (closes:Bug#57482). + * Add Build-Depend for gettext (closes:Bug#57797). + + -- Joel Klecker Fri, 11 Feb 2000 13:02:13 -0800 + +glibc (2.1.3-2) frozen unstable; urgency=low + + * The "Dark, Naughty Evil" release. + * debian/patches/powerpc-linux-sys-procfs.h.dpatch: + Fix sys/procfs.h for powerpc-linux. + + -- Joel Klecker Mon, 7 Feb 2000 17:38:54 -0800 + +glibc (2.1.3-1) frozen unstable; urgency=low + + * The "From now on all of my world-killing weapons will be kept a TOTAL SECRET!" release. + or the "Brown Paper Bag" release. + * Really fix devpts.sh + (closes:Bug#56659,#56687,#56726,#56770,#56782,#56893,#56941,#56850,#56659,#57049,#57005,#57156,#57183). + * Give up and call it 2.1.3. + * CVS as of 2000-01-31. + * Move some docs from glibc-doc back to $(libc). + * Make /etc/init.d/devpts.sh and /etc/default/devpts conffiles (closes:Bug#57081). + * Reenable libnss1-compat.. + + -- Joel Klecker Sun, 6 Feb 2000 08:55:41 -0800 + +glibc (2.1.2-13) frozen unstable; urgency=low + + * The "@!%$&! you, I use Debian" release. + * debian/patches/powerpc-linux-syscalls.list-mmap64.dpatch: + Fix mmap and stuff (closes:Bug#56343). + * Add sharutils [alpha] to Build-Depends, drop gcc dep. + * $(libc): conflict with locales (<< 2.1.2-12). + * locales: replaces $(libc)-bin (closes:Bug#56540,#56536,#56534). + * Fix devpts.sh (closes:Bug#56487,#56507,#56559). + * Update to CVS as of 2000-01-29. + * Restore HTML to glibc-doc (closes:Bug#56609). + + -- Joel Klecker Sun, 30 Jan 2000 01:14:05 -0800 + +glibc (2.1.2-12) frozen unstable; urgency=low + + * The "Cardboard Messiah" release. + * debian/rules: Form arch_packages and indep_packages using += instead + of $(filter-out ...). + * debian/package-rules/locales.mk: Remove cross-compiling kluges. + * debian/package-rules/libc-dbg.mk: Fix libthread_db (closes:Bug#55439). + * debian/control.in/main: + - locales: Architecture all -> any. + - Build-Depends: + + add make (>= 3.78) due to use of new warning and error make functions. + + add gcc (>= 2.95.2-5) for alpha. + * Merge gconv-modules back into locales. + * Move locale and localedef programs back into locales. + * Put devpts.sh init script back in $(libc). (closes:Bug#50913,#53842) + * Add Replaces for timezones back into $(libc). + * Kill $(libc)-bin. + * Restore `tzselect' script, which slipped out of $(libc) (closes:Bug#55377) + * Bugs fixed in -11.0.1 (closes:Bug#53705,#53659,#53680,#53754 + * Update to CVS as of 2000-01-26. + * Eliminate obsoleted patches. + + -- Joel Klecker Wed, 26 Jan 2000 16:44:12 -0800 + +glibc (2.1.2-11.0.1) unstable; urgency=low + + * Binary-only upload of locales. + + -- Joel Klecker Wed, 29 Dec 1999 11:45:56 -0800 + +glibc (2.1.2-11) unstable; urgency=low + + * The "If it ain't broke, you're not tryin'" release. + * Split out $(libc)-bin and libnss1-compat. + * Split debian/rules into debian/package-rules/*. + $(libc-bin): + - Install db_* programs as glibcdb_*. + - Move zic, zdump, locale, localedef, getent here. + - Use alternatives for db_*. (closes:Bug#50311,#50341) + * debian/mk/rules-* -> debian/rules.d/*. + * debian/ now resembles $(tmpdir) tree for . + * Improve setperms rule, so debian/perms can specify fewer files. + * New source unpacking system, see prep.sh. + * Remove devpts.sh, the init script is now in sysvinit. + * Improve debian/libc/DEBIAN/shlibs rule (debian/rules.d/shlibs.mk). + * debian/sysdeps/soname.mk: Bump shlib_depend. + * Add sysdeps files for $(DEB_HOST_GNU_CPU). + * Add debian/patches/glibc-mega.dpatch: + Selected patches from CVS (closes:Bug#48120,#52195). + * Add debian/patches/linuxthreads-mega.dpatch: + Selected patches from CVS. + * Add debian/patches/alpha-pt-machine.h.dpatch: + Fix pt-machine.h so that linuxthreads compiles on Alpha. + * Add debian/patches/db2-alpha-powerpc-mutex.dpatch: + Alpha and PowerPC implementations for db2 spinlocks. + (patches by David Huggins-Daines ) + (db2 patch slightly modified) + * Add debian/patches/powerpc-plt.dpatch: + 1999-10-07 Geoffrey Keating + * sysdeps/powerpc/dl-machine.c: Many minor formatting changes. + (OPCODE_LWZU): New macro. + (OPCODE_ADDIS_HI): New macro. + (OPCODE_LIS_HI): New macro. + (__elf_machine_runtime_setup): Change PLT code-generation scheme + for thread safety even with very large PLTs, better efficiency, + and to fix a cache-flushing bug. + (__elf_machine_fixup_plt): Likewise. + (__process_machine_rela): Don't use elf_machine_fixup_plt. + * Add debian/patches/sparc64-linux-lib64.dpatch: + Use /lib/64 and /usr/lib/64 instead of /lib64 and /usr/lib64. + * Add debian/patches/sparc64-linux-execve.dpatch: + Add __syscall_execve to sparc64 syscalls.list. + * Add automatic parallel build support for SMP systems. + * Fix broken parsing of DEB_BUILD_OPTIONS. + * Add framework to build libc6-64 and libc6-64-dev packages for sparc + (not enabled for potato). + * Split locales into `locales' and `i18ndata'. + + -- Joel Klecker Sat, 25 Dec 1999 09:54:29 -0800 + +glibc (2.1.2-10) unstable; urgency=low + + * The "Omigod! I overdosed on heroin!" release. + * debian/devpts.init: Create /dev/ptmx unconditionally. + * Restore correct nscd DEBIAN dir. + * Revamp rules a bit (split more parts into debian/mk/rules-*). + * debian/mk/sysdeps.mk: Split into pieces and include them. + * debian/patches/tzcode1999h.dpatch: + Update timezone data to 1999h release. + * Add stub for support for libc6-64 packages for sparc. + * Add one more last timezone sanity check to libc postinst (closes:Bug#49539). + * Always unpack linuxthreads add on and pass --enable-add-ons=crypt to + configure for hurd (closes:Bug#49459). + + -- Joel Klecker Mon, 8 Nov 1999 09:47:28 -0800 + +glibc (2.1.2-9) unstable; urgency=low + + * The "Service with a capital 'Bugger Off'" release. + * debian/copyright: Update for 2.1.2. + * debian/rules: Make each binary package depend on setperms (closes:Bug#48914). + * Move debian/libc-doc to debian/glibc-doc and eliminate the need for + postinst and prerm to be generated files. (closes:Bug#48786). + + -- Joel Klecker Sun, 31 Oct 1999 09:23:16 -0800 + +glibc (2.1.2-8) unstable; urgency=low + + * The "Can't Start a Fire Without a SPARC" release. + * Build with unstable dpkg. + * debian/patches/sparc-various.dpatch: Various sparc-specific patches + from Jakub Jelinek and David S. Miller . + + -- Joel Klecker Sat, 30 Oct 1999 06:55:33 -0700 + +glibc (2.1.2-7) unstable; urgency=high + + * The "Fuck Me Harder" release. + * sparc-linux: Replaces: ldso (<< 1.9.11-6). + * debian/{libc.postinst.in,libc/prerm}: Add /usr/doc symlink stuff (closes:Bug#48324). + * debian/control.in-main: Adjust locales depends. + Correct Build-Depends: field. + * debian/mk/source-rules.mk: Split unpack-source, source, and orig-source + targets from debian/rules. + * debian/patches/manual-texinfo4.dpatch: Use @ifnottex instead of @ifinfo. + * Use makeinfo --html to generate HTML version of glibc manual. + * Remove texi2html from debian/scripts. + * Fix debian/scripts/Makefile for cross-compiling. + * Correct debian/patches/string2-pointer-arith.dpatch for archs that don't + support unaligned memory accesses. + + -- Joel Klecker Fri, 29 Oct 1999 09:06:27 -0700 + +glibc (2.1.2-6) unstable; urgency=low + + * The "Evil Bitch Monster of Death" release. + * debian/rules: Move debian/control targets to... + debian/mk/debian-control.mk. + * Move debian/*.mk to debian/mk/. + * Use debian//* for control archive items. + Adjust debian/rules for this. + * Add setperms target to set modes of debian//*. + Make unpack-source and clean depend on it. + * Don't compile with -g when DEB_HOST_GNU_CPU is alpha. + * debian/patches/string2-pointer-arith: New file. + Fix "/usr/include/bits/string2.h:419: warning: pointer of type `void *' + used in arithmetic" (closes:Bug#45824,#44491,#44697) + * Change maintainer back to "Joel Klecker ". + * Update to CVS sources as of 1999-10-24. + * debian/patches/{linuxthreads-signals.c-ucontext,cs-po}.dpatch: + Fixes for source tree brokenness. + * Adjust clean target for new generated files. + * Add libresolv to $(libc)-pic. + * Add readlink.c and texi2html to debian/scripts to eliminate tetex-bin dependency. + * nscd: Install nscd_nischeck. + Sync nscd.init with upstream. + * Implement /usr/doc symlinks. + * $(libc): strip libpthread with --strip-debug. + + -- Joel Klecker Sun, 24 Oct 1999 20:50:58 -0700 + +glibc (2.1.2-5) unstable; urgency=low + + * The "One more week to go" release. + * debian/patches/localedata-SUPPORTED: + Oops, this patch wasn't actually being applied. + eo_EO, zh_TW.Big5, and es_AR should be [back] in locales now. + Back out zh_CN, the definition is broken. + * Remove sparc from HAVE_LIBC{4,5}, we want to install our ldd. + * debian/patches/sparc-linux-ldd.dpatch: New file. + Restore missing patch (in ChangeLog, not in source). + * debian/sysdeps.mk: Tighten alpha shlib_depend to libc6.1 (>= 2.1.2-1). + + -- Joel Klecker Tue, 28 Sep 1999 04:55:35 -0700 + +glibc (2.1.2-4) unstable; urgency=low + + * The "Perl Sucks" release. + * debian/libc.postinst: Steal updatercd shell function from sysvinit postinst. + Use it for devpts.sh. (closes:Bug#45867,#45879,#45880,#45885,#45895) + Bitch-slap perl maintainers. :) + * debian/rules: nscd: run nscd.conf through sed 's/adm/log/'. + * debian/patches/sparc-llnux-chown.dpatch: Update from Ben Collins. + * debian/sysdeps.mk: Drop sparc-linux depends back to libc6 (>= 2.0.105). + + -- Joel Klecker Fri, 24 Sep 1999 12:39:26 -0700 + +glibc (2.1.2-3) unstable; urgency=low + + * The "Pot-smoking Pikachu" release. + * debian/rules: Don't install ldd man page on i386/m68k (closes:Bug#45421). + check: Don't depend on build. + Symlink db_dump185 manpage to db_dump manpage (closes:Bug#42322). + $(libc)-pic: Install map file for libm. + Install map files as $(libdir)/libfoo_pic.map. + * debian/patches/zh_TW.Big5-locale.dpatch: + Split into localedata-charmap-BIG5_1984 and localedata-zh_TW.Big5. + * debian/patches/eo_EO-locale.dpatch: Rename to... + localedata-eo_EO. + * debian/patches/localedata-SUPPORTED.dpatch: New file. + Add eo_EO, es_AR (closes:Bug#37162), zh_CN.GB2312 (closes:Bug#38553), + zh_TW.Big5. + * debian/patches/pthread_create-manpage.dpatch: New file. + Correct pthread_create manpage to match texinfo documentation + (closes:Bug#22119). + + -- Joel Klecker Wed, 22 Sep 1999 19:16:01 -0700 + +glibc (2.1.2-2) unstable; urgency=low + + * The "Bite Me" release. + * debian/rules: $(libc): strip pt_chown. + Don't install ldd on i386/m68k. + Query dpkg-architecture variables individually. + Use bunzip2 -c ... | tar xf - instead of tar yxf. + $(libc)-pic: Add libm_pic.a. + check: New target; run test suite. + Call make with SHELL=/bin/bash, as the test suite seems to rely on + bash behavior. + Use --strip-unneeded (closes:Bug#40467). + * debian/sysdeps.mk: reorganize. + * debian/patches/generic-getenv.dpatch: New file. + 1999-09-10 Andreas Schwab + + * sysdeps/generic/getenv.c (getenv): Fix lookup for single + character variable on bigendian platforms without unaligned memory + access. + + -- Joel Klecker Thu, 16 Sep 1999 14:41:28 -0700 + +glibc (2.1.2-1) unstable; urgency=low + + * The "Gone Evil" release. + * glibc 2.1.2 final. + - Properly free mmaps for archs without spinlocks in db2 (closes:Bug#43786). + + * debian/rules: configure: Fix hurd part (missing \). + Add frame.o hack for alpha. + Use CFLAGS instead of default_cflags. + Create srcdir for each arch. + Remove arch/indep patch split. + New directory layout (build/foo- -> build//foo). + Use bz2 tarballs. + + * debian/patches/sparc-linux-types.dpatch: Remove, applied upstream. + + * devpts.sh never used any bashisms (closes:Bug#43296). + + -- Joel Klecker Tue, 7 Sep 1999 05:00:58 -0700 + +glibc (2.1.2-0pre12) unstable; urgency=low + + * The "Espy's Birthday" release. + * debian/rules: (libc-pic) strip debugging symbols from *_pic.a. + interp.o is no longer needed. + + * debian/patches/sparc-linux-types.dpatch: New file. + 1999-07-25 Jakub Jelinek + + * sysdeps/unix/sysv/linux/sparc/bits/types.h: Define always + __qaddr_t. + __ino64_t should be 32bit unsigned type on sparc32. + Define __off64_t to __quad_t instead of __int64_t. + Make __pic_pid_t unsigned on sparc32. + + * Really change maintainer name to Debian GNU C Library Maintainers. + + * debian/control.in-libc: s/m@archs@/many/ (closes:Bug#43657). + + * debian/devpts.init: Check if devpts is already mounted before trying + to mount it. (closes:Bug#43658,#43659). + Remove exit 0 from end (closes:Bug#42541) + + * Fixed upstream: db_dump185 now linked with libdb1 (closes:Bug#42898). + + -- Joel Klecker Sun, 29 Aug 1999 07:51:16 -0700 + +glibc (2.1.2-0pre11) unstable; urgency=high + + * The "Lesbian Seagull" release. + * glibc 2.1.2pre3. + + -- Joel Klecker Wed, 25 Aug 1999 15:33:23 -0700 + +glibc (2.1.2-0pre10) unstable; urgency=low + + * The "Crack-smoking Squirrel" release. + * CVS as of 1999-08-21. + * Change maintainer name to Debian GNU C Library Maintainers. + + -- Joel Klecker Sat, 21 Aug 1999 10:57:42 -0700 + +glibc (2.1.2-0pre9) unstable; urgency=low + + * The "Son of Drunken Iceweasel" release. + * Compile with gcc 2.95.1. + * CVS as of 1999-08-18. + + -- Joel Klecker Wed, 18 Aug 1999 11:11:29 -0700 + +glibc (2.1.2-0pre8) unstable; urgency=low + + * The "Drunken Iceweasel" release. + * Compile with gcc 2.95.1-0pre1. + * Remove explicit -march=i386 on i386, it's no longer needed. + + -- Joel Klecker Sun, 15 Aug 1999 08:34:55 -0700 + +glibc (2.1.2-0pre7) unstable; urgency=low + + * The "Evil Mastermind" release. + * CVS as of 1999-08-09. + * debian/patches/arm-osabi.dpatch: "...and another patch bites the dust" + (functionality integrated upstream). + * Add -march=i386 on i386 to work around gcc lossage. + + -- Joel Klecker Tue, 10 Aug 1999 01:54:57 -0700 + +glibc (2.1.2-0pre6) unstable; urgency=low + + * The "Stoned Monkey" release. + * More adjustments for multi-arch build tree. + * Split patch rules into debian/patch-rules.mk. + * Divide patch system into indep and arch patches. + * Update sources to CVS as of 1999-08-08 (closes:Bug#42579,#42343). + - I think perhaps this will fix the StarOrifice problem too. + + -- Joel Klecker Sun, 8 Aug 1999 21:11:12 -0700 + +glibc (2.1.2-0pre5) unstable; urgency=low + + * The "Chainsaw Psycho" release. + * Install zdump in $(bindir). + * Fix 3l33t control frags system for "weird" architectures. ;) + * Avoid using DEB_*_ARCH variables, for they are evil. :) + + -- Joel Klecker Fri, 6 Aug 1999 05:34:55 -0700 + +glibc (2.1.2-0pre4) unstable; urgency=low + + * 2.1.2pre2. + * Run testsuite in build target. + * $(libc)-pic: Provides: glibc-pic. + * Logging is back. + * Update copyright file. + + -- Joel Klecker Sun, 1 Aug 1999 17:58:49 -0700 + +glibc (2.1.2-0pre3) unstable; urgency=low + + * CVS as of 19990730. + * Implement new debian/control-frags system. + * $(libc)-pic is back. + * {gconv-modules,$(libc)-{pic,dev,dbg,prof}}: + doc dirs are directories again. + + -- Joel Klecker Fri, 30 Jul 1999 10:52:06 -0700 + +glibc (2.1.2-0pre2) unstable; urgency=low + + * debian/rules: Fix typo that prevented all the linux-specific + patches from being applied. + + -- Joel Klecker Mon, 26 Jul 1999 14:44:46 -0700 + +glibc (2.1.2-0pre1) unstable; urgency=low + + * New upstream pre-release 2.1.2pre1. + * debian/depflags.mk. + - (libc_dev_control_flags): + Add conflicts to alpha/i386/m68k for libncurses4-dev (<< 4.2-3.1) and + libreadlineg2-dev (<< 2.1-13.1). + - (libc_control_flags): + Add conflicts to alpha/i386/m68k for libglib1.2 (<< 1.2.1-2). + * devpts.init: + - Cope with EXTRAVERSION in uname -r (closes:Bug#41064,#41389). + - Don't worry about /dev/ptmx anymore, glibc now checks for a mounted + devpts filesystem as well as an existing /dev/ptmx. + * debian/patches/{ieee754_y0,linux-mmap64,libio-oldiopopen}.dpatch: + Removed; applied upstream. + * debian/patches/arm-{dynamiclinker,tftp}.dpatch: + Removed; applied upstream. + * debian/patches/arm-string.dpatch: + Remove string/endian.h part (applied upstream) and rename to arm-ieee754. + * Disable building of $(libc)-pic, the boot-floppies library + reduction hack doesn't work anyway. + * Adjusted rules for dpkg-architecture and reworked source unpacking + to handle snapshot upstream versions better. + * Use suidmanager for pt_chown. + * More fully adopt dpkg-architecture system. + * Correct libc.preinst for sparc. + * Set sparc shlib_depend to $(libc) (>= 2.1) per request. + + -- Joel Klecker Sat, 24 Jul 1999 12:35:05 -0700 + +glibc (2.1.1-13) unstable; urgency=low + + * debian/devpts.init: Revise again. + * debian/rules: debian/shlibs: Add special case for libdb1. + * debian/sysdeps.mk: Add cflags variable and i386 hack + (hopefully this will allow the library to run on 386es again). + * Use 2.2.10 kernel headers by default on *-linux targets. + * Docs in /usr/share/doc. + * debian/control.in: Update Standards-Version to 3.0.0. + * debian/fhs.dpatch: Adjust for FHS 2.1pre2 /var/mail wording. + * debian/libc.postinst: Symlink /var/mail to /var/spool/mail. + * Integrate changes from Jim Pick's NMUs for arm (closes:#40927,#40479,#40691). + * debian/patches/ieee754_y0.dpatch: Upstream fix for yn() issue. + * debian/patches/linux-mmap64.dpatch: Fix for mmap64() on powerpc + (maybe others too). + * debian/patches/libio-oldiopopen.dpatch: Fix for glibc 2.0 compat popen(). + * debian/copyright: + - Update URLs + - Add libio license + - s%/usr/doc/copyright%/usr/share/common-licenses% + + -- Joel Klecker Wed, 7 Jul 1999 17:36:23 -0700 + +glibc (2.1.1-12.3) unstable; urgency=low + + * Non-maintainer upload. + * Oops, messed up tftp patch for ARM. + + -- Jim Pick Wed, 7 Jul 1999 00:15:48 -0700 + +glibc (2.1.1-12.2) unstable; urgency=low + + * Non-maintainer upload. + * Another patch for ARM to fix tftp struct alignment problem. + + -- Jim Pick Thu, 1 Jul 1999 09:38:02 -0700 + +glibc (2.1.1-12.1) unstable; urgency=low + + * Non-maintainer upload. + * Include patch for ARM to fix dynamic linker. + + -- Jim Pick Thu, 17 Jun 1999 21:11:59 -0700 + +glibc (2.1.1-12) unstable; urgency=low + + * debian/rules: Use /var/lib/misc here too. + * debian/tzconfig: Fix #! line. + * debian/libc.postinst: Minor adjustments. + + -- Joel Klecker Tue, 15 Jun 1999 09:24:49 -0700 + +glibc (2.1.1-11) unstable; urgency=low + + * debian/patches/glibcbug.dpatch: New file. + - Fixes glibcbug to use `sensible-editor' + * debian/patches/fhs.dpatch: Deal with _PATH_VARDB. + * debian/patches/m68k-chown.dpatch: Fix paths (closes:Bug#37933). + * $(libc): Add HTML version of glibc FAQ. + * tzselect is crap, restore old version of tzconfig. + * Use 2.2.9 kernel headers by default on *-linux targets. + + -- Joel Klecker Sun, 13 Jun 1999 09:34:41 -0700 + +glibc (2.1.1-10) unstable; urgency=low + + * debian/libc.postinst: Redirect stdout/stderr to /dev/null when + restarting services (closes:Bug#38413). + * debian/patches/fhs.dpatch: Alter slightly for FHS 2.1 draft. + + -- Joel Klecker Mon, 31 May 1999 01:45:27 -0700 + +glibc (2.1.1-9) unstable; urgency=low + + * 2.1.1 final (closes:Bug#38178). + * -7 was accidentally/intentionally compiled with gcc 2.95pre. + * -8 was a local build. + + -- Joel Klecker Mon, 24 May 1999 22:10:01 -0700 + +glibc (2.1.1-8) unstable; urgency=low + + * Rebuild with egcs 1.1.2. + (/me hides) + + -- Joel Klecker Sun, 23 May 1999 21:28:29 -0700 + +glibc (2.1.1-7) unstable; urgency=low + + * Make sure all patches get applied (closes:Bug#37951,Bug#37974). + * Fixes for m68k via Roman Hodek + - (debian/rules): Add new m68k-chown patch (closes:Bug#38048). + - (debian/depflags.mk): Fix m68k case (closes:Bug#37933). + * There were some localedata changes in format between -5 and -6 + (closes:Bug#37850,Bug#37822,Bug#37829). + * Add patch to fix install-locales target when localedata is not installed. + * Build locales in the `locales' target + (no sense building them in the arch-indep install target). + + -- Joel Klecker Thu, 20 May 1999 14:02:15 -0700 + +glibc (2.1.1-6) unstable; urgency=low + + * 2.1.1pre3. + * (debian/rules): Set BASH and KSH to /bin/bash in configparms. + * (debian/libc.preinst): sparc fix (closes:Bug#37415,Bug#37616). + * (debian/nscd.prerm): Stop nscd before removing it (closes:Bug#37416). + + -- Joel Klecker Mon, 17 May 1999 19:29:12 -0700 + +glibc (2.1.1-5) unstable; urgency=low + + * CVS as of 1999-05-08. + + -- Joel Klecker Sat, 8 May 1999 19:31:52 -0700 + +glibc (2.1.1-4) unstable; urgency=low + + * Fix logic errors in tzconfig. + + -- Joel Klecker Sat, 8 May 1999 00:07:44 -0700 + +glibc (2.1.1-3) unstable; urgency=low + + * 2.1.1pre2. + * glibc-compat 2.1.0. + * debian/copyright: Update URLs for upstream source locations. + * debian/devpts.init: Rewrite for more sensible handling of devfs. + * debian/libc.postinst: Be more paranoid about /etc/timezone, and + always remake /etc/localtime symlink. + * debian/sysdeps.mk: Add sparc to HAVE_LIBC4 to deal with lddlibc4. + * debian/rules: Don't apply sparc32-ldd patch. + * debian/patches/sparc32-ldd.dpatch: delete. + + -- Joel Klecker Fri, 7 May 1999 10:40:11 -0700 + +glibc (2.1.1-2) unstable; urgency=low + + * $(libc): replace locales << 2.1.1-1 + * debian/depflags.mk: clean up + * debian/control.in: locales: remove depend on @libc@ (closes:Bug#36654). + * debian/devpts.sh: Remove bashisms (closes:Bug#36552). + * debian/libc.postinst: + - Use ln -sf instead of zic -l (closes:Bug#36305). + - If upgrading from glibc 2.0, restart services potentially affected + by libnss_* upgrade. + * debian/libc.preinst: Add kernel version sanity check for sparc. + * debian/rules: + - Fix reverse-patches target (closes:Bug#36574). + - Fix libexecdir handling (closes:Bug#36673). + - locales is binary-all, so build it in binary-indep, not binary-arch. + * debian/sysdeps.mk: $(shlib_depend): >= 2.0.105 for sparc. + * locales: Add eo_EO (Esperanto) locale definition. + + -- Joel Klecker Sat, 1 May 1999 22:22:22 -0700 + +glibc (2.1.1-1) unstable; urgency=low + + * Using maintainer versions now; 2.1.1 is still in pre-release. + * CVS as of 1999-04-19. + * Upgrade glibc-compat addon. + * Add kernel version sanity check to nscd init script. + * Slight tweaks to devpts.sh init script. + * Remove hurd-fcntl patch, it is applied upstream. + * Fix libc.preinst libnss code. + * Symlink /var/db to /var/state/glibc for backward compatibility. + * Add zh_TW.Big5 locale and BIG5_1984 charmap. + * Revert to ln -sf instead of zic -l in tzconfig (closes:Bug#36305). + * Add latest version of sparc32-chown patch. + * Move architecture-dependant parts of locales to other packages + and make it Architecture: all. + * Move locale and localedef to $(libc); and split gconv-modules into its + own package. + + -- Joel Klecker Tue, 20 Apr 1999 15:09:18 -0700 + +glibc (2.1.1-0.2) unstable; urgency=low + + * Upgrade to latest CVS sources. + - Fixes ttyname problem which affected screen (closes:Bug#35695). + - libio backward compatibility fixes. + - Many other fixes. + * Put manpages in /usr/share/man, info in /usr/share/info. + * Add devpts.sh init script and /etc/default/devpts to configure it. + * Better FHS compliance. + - /var/db -> /var/state/glibc. + - --libexecdir=/usr/lib (my reading of the FHS seems to allow + executables directly in /usr/lib). + + -- Joel Klecker Wed, 7 Apr 1999 14:47:08 -0700 + +glibc (2.1.1-0.1) unstable; urgency=low + + * Now using NMU-style versions for prereleases. + * Don't start utmpd. + * Somehow the old nss modules (libnss_*.so.1) slipped out + of the last release, put them back. + * Let libc keep its x bit. + (executing it presents some interesting output) + + -- Joel Klecker Wed, 17 Mar 1999 00:44:44 -0800 + +glibc (2.1.1-0pre1.3) unstable; urgency=low + + * Fix source package. + * $(libc)-dbg: Install libpthread (closes:Bug#34461). + * $(libc): Add note about devpts and services to postinst. + - Recreate databases in /var/db if upgrading from glibc 2.0.x + (closes:Bug#34442) + - i386, alpha, m68k: Conflict with libtricks, apt (<< 0.1.10.1). + * Change default_cflags to -O2 -g. + * Allow make check to fail. + + -- Joel Klecker Sat, 13 Mar 1999 15:14:50 -0800 + +glibc (2.1.1-0pre1.2) unstable; urgency=low + + * strip shared libs with --strip-debug instead of --strip-unneeded. + * Loosened shlibs depend. + + -- Joel Klecker Fri, 12 Mar 1999 22:33:01 -0800 + +glibc (2.1.1-0pre1.1) unstable; urgency=low + + * Fix $(libc) replaces on i386. + + -- Joel Klecker Fri, 12 Mar 1999 14:47:28 -0800 + +glibc (2.1.1-0pre1) unstable; urgency=low + + * New upstream release. + * Really release this one to unstable. + + -- Joel Klecker Wed, 10 Mar 1999 09:14:29 -0800 + +glibc (2.1-4) unstable; urgency=low + + * First release for unstable. + * Add glibc-compat addon. + * $(libc): Conflict with libwcsmbs + - Start utmpd and touch /var/run/utmpx, /var/log/wtmpx. + * $(libc)-dbg: Install unstripped shared libs in /usr/lib/glibc_dbg. + * $(libc)-prof: Strip libraries. + * glibc-doc: Remove cruft from top-level of info dir. + * Split nscd into separate package. + * Fixed $KERNEL_SOURCE handling. + * Bugs fixed: 19264, 22788, 26148, 26306, 30609, 30773, 31415 + (will elaborate later :) + + -- Joel Klecker Fri, 5 Mar 1999 11:29:44 -0800 + +glibc (2.1-3) unstable; urgency=low + + * (debian/depflags.mk): + - Correct typo + - Add libc_dev_control_flags for Conflicts + + -- Joel Klecker Mon, 8 Feb 1999 03:22:27 -0800 + +glibc (2.1-2) unstable; urgency=low + + * Get shlibs file dependencies correct. + + -- Joel Klecker Sat, 6 Feb 1999 22:56:22 -0800 + +glibc (2.1-1) unstable; urgency=low + + * New upstream release. + * (debian/control.in): Update maintainer address. + * (debian/depflags.mk): + $(libc): conflict and replace timezone, timezones; replace libdb2 + * (debian/rules): + $(libc)-dev: copy subdirectories from $(KERNEL_HEADERS)/linux too. + timezones: remove + $(libc): Put timezone data, and the zic and zdump utils here + * Sync with HURD again. + * Removed hurd-utimes patch, it is integrated upstream. + + -- Joel Klecker Sat, 6 Feb 1999 12:26:10 -0800 + --- glibc-2.5.orig/debian/compat +++ glibc-2.5/debian/compat @@ -0,0 +1 @@ +5 --- glibc-2.5.orig/debian/rules +++ glibc-2.5/debian/rules @@ -0,0 +1,197 @@ +#! /usr/bin/make -f +# -*- makefile -*- +# debian/rules file for GNU libc. +# Copyright 1998, 1999 by Joel Klecker +# Copyright 2000 Ben Collins +# Copyright 2003 Jeff Bailey +# This Makefile is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. + +# What are the phases to building glibc? + +# Unpack main tarball +# Do any necessary overlays +# Apply patches +# Determine how many builds there are to do. For Each build: + +# Create build directory +# Configure +# Build +# Test as desired +# Install to package directories + +# Run debian magic to build packages. + +# Things you may need to customise: + +# These are done as absolute paths so that in the case of filesystem size +# limitations, they can be overridden and spread all over. +build-tree := build-tree +stamp := $(CURDIR)/stamp-dir/ +DUMMY := $(shell mkdir -p $(stamp)) + +# The minimum package version with which these packages are compatible. +include debian/shlibver +shlib_dep = $(libc) (>= $(shlib_dep_ver)) + +# The version of the C library that locales needs for its format. +include debian/locales-depver + +# Beyond here you shouldn't need to customise anything: + +SHELL ?= =/bin/sh -e +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_GNU_CPU ?= $(shell dpkg-architecture -qDEB_HOST_GNU_CPU) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_HOST_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM) +DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) +DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) +DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_BUILD_GNU_SYSTEM ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM) + +DEB_HOST_GNU_CPU_ALT ?= +DEB_HOST_GNU_TYPE_ALT ?= + +DEB_SOURCE_PACKAGE := $(strip $(shell egrep '^Source: ' debian/control | cut -f 2 -d ':')) + +DEB_VERSION := $(shell dpkg-parsechangelog | egrep '^Version:' | cut -f 2 -d ' ') + +DEB_TARBALL ?= $(shell ls glibc-[0-9.]*.tar.*) + +DEB_SRCDIR ?= $(shell ls -d $(build-tree)/glibc-*) +DEB_BUILDDIR ?= $(build-tree)/$(DEB_HOST_ARCH)-$(curpass) + +# The kernel uses different CPU appreviations (uname output) than the GNU +# tools do (config.sub). Map them. +KERNEL_HOST_CPU := $(subst powerpc,ppc,$(DEB_HOST_GNU_CPU)) + +# Support multiple makes at once based on number of processors +# Common wisdom says parallel make can be up to 2n+1. +# Should we do that to get faster builds? +NJOBS:=$(shell getconf _NPROCESSORS_ONLN 2>/dev/null || echo 1) +ifeq ($(NJOBS),-1) + NJOBS:=1 +endif + +ifeq ($(NJOBS),0) + NJOBS=1 +endif + +# We can override its value by SETNJOBS environment variable. +ifdef SETNJOBS + NJOBS:=$(SETNJOBS) +endif + +# Default setup +GLIBC_PASSES ?= libc + +prefix=/usr +bindir=$(prefix)/bin +datadir=$(prefix)/share +includedir=$(prefix)/include +infodir=$(prefix)/share/info +docdir=$(prefix)/share/doc +mandir=$(prefix)/share/man +sbindir=$(prefix)/sbin +libexecdir=$(prefix)/lib + +BUILD_CC = gcc-4.1 -fno-stack-protector +BUILD_CXX = g++-4.1 -fno-stack-protector + +RUN_TESTSUITE = yes + +# Set CC for cross-compiling +ifneq ($(DEB_HOST_ARCH),$(DEB_BUILD_ARCH)) +CC = $(DEB_HOST_GNU_TYPE)-gcc +else +CC = $(BUILD_CC) +endif +# +# Set CXX for cross-compiling +ifneq ($(DEB_HOST_ARCH),$(DEB_BUILD_ARCH)) +CXX = $(DEB_HOST_GNU_TYPE)-g++ +else +CXX = $(BUILD_CXX) +endif + +BUILD_CFLAGS = -O2 -g +HOST_CFLAGS = -pipe -O2 -fstrict-aliasing -g $(call xx,extra_cflags) + +configure_target := $(DEB_HOST_GNU_TYPE) + +# Normally we'll just use this for --build. If the architecture requires +# that build daemons be able to run a particular optimized library, then +# they can set the --build to match --host for that optimized build. +# Among other things this lets tests run. +configure_build := $(DEB_BUILD_GNU_TYPE) + +ifneq ($(NO_LOG),yes) +log_build = $(CURDIR)/log-build-$(call xx,configure_target)-$(curpass) +log_test = $(CURDIR)/log-test-$(call xx,configure_target)-$(curpass) +else +log_build := /dev/tty +log_test := /dev/tty +endif + +# Which build pass are we on? +curpass = $(filter-out %_,$(subst _,_ ,$@)) + +DEB_ARCH_REGULAR_PACKAGES = $(libc) $(libc)-dev $(libc)-dbg $(libc)-prof $(libc)-pic +DEB_INDEP_REGULAR_PACKAGES = glibc-doc +DEB_UDEB_PACKAGES = $(libc)-udeb libnss-dns-udeb libnss-files-udeb + +# Generic kernel version check +define kernel_check +(if [ $(CURRENT_KERNEL_VERSION) -lt $(1) ]; then \ + false; \ +fi) +endef + +# Include libidn for both NPTL and LinuxThreads targets. +standard-add-ons = libidn, + +# Pull in all the per-arch magic! + +-include debian/sysdeps/$(DEB_HOST_ARCH_OS).mk +-include debian/sysdeps/$(DEB_HOST_ARCH).mk + +include debian/sysdeps/depflags.mk + +# Don't run dh_strip on this package +NOSTRIP_$(libc)-dbg = 1 + +ifeq ($(threads),yes) +DEB_ARCH_REGULAR_PACKAGES += nscd +endif + +# And now the rules... +include debian/rules.d/*.mk + +clean:: debhelper-clean + rm -rf $(patsubst %,debian/tmp-%,$(GLIBC_PASSES)) + rm -rf $(build-tree) + rm -rf $(stamp) + rm -f log-* + rm -rf debian/include + +# Required Debian targets +binary-indep: build testroot debian/control $(build-tree) \ + $(patsubst %,$(stamp)install_%,$(GLIBC_PASSES)) \ + $(patsubst %,$(stamp)binaryinst_%,$(DEB_INDEP_REGULAR_PACKAGES)) +# NOTE: Putting install_ stamps before binaryinst_ stamps in the list is the +# wrong way to represent dependencies. Fix this. +binary-arch: build testroot debian/control $(build-tree) \ + $(patsubst %,$(stamp)install_%,$(GLIBC_PASSES)) \ + $(patsubst %,$(stamp)binaryinst_%,$(DEB_ARCH_REGULAR_PACKAGES)) \ + $(patsubst %,$(stamp)binaryinst_%,$(DEB_UDEB_PACKAGES)) + +binary: binary-indep binary-arch + +build: $(patsubst %,$(stamp)build_%,$(GLIBC_PASSES)) \ + $(patsubst %,$(stamp)check_%,$(GLIBC_PASSES)) + +testroot: + dh_testroot --- glibc-2.5.orig/debian/control +++ glibc-2.5/debian/control @@ -0,0 +1,721 @@ +Source: glibc +Section: libs +Priority: required +Build-Depends: gettext, make (>= 3.80-1), dpkg-dev (>= 1.13.5), bzip2, file, quilt, + texinfo (>= 4.0), texi2html, + autoconf, sed (>= 4.0.5-4), gawk, debhelper (>= 5.0), + linux-libc-dev [!hurd-i386 !kfreebsd-i386 !kfreebsd-amd64 !hppa], linux-kernel-headers [hppa], + mig (>= 1.3-2) [hurd-i386], hurd-dev (>= 20020608-1) [hurd-i386], gnumach-dev [hurd-i386], + kfreebsd-kernel-headers [kfreebsd-i386 kfreebsd-amd64], + binutils (>= 2.17cvs20070426-1), + gcc-4.0 [hurd-i386], gcc-4.1 (>= 4.1.2-5) [!hurd-i386], gcc-4.1-multilib [amd64 i386 kfreebsd-amd64 powerpc ppc64 s390 sparc], + libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc], libc6-dev-i386 [amd64], libc6-dev-powerpc [ppc64], libc6-dev-sparc64 [sparc], libc6-dev-s390x [s390], libc0.1-dev-i386 [kfreebsd-amd64], +Build-Depends-Indep: perl, po-debconf (>= 1.0) +Maintainer: Ubuntu Core developers +XSBC-Original-Maintainer: GNU Libc Maintainers +Uploaders: Ben Collins , GOTO Masanori , Philip Blundell , Jeff Bailey , Daniel Jacobowitz , Clint Adams , Aurelien Jarno , Pierre Habouzit +Standards-Version: 3.7.2 + +Package: glibc-doc +Architecture: all +Section: doc +Priority: optional +Provides: glibc-doc-reference +Conflicts: glibc-doc-reference +Replaces: glibc-doc-reference +Description: GNU C Library: Documentation + Contains The GNU C Library Reference manual in info and html format + as well as the man pages for libpthread functions and the complete + GNU C Library ChangeLog. + +Package: locales +Architecture: all +Section: libs +Priority: standard +Depends: ${locale:Depends}, debconf | debconf-2.0 +Conflicts: base-config +Replaces: base-config, lliurex-belocs-locales-data +Description: GNU C Library: National Language (locale) data [support] + Machine-readable data files, shared objects and programs used by the + C library for localization (l10n) and internationalization (i18n) support. + . + This package contains the libc.mo i18n files, plus tools to generate + locale definitions from source files (included in this package). It + allows you to customize which definitions actually get + generated. This is a space-saver over how this package used to be, + with all locales generated by default. This created a package that + unpacked to an excess of 30 megs. + +Package: locales-all +Architecture: any +Section: libs +Priority: extra +Depends: ${locale:Depends}, lzma +Provides: locales +Description: GNU C Library: Precompiled locale data + This package contains the precompiled locale data for all supported locales. + A better alternative is to install the locales package and only select + desired locales, but it can be useful on a low-memory machine because some + locale files take a lot of memory to be compiled. + +Package: nscd +Architecture: alpha amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc ia64 hppa s390 sh3 sh4 sh3eb sh4eb kfreebsd-i386 kfreebsd-amd64 +Section: admin +Priority: optional +Depends: ${shlibs:Depends} +Description: GNU C Library: Name Service Cache Daemon + A daemon which handles passwd, group and host lookups + for running programs and caches the results for the next + query. You should install this package only if you use + slow Services like LDAP, NIS or NIS+ + +Package: libc6 +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: libs +Priority: required +Provides: ${locale-compat:Depends} +Depends: tzdata +Description: GNU C Library: Shared libraries + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + +Package: libc6-dev +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: libdevel +Priority: optional +Depends: libc6 (= ${Source-Version}) +Recommends: gcc | c-compiler +Description: GNU C Library: Development Libraries and Header Files + Contains the symlinks, headers, and object files needed to compile + and link programs which use the standard C library. + +Package: libc6-dbg +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: libdevel +Priority: extra +Provides: libc-dbg +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Libraries with debugging symbols + Contains unstripped shared libraries. + This package is provided primarily to provide a backtrace with + names in a debugger, which makes it somewhat easier to interpret core + dumps. The libraries are installed in /usr/lib/debug and can be + used by placing that directory in LD_LIBRARY_PATH. + Most people will not need this package. + +Package: libc6-prof +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: libdevel +Priority: extra +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Profiling Libraries + Static libraries compiled with profiling info (-pg) suitable for use + with gprof. + +Package: libc6-pic +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: libdevel +Priority: optional +Conflicts: libc-pic +Provides: libc-pic, glibc-pic +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: PIC archive library + Contains an archive library (ar file) composed of individual shared objects. + This is used for creating a library which is a smaller subset of the + standard libc shared library. The reduced library is used on the Debian + boot floppies. If you are not making your own set of Debian boot floppies + using the `boot-floppies' package, you probably don't need this package. + +Package: libc6-udeb +XC-Package-Type: udeb +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: debian-installer +Priority: extra +Provides: libc6, libc-udeb, ${locale-compat:Depends} +Description: GNU C Library: Shared libraries - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains a minimal set of libraries needed for the Debian + installer. Do not install it on a normal system. + +Package: libc6.1 +Architecture: alpha ia64 +Section: libs +Priority: required +Provides: ${locale-compat:Depends} +Depends: tzdata +Description: GNU C Library: Shared libraries + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + +Package: libc6.1-dev +Architecture: alpha ia64 +Section: libdevel +Priority: optional +Depends: libc6.1 (= ${Source-Version}) +Recommends: gcc | c-compiler +Description: GNU C Library: Development Libraries and Header Files + Contains the symlinks, headers, and object files needed to compile + and link programs which use the standard C library. + +Package: libc6.1-dbg +Architecture: alpha ia64 +Section: libdevel +Priority: extra +Provides: libc-dbg +Depends: libc6.1 (= ${Source-Version}) +Description: GNU C Library: Libraries with debugging symbols + Contains unstripped shared libraries. + This package is provided primarily to provide a backtrace with + names in a debugger, which makes it somewhat easier to interpret core + dumps. The libraries are installed in /usr/lib/debug and can be + used by placing that directory in LD_LIBRARY_PATH. + Most people will not need this package. + +Package: libc6.1-prof +Architecture: alpha ia64 +Section: libdevel +Priority: extra +Depends: libc6.1 (= ${Source-Version}) +Description: GNU C Library: Profiling Libraries + Static libraries compiled with profiling info (-pg) suitable for use + with gprof. + +Package: libc6.1-pic +Architecture: alpha ia64 +Section: libdevel +Priority: optional +Conflicts: libc-pic +Provides: libc-pic, glibc-pic +Depends: libc6.1 (= ${Source-Version}) +Description: GNU C Library: PIC archive library + Contains an archive library (ar file) composed of individual shared objects. + This is used for creating a library which is a smaller subset of the + standard libc shared library. The reduced library is used on the Debian + boot floppies. If you are not making your own set of Debian boot floppies + using the `boot-floppies' package, you probably don't need this package. + +Package: libc6.1-udeb +XC-Package-Type: udeb +Architecture: alpha ia64 +Section: debian-installer +Priority: extra +Provides: libc6.1, libc-udeb, ${locale-compat:Depends} +Description: GNU C Library: Shared libraries - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains a minimal set of libraries needed for the Debian + installer. Do not install it on a normal system. + +Package: libc0.3 +Architecture: hurd-i386 +Section: libs +Priority: required +Provides: ${locale-compat:Depends} +Depends: tzdata +Description: GNU C Library: Shared libraries + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + +Package: libc0.3-dev +Architecture: hurd-i386 +Section: libdevel +Priority: optional +Depends: libc0.3 (= ${Source-Version}) +Recommends: gcc | c-compiler +Description: GNU C Library: Development Libraries and Header Files + Contains the symlinks, headers, and object files needed to compile + and link programs which use the standard C library. + +Package: libc0.3-dbg +Architecture: hurd-i386 +Section: libdevel +Priority: extra +Provides: libc-dbg +Depends: libc0.3 (= ${Source-Version}) +Description: GNU C Library: Libraries with debugging symbols + Contains unstripped shared libraries. + This package is provided primarily to provide a backtrace with + names in a debugger, which makes it somewhat easier to interpret core + dumps. The libraries are installed in /usr/lib/debug and can be + used by placing that directory in LD_LIBRARY_PATH. + Most people will not need this package. + +Package: libc0.3-prof +Architecture: hurd-i386 +Section: libdevel +Priority: extra +Depends: libc0.3 (= ${Source-Version}) +Description: GNU C Library: Profiling Libraries + Static libraries compiled with profiling info (-pg) suitable for use + with gprof. + +Package: libc0.3-pic +Architecture: hurd-i386 +Section: libdevel +Priority: optional +Conflicts: libc-pic +Provides: libc-pic, glibc-pic +Depends: libc0.3 (= ${Source-Version}) +Description: GNU C Library: PIC archive library + Contains an archive library (ar file) composed of individual shared objects. + This is used for creating a library which is a smaller subset of the + standard libc shared library. The reduced library is used on the Debian + boot floppies. If you are not making your own set of Debian boot floppies + using the `boot-floppies' package, you probably don't need this package. + +Package: libc0.3-udeb +XC-Package-Type: udeb +Architecture: hurd-i386 +Section: debian-installer +Priority: extra +Provides: libc0.3, libc-udeb, ${locale-compat:Depends} +Description: GNU C Library: Shared libraries - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains a minimal set of libraries needed for the Debian + installer. Do not install it on a normal system. + +Package: libc0.1 +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: libs +Priority: required +Provides: ${locale-compat:Depends} +Depends: tzdata +Description: GNU C Library: Shared libraries + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + +Package: libc0.1-dev +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: libdevel +Priority: optional +Depends: libc0.1 (= ${Source-Version}) +Recommends: gcc | c-compiler +Description: GNU C Library: Development Libraries and Header Files + Contains the symlinks, headers, and object files needed to compile + and link programs which use the standard C library. + +Package: libc0.1-dbg +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: libdevel +Priority: extra +Provides: libc-dbg +Depends: libc0.1 (= ${Source-Version}) +Description: GNU C Library: Libraries with debugging symbols + Contains unstripped shared libraries. + This package is provided primarily to provide a backtrace with + names in a debugger, which makes it somewhat easier to interpret core + dumps. The libraries are installed in /usr/lib/debug and can be + used by placing that directory in LD_LIBRARY_PATH. + Most people will not need this package. + +Package: libc0.1-prof +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: libdevel +Priority: extra +Depends: libc0.1 (= ${Source-Version}) +Description: GNU C Library: Profiling Libraries + Static libraries compiled with profiling info (-pg) suitable for use + with gprof. + +Package: libc0.1-pic +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: libdevel +Priority: optional +Conflicts: libc-pic +Provides: libc-pic, glibc-pic +Depends: libc0.1 (= ${Source-Version}) +Description: GNU C Library: PIC archive library + Contains an archive library (ar file) composed of individual shared objects. + This is used for creating a library which is a smaller subset of the + standard libc shared library. The reduced library is used on the Debian + boot floppies. If you are not making your own set of Debian boot floppies + using the `boot-floppies' package, you probably don't need this package. + +Package: libc0.1-udeb +XC-Package-Type: udeb +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: debian-installer +Priority: extra +Provides: libc0.1, libc-udeb, ${locale-compat:Depends} +Description: GNU C Library: Shared libraries - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains a minimal set of libraries needed for the Debian + installer. Do not install it on a normal system. + +Package: libc6-i386 +Architecture: amd64 +Section: libs +Priority: optional +Depends: libc6 (= ${Source-Version}) +Replaces: libc6-dev-i386 +Conflicts: ia32-libs (<= 1.5) +Description: GNU C Library: 32bit shared libraries for AMD64 + This package includes shared versions of the standard C + library and the standard math library, as well as many others. + This is the 32bit version of the library, meant for AMD64 systems. + +Package: libc6-dev-i386 +Architecture: amd64 +Section: libdevel +Priority: optional +Conflicts: ia32-libs-dev (<< 1.18) +Provides: lib32c-dev +Depends: libc6-i386 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 32bit development libraries for AMD64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 32bit version of the + library, meant for AMD64 systems. + +Package: libc6-sparc64 +Architecture: sparc +Section: libs +Priority: optional +Depends: libc6 (= ${Source-Version}) +Conflicts: gcc-3.0 (<< 1:3.0.4ds3-11), libgcc1 (<< 1:3.0.4ds3-11), fakeroot (<< 0.4.5-2.7) +Description: GNU C Library: 64bit Shared libraries for UltraSPARC + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for UltraSPARC systems. + +Package: libc6-dev-sparc64 +Architecture: sparc +Section: libdevel +Priority: optional +Provides: lib64c-dev +Depends: libc6-sparc64 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 64bit Development Libraries for UltraSPARC + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 64bit version of the + library, meant for UltraSPARC systems. + +Package: libc6-s390x +Architecture: s390 +Section: libs +Priority: optional +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: 64bit Shared libraries for IBM zSeries + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for zSeries systems. + +Package: libc6-dev-s390x +Architecture: s390 +Section: libdevel +Priority: optional +Provides: lib64c-dev +Depends: libc6-s390x (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 64bit Development Libraries for IBM zSeries + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 64bit version of the + library, meant for zSeries systems. + +Package: libc6-amd64 +Architecture: i386 +Section: libs +Priority: standard +Depends: libc6 (= ${Source-Version}) +Conflicts: amd64-libs (<= 1.2) +Description: GNU C Library: 64bit Shared libraries for AMD64 + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for AMD64 systems. + +Package: libc6-dev-amd64 +Architecture: i386 +Section: libdevel +Priority: optional +Depends: libc6-amd64 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Replaces: amd64-libs-dev (<= 1.2) +Provides: lib64c-dev +Description: GNU C Library: 64bit Development Libraries for AMD64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 64bit version of the + library, meant for AMD64 systems. + +Package: libc6-powerpc +Architecture: ppc64 +Section: libs +Priority: optional +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: 32bit powerpc shared libraries for ppc64 + This package includes shared versions of the standard C + library and the standard math library, as well as many others. + This is the 32bit version of the library, meant for ppc64 systems. + +Package: libc6-dev-powerpc +Architecture: ppc64 +Section: libdevel +Priority: optional +Provides: lib32c-dev +Depends: libc6-powerpc (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 32bit powerpc development libraries for ppc64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 32bit version of the + library, meant for ppc64 systems. + +Package: libc6-ppc64 +Architecture: powerpc +Section: libs +Priority: optional +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: 64bit Shared libraries for PowerPC64 + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for PowerPC64 systems. + +Package: libc6-dev-ppc64 +Architecture: powerpc +Section: libdevel +Priority: optional +Provides: lib64c-dev +Depends: libc6-ppc64 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 64bit Development Libraries for PowerPC64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 64bit version of the + library, meant for PowerPC64 systems. + +Package: libc6-mipsn32 +Architecture: mips mipsel +Section: base +Priority: optional +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: n32 Shared libraries for MIPS64 + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the n32 version + of the library, meant for MIPS64 systems. + +Package: libc6-dev-mipsn32 +Architecture: mips mipsel +Section: libdevel +Priority: optional +Provides: libn32c-dev +Depends: libc6-mipsn32 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: n32 Development Libraries for MIPS64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the n32 version of the + library, meant for MIPS64 systems. + +Package: libc6-mips64 +Architecture: mips mipsel +Section: base +Priority: optional +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: 64bit Shared libraries for MIPS64 + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for MIPS64 systems. + +Package: libc6-dev-mips64 +Architecture: mips mipsel +Section: libdevel +Priority: optional +Provides: lib64c-dev +Depends: libc6-mips64 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 64bit Development Libraries for MIPS64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 64bit version of the + library, meant for MIPS64 systems. + +Package: libc0.1-i386 +Architecture: kfreebsd-amd64 +Section: libs +Priority: optional +Depends: libc0.1 (= ${Source-Version}) +Description: GNU C Library: 32bit shared libraries for AMD64 + This package includes shared versions of the standard C + library and the standard math library, as well as many others. + This is the 32bit version of the library, meant for AMD64 systems. + +Package: libc0.1-dev-i386 +Architecture: kfreebsd-amd64 +Section: libdevel +Priority: optional +Provides: lib32c-dev +Depends: libc0.1-i386 (= ${Source-Version}), libc0.1-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 32bit development libraries for AMD64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 32bit version of the + library, meant for AMD64 systems. + +Package: libc6-sparcv9b +Architecture: sparc +Section: libs +Priority: extra +Pre-Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Shared libraries [v9b optimized] + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C + library and the standard math library, as well as many others. + . + This set of libraries is optimized for the UltraSPARC v9b ABI. It only + needs to be installed on UltraSPARC machines. If you install this on a + non-UltraSPARC, it won't even be used. + . + WARNING: Some commercial programs do not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + +Package: libc6-sparcv9v +Architecture: sparc +Section: libs +Priority: extra +Pre-Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Shared libraries [v9v optimized] + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C + library and the standard math library, as well as many others. + . + This set of libraries is optimized for SUN4V Niagara and derivative + processors. It only needs to be installed on machines using + SUN4V Niagara and derivatives. If you install this on a machine without + such chips, it won't even be used. + . + WARNING: Some commercial programs do not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + +Package: libc6-sparc64b +Architecture: sparc +Section: base +Priority: extra +Depends: libc6 (= ${Source-Version}), lib64gcc1 +Conflicts: gcc-3.0 (<< 1:3.0.4ds3-11), libgcc1 (<< 1:3.0.4ds3-11), fakeroot (<< 0.4.5-2.7) +Description: GNU C Library: 64bit Shared libraries for UltraSPARC [v9b optimized] + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for UltraSPARC systems. + . + This set of libraries is optimized for UltraSPARC-III and derivative + processors. It only needs to be installed on machines using + UltraSPARC-III and derivatives. If you install this on a machine without + such chips, it won't even be used. + . + WARNING: Some commercial programs do not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + +Package: libc6-sparc64v +Architecture: sparc +Section: base +Priority: extra +Depends: libc6 (= ${Source-Version}), lib64gcc1 +Conflicts: gcc-3.0 (<< 1:3.0.4ds3-11), libgcc1 (<< 1:3.0.4ds3-11), fakeroot (<< 0.4.5-2.7) +Description: GNU C Library: 64bit Shared libraries for UltraSPARC [v9v optimized] + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for UltraSPARC systems. + . + This set of libraries is optimized for SUN4V Niagara and derivative + processors. It only needs to be installed on machines using + SUN4V Niagara and derivatives. If you install this on a machine without + such chips, it won't even be used. + . + WARNING: Some commercial programs do not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + +Package: libc6-i686 +Architecture: i386 +Section: libs +Priority: extra +Pre-Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Shared libraries [i686 optimized] + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C + library and the standard math library, as well as many others. + . + This set of libraries is optimized for i686 machines, and will only be + used if you are running a 2.6 kernel on an i686 class CPU (check the + output of `uname -m'). This includes Pentium Pro, Pentium II/III/IV, + Celeron CPU's and similar class CPU's (including clones such as AMD + Athlon/Opteron, VIA C3 Nehemiah, but not VIA C3 Ezra). + . + This package includes support for NPTL. + . + WARNING: Some third-party binaries may not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + +Package: libc6-xen +Architecture: i386 +Section: libs +Priority: extra +Pre-Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Shared libraries [Xen version] + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C + library and the standard math library, as well as many others. + . + This set of libraries is optimized for the Xen hypervisor, and will be + selected instead when running under Xen. + +Package: libc0.1-i686 +Architecture: kfreebsd-i386 +Section: libs +Priority: extra +Pre-Depends: libc0.1 (= ${Source-Version}) +Description: GNU C Library: Shared libraries [i686 optimized] + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C + library and the standard math library, as well as many others. + . + This set of libraries is optimized for i686 machines, and will only be + used on an i686 class CPU (check the output of `uname -m'). This includes + Pentium Pro, Pentium II/III/IV, Celeron CPU's and similar class CPU's + (including clones such as AMD Athlon/Opteron, VIA C3 Nehemiah, but not VIA + C3 Ezla). + . + WARNING: Some third-party binaries may not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + +Package: libnss-dns-udeb +XC-Package-Type: udeb +Architecture: any +Section: debian-installer +Priority: extra +Description: GNU C Library: NSS helper for DNS - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains the DNS NSS helper needed for the Debian installer. + Do not install it on a normal system. + +Package: libnss-files-udeb +XC-Package-Type: udeb +Architecture: any +Section: debian-installer +Priority: extra +Description: GNU C Library: NSS helper for files - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains the files NSS helper needed for the Debian installer. + Do not install it on a normal system. + --- glibc-2.5.orig/debian/control.in/libc6 +++ glibc-2.5/debian/control.in/libc6 @@ -0,0 +1,72 @@ +Package: libc6 +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: libs +Priority: required +Provides: ${locale-compat:Depends} +Depends: tzdata +Description: GNU C Library: Shared libraries + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + +Package: libc6-dev +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: libdevel +Priority: optional +Depends: libc6 (= ${Source-Version}) +Recommends: gcc | c-compiler +Description: GNU C Library: Development Libraries and Header Files + Contains the symlinks, headers, and object files needed to compile + and link programs which use the standard C library. + +Package: libc6-dbg +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: libdevel +Priority: extra +Provides: libc-dbg +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Libraries with debugging symbols + Contains unstripped shared libraries. + This package is provided primarily to provide a backtrace with + names in a debugger, which makes it somewhat easier to interpret core + dumps. The libraries are installed in /usr/lib/debug and can be + used by placing that directory in LD_LIBRARY_PATH. + Most people will not need this package. + +Package: libc6-prof +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: libdevel +Priority: extra +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Profiling Libraries + Static libraries compiled with profiling info (-pg) suitable for use + with gprof. + +Package: libc6-pic +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: libdevel +Priority: optional +Conflicts: libc-pic +Provides: libc-pic, glibc-pic +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: PIC archive library + Contains an archive library (ar file) composed of individual shared objects. + This is used for creating a library which is a smaller subset of the + standard libc shared library. The reduced library is used on the Debian + boot floppies. If you are not making your own set of Debian boot floppies + using the `boot-floppies' package, you probably don't need this package. + +Package: libc6-udeb +XC-Package-Type: udeb +Architecture: amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb +Section: debian-installer +Priority: extra +Provides: libc6, libc-udeb, ${locale-compat:Depends} +Description: GNU C Library: Shared libraries - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains a minimal set of libraries needed for the Debian + installer. Do not install it on a normal system. + --- glibc-2.5.orig/debian/control.in/amd64 +++ glibc-2.5/debian/control.in/amd64 @@ -0,0 +1,24 @@ +Package: libc6-amd64 +Architecture: i386 +Section: libs +Priority: standard +Depends: libc6 (= ${Source-Version}) +Conflicts: amd64-libs (<= 1.2) +Description: GNU C Library: 64bit Shared libraries for AMD64 + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for AMD64 systems. + +Package: libc6-dev-amd64 +Architecture: i386 +Section: libdevel +Priority: optional +Depends: libc6-amd64 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Replaces: amd64-libs-dev (<= 1.2) +Provides: lib64c-dev +Description: GNU C Library: 64bit Development Libraries for AMD64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 64bit version of the + library, meant for AMD64 systems. + --- glibc-2.5.orig/debian/control.in/libc6.1 +++ glibc-2.5/debian/control.in/libc6.1 @@ -0,0 +1,72 @@ +Package: libc6.1 +Architecture: alpha ia64 +Section: libs +Priority: required +Provides: ${locale-compat:Depends} +Depends: tzdata +Description: GNU C Library: Shared libraries + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + +Package: libc6.1-dev +Architecture: alpha ia64 +Section: libdevel +Priority: optional +Depends: libc6.1 (= ${Source-Version}) +Recommends: gcc | c-compiler +Description: GNU C Library: Development Libraries and Header Files + Contains the symlinks, headers, and object files needed to compile + and link programs which use the standard C library. + +Package: libc6.1-dbg +Architecture: alpha ia64 +Section: libdevel +Priority: extra +Provides: libc-dbg +Depends: libc6.1 (= ${Source-Version}) +Description: GNU C Library: Libraries with debugging symbols + Contains unstripped shared libraries. + This package is provided primarily to provide a backtrace with + names in a debugger, which makes it somewhat easier to interpret core + dumps. The libraries are installed in /usr/lib/debug and can be + used by placing that directory in LD_LIBRARY_PATH. + Most people will not need this package. + +Package: libc6.1-prof +Architecture: alpha ia64 +Section: libdevel +Priority: extra +Depends: libc6.1 (= ${Source-Version}) +Description: GNU C Library: Profiling Libraries + Static libraries compiled with profiling info (-pg) suitable for use + with gprof. + +Package: libc6.1-pic +Architecture: alpha ia64 +Section: libdevel +Priority: optional +Conflicts: libc-pic +Provides: libc-pic, glibc-pic +Depends: libc6.1 (= ${Source-Version}) +Description: GNU C Library: PIC archive library + Contains an archive library (ar file) composed of individual shared objects. + This is used for creating a library which is a smaller subset of the + standard libc shared library. The reduced library is used on the Debian + boot floppies. If you are not making your own set of Debian boot floppies + using the `boot-floppies' package, you probably don't need this package. + +Package: libc6.1-udeb +XC-Package-Type: udeb +Architecture: alpha ia64 +Section: debian-installer +Priority: extra +Provides: libc6.1, libc-udeb, ${locale-compat:Depends} +Description: GNU C Library: Shared libraries - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains a minimal set of libraries needed for the Debian + installer. Do not install it on a normal system. + --- glibc-2.5.orig/debian/control.in/i386 +++ glibc-2.5/debian/control.in/i386 @@ -0,0 +1,25 @@ +Package: libc6-i386 +Architecture: amd64 +Section: libs +Priority: optional +Depends: libc6 (= ${Source-Version}) +Replaces: libc6-dev-i386 +Conflicts: ia32-libs (<= 1.5) +Description: GNU C Library: 32bit shared libraries for AMD64 + This package includes shared versions of the standard C + library and the standard math library, as well as many others. + This is the 32bit version of the library, meant for AMD64 systems. + +Package: libc6-dev-i386 +Architecture: amd64 +Section: libdevel +Priority: optional +Conflicts: ia32-libs-dev (<< 1.18) +Provides: lib32c-dev +Depends: libc6-i386 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 32bit development libraries for AMD64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 32bit version of the + library, meant for AMD64 systems. + --- glibc-2.5.orig/debian/control.in/main +++ glibc-2.5/debian/control.in/main @@ -0,0 +1,71 @@ +Source: @glibc@ +Section: libs +Priority: required +Build-Depends: gettext, make (>= 3.80-1), dpkg-dev (>= 1.13.5), bzip2, file, quilt, + texinfo (>= 4.0), texi2html, + autoconf, sed (>= 4.0.5-4), gawk, debhelper (>= 5.0), + linux-libc-dev [!hurd-i386 !kfreebsd-i386 !kfreebsd-amd64 !hppa], linux-kernel-headers [hppa], + mig (>= 1.3-2) [hurd-i386], hurd-dev (>= 20020608-1) [hurd-i386], gnumach-dev [hurd-i386], + kfreebsd-kernel-headers [kfreebsd-i386 kfreebsd-amd64], + binutils (>= 2.17cvs20070426-1), + gcc-4.0 [hurd-i386], gcc-4.1 (>= 4.1.2-5) [!hurd-i386], gcc-4.1-multilib [amd64 i386 kfreebsd-amd64 powerpc ppc64 s390 sparc], + libc6-dev-amd64 [i386], libc6-dev-ppc64 [powerpc], libc6-dev-i386 [amd64], libc6-dev-powerpc [ppc64], libc6-dev-sparc64 [sparc], libc6-dev-s390x [s390], libc0.1-dev-i386 [kfreebsd-amd64], +Build-Depends-Indep: perl, po-debconf (>= 1.0) +Maintainer: Ubuntu Core developers +XSBC-Original-Maintainer: GNU Libc Maintainers +Uploaders: Ben Collins , GOTO Masanori , Philip Blundell , Jeff Bailey , Daniel Jacobowitz , Clint Adams , Aurelien Jarno , Pierre Habouzit +Standards-Version: 3.7.2 + +Package: @glibc@-doc +Architecture: all +Section: doc +Priority: optional +Provides: @glibc@-doc-reference +Conflicts: @glibc@-doc-reference +Replaces: @glibc@-doc-reference +Description: GNU C Library: Documentation + Contains The GNU C Library Reference manual in info and html format + as well as the man pages for libpthread functions and the complete + GNU C Library ChangeLog. + +Package: locales +Architecture: all +Section: libs +Priority: standard +Depends: ${locale:Depends}, debconf | debconf-2.0 +Conflicts: base-config +Replaces: base-config, lliurex-belocs-locales-data +Description: GNU C Library: National Language (locale) data [support] + Machine-readable data files, shared objects and programs used by the + C library for localization (l10n) and internationalization (i18n) support. + . + This package contains the libc.mo i18n files, plus tools to generate + locale definitions from source files (included in this package). It + allows you to customize which definitions actually get + generated. This is a space-saver over how this package used to be, + with all locales generated by default. This created a package that + unpacked to an excess of 30 megs. + +Package: locales-all +Architecture: any +Section: libs +Priority: extra +Depends: ${locale:Depends}, lzma +Provides: locales +Description: GNU C Library: Precompiled locale data + This package contains the precompiled locale data for all supported locales. + A better alternative is to install the locales package and only select + desired locales, but it can be useful on a low-memory machine because some + locale files take a lot of memory to be compiled. + +Package: nscd +Architecture: @threads_archs@ +Section: admin +Priority: optional +Depends: ${shlibs:Depends} +Description: GNU C Library: Name Service Cache Daemon + A daemon which handles passwd, group and host lookups + for running programs and caches the results for the next + query. You should install this package only if you use + slow Services like LDAP, NIS or NIS+ + --- glibc-2.5.orig/debian/control.in/libc +++ glibc-2.5/debian/control.in/libc @@ -0,0 +1,72 @@ +Package: @libc@ +Architecture: @archs@ +Section: libs +Priority: required +Provides: ${locale-compat:Depends} +Depends: tzdata +Description: GNU C Library: Shared libraries + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + +Package: @libc@-dev +Architecture: @archs@ +Section: libdevel +Priority: optional +Depends: @libc@ (= ${Source-Version}) +Recommends: gcc | c-compiler +Description: GNU C Library: Development Libraries and Header Files + Contains the symlinks, headers, and object files needed to compile + and link programs which use the standard C library. + +Package: @libc@-dbg +Architecture: @archs@ +Section: libdevel +Priority: extra +Provides: libc-dbg +Depends: @libc@ (= ${Source-Version}) +Description: GNU C Library: Libraries with debugging symbols + Contains unstripped shared libraries. + This package is provided primarily to provide a backtrace with + names in a debugger, which makes it somewhat easier to interpret core + dumps. The libraries are installed in /usr/lib/debug and can be + used by placing that directory in LD_LIBRARY_PATH. + Most people will not need this package. + +Package: @libc@-prof +Architecture: @archs@ +Section: libdevel +Priority: extra +Depends: @libc@ (= ${Source-Version}) +Description: GNU C Library: Profiling Libraries + Static libraries compiled with profiling info (-pg) suitable for use + with gprof. + +Package: @libc@-pic +Architecture: @archs@ +Section: libdevel +Priority: optional +Conflicts: libc-pic +Provides: libc-pic, glibc-pic +Depends: @libc@ (= ${Source-Version}) +Description: GNU C Library: PIC archive library + Contains an archive library (ar file) composed of individual shared objects. + This is used for creating a library which is a smaller subset of the + standard libc shared library. The reduced library is used on the Debian + boot floppies. If you are not making your own set of Debian boot floppies + using the `boot-floppies' package, you probably don't need this package. + +Package: @libc@-udeb +XC-Package-Type: udeb +Architecture: @archs@ +Section: debian-installer +Priority: extra +Provides: @libc@, libc-udeb, ${locale-compat:Depends} +Description: GNU C Library: Shared libraries - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains a minimal set of libraries needed for the Debian + installer. Do not install it on a normal system. + --- glibc-2.5.orig/debian/control.in/libc0.3 +++ glibc-2.5/debian/control.in/libc0.3 @@ -0,0 +1,72 @@ +Package: libc0.3 +Architecture: hurd-i386 +Section: libs +Priority: required +Provides: ${locale-compat:Depends} +Depends: tzdata +Description: GNU C Library: Shared libraries + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + +Package: libc0.3-dev +Architecture: hurd-i386 +Section: libdevel +Priority: optional +Depends: libc0.3 (= ${Source-Version}) +Recommends: gcc | c-compiler +Description: GNU C Library: Development Libraries and Header Files + Contains the symlinks, headers, and object files needed to compile + and link programs which use the standard C library. + +Package: libc0.3-dbg +Architecture: hurd-i386 +Section: libdevel +Priority: extra +Provides: libc-dbg +Depends: libc0.3 (= ${Source-Version}) +Description: GNU C Library: Libraries with debugging symbols + Contains unstripped shared libraries. + This package is provided primarily to provide a backtrace with + names in a debugger, which makes it somewhat easier to interpret core + dumps. The libraries are installed in /usr/lib/debug and can be + used by placing that directory in LD_LIBRARY_PATH. + Most people will not need this package. + +Package: libc0.3-prof +Architecture: hurd-i386 +Section: libdevel +Priority: extra +Depends: libc0.3 (= ${Source-Version}) +Description: GNU C Library: Profiling Libraries + Static libraries compiled with profiling info (-pg) suitable for use + with gprof. + +Package: libc0.3-pic +Architecture: hurd-i386 +Section: libdevel +Priority: optional +Conflicts: libc-pic +Provides: libc-pic, glibc-pic +Depends: libc0.3 (= ${Source-Version}) +Description: GNU C Library: PIC archive library + Contains an archive library (ar file) composed of individual shared objects. + This is used for creating a library which is a smaller subset of the + standard libc shared library. The reduced library is used on the Debian + boot floppies. If you are not making your own set of Debian boot floppies + using the `boot-floppies' package, you probably don't need this package. + +Package: libc0.3-udeb +XC-Package-Type: udeb +Architecture: hurd-i386 +Section: debian-installer +Priority: extra +Provides: libc0.3, libc-udeb, ${locale-compat:Depends} +Description: GNU C Library: Shared libraries - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains a minimal set of libraries needed for the Debian + installer. Do not install it on a normal system. + --- glibc-2.5.orig/debian/control.in/libc0.1 +++ glibc-2.5/debian/control.in/libc0.1 @@ -0,0 +1,72 @@ +Package: libc0.1 +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: libs +Priority: required +Provides: ${locale-compat:Depends} +Depends: tzdata +Description: GNU C Library: Shared libraries + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + +Package: libc0.1-dev +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: libdevel +Priority: optional +Depends: libc0.1 (= ${Source-Version}) +Recommends: gcc | c-compiler +Description: GNU C Library: Development Libraries and Header Files + Contains the symlinks, headers, and object files needed to compile + and link programs which use the standard C library. + +Package: libc0.1-dbg +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: libdevel +Priority: extra +Provides: libc-dbg +Depends: libc0.1 (= ${Source-Version}) +Description: GNU C Library: Libraries with debugging symbols + Contains unstripped shared libraries. + This package is provided primarily to provide a backtrace with + names in a debugger, which makes it somewhat easier to interpret core + dumps. The libraries are installed in /usr/lib/debug and can be + used by placing that directory in LD_LIBRARY_PATH. + Most people will not need this package. + +Package: libc0.1-prof +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: libdevel +Priority: extra +Depends: libc0.1 (= ${Source-Version}) +Description: GNU C Library: Profiling Libraries + Static libraries compiled with profiling info (-pg) suitable for use + with gprof. + +Package: libc0.1-pic +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: libdevel +Priority: optional +Conflicts: libc-pic +Provides: libc-pic, glibc-pic +Depends: libc0.1 (= ${Source-Version}) +Description: GNU C Library: PIC archive library + Contains an archive library (ar file) composed of individual shared objects. + This is used for creating a library which is a smaller subset of the + standard libc shared library. The reduced library is used on the Debian + boot floppies. If you are not making your own set of Debian boot floppies + using the `boot-floppies' package, you probably don't need this package. + +Package: libc0.1-udeb +XC-Package-Type: udeb +Architecture: kfreebsd-i386 kfreebsd-amd64 +Section: debian-installer +Priority: extra +Provides: libc0.1, libc-udeb, ${locale-compat:Depends} +Description: GNU C Library: Shared libraries - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains a minimal set of libraries needed for the Debian + installer. Do not install it on a normal system. + --- glibc-2.5.orig/debian/control.in/libc-dbg +++ glibc-2.5/debian/control.in/libc-dbg @@ -0,0 +1,14 @@ +Package: @libc@-dbg +Architecture: @archs@ +Section: libdevel +Priority: extra +Provides: libc-dbg +Depends: @libc@ (= ${Source-Version}) +Description: GNU C Library: Libraries with debugging symbols + Unstripped shared libraries and separated debug information + for the GNU C library. + . + This package improves the accuracy of backtraces which pass through + the standard C libraries. A version of the libraries with complete + symbolic debug information is also included. + --- glibc-2.5.orig/debian/control.in/powerpc +++ glibc-2.5/debian/control.in/powerpc @@ -0,0 +1,22 @@ +Package: libc6-powerpc +Architecture: ppc64 +Section: libs +Priority: optional +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: 32bit powerpc shared libraries for ppc64 + This package includes shared versions of the standard C + library and the standard math library, as well as many others. + This is the 32bit version of the library, meant for ppc64 systems. + +Package: libc6-dev-powerpc +Architecture: ppc64 +Section: libdevel +Priority: optional +Provides: lib32c-dev +Depends: libc6-powerpc (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 32bit powerpc development libraries for ppc64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 32bit version of the + library, meant for ppc64 systems. + --- glibc-2.5.orig/debian/control.in/kfreebsd-i386 +++ glibc-2.5/debian/control.in/kfreebsd-i386 @@ -0,0 +1,22 @@ +Package: libc0.1-i386 +Architecture: kfreebsd-amd64 +Section: libs +Priority: optional +Depends: libc0.1 (= ${Source-Version}) +Description: GNU C Library: 32bit shared libraries for AMD64 + This package includes shared versions of the standard C + library and the standard math library, as well as many others. + This is the 32bit version of the library, meant for AMD64 systems. + +Package: libc0.1-dev-i386 +Architecture: kfreebsd-amd64 +Section: libdevel +Priority: optional +Provides: lib32c-dev +Depends: libc0.1-i386 (= ${Source-Version}), libc0.1-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 32bit development libraries for AMD64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 32bit version of the + library, meant for AMD64 systems. + --- glibc-2.5.orig/debian/control.in/sparc64 +++ glibc-2.5/debian/control.in/sparc64 @@ -0,0 +1,23 @@ +Package: libc6-sparc64 +Architecture: sparc +Section: libs +Priority: optional +Depends: libc6 (= ${Source-Version}) +Conflicts: gcc-3.0 (<< 1:3.0.4ds3-11), libgcc1 (<< 1:3.0.4ds3-11), fakeroot (<< 0.4.5-2.7) +Description: GNU C Library: 64bit Shared libraries for UltraSPARC + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for UltraSPARC systems. + +Package: libc6-dev-sparc64 +Architecture: sparc +Section: libdevel +Priority: optional +Provides: lib64c-dev +Depends: libc6-sparc64 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 64bit Development Libraries for UltraSPARC + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 64bit version of the + library, meant for UltraSPARC systems. + --- glibc-2.5.orig/debian/control.in/opt +++ glibc-2.5/debian/control.in/opt @@ -0,0 +1,132 @@ +Package: libc6-sparcv9b +Architecture: sparc +Section: libs +Priority: extra +Pre-Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Shared libraries [v9b optimized] + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C + library and the standard math library, as well as many others. + . + This set of libraries is optimized for the UltraSPARC v9b ABI. It only + needs to be installed on UltraSPARC machines. If you install this on a + non-UltraSPARC, it won't even be used. + . + WARNING: Some commercial programs do not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + +Package: libc6-sparcv9v +Architecture: sparc +Section: libs +Priority: extra +Pre-Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Shared libraries [v9v optimized] + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C + library and the standard math library, as well as many others. + . + This set of libraries is optimized for SUN4V Niagara and derivative + processors. It only needs to be installed on machines using + SUN4V Niagara and derivatives. If you install this on a machine without + such chips, it won't even be used. + . + WARNING: Some commercial programs do not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + +Package: libc6-sparc64b +Architecture: sparc +Section: base +Priority: extra +Depends: libc6 (= ${Source-Version}), lib64gcc1 +Conflicts: gcc-3.0 (<< 1:3.0.4ds3-11), libgcc1 (<< 1:3.0.4ds3-11), fakeroot (<< 0.4.5-2.7) +Description: GNU C Library: 64bit Shared libraries for UltraSPARC [v9b optimized] + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for UltraSPARC systems. + . + This set of libraries is optimized for UltraSPARC-III and derivative + processors. It only needs to be installed on machines using + UltraSPARC-III and derivatives. If you install this on a machine without + such chips, it won't even be used. + . + WARNING: Some commercial programs do not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + +Package: libc6-sparc64v +Architecture: sparc +Section: base +Priority: extra +Depends: libc6 (= ${Source-Version}), lib64gcc1 +Conflicts: gcc-3.0 (<< 1:3.0.4ds3-11), libgcc1 (<< 1:3.0.4ds3-11), fakeroot (<< 0.4.5-2.7) +Description: GNU C Library: 64bit Shared libraries for UltraSPARC [v9v optimized] + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for UltraSPARC systems. + . + This set of libraries is optimized for SUN4V Niagara and derivative + processors. It only needs to be installed on machines using + SUN4V Niagara and derivatives. If you install this on a machine without + such chips, it won't even be used. + . + WARNING: Some commercial programs do not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + +Package: libc6-i686 +Architecture: i386 +Section: libs +Priority: extra +Pre-Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Shared libraries [i686 optimized] + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C + library and the standard math library, as well as many others. + . + This set of libraries is optimized for i686 machines, and will only be + used if you are running a 2.6 kernel on an i686 class CPU (check the + output of `uname -m'). This includes Pentium Pro, Pentium II/III/IV, + Celeron CPU's and similar class CPU's (including clones such as AMD + Athlon/Opteron, VIA C3 Nehemiah, but not VIA C3 Ezra). + . + This package includes support for NPTL. + . + WARNING: Some third-party binaries may not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + +Package: libc6-xen +Architecture: i386 +Section: libs +Priority: extra +Pre-Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: Shared libraries [Xen version] + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C + library and the standard math library, as well as many others. + . + This set of libraries is optimized for the Xen hypervisor, and will be + selected instead when running under Xen. + +Package: libc0.1-i686 +Architecture: kfreebsd-i386 +Section: libs +Priority: extra +Pre-Depends: libc0.1 (= ${Source-Version}) +Description: GNU C Library: Shared libraries [i686 optimized] + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C + library and the standard math library, as well as many others. + . + This set of libraries is optimized for i686 machines, and will only be + used on an i686 class CPU (check the output of `uname -m'). This includes + Pentium Pro, Pentium II/III/IV, Celeron CPU's and similar class CPU's + (including clones such as AMD Athlon/Opteron, VIA C3 Nehemiah, but not VIA + C3 Ezla). + . + WARNING: Some third-party binaries may not work well with these libraries. + Most notably, IBM's JDK. If you experience problems with such + applications, you will need to remove this package. + --- glibc-2.5.orig/debian/control.in/s390x +++ glibc-2.5/debian/control.in/s390x @@ -0,0 +1,22 @@ +Package: libc6-s390x +Architecture: s390 +Section: libs +Priority: optional +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: 64bit Shared libraries for IBM zSeries + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for zSeries systems. + +Package: libc6-dev-s390x +Architecture: s390 +Section: libdevel +Priority: optional +Provides: lib64c-dev +Depends: libc6-s390x (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 64bit Development Libraries for IBM zSeries + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 64bit version of the + library, meant for zSeries systems. + --- glibc-2.5.orig/debian/control.in/ppc64 +++ glibc-2.5/debian/control.in/ppc64 @@ -0,0 +1,22 @@ +Package: libc6-ppc64 +Architecture: powerpc +Section: libs +Priority: optional +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: 64bit Shared libraries for PowerPC64 + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for PowerPC64 systems. + +Package: libc6-dev-ppc64 +Architecture: powerpc +Section: libdevel +Priority: optional +Provides: lib64c-dev +Depends: libc6-ppc64 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 64bit Development Libraries for PowerPC64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 64bit version of the + library, meant for PowerPC64 systems. + --- glibc-2.5.orig/debian/control.in/mips64 +++ glibc-2.5/debian/control.in/mips64 @@ -0,0 +1,22 @@ +Package: libc6-mips64 +Architecture: mips mipsel +Section: base +Priority: optional +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: 64bit Shared libraries for MIPS64 + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the 64bit version + of the library, meant for MIPS64 systems. + +Package: libc6-dev-mips64 +Architecture: mips mipsel +Section: libdevel +Priority: optional +Provides: lib64c-dev +Depends: libc6-mips64 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: 64bit Development Libraries for MIPS64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the 64bit version of the + library, meant for MIPS64 systems. + --- glibc-2.5.orig/debian/control.in/mipsn32 +++ glibc-2.5/debian/control.in/mipsn32 @@ -0,0 +1,22 @@ +Package: libc6-mipsn32 +Architecture: mips mipsel +Section: base +Priority: optional +Depends: libc6 (= ${Source-Version}) +Description: GNU C Library: n32 Shared libraries for MIPS64 + This package includes shared versions of the standard C library and the + standard math library, as well as many others. This is the n32 version + of the library, meant for MIPS64 systems. + +Package: libc6-dev-mipsn32 +Architecture: mips mipsel +Section: libdevel +Priority: optional +Provides: libn32c-dev +Depends: libc6-mipsn32 (= ${Source-Version}), libc6-dev (= ${Source-Version}) +Recommends: gcc-multilib +Description: GNU C Library: n32 Development Libraries for MIPS64 + Contains the symlinks and object files needed to compile and link programs + which use the standard C library. This is the n32 version of the + library, meant for MIPS64 systems. + --- glibc-2.5.orig/debian/control.in/libnss-dns-udeb +++ glibc-2.5/debian/control.in/libnss-dns-udeb @@ -0,0 +1,13 @@ +Package: libnss-dns-udeb +XC-Package-Type: udeb +Architecture: any +Section: debian-installer +Priority: extra +Description: GNU C Library: NSS helper for DNS - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains the DNS NSS helper needed for the Debian installer. + Do not install it on a normal system. + --- glibc-2.5.orig/debian/control.in/libnss-files-udeb +++ glibc-2.5/debian/control.in/libnss-files-udeb @@ -0,0 +1,13 @@ +Package: libnss-files-udeb +XC-Package-Type: udeb +Architecture: any +Section: debian-installer +Priority: extra +Description: GNU C Library: NSS helper for files - udeb + Contains the standard libraries that are used by nearly all programs on + the system. This package includes shared versions of the standard C library + and the standard math library, as well as many others. + . + This package contains the files NSS helper needed for the Debian installer. + Do not install it on a normal system. + --- glibc-2.5.orig/debian/watch +++ glibc-2.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +ftp://ftp.gnu.org/gnu/glibc/glibc-([\d\.]+)\.tar\.gz debian uupdate --- glibc-2.5.orig/debian/copyright +++ glibc-2.5/debian/copyright @@ -0,0 +1,167 @@ +This is the Debian prepackaged version of the GNU C Library version +2.3.x + +It was put together by the GNU Libc Maintainers +from the following sources: + + + + + + +Copyright (C) 1991,92,93,94,95,96,97,98,99,2000,2001,2002,2003,2004,2005,2006 Free Software Foundation, Inc. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, write to the Free + Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + 02110-1301 USA + +On Debian systems, the complete text of the GNU Library +General Public License can be found in `/usr/share/common-licenses/LGPL-2.1'. + +Additional Details (the following is taken from `info libc +Contributors' which also contains a list of credits): + + All code incorporated from 4.4 BSD is under the following + copyright: + + Copyright (C) 1991 Regents of the University of California. + All rights reserved. + + Redistribution and use in source and binary forms, with or + without modification, are permitted provided that the + following conditions are met: + + 1. Redistributions of source code must retain the above + copyright notice, this list of conditions and the + following disclaimer. + + 2. Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the + following disclaimer in the documentation and/or other + materials provided with the distribution. + + 3. Neither the name of the University nor the names of its + contributors may be used to endorse or promote products + derived from this software without specific prior + written permission. + + THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT + SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; + OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY + OF SUCH DAMAGE. + + * The random number generation functions `random', `srandom', + `setstate' and `initstate', which are also the basis for the + `rand' and `srand' functions, were written by Earl T. Cohen for + the University of California at Berkeley and are copyrighted by the + Regents of the University of California. They have undergone minor + changes to fit into the GNU C library and to fit the ISO C + standard, but the functional code is Berkeley's. + + * The Internet resolver code is taken directly from BIND 4.9.5, + which is under both the Berkeley copyright above and also: + + Portions Copyright (C) 1993 by Digital Equipment Corporation. + + Permission to use, copy, modify, and distribute this software + for any purpose with or without fee is hereby granted, + provided that the above copyright notice and this permission + notice appear in all copies, and that the name of Digital + Equipment Corporation not be used in advertising or publicity + pertaining to distribution of the document or software + without specific, written prior permission. + + THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. + DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, + INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND + FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT CORPORATION BE + LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL + DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, + DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION + WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + * The code to support Sun RPC is taken verbatim from Sun's + RPCSRC-4.0 distribution, and is covered by this copyright: + + Copyright (C) 1984, Sun Microsystems, Inc. + + Sun RPC is a product of Sun Microsystems, Inc. and is + provided for unrestricted use provided that this legend is + included on all tape media and as a part of the software + program in whole or part. Users may copy or modify Sun RPC + without charge, but are not authorized to license or + distribute it to anyone else except as part of a product or + program developed by the user. + + SUN RPC IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND + INCLUDING THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND + FITNESS FOR A PARTICULAR PURPOSE, OR ARISING FROM A COURSE OF + DEALING, USAGE OR TRADE PRACTICE. + + Sun RPC is provided with no support and without any + obligation on the part of Sun Microsystems, Inc. to assist in + its use, correction, modification or enhancement. + + SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT + TO THE INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY + PATENTS BY SUN RPC OR ANY PART THEREOF. + + In no event will Sun Microsystems, Inc. be liable for any + lost revenue or profits or other special, indirect and + consequential damages, even if Sun has been advised of the + possibility of such damages. + + Sun Microsystems, Inc. + 2550 Garcia Avenue + Mountain View, California 94043 + + * Some of the support code for Mach is taken from Mach 3.0 by CMU, + and is under the following copyright terms: + + Mach Operating System + Copyright (C) 1991,1990,1989 Carnegie Mellon University + All Rights Reserved. + + Permission to use, copy, modify and distribute this software + and its documentation is hereby granted, provided that both + the copyright notice and this permission notice appear in all + copies of the software, derivative works or modified + versions, and any portions thereof, and that both notices + appear in supporting documentation. + + CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS + IS" CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF + ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF + THIS SOFTWARE. + + Carnegie Mellon requests users of this software to return to + + Software Distribution Coordinator + School of Computer Science + Carnegie Mellon University + Pittsburgh PA 15213-3890 + + or any improvements or + extensions that they make and grant Carnegie Mellon the + rights to redistribute these changes. --- glibc-2.5.orig/debian/debhelper.in/glibc-doc.doc-base +++ glibc-2.5/debian/debhelper.in/glibc-doc.doc-base @@ -0,0 +1,24 @@ +Document: glibc-manual +Title: The GNU C Library Reference Manual +Author: Sandra Loosemore with Richard M. Stallman, Roland McGrath, + Andrew Oram, and Ulrich Drepper +Abstract: The GNU C Library Reference Manual + The GNU C library, described in this document, defines all of the + library functions that are specified by the ISO C standard, as well as + additional features specific to POSIX and other derivatives of the Unix + operating system, and extensions specific to the GNU system. + . + The purpose of this manual is to tell you how to use the facilities + of the GNU library. We have mentioned which features belong to which + standards to help you identify things that are potentially non-portable + to other systems. But the emphasis in this manual is not on strict + portability. +Section: Apps/Programming + +Format: info +Index: /usr/share/info/libc.info.gz +Files: /usr/share/info/libc.* + +Format: HTML +Index: /usr/share/doc/glibc-doc/html/index.html +Files: /usr/share/doc/glibc-doc/html/* --- glibc-2.5.orig/debian/debhelper.in/libc-otherbuild.postrm +++ glibc-2.5/debian/debhelper.in/libc-otherbuild.postrm @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +if [ "$1" = "remove" ]; then + # /etc/ld.so.nohwcap code: NOHWCAP +fi + +#DEBHELPER# + +exit 0 --- glibc-2.5.orig/debian/debhelper.in/glibc-doc.docs +++ glibc-2.5/debian/debhelper.in/glibc-doc.docs @@ -0,0 +1 @@ +DEB_SRCDIR/ChangeLog* --- glibc-2.5.orig/debian/debhelper.in/libc.install +++ glibc-2.5/debian/debhelper.in/libc.install @@ -0,0 +1,26 @@ +debian/tmp-libc/lib/*.so* lib +debian/tmp-libc/usr/lib/gconv/*.so usr/lib/gconv +debian/tmp-libc/usr/lib/gconv/gconv-modules usr/lib/gconv +debian/tmp-libc/usr/bin/iconv usr/bin +debian/tmp-libc/usr/bin/getent usr/bin +debian/tmp-libc/usr/bin/getconf usr/bin +debian/tmp-libc/usr/bin/catchsegv usr/bin +debian/tmp-libc/usr/bin/tzselect usr/bin +debian/tmp-libc/usr/bin/ldd usr/bin +debian/tmp-libc/usr/sbin/zdump usr/bin +debian/tmp-libc/usr/sbin/rpcinfo usr/bin + +debian/tmp-libc/usr/sbin/zic usr/sbin +debian/tmp-libc/usr/sbin/iconvconfig usr/sbin + +debian/tmp-libc/sbin/ldconfig sbin + +debian/tmp-libc/usr/lib/pt_chown usr/lib + +debian/tmp-libc/lib/*-*-gnu*/ lib +debian/tmp-libc/usr/lib/*-*-gnu*/ usr/lib + +debian/tmp-libc/etc/ld.so.conf.d /etc +build-tree/glibc-2.5/posix/gai.conf /etc + +log-test-*-libc usr/share/doc/LIBC --- glibc-2.5.orig/debian/debhelper.in/glibc-doc.info +++ glibc-2.5/debian/debhelper.in/glibc-doc.info @@ -0,0 +1 @@ +debian/tmp-libc/usr/share/info/libc.info* --- glibc-2.5.orig/debian/debhelper.in/libc.postinst +++ glibc-2.5/debian/debhelper.in/libc.postinst @@ -0,0 +1,320 @@ +#!/bin/sh +set -e +export LC_ALL=C + +type=$1 +preversion=$2 + +package_name() +{ + echo LIBC +} + +# Borrowed from sysvinit's postinst. +# Function like update-rc.d but simpler & faster. +# Usage: updatercd basename start|stop NN runlevel . +# +# Now we use the real update-rc.d, so now this function should +# be equivalent to /usr/sbin/update-rc.d. +# +updatercd() { + + if [ ! -f /etc/init.d/$1 ] + then + return + fi + + if [ -x /usr/sbin/update-rc.d ] + then + update-rc.d "$@" > /dev/null + return $? + fi + + base=$1 + shift + while [ "$1" != "" ] + do + if [ "$1" = stop ] + then + tlet=K + else + tlet=S + fi + lev=$2 + shift 2 + while [ "$1" != "." ] + do + cd /etc/rc$1.d + tmp="`echo $tlet??$base`" + case "$tmp" in + "$tlet??$base") + # Not present yet. + ln -s ../init.d/$base $tlet$lev$base + ;; + *) + # Already present. + ;; + esac + shift + done + shift + done +} + +# element() is a helper function for file-rc: +element() { + local element list IFS + + element="$1" + + [ "$2" = "in" ] && shift + list="$2" + [ "$list" = "-" ] && return 1 + [ "$list" = "*" ] && return 0 + + IFS="," + set -- $list + case $element in + "$1"|"$2"|"$3"|"$4"|"$5"|"$6"|"$7"|"$8"|"$9") + return 0 + esac + return 1 +} + +# filerc (runlevel, service) returns /etc/init.d/service, if service is +# running in $runlevel: +filerc() { + local runlevel basename + runlevel=$1 + basename=$2 + while read LINE + do + case $LINE in + \#*|"") continue + esac + + set -- $LINE + SORT_NO="$1"; STOP="$2"; START="$3"; CMD="$4" + [ "$CMD" = "/etc/init.d/$basename" ] || continue + + if element "$runlevel" in "$START" || element "S" in "$START" + then + echo "/etc/init.d/$basename" + return 0 + fi + done < /etc/runlevel.conf + echo "" +} + +checkpkgver () { + local status pkg + pkg=$1 + status=$(dpkg -s $pkg 2>/dev/null | grep ^Status: | sed -e 's/^Status: \(.*\) \(.*\) \(.*\)/\3/g') + if [ -n "$status" ] && [ "$status" != "not-installed" ] && [ "$status" != "config-files" ]; then + echo $(dpkg -s $pkg 2>/dev/null | grep ^Version: | sed -e 's/^Version: *//'); + fi +} + +if [ "$type" = "configure" ] +then + # Handle upgrades for libdb.so.3. We do this before calling ldconfig, + # since it will create a symlink for us. Just move everything over. We + # use `cat' because I feel it is simpler and safer. Make sure that + # libdb.so.3 is either a symlink, or non-existent, just in case + # something weird happened and the new libdb2 is unpacked before we + # get here. + if [ -e /lib/libdb.so.3.old ]; then + if [ -L /lib/libdb.so.3 ] || [ ! -e /lib/libdb.so.3 ]; then + rm -f /lib/libdb.so.3 + cat /lib/libdb.so.3.old > /lib/libdb.so.3 + fi + rm -f /lib/libdb.so.3.old + fi + + # Add support for /etc/ld.so.conf.d + if [ -e /etc/ld.so.conf ]; then + [ -z "$(tail -n 1 /etc/ld.so.conf)" ] || echo >> /etc/ld.so.conf + else + touch /etc/ld.so.conf + fi + if ! grep -q '^include /etc/ld.so.conf.d/.*\.conf$' /etc/ld.so.conf ; then + echo 'include /etc/ld.so.conf.d/*.conf' >> /etc/ld.so.conf + fi + + # We don't use a registry anymore, remove the old file + rm -f /etc/ld.so.hwcappkgs + + # /etc/ld.so.nohwcap code: NOHWCAP + + if [ ! -z "$preversion" ]; then + if [ ! -d /var/mail ] && [ ! -L /var/mail ]; then + ln -sf spool/mail /var/mail + fi + if dpkg --compare-versions "$preversion" lt 2.3.5-1; then + echo -n "Checking for services that may need to be restarted..." + + check="nis smail sendmail exim exim4-base ssh netbase" + check="$check ssh-nonfree postfix-tls wu-ftpd boa cron postfix" + check="$check wu-ftpd-academ vsftpd slapd openldapd wwwoffle" + check="$check cupsys lprng lpr lpr-ppd autofs snmpd ssh-krb5" + check="$check courier-authdaemon mysql-server spamassassin" + check="$check apache apache-ssl apache-perl apache2-common" + check="$check proftpd proftpd-ldap proftpd-mysql proftpd-pgsql" + check="$check dovecot-common cucipop rsync samba saslauthd" + check="$check webmin dropbear" + # Only get the ones that are installed, and configured + check=$(dpkg -s $check 2> /dev/null | egrep '^Package:|^Status:' | awk '{if ($1 ~ /^Package:/) { package=$2 } else if ($0 ~ /^Status: .* installed$/) { print package }}') + # apache2 ships its init script in apache2-common, but the + # script is apache2 + check=$(echo $check | sed 's/apache2-common/apache2/g') + # exim4 ships its init script in exim4-base, but the script + # is exim4 + check=$(echo $check | sed 's/exim4-base/exim4/g') + # The name of proftpd-{ldap,mysql,pgsql} init script is + # same as "proftpd". + check=$(echo $check | sed 's/proftpd-.*/proftpd/g') + # dovecot-common ships its init script, but the + # script name is dovecot for dovecot-{imapd,pop3d}. + check=$(echo $check | sed 's/dovecot-common/dovecot/g') + # lpr and lpr-ppd ship its init script, but the + # script name is lpd and lpd-ppd. The inserted space is + # intentional to not replace lprng. + check=$(echo $check | sed 's/lpr /lpd /g') + check=$(echo $check | sed 's/lpr-ppd /lpd-ppd /g') + # We have to list inetd and atd explicitly, because the packages + # have different names to their init scripts + check="$check inetd atd" + rl=$(runlevel | awk '{print $2}') + for service in $check; do + if [ -f /usr/share/file-rc/rc ] || [ -f /usr/lib/file-rc/rc ] && [ -f /etc/runlevel.conf ]; then + idl=$(filerc $rl $service) + else + idl=$(ls /etc/rc${rl}.d/S??${service} 2> /dev/null | head -1) + fi + if [ -n "$idl" ] && [ -x $idl ]; then + services="$service $services" + fi + done + echo "done." + if [ -n "$services" ]; then + echo + echo "Name Service Switch update in the C Library: post-installation question." + echo + echo "Running services and programs that are using NSS need to be restarted," + echo "otherwise they might not be able to do lookup or authentication any more" + echo "(for services such as ssh, this can affect your ability to login)." + echo "Note: restarting sshd/telnetd should not affect any existing connections." + echo + echo "The services detected are: " + echo " $services" + echo + echo "If other services have begun to fail mysteriously after this upgrade, it is" + echo "probably necessary to restart them too. We recommend that you reboot your" + echo "machine after the upgrade to avoid NSS-related troubles." + echo + frontend=`echo "$DEBIAN_FRONTEND" | tr '[:upper:]' '[:lower:]'` + if [ "$frontend" = noninteractive ]; then + echo "Non-interactive mode, restarting services" + answer=yes + else + echo -n "Do you wish to restart services? [Y/n] " + read answer + case $answer in + Y*|y*) answer=yes ;; + N*|n*) answer=no ;; + *) answer=yes ;; + esac + fi + echo + if [ "$answer" = yes ] && [ "$services" != "" ]; then + echo "Restarting services possibly affected by the upgrade:" + failed="" + for service in $services; do + if [ -f /usr/share/file-rc/rc ] || [ -f /usr/lib/file-rc/rc ] && [ -f /etc/runlevel.conf ]; then + idl=$(filerc $rl $service) + else + idl=$(ls /etc/rc${rl}.d/S??${service} 2> /dev/null | head -1) + fi + echo -n " $service: stopping..." + $idl stop > /dev/null 2>&1 || true + sleep 2 + echo -n "starting..." + if $idl start > /dev/null 2>&1; then + echo "done." + else + echo "FAILED! ($?)" + failed="$service $failed" + fi + done + echo + if [ -n "$failed" ]; then + # Ruh roh, George + echo "The following services failed to start: $failed" + echo + echo "You will need to start these manually by running \`/etc/init.d/ start'" + echo "If the service still fails to start, you may need to file a bug on" + echo "$(package_name) or the service involved." + if [ "$DEBIAN_FRONTEND" != noninteractive ]; then + echo + echo -n "Press ENTER to continue: " + read foo + fi + else + echo "Services restarted successfully." + fi + echo + fi + fi + fi # end upgrading and $preversion lt 2.3.5-1 + fi # Upgrading + + # Ubuntu change. Do not do kernel version detection at startup. + update-rc.d -f glibc.sh remove >/dev/null 2>&1 + +# # DO NOT FOLLOW THIS EXAMPLE IN OTHER PACKAGES +# updatercd glibc.sh start 01 S . +# if [ -x /usr/sbin/invoke-rc.d ]; then +# invoke-rc.d glibc.sh start +# else +# /etc/init.d/glibc.sh 2>/dev/null || true +# fi + + # Generate cache file /usr/lib/gconv/gconv-modules.cache + iconvconfig || true + +fi + +if [ "`uname -s`" = Linux ]; then +# +# Upgrade init if possible. There was a bug in all versions +# up to and including 2.75-4, which didn't affect i386 but +# did affect most other architectures. +# +sysvinitver="`dpkg -s sysvinit 2>/dev/null | grep ^Version: | sed -e 's/^Version: *//'`" +case "`uname -m`" in + i?86) + badsysvinitver="2.[0-6]*|2.7[0-3]*" + ;; + *) + badsysvinitver="2.[0-6]*|2.7[0-4]*|2.75-*" + ;; +esac +# Black magic. If we are in a chroot, then /proc/1/exe will not resolve to +# a file (will return EPERM). This keeps us from breaking things in +# debootstrap, and the like. +case "$sysvinitver" in + $badsysvinitver) + ;; + *) + if [ "$(stat -c %d/%i /)" = "$(stat -Lc %d/%i /proc/1/root 2>/dev/null)" ]; then + # the devicenumber/inode pair of / is the same as that of /sbin/init's + # root, so we're *not* in a chroot + (init u ; sleep 1) + fi + ;; +esac +fi + +#DEBHELPER# + +exit 0 --- glibc-2.5.orig/debian/debhelper.in/glibc-doc.install +++ glibc-2.5/debian/debhelper.in/glibc-doc.install @@ -0,0 +1,2 @@ +DEB_SRCDIR/manual/libc/*.html usr/share/doc/glibc-doc/html + --- glibc-2.5.orig/debian/debhelper.in/libc.preinst +++ glibc-2.5/debian/debhelper.in/libc.preinst @@ -0,0 +1,218 @@ +#!/bin/sh +set -e +export LC_ALL=C + +if [ "$1" = upgrade ] +then + if dpkg --compare-versions "$2" le 2.2.2-4 && test -e /lib/libdb.so.3; then + # Make upgrades to newer libdb.so.3 easier + cat /lib/libdb.so.3 > /lib/libdb.so.3.old + fi + if dpkg --compare-versions "$2" le 2.1.1-0.1; then + if [ -f /var/run/utmpd.pid ]; then + if kill -s TERM `cat /var/run/utmpd.pid` > /dev/null 2>&1 + then + if [ -f /var/run/utmp ]; then + cp /dev/null /var/run/utmp + if grep '^utmp:' /etc/group; then + chown root:utmp /var/run/utmp + chmod 664 /var/run/utmp + else + chown root:root /var/run/utmp + chmod 644 /var/run/utmp + fi + fi + if [ -f /var/log/wtmp ]; then + savelog /var/log/wtmp + touch /var/log/wtmp + if grep '^utmp:' /etc/group; then + chown root:utmp /var/log/wtmp + chmod 664 /var/log/wtmp + else + chown root:root /var/log/wtmp + chmod 644 /var/log/wtmp + fi + fi + rm -f /etc/init.d/utmpd + update-rc.d utmpd remove > /dev/null + fi + fi + if [ -f /var/run/utmpx ]; then rm -f /var/run/utmpx; fi + if [ -f /var/log/wtmpx ]; then rm -f /var/log/wtmpx*; fi + if [ -e /var/run/utmpd.ro ]; then rm -f /var/run/utmpd.ro; fi + if [ -e /var/run/utmpd.rw ]; then rm -f /var/run/utmpd.rw; fi + fi + + # NSS authentication trouble guard + if dpkg --compare-versions $2 lt 2.3.5-1; then + check="xdm kdm gdm postgresql xscreensaver" + # Only get the ones that are installed, and configured + service=$(dpkg -s $check 2> /dev/null | awk 'BEGIN{RS="\n\n";FS="\n"}{if ( $2 ~ /Status: .* installed$/ ) { print $1 } }' | cut -f 2 -d ' ') + + echo + echo "Name Service Switch update in the C Library: pre-installation question." + echo + echo "Running services and programs that are using NSS need to be restarted," + echo "otherwise they might not be able to do lookup or authentication any more." + echo "The installation process is able to restart some services (such as ssh or" + echo "telnetd), but other programs cannot be restarted automatically. One such" + echo "program that needs manual stopping and restart after the glibc upgrade by" + echo "yourself is xdm - because automatic restart might disconnect your active" + echo "X11 sessions." + echo + echo "Known packages that need to be stopped before the glibc upgrade are:" + echo " $check" + echo + + if [ -n "$service" ]; then + echo "This script detected the following installed services which must be" + echo "stopped before the upgrade:" + echo " $service" + else + echo "This script did not detect any installed services which need to be" + echo "stopped." + fi + echo + echo "If you want to interrupt the upgrade now and continue later, please" + echo "answer No to the question below." + echo + frontend=`echo "$DEBIAN_FRONTEND" | tr '[:upper:]' '[:lower:]'` + if [ "$frontend" = noninteractive ]; then + echo "Non-interactive mode, upgrade glibc forcibly" + answer=yes + else + echo -n "Do you want to upgrade glibc now? [Y/n] " + read answer + case $answer in + Y*|y*) answer=yes ;; + N*|n*) answer=no ;; + *) answer=yes ;; + esac + fi + echo + if [ "$answer" = no ]; then + echo "Stopped glibc upgrade. Please retry the upgrade after you have" + echo "checked or stopped services by hand." + exit 1 + fi + fi + + # This will keep us from using hwcap libs (optimized) during an + # upgrade. + touch /etc/ld.so.nohwcap +fi + +# Sanity check. +# If there are versions of glibc outside of the normal installation +# location (/lib, /lib64, etc.) then things may break very badly +# as soon as ld.so is replaced by a new version. This check is not +# foolproof, but it's pretty accurate. This script ignores libraries +# with different sonames, and libraries incompatible with the +# to-be-installed ld.so. + +check_dirs () { + for dir in $*; do + # Follow symlinks + dirlink=$(readlink -f $dir) + [ -n "$dirlink" ] && dir=$dirlink + + # Handle /lib in LD_LIBRARY_PATH. + if expr $dir : "/lib.*" > /dev/null; then + continue + fi + # Skip ia32-libs package on ia64, and similar libraries + # (not sure why these get added to /etc/ld.so.conf) + if expr $dir : "/emul/.*" > /dev/null; then + continue + fi + if test -d $dir; then + output=$(ls $dir | egrep '^(C_SO|M_SO|PTHREAD_SO|RT_SO|DL_SO)$' 2>/dev/null) + + if test -n "$output"; then + # See if the found libraries are compatible with the system ld.so; + # if they aren't, they'll be ignored. Check e_ident, e_type (which + # will just be ET_DYN), and e_machine. If a match is found, there + # is a risk of breakage. + for lib in $output + do + if test -f "$dir/$lib"; then + libbytes=`head -c 20 $dir/$lib | od -c` + if test "$ldbytes" = "$libbytes"; then + echo "Matching libraries: $dir/$lib" + return 0 + fi + fi + done + fi + fi + done + return 1 +} + +if [ "$1" != abort-upgrade ] +then + ldbytes=`head -c 20 RTLD | od -c` + dirs="/lib32 /lib64 /usr/local/lib /usr/local/lib32 /usr/local/lib64" + if ! test -L /usr; then + dirs="$dirs /usr/lib /usr/lib32 /usr/lib64" + fi + if check_dirs $dirs; then + echo + echo "A copy of glibc was found in an unexpected directory." + echo "It is not safe to upgrade the C library in this situation;" + echo "please remove that copy of the C library and try again." + echo "Please check: https://launchpad.net/bugs/81125" +# exit 1 + fi + + if test -n "$LD_LIBRARY_PATH"; then + dirs=$(echo $LD_LIBRARY_PATH | sed 's/:/ /') + if check_dirs $dirs; then + echo + echo "Another copy of the C library was found via LD_LIBRARY_PATH." + echo "It is not safe to upgrade the C library in this situation;" + echo "please remove the directory from LD_LIBRARY_PATH and try again." + echo "Please check: https://launchpad.net/bugs/81125" +# exit 1 + fi + fi + if test -e /etc/ld.so.conf; then + dirs=$(echo $(cat /etc/ld.so.conf)) + if check_dirs $dirs; then + echo + echo "Another copy of the C library was found via /etc/ld.so.conf." + echo "It is not safe to upgrade the C library in this situation;" + echo "please remove the directory from /etc/ld.so.conf and try again." + echo "Please check: https://launchpad.net/bugs/81125" +# exit 1 + fi + fi + for i in ld-2.3.2.so libc-2.3.2.so ld-2.3.6.so libc-2.3.6.so ; do + if [ -e /lib/tls/$i ] && ! dpkg-query -L LIBC 2>/dev/null | grep -q /lib/tls/$i ; then + echo + echo "A non-dpkg owned copy of the C library was found in /lib/tls." + echo "It is not safe to upgrade the C library in this situation;" + echo "please remove that copy of the C library and try again." + exit 1 + fi + done + if [ -n "$LD_ASSUME_KERNEL" ] ; then + if dpkg --compare-versions "$LD_ASSUME_KERNEL" le "2.6.1"; then + echo + echo "POSIX threads library NPTL requires kernel version 2.6.1" + echo "or later. It appears that LD_ASSUME_KERNEL is set to $LD_ASSUME_KERNEL." + echo "It is not safe to upgrade the C library in this situation;" + echo "Please unset this environment variable and try again." + exit 1 + fi + fi +fi + +if [ "$1" != abort-upgrade ] && [ "`uname -s`" = Linux ] +then + # glibc kernel version check: KERNEL_VERSION_CHECK +fi + +#DEBHELPER# + +exit 0 --- glibc-2.5.orig/debian/debhelper.in/glibc-doc.links +++ glibc-2.5/debian/debhelper.in/glibc-doc.links @@ -0,0 +1,38 @@ +usr/share/man/man3/pthread_attr_init.3.gz usr/share/man/man3/pthread_attr_destroy.3.gz +usr/share/man/man3/pthread_attr_init.3.gz usr/share/man/man3/pthread_attr_setdetachstate.3.gz +usr/share/man/man3/pthread_attr_init.3.gz usr/share/man/man3/pthread_attr_getdetachstate.3.gz +usr/share/man/man3/pthread_attr_init.3.gz usr/share/man/man3/pthread_attr_setschedpolicy.3.gz +usr/share/man/man3/pthread_attr_init.3.gz usr/share/man/man3/pthread_attr_getschedpolicy.3.gz +usr/share/man/man3/pthread_attr_init.3.gz usr/share/man/man3/pthread_attr_setschedparam.3.gz +usr/share/man/man3/pthread_attr_init.3.gz usr/share/man/man3/pthread_attr_getschedparam.3.gz +usr/share/man/man3/pthread_attr_init.3.gz usr/share/man/man3/pthread_attr_setinheritsched.3.gz +usr/share/man/man3/pthread_attr_init.3.gz usr/share/man/man3/pthread_attr_getinheritsched.3.gz +usr/share/man/man3/pthread_attr_init.3.gz usr/share/man/man3/pthread_attr_setscope.3.gz +usr/share/man/man3/pthread_attr_init.3.gz usr/share/man/man3/pthread_attr_getscope.3.gz +usr/share/man/man3/pthread_cancel.3.gz usr/share/man/man3/pthread_setcanceltype.3.gz +usr/share/man/man3/pthread_cancel.3.gz usr/share/man/man3/pthread_setcancelstate.3.gz +usr/share/man/man3/pthread_cancel.3.gz usr/share/man/man3/pthread_testcancel.3.gz +usr/share/man/man3/pthread_cleanup_push.3.gz usr/share/man/man3/pthread_cleanup_pop.3.gz +usr/share/man/man3/pthread_cleanup_push.3.gz usr/share/man/man3/pthread_cleanup_push_defer_np.3.gz +usr/share/man/man3/pthread_cleanup_push.3.gz usr/share/man/man3/pthread_cleanup_pop_restore_np.3.gz +usr/share/man/man3/pthread_condattr_init.3.gz usr/share/man/man3/pthread_condattr_destroy.3.gz +usr/share/man/man3/pthread_cond_init.3.gz usr/share/man/man3/pthread_cond_signal.3.gz +usr/share/man/man3/pthread_cond_init.3.gz usr/share/man/man3/pthread_cond_broadcast.3.gz +usr/share/man/man3/pthread_cond_init.3.gz usr/share/man/man3/pthread_cond_wait.3.gz +usr/share/man/man3/pthread_cond_init.3.gz usr/share/man/man3/pthread_cond_timedwait.3.gz +usr/share/man/man3/pthread_cond_init.3.gz usr/share/man/man3/pthread_cond_destroy.3.gz +usr/share/man/man3/pthread_key_create.3.gz usr/share/man/man3/pthread_getspecific.3.gz +usr/share/man/man3/pthread_key_create.3.gz usr/share/man/man3/pthread_key_delete.3.gz +usr/share/man/man3/pthread_key_create.3.gz usr/share/man/man3/pthread_setspecific.3.gz +usr/share/man/man3/pthread_mutexattr_init.3.gz usr/share/man/man3/pthread_mutexattr_destroy.3.gz +usr/share/man/man3/pthread_mutexattr_init.3.gz usr/share/man/man3/pthread_mutexattr_settype.3.gz +usr/share/man/man3/pthread_mutexattr_init.3.gz usr/share/man/man3/pthread_mutexattr_gettype.3.gz +usr/share/man/man3/pthread_mutexattr_setkind_np.3.gz usr/share/man/man3/pthread_mutexattr_getkind_np.3.gz +usr/share/man/man3/pthread_mutex_init.3.gz usr/share/man/man3/pthread_mutex_lock.3.gz +usr/share/man/man3/pthread_mutex_init.3.gz usr/share/man/man3/pthread_mutex_trylock.3.gz +usr/share/man/man3/pthread_mutex_init.3.gz usr/share/man/man3/pthread_mutex_unlock.3.gz +usr/share/man/man3/pthread_mutex_init.3.gz usr/share/man/man3/pthread_mutex_destroy.3.gz +usr/share/man/man3/pthread_setschedparam.3.gz usr/share/man/man3/pthread_getschedparam.3.gz +usr/share/man/man3/pthread_sigmask.3.gz usr/share/man/man3/pthread_kill.3.gz +usr/share/man/man3/pthread_sigmask.3.gz usr/share/man/man3/sigwait.3.gz +usr/share/doc/glibc-doc/html/libc.html usr/share/doc/glibc-doc/html/index.html --- glibc-2.5.orig/debian/debhelper.in/libc.dirs +++ glibc-2.5/debian/debhelper.in/libc.dirs @@ -0,0 +1,2 @@ +etc/init.d +etc/ld.so.conf.d --- glibc-2.5.orig/debian/debhelper.in/glibc-doc.manpages +++ glibc-2.5/debian/debhelper.in/glibc-doc.manpages @@ -0,0 +1 @@ +DEB_SRCDIR/linuxthreads/man/pthread*.man --- glibc-2.5.orig/debian/debhelper.in/libc-dbg.install +++ glibc-2.5/debian/debhelper.in/libc-dbg.install @@ -0,0 +1 @@ +debian/tmp-libc/lib/*.so* usr/lib/debug --- glibc-2.5.orig/debian/debhelper.in/libc.manpages +++ glibc-2.5/debian/debhelper.in/libc.manpages @@ -0,0 +1,11 @@ +debian/local/manpages/catchsegv.1 +debian/local/manpages/getent.1 +debian/local/manpages/getconf.1 +debian/local/manpages/iconv.1 +debian/local/manpages/iconvconfig.8 +debian/local/manpages/ldconfig.8 +debian/local/manpages/ldd.1 +debian/local/manpages/rpcinfo.8 +debian/local/manpages/tzselect.1 +debian/local/manpages/zdump.1 +debian/local/manpages/zic.8 --- glibc-2.5.orig/debian/debhelper.in/locales.postinst +++ glibc-2.5/debian/debhelper.in/locales.postinst @@ -0,0 +1,82 @@ +#! /bin/sh +set -e + +LG="/etc/locale.gen" +EE="/etc/default/locale" + +if [ "$1" = configure ]; then + + . /usr/share/debconf/confmodule + db_version 2.0 + + db_get locales/locales_to_be_generated && SELECTED_LOCALES=$RET + db_get locales/default_environment_locale && SELECTED="$RET" + + if [ -n "$SELECTED_LOCALES" ]; then + if [ "$SELECTED_LOCALES" = "All locales" ]; then + [ -e $LG ] && rm -f $LG + ln -s /usr/share/i18n/SUPPORTED $LG + else + [ -L $LG ] && [ "$(readlink $LG)" = /usr/share/i18n/SUPPORTED ] && rm -f $LG + if [ -e $LG ]; then + # Comment previous defined locales + LC_ALL=C sed -e 's/^[a-zA-Z]/#&/' $LG > $LG.tmp || true + mv -f $LG.tmp $LG + last=`tail -n 1 "$LG"` + if test -n "$last"; then echo >> $LG; fi + else + cat > $LG << EOF +# This file lists locales that you wish to have built. You can find a list +# of valid supported locales at /usr/share/i18n/SUPPORTED. Other +# combinations are possible, but may not be well tested. If you change +# this file, you need to rerun locale-gen. +# + +EOF + fi + list=`echo $SELECTED_LOCALES | sed -e 's/, /,/g'` + save_IFS=$IFS + IFS=, + for locale in $list; do + if grep -q "^$locale *\$" $LG; then + # This locale has already been inserted, do nothing + : + elif grep -q "^#$locale *\$" $LG; then + # Uncomment previous defined locales + sed -e "s,#$locale *\$,$locale," $LG > $LG.tmp || true + mv -f $LG.tmp $LG + else + # Add a new locale + echo $locale >> $LG + fi + done + IFS=$save_IFS + fi + else + if [ -L $LG ]; then + rm -f $LG + elif [ -e $LG ]; then + LC_ALL=C sed -e 's/^[a-zA-Z]/#&/' $LG > $LG.tmp || true + mv -f $LG.tmp $LG + fi + fi + # Update requested locales if locales-all is not installed + if [ -f /usr/lib/locales-all/supported.tar.gz ] ; then + echo "locales-all installed, skipping locales generation" + else + /usr/sbin/locale-gen + fi + + # Set default LANG environment variable + if [ -e $EE ]; then + # Remove previous definitions + /usr/sbin/update-locale --no-checks LANG + fi + if [ -n "$SELECTED" ] && [ "$SELECTED" != "None" ]; then + /usr/sbin/update-locale "LANG=$SELECTED" + fi +fi + +#DEBHELPER# + +exit 0 --- glibc-2.5.orig/debian/debhelper.in/nscd.init +++ glibc-2.5/debian/debhelper.in/nscd.init @@ -0,0 +1,124 @@ +#!/bin/sh +### BEGIN INIT INFO +# Provides: nscd +# Required-Start: $local_fs +# Required-Stop: $local_fs +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Starts the Name Service Cache Daemon +### END INIT INFO + +# +# nscd: Starts the Name Service Cache Daemon +# +# description: This is a daemon which handles passwd and group lookups +# for running programs and caches the results for the next +# query. You should start this daemon only if you use +# slow Services like NIS or NIS+ + +# Sanity checks. + +NAME="nscd" +DESC="Name Service Cache Daemon" +DAEMON="/usr/sbin/nscd" +PIDFILE="/var/run/nscd/nscd.pid" + +# Sanity checks. +umask 022 +[ -f /etc/nscd.conf ] || exit 0 +[ -x "$DAEMON" ] || exit 0 +[ -d /var/run/nscd ] || mkdir -p /var/run/nscd + +start() +{ + # Return + # 0 if daemon has been started + # 1 if daemon was already running + # 2 if daemon could not be started + start-stop-daemon --start --quiet --pidfile "$PIDFILE" --exec "$DAEMON" || return 2 +} + +stop() +{ + # Return + # 0 if daemon has been stopped + # 1 if daemon was already stopped + # 2 if daemon could not be stopped + + # we try to stop using nscd --shutdown, that fails also if nscd is not present. + # in that case, fallback to "good old methods" + RETVAL=0 + if ! $DAEMON --shutdown; then + start-stop-daemon --stop --quiet --pidfile "$PIDFILE" --name "$NAME" --test > /dev/null + RETVAL="$?" + [ "$?" -ne 0 -a "$?" -ne 1 ] && return 2 + fi + + # Wait for children to finish too + start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec "$DAEMON" > /dev/null + [ "$?" -ne 0 -a "$?" -ne 1 ] && return 2 + rm -f "$PIDFILE" + return "$RETVAL" +} + +status() +{ + # Return + # 0 if daemon is stopped + # 1 if daemon is running + start-stop-daemon --start --quiet --pidfile "$PIDFILE" --exec "$DAEMON" --test > /dev/null || return 1 + return 0 +} + +case "$1" in +start) + echo -n "Starting $DESC: $NAME" + start + case "$?" in + 0) echo "." ; exit 0 ;; + 1) echo " (already running)." ; exit 0 ;; + *) echo " (failed)." ; exit 1 ;; + esac + ;; +stop) + echo -n "Stopping $DESC: $NAME" + stop + case "$?" in + 0) echo "." ; exit 0 ;; + 1) echo " (not running)." ; exit 0 ;; + *) echo " (failed)." ; exit 1 ;; + esac + ;; +restart|force-reload|reload) + echo -n "Restarting $DESC: $NAME" + stop + $DAEMON --invalidate passwd --invalidate group --invalidate hosts + case "$?" in + 0|1) + start + case "$?" in + 0) echo "." ; exit 0 ;; + 1) echo " (failed -- old process is still running)." ; exit 1 ;; + *) echo " (failed to start)." ; exit 1 ;; + esac + ;; + *) + echo " (failed to stop)." + exit 1 + ;; + esac + ;; +status) + echo -n "Status of $DESC service: " + status + case "$?" in + 0) echo "not running." ; exit 1 ;; + 1) echo "running." ; exit 0 ;; + esac + ;; +*) + echo "Usage: /etc/init.d/$NAME {start|stop|reload|force-reload|restart|status}" >&2 + exit 1 + ;; +esac + --- glibc-2.5.orig/debian/debhelper.in/libc-alt-dev.postinst +++ glibc-2.5/debian/debhelper.in/libc-alt-dev.postinst @@ -0,0 +1,18 @@ +#!/bin/sh + +set -e +export LC_ALL=C + +type=$1 +preversion=$2 + +if [ `dpkg --print-installation-architecture` = "powerpc" ]; then + if dpkg --compare-versions "$preversion" lt 2.4-1ubuntu7; then + if [ ! -L /usr/include/ppc64-linux-gnu ]; then + rm -rf /usr/include/ppc64-linux-gnu + ln -s /usr/include/powerpc64-linux-gnu /usr/include/ppc64-linux-gnu + fi + fi +fi + +#DEBHELPER# --- glibc-2.5.orig/debian/debhelper.in/libc-otherbuild.postinst +++ glibc-2.5/debian/debhelper.in/libc-otherbuild.postinst @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +if [ "$1" = "configure" ] +then + # /etc/ld.so.nohwcap code: NOHWCAP +fi + +#DEBHELPER# + +exit 0 --- glibc-2.5.orig/debian/debhelper.in/libc-alt.install +++ glibc-2.5/debian/debhelper.in/libc-alt.install @@ -0,0 +1,6 @@ +# This file is used for biarch libraries. +TMPDIR/SLIBDIR/*.so* SLIBDIR +TMPDIR/LIBDIR/gconv/*.so* LIBDIR/gconv/ +TMPDIR/LIBDIR/gconv/gconv-modules LIBDIR/gconv + +log-test-*-FLAVOR usr/share/doc/LIBC-FLAVOR --- glibc-2.5.orig/debian/debhelper.in/locales.templates +++ glibc-2.5/debian/debhelper.in/locales.templates @@ -0,0 +1,27 @@ +Template: locales/locales_to_be_generated +Type: multiselect +#flag:translate:1 +__Choices: All locales, ${locales} +_Description: Locales to be generated: + Locales are a framework to switch between multiple languages and + allow users to use their language, country, characters, collation + order, etc. + . + Please choose which locales to generate. UTF-8 locales should be + chosen by default, particularly for new installations. Other + character sets may be useful for backwards compatibility with older + systems and software. + +Template: locales/default_environment_locale +Type: select +#flag:translate:1 +__Choices: None, ${locales} +Default: None +_Description: Default locale for the system environment: + Many packages in Debian use locales to display text in the correct + language for the user. You can choose a default locale for the system + from the generated locales. + . + This will select the default language for the entire system. If this + system is a multi-user system where not all users are able to speak + the default language, they will experience difficulties. --- glibc-2.5.orig/debian/debhelper.in/locales.prerm +++ glibc-2.5/debian/debhelper.in/locales.prerm @@ -0,0 +1,17 @@ +#!/bin/sh +set -e + +case "$1" in + remove|purge) + if ! [ -f /usr/lib/locales-all/supported.tar.gz ] ; then + # If locales-all is not installed, clean the locales + rm -f /usr/lib/locale/locale-archive + fi + ;; + *) + ;; +esac + +#DEBHELPER# + +exit 0 --- glibc-2.5.orig/debian/debhelper.in/libc.lintian +++ glibc-2.5/debian/debhelper.in/libc.lintian @@ -0,0 +1,18 @@ +# ldconfig must be executable even when the libc is not configured, and +# thus must be linked statically +LIBC: statically-linked-binary ./sbin/ldconfig + +# libpthread must be stripped specially; GDB needs the non-dynamic +# symbol table in order to load the thread debugging library. +LIBC: unstripped-binary-or-object ./lib/libpthread-2.5.so + +# ld.so must be executable, otherwise the system will not work +LIBC: shlib-with-executable-bit lib/ld-2.5.so 0755 + +# pt_chown must be setuid root, otherwise non-root users won't be able +# to login +LIBC: setuid-binary usr/lib/pt_chown 4755 root/root + +# It is normal that the ELF dynamic linker does not need any other +# library +LIBC: shared-lib-without-dependency-information ./lib/ld-2.5.so --- glibc-2.5.orig/debian/debhelper.in/libc-dev.install +++ glibc-2.5/debian/debhelper.in/libc-dev.install @@ -0,0 +1,27 @@ +debian/tmp-libc/usr/bin/gencat usr/bin +debian/tmp-libc/usr/bin/mtrace usr/bin +debian/tmp-libc/usr/bin/rpcgen usr/bin +debian/tmp-libc/usr/bin/sprof usr/bin + +debian/tmp-libc/usr/lib/libanl.a usr/lib +debian/tmp-libc/usr/lib/libBrokenLocale.a usr/lib +debian/tmp-libc/usr/lib/libbsd-compat.a usr/lib +debian/tmp-libc/usr/lib/libc.a usr/lib +debian/tmp-libc/usr/lib/libc_nonshared.a usr/lib +debian/tmp-libc/usr/lib/libcrypt.a usr/lib +debian/tmp-libc/usr/lib/libdl.a usr/lib +debian/tmp-libc/usr/lib/libg.a usr/lib +debian/tmp-libc/usr/lib/libieee.a usr/lib +debian/tmp-libc/usr/lib/libm.a usr/lib +debian/tmp-libc/usr/lib/libmcheck.a usr/lib +debian/tmp-libc/usr/lib/libnsl.a usr/lib +debian/tmp-libc/usr/lib/libpthread.a usr/lib +debian/tmp-libc/usr/lib/libpthread_nonshared.a usr/lib +debian/tmp-libc/usr/lib/libresolv.a usr/lib +debian/tmp-libc/usr/lib/librpcsvc.a usr/lib +debian/tmp-libc/usr/lib/librt.a usr/lib +debian/tmp-libc/usr/lib/libutil.a usr/lib + +debian/tmp-libc/usr/lib/*.o usr/lib +debian/tmp-libc/usr/lib/*.so usr/lib +debian/tmp-libc/usr/include/* usr/include --- glibc-2.5.orig/debian/debhelper.in/libc-dev.install.hurd-i386 +++ glibc-2.5/debian/debhelper.in/libc-dev.install.hurd-i386 @@ -0,0 +1,27 @@ +debian/tmp-libc/usr/bin/gencat usr/bin +debian/tmp-libc/usr/bin/mtrace usr/bin +debian/tmp-libc/usr/bin/rpcgen usr/bin +debian/tmp-libc/usr/bin/sprof usr/bin + +debian/tmp-libc/usr/lib/libBrokenLocale.a usr/lib +debian/tmp-libc/usr/lib/libbsd-compat.a usr/lib +debian/tmp-libc/usr/lib/libc.a usr/lib +debian/tmp-libc/usr/lib/libcrt.a usr/lib +debian/tmp-libc/usr/lib/libcrt_nonshared.a usr/lib +debian/tmp-libc/usr/lib/libcrypt.a usr/lib +debian/tmp-libc/usr/lib/libdl.a usr/lib +debian/tmp-libc/usr/lib/libg.a usr/lib +debian/tmp-libc/usr/lib/libhurduser.a usr/lib +debian/tmp-libc/usr/lib/libieee.a usr/lib +debian/tmp-libc/usr/lib/libm.a usr/lib +debian/tmp-libc/usr/lib/libmachuser.a usr/lib +debian/tmp-libc/usr/lib/libmcheck.a usr/lib +debian/tmp-libc/usr/lib/libnsl.a usr/lib +debian/tmp-libc/usr/lib/libresolv.a usr/lib +debian/tmp-libc/usr/lib/librpcsvc.a usr/lib +debian/tmp-libc/usr/lib/librt.a usr/lib +debian/tmp-libc/usr/lib/libutil.a usr/lib + +debian/tmp-libc/usr/lib/*.o usr/lib +debian/tmp-libc/usr/lib/*.so usr/lib +debian/tmp-libc/usr/include/* usr/include --- glibc-2.5.orig/debian/debhelper.in/libc-alt.lintian +++ glibc-2.5/debian/debhelper.in/libc-alt.lintian @@ -0,0 +1,12 @@ +# libpthread must be stripped specially; GDB needs the non-dynamic +# symbol table in order to load the thread debugging library. +LIBC-FLAVOR: unstripped-binary-or-object .SLIBDIR/libpthread-2.5.so + +# Those file are actually .o files not package in a ar archive, and +# thus should not be stripped +LIBC-FLAVOR: unstripped-binary-or-object .LIBDIR/libieee.a +LIBC-FLAVOR: unstripped-binary-or-object .LIBDIR/libmcheck.a + +# It is normal that the ELF dynamic linker does not need any other +# library +LIBC-FLAVOR: shared-lib-without-dependency-information .SLIBDIR/ld-2.5.so --- glibc-2.5.orig/debian/debhelper.in/libc-dev.manpages +++ glibc-2.5/debian/debhelper.in/libc-dev.manpages @@ -0,0 +1,4 @@ +debian/local/manpages/gencat.1 +debian/local/manpages/mtrace.1 +debian/local/manpages/rpcgen.1 +debian/local/manpages/sprof.1 --- glibc-2.5.orig/debian/debhelper.in/libc-otherbuild.lintian +++ glibc-2.5/debian/debhelper.in/libc-otherbuild.lintian @@ -0,0 +1,3 @@ +# libpthread must be stripped specially; GDB needs the non-dynamic +# symbol table in order to load the thread debugging library. +LIBC-FLAVOR: unstripped-binary-or-object .SLIBDIR/libpthread-2.5.so --- glibc-2.5.orig/debian/debhelper.in/libc-otherbuild.install +++ glibc-2.5/debian/debhelper.in/libc-otherbuild.install @@ -0,0 +1,5 @@ +# This file is used for making NPTL and other +# optimized libraries. +TMPDIR/SLIBDIR/*.so* SLIBDIR + +log-test-*-FLAVOR usr/share/doc/LIBC-FLAVOR --- glibc-2.5.orig/debian/debhelper.in/libc-dev.lintian +++ glibc-2.5/debian/debhelper.in/libc-dev.lintian @@ -0,0 +1,6 @@ +# Those file are actually .o files not package in a ar archive, and +# thus should not be stripped +LIBC-dev: unstripped-binary-or-object ./usr/lib/libieee.a +LIBC-dev: unstripped-binary-or-object ./usr/lib/libmcheck.a +LIBC-dev: unstripped-binary-or-object ./usr/lib/xen/libieee.a +LIBC-dev: unstripped-binary-or-object ./usr/lib/xen/libmcheck.a --- glibc-2.5.orig/debian/debhelper.in/libc-dev-alt.lintian +++ glibc-2.5/debian/debhelper.in/libc-dev-alt.lintian @@ -0,0 +1,4 @@ +# Those file are actually .o files not package in a ar archive, and +# thus should not be stripped +LIBC-dev-FLAVOR: unstripped-binary-or-object .LIBDIR/libieee.a +LIBC-dev-FLAVOR: unstripped-binary-or-object .LIBDIR/libmcheck.a --- glibc-2.5.orig/debian/debhelper.in/libc-dev-alt.install +++ glibc-2.5/debian/debhelper.in/libc-dev-alt.install @@ -0,0 +1,21 @@ +# This file is used for making biarch libraries development packages. +TMPDIR/LIBDIR/libanl.a LIBDIR +TMPDIR/LIBDIR/libBrokenLocale.a LIBDIR +TMPDIR/LIBDIR/libbsd-compat.a LIBDIR +TMPDIR/LIBDIR/libc.a LIBDIR +TMPDIR/LIBDIR/libc_nonshared.a LIBDIR +TMPDIR/LIBDIR/libcrypt.a LIBDIR +TMPDIR/LIBDIR/libdl.a LIBDIR +TMPDIR/LIBDIR/libg.a LIBDIR +TMPDIR/LIBDIR/libieee.a LIBDIR +TMPDIR/LIBDIR/libm.a LIBDIR +TMPDIR/LIBDIR/libmcheck.a LIBDIR +TMPDIR/LIBDIR/libnsl.a LIBDIR +TMPDIR/LIBDIR/libpthread.a LIBDIR +TMPDIR/LIBDIR/libpthread_nonshared.a LIBDIR +TMPDIR/LIBDIR/libresolv.a LIBDIR +TMPDIR/LIBDIR/librt.a LIBDIR +TMPDIR/LIBDIR/libutil.a LIBDIR + +TMPDIR/LIBDIR/*.o LIBDIR +TMPDIR/LIBDIR/*.so LIBDIR --- glibc-2.5.orig/debian/debhelper.in/libc.NEWS +++ glibc-2.5/debian/debhelper.in/libc.NEWS @@ -0,0 +1,15 @@ +glibc (2.5-1) unstable; urgency=low + + Starting with version 2.5-1, the glibc requires a 2.6.1 or later + kernel. If you use a 2.4 kernel, please upgrade it *before* + installing glibc. + + This also means that it is not possible to use LD_ASSUME_KERNEL with a + version lower than 2.6.1. If you have set such a thing in /etc/profile, + ~/.bashrc or any other initialization file (something you should have + never done!!!), please remove that *before* installing glibc. + + Note: This does not apply to the m68k architecture and to non-Linux + kernels. + + -- Aurelien Jarno Tue, 24 Apr 2007 00:26:48 +0200 --- glibc-2.5.orig/debian/debhelper.in/libc-pic.dirs +++ glibc-2.5/debian/debhelper.in/libc-pic.dirs @@ -0,0 +1 @@ +usr/lib/libc_pic --- glibc-2.5.orig/debian/debhelper.in/libc-prof.install +++ glibc-2.5/debian/debhelper.in/libc-prof.install @@ -0,0 +1 @@ +debian/tmp-libc/usr/lib/*_p.a usr/lib --- glibc-2.5.orig/debian/debhelper.in/libc-udeb.install +++ glibc-2.5/debian/debhelper.in/libc-udeb.install @@ -0,0 +1,14 @@ +# FIXME: someday we may need to handle installing into non-lib. +debian/tmp-libc/lib/ld*.so* lib +debian/tmp-libc/lib/libm-*.so* lib +debian/tmp-libc/lib/libm.so* lib +debian/tmp-libc/lib/libdl*.so* lib +debian/tmp-libc/lib/libresolv*.so* lib +debian/tmp-libc/lib/libc-*.so* lib +debian/tmp-libc/lib/libc.so* lib +debian/tmp-libc/lib/libutil* lib +debian/tmp-libc/lib/libcrypt* lib +debian/tmp-libc/lib/librt*.so* lib +# FIXME: This should be with_threads arch's only. +debian/tmp-libc/lib/libpthread*.so* lib + --- glibc-2.5.orig/debian/debhelper.in/libc-udeb.install.hurd-i386 +++ glibc-2.5/debian/debhelper.in/libc-udeb.install.hurd-i386 @@ -0,0 +1,11 @@ +# FIXME: someday we may need to handle installing into non-lib. +debian/tmp-libc/lib/ld*.so* lib +debian/tmp-libc/lib/libm-*.so* lib +debian/tmp-libc/lib/libm.so* lib +debian/tmp-libc/lib/libdl*.so* lib +debian/tmp-libc/lib/libresolv*.so* lib +debian/tmp-libc/lib/libc-*.so* lib +debian/tmp-libc/lib/libc.so* lib +debian/tmp-libc/lib/libutil* lib +debian/tmp-libc/lib/libcrypt* lib +debian/tmp-libc/lib/librt*.so* lib --- glibc-2.5.orig/debian/debhelper.in/libc.docs +++ glibc-2.5/debian/debhelper.in/libc.docs @@ -0,0 +1,10 @@ +DEB_SRCDIR/BUGS +DEB_SRCDIR/FAQ +DEB_SRCDIR/NEWS +DEB_SRCDIR/NOTES +DEB_SRCDIR/PROJECTS +DEB_SRCDIR/README +DEB_SRCDIR/hesiod/README.hesiod +DEB_SRCDIR/CONFORMANCE +DEB_SRCDIR/NAMESPACE +debian/TODO --- glibc-2.5.orig/debian/debhelper.in/libc.postrm +++ glibc-2.5/debian/debhelper.in/libc.postrm @@ -0,0 +1,48 @@ +#! /bin/sh +set -e + +if [ "$1" = remove ]; then + if command -v suidunregister >/dev/null 2>&1 && [ -e /etc/suid.conf ]; then + if [ -x /usr/lib/pt_chown ]; then + suidunregister -s LIBC /usr/lib/pt_chown + elif [ -x /usr/libexec/pt_chown ]; then + suidunregister -s LIBC /usr/libexec/pt_chown + fi + fi + # Created in the postinst by iconvconfig + rm -f /usr/lib/gconv/gconv-modules.cache || true +fi + +if [ "$1" = upgrade ]; then + case $(dpkg --print-architecture) in + i386|sparc) + if dpkg --compare-versions "$2" lt 2.3.4-3; then + # Make sure the downgraded package does not support + # ld.so.hwcappkgs mechanism on i686 and sparc. + rm -f /etc/ld.so.hwcappkgs + echo "downgrade-to-old-glibc" >> /etc/ld.so.nohwcap + + echo + echo You are trying to downgrade to glibc 2.3.4-2 or earlier. + echo Such old packages do not support the version mismatch between + echo standard libc and hwcap libc using /etc/ld.so.hwcappkgs + echo on i386 and sparc. To be safe from library inconsistency, + echo hwcap libraries are disabled until glibc 2.3.4-3 or later + echo is installed. + echo + fi + ;; + esac +fi + +if [ "$1" = deconfigure ]; then + :; # blah, do something useful with ldso +fi + +#if [ "$1" = purge ]; then +# update-rc.d mountkernfs remove > /dev/null +#fi + +#DEBHELPER# + +exit 0 --- glibc-2.5.orig/debian/debhelper.in/libnss-dns-udeb.install +++ glibc-2.5/debian/debhelper.in/libnss-dns-udeb.install @@ -0,0 +1,3 @@ +# FIXME: someday we may need to handle installing into non-lib. +debian/tmp-libc/lib/libnss_dns*.so* lib + --- glibc-2.5.orig/debian/debhelper.in/libnss-files-udeb.install +++ glibc-2.5/debian/debhelper.in/libnss-files-udeb.install @@ -0,0 +1,3 @@ +# FIXME: someday we may need to handle installing into non-lib. +debian/tmp-libc/lib/libnss_files*.so* lib + --- glibc-2.5.orig/debian/debhelper.in/locales.config +++ glibc-2.5/debian/debhelper.in/locales.config @@ -0,0 +1,75 @@ +#!/bin/sh +set -e + +. /usr/share/debconf/confmodule +db_version 2.0 +db_capb backup multiselect + +# Initializes debconf default values from the ones found in +# configuration files +SELECTED_LOCALES= +if [ -L /etc/locale.gen ] && [ "$(readlink /etc/locale.gen)" = /usr/share/i18n/SUPPORTED ]; then + SELECTED_LOCALES="All locales" + LG=/dev/null +elif [ -e /etc/locale.gen ]; then + LG=/etc/locale.gen + # Debconf templates in locales < 2.3.2 were completely different, + # the locales/locales_to_be_generated question could have a "Leave alone" + # value in which case locale-gen was not run. + # With current implementation, this string has to be removed. + grep -q "Leave alone" $LG && sed -e '/^Leave alone/d' $LG > $LG.tmp && mv $LG.tmp $LG + + SELECTED_LOCALES=$(LC_ALL=C sed -e '/^[a-zA-Z]/!d' $LG | tr '\n' ',' | sed -e 's/,/, /g' -e 's/, *$//') +else + LG=/dev/null +fi +DEFAULT_ENVIRONMENT=$(cat /etc/environment /etc/default/locale 2>/dev/null | awk 'BEGIN {lang="None"} /^LANG=/ {gsub("\"", ""); sub("LANG=", ""); lang=$0;} END {print lang}') +[ -n "$DEFAULT_ENVIRONMENT" ] || DEFAULT_ENVIRONMENT=None + +# Add a newline in case /etc/locale.gen has no trailing newline at EOF +SUPPORTED_LOCALES=" +__SUPPORTED_LOCALES__" +SUPPORTED_LOCALES=$( (cat $LG && echo "$SUPPORTED_LOCALES") | LC_ALL=C sed -e '/^[a-zA-Z]/!d' | LC_ALL=C sort -u | tr '\n' ',' | sed -e 's/,/, /g' -e 's/, *$//') + +if [ -z "$DEBCONF_IS_A_REGISTRY" ] && [ -e /etc/locale.gen ]; then + db_set locales/locales_to_be_generated "${SELECTED_LOCALES}" + db_set locales/default_environment_locale "$DEFAULT_ENVIRONMENT" +fi +db_subst locales/locales_to_be_generated locales "${SUPPORTED_LOCALES}" + +STATE=1 +while [ "$STATE" -ge 0 ]; do + case "$STATE" in + 0) + exit 1 + ;; + 1) + db_input medium locales/locales_to_be_generated || true + ;; + 2) + db_get locales/locales_to_be_generated || RET= + if expr ", $RET," : ".*, None,.*" >/dev/null 2>&1; then + # "None" was a choice in older packages + db_set locales/locales_to_be_generated "" + RET= + elif expr ", $RET," : ".*, All locales,.*" >/dev/null 2>&1; then + # When "All locales" is selected, other choices have to be dropped + db_set locales/locales_to_be_generated "All locales" + RET=$SUPPORTED_LOCALES + fi + DEFAULT_LOCALES=$(echo $RET | sed -e 's/ [^ ]*,/,/g' -e 's/ [^ ]*$//') + if [ -n "$DEFAULT_LOCALES" ]; then + db_subst locales/default_environment_locale locales $DEFAULT_LOCALES + db_input medium locales/default_environment_locale || true + fi + ;; + *) + break + ;; + esac + if db_go; then + STATE=$(($STATE + 1)) + else + STATE=$(($STATE - 1)) + fi +done --- glibc-2.5.orig/debian/debhelper.in/locales.dirs +++ glibc-2.5/debian/debhelper.in/locales.dirs @@ -0,0 +1 @@ +usr/lib/locale --- glibc-2.5.orig/debian/debhelper.in/locales.install +++ glibc-2.5/debian/debhelper.in/locales.install @@ -0,0 +1,8 @@ +debian/tmp-libc/usr/share/locale/[a-z][a-z] usr/share/locale +debian/tmp-libc/usr/share/locale/[a-z][a-z]_[A-Z][A-Z] usr/share/locale +debian/tmp-libc/usr/share/locale/locale.alias usr/share/locale +debian/tmp-libc/usr/share/i18n/* usr/share/i18n +debian/local/usr_sbin/locale-gen usr/sbin +debian/local/usr_sbin/update-locale usr/sbin +debian/local/usr_sbin/validlocale usr/sbin +DEB_SRCDIR/localedata/README usr/share/doc/locales --- glibc-2.5.orig/debian/debhelper.in/locales.manpages +++ glibc-2.5/debian/debhelper.in/locales.manpages @@ -0,0 +1,4 @@ +debian/local/manpages/locale-gen.8 +debian/local/manpages/locale.gen.5 +debian/local/manpages/update-locale.8 +debian/local/manpages/validlocale.8 --- glibc-2.5.orig/debian/debhelper.in/locales.postrm +++ glibc-2.5/debian/debhelper.in/locales.postrm @@ -0,0 +1,14 @@ +#!/bin/sh +set -e + +case "$1" in + purge) + rm -f /etc/locale.gen + ;; + *) + ;; +esac + +#DEBHELPER# + +exit 0 --- glibc-2.5.orig/debian/debhelper.in/nscd.dirs +++ glibc-2.5/debian/debhelper.in/nscd.dirs @@ -0,0 +1,2 @@ +var/run/nscd +var/db/nscd --- glibc-2.5.orig/debian/debhelper.in/nscd.install +++ glibc-2.5/debian/debhelper.in/nscd.install @@ -0,0 +1,3 @@ +debian/tmp-libc/usr/sbin/nscd usr/sbin +DEB_SRCDIR/nscd/nscd.conf /etc + --- glibc-2.5.orig/debian/debhelper.in/nscd.manpages +++ glibc-2.5/debian/debhelper.in/nscd.manpages @@ -0,0 +1,2 @@ +debian/local/manpages/nscd.conf.5 +debian/local/manpages/nscd.8 --- glibc-2.5.orig/debian/debver2localesdep.pl +++ glibc-2.5/debian/debver2localesdep.pl @@ -0,0 +1,18 @@ +#!/usr/bin/perl + +for my $i (0..$#ARGV) { + $_ = $ARGV[$i]; + /(.*)-(.*)/m; + + $debver = $1; + $devrev = $2; + + @revs = split('\.', $devrev); + + $devrev = $revs[0]; + $devrev = "$devrev.$revs[1]" if defined($revs[1]) and $revs[1] ne "0"; + + print ", " if $i > 0; + print "glibc-$debver-$devrev"; +} +print "\n"; --- glibc-2.5.orig/debian/generate-supported.mk +++ glibc-2.5/debian/generate-supported.mk @@ -0,0 +1,11 @@ +#!/usr/bin/make + +include $(IN) + +all: + rm -f $(OUT) + touch $(OUT) + for locale in $(SUPPORTED-LOCALES); do \ + [ $$locale = true ] && continue; \ + echo $$locale | sed 's,/, ,' >> $(OUT); \ + done --- glibc-2.5.orig/debian/local/etc_default/devpts +++ glibc-2.5/debian/local/etc_default/devpts @@ -0,0 +1,5 @@ +# GID of the `tty' group +TTYGRP=5 + +# Set to 600 to have `mesg n' be the default +TTYMODE=620 --- glibc-2.5.orig/debian/local/etc_init.d/glibc.sh +++ glibc-2.5/debian/local/etc_init.d/glibc.sh @@ -0,0 +1,18 @@ +#! /bin/sh -e +# +### BEGIN INIT INFO +# Provides: glibc +# Required-Start: +# Required-Stop: +# Default-Start: S +# Default-Stop: +### END INIT INFO +# +# This script is existed for detecting depreciated kernel version to +# check glibc incompatibility. + +if [ "`uname -s`" = Linux ]; then + # glibc kernel version check: KERNEL_VERSION_CHECK +fi + +: exit 0 --- glibc-2.5.orig/debian/local/manpages/ldconfig.8 +++ glibc-2.5/debian/local/manpages/ldconfig.8 @@ -0,0 +1,168 @@ +.TH ldconfig 8 "27 August 2006" +.SH NAME +ldconfig \- configure dynamic linker run-time bindings +.SH SYNOPSIS +ldconfig +.RB [OPTION...] +.SH DESCRIPTION +.B ldconfig +creates, updates, and removes the necessary links and cache (for use by the run-time linker, +.IR ld.so ) +to the most recent shared libraries found in the directories specified +on the command line, in the file +.IR /etc/ld.so.conf , +and in the trusted directories +.RI ( /usr/lib +and +.IR /lib ). +.B ldconfig +checks the header and file names of the libraries it encounters when +determining which versions should have their links updated. +.B ldconfig +ignores symbolic links when scanning for libraries. +.PP +.B ldconfig +will attempt to deduce the type of ELF libs (ie. libc 5.x or libc 6.x (glibc)) +based on what C libraries if any the library was linked against, therefore when +making dynamic libraries, it is wise to explicitly link against libc (use -lc). +.B ldconfig +is capable of storing multiple ABI types of libraries into a single cache on +architectures which allow native running of multiple ABIs, like +ia32/ia64/x86_64 or sparc32/sparc64. +.PP +Some existing libs do not contain enough information to allow the deduction of +their type, therefore the +.IR /etc/ld.so.conf +file format allows the specification of an expected type. This is +.B only +used for those ELF libs which we can not work out. The format +is like this "dirname=TYPE", where type can be libc4, libc5 or libc6. +(This syntax also works on the command line). Spaces are +.B not +allowed. Also see the +.B -p +option. +.PP +Directory names containing an +.B = +are no longer legal unless they also have an expected type specifier. +.PP +.B ldconfig +should normally be run by the super-user as it may require write +permission on some root owned directories and files. If you use +.B -r +option to change the root directory, you don't have to be super-user though +as long as you have sufficient right to that directory tree. +.SH OPTIONS +.TP +.B \-v\ \-\-verbose +Verbose mode. +Print current version number, the name of each directory as it +is scanned and any links that are created. +.TP +.B \-n +Only process directories specified on the command line. +Don't process the trusted directories +.RI ( /usr/lib +and +.IR /lib ) +nor those specified in +.IR /etc/ld.so.conf . +Implies +.BR \-N . +.TP +.B \-N +Don't rebuild the cache. +Unless +.B \-X +is also specified, links are still updated. +.TP +.B \-X +Don't update links. +Unless +.B \-N +is also specified, the cache is still rebuilt. +.TP +.B \-F\ \-\-force +Generate cache even if it looks up-to-date. +.TP +.B \-f conf +Use +.B conf +instead of +.IR /etc/ld.so.conf . +.TP +.B \-C cache +Use +.B cache +instead of +.IR /etc/ld.so.cache . +.TP +.B \-r root +Change to and use +.B root +as the root directory. +.TP +.B \-l +Library mode. +Manually link individual libraries. +Intended for use by experts only. +.TP +.B \-p\ \-\-print-cache +Print the lists of directories and candidate libraries stored in +the current cache. +.TP +.B \-c\ \-\-format=FORMAT +Use +.B FORMAT +for the cache file. Choices are old, new and compat (the default). +.TP +.B \-?\ \-\-help \-\-usage +Print usage information. +.TP +.B \-V\ \-\-version +Print version and exit. +.SH EXAMPLES +.RS +# /sbin/ldconfig -v +.RE +will set up the correct links for the shared binaries and rebuild +the cache. +.RS +# /sbin/ldconfig -n /lib +.RE +as root after the installation of a new shared library will properly update the +shared library symbolic links in /lib. +.SH FILES +.PD 0 +.TP 20 +.B /lib/ld-linux.so.* +execution time linker/loader +.TP 20 +.B /etc/ld.so.conf +File containing a list of colon, space, tab, newline, or comma separated +directories in which to search for libraries. +.TP 20 +.B /etc/ld.so.cache +File containing an ordered list of libraries found in the directories +specified in +.BR /etc/ld.so.conf . +This file is not in human readable format, and is not intended to be +edited. +.TP +.B lib*.so.version +shared libraries +.PD +.SH SEE ALSO +.BR ldd (1), +.BR ld.so (8). +.SH BUGS +.LP +.BR ldconfig , +being a user process, must be run manually and has no means of dynamically +determining and relinking shared libraries for use by +.BR ld.so +when a new shared library is installed. +.SH AUTHORS +Andreas Jaeger. +Manual page written by David Engel and Mitch D'Souza. --- glibc-2.5.orig/debian/local/manpages/Makefile +++ glibc-2.5/debian/local/manpages/Makefile @@ -0,0 +1,20 @@ +#! /usr/bin/make -f + +DIRS := de es fr id pl pt_BR + +SGML_MAN = locale-gen.8 + +all: $(patsubst %.pod,%.1,$(wildcard *.pod)) $(SGML_MAN) po4a-man +%.1: %.pod + pod2man --center="Debian GNU/Linux" --release="etch" $< > $@ + +locale-gen.8: locale-gen.8.sgml + docbook-to-man $< > $@ + +po4a-man: + po4a -q po4a.cfg + +clean: + po4a -q po4a.cfg + $(foreach dir, $(DIRS), rm -rf $(dir)/*.8) + rm -f po/*~ --- glibc-2.5.orig/debian/local/manpages/catchsegv.1 +++ glibc-2.5/debian/local/manpages/catchsegv.1 @@ -0,0 +1,218 @@ +.rn '' }` +''' $RCSfile: catchsegv.1,v $$Revision: 1.1.2.1 $$Date: 2003/09/22 21:33:35 $ +''' +''' $Log: catchsegv.1,v $ +''' Revision 1.1.2.1 2003/09/22 21:33:35 jbailey +''' New directory for things we add to the package +''' +''' +.de Sh +.br +.if t .Sp +.ne 5 +.PP +\fB\\$1\fR +.PP +.. +.de Sp +.if t .sp .5v +.if n .sp +.. +.de Ip +.br +.ie \\n(.$>=3 .ne \\$3 +.el .ne 3 +.IP "\\$1" \\$2 +.. +.de Vb +.ft CW +.nf +.ne \\$1 +.. +.de Ve +.ft R + +.fi +.. +''' +''' +''' Set up \*(-- to give an unbreakable dash; +''' string Tr holds user defined translation string. +''' Bell System Logo is used as a dummy character. +''' +.tr \(*W-|\(bv\*(Tr +.ie n \{\ +.ds -- \(*W- +.ds PI pi +.if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch +.if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch +.ds L" "" +.ds R" "" +''' \*(M", \*(S", \*(N" and \*(T" are the equivalent of +''' \*(L" and \*(R", except that they are used on ".xx" lines, +''' such as .IP and .SH, which do another additional levels of +''' double-quote interpretation +.ds M" """ +.ds S" """ +.ds N" """"" +.ds T" """"" +.ds L' ' +.ds R' ' +.ds M' ' +.ds S' ' +.ds N' ' +.ds T' ' +'br\} +.el\{\ +.ds -- \(em\| +.tr \*(Tr +.ds L" `` +.ds R" '' +.ds M" `` +.ds S" '' +.ds N" `` +.ds T" '' +.ds L' ` +.ds R' ' +.ds M' ` +.ds S' ' +.ds N' ` +.ds T' ' +.ds PI \(*p +'br\} +.\" If the F register is turned on, we'll generate +.\" index entries out stderr for the following things: +.\" TH Title +.\" SH Header +.\" Sh Subsection +.\" Ip Item +.\" X<> Xref (embedded +.\" Of course, you have to process the output yourself +.\" in some meaningful fashion. +.if \nF \{ +.de IX +.tm Index:\\$1\t\\n%\t"\\$2" +.. +.nr % 0 +.rr F +.\} +.TH CATCHSEGV 1 "etch" "7/Jan/2001" "Debian GNU/Linux" +.UC +.if n .hy 0 +.if n .na +.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' +.de CQ \" put $1 in typewriter font +.ft CW +'if n "\c +'if t \\&\\$1\c +'if n \\&\\$1\c +'if n \&" +\\&\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 +'.ft R +.. +.\" @(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2 +. \" AM - accent mark definitions +.bd B 3 +. \" fudge factors for nroff and troff +.if n \{\ +. ds #H 0 +. ds #V .8m +. ds #F .3m +. ds #[ \f1 +. ds #] \fP +.\} +.if t \{\ +. ds #H ((1u-(\\\\n(.fu%2u))*.13m) +. ds #V .6m +. ds #F 0 +. ds #[ \& +. ds #] \& +.\} +. \" simple accents for nroff and troff +.if n \{\ +. ds ' \& +. ds ` \& +. ds ^ \& +. ds , \& +. ds ~ ~ +. ds ? ? +. ds ! ! +. ds / +. ds q +.\} +.if t \{\ +. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" +. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' +. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' +. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' +. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' +. ds ? \s-2c\h'-\w'c'u*7/10'\u\h'\*(#H'\zi\d\s+2\h'\w'c'u*8/10' +. ds ! \s-2\(or\s+2\h'-\w'\(or'u'\v'-.8m'.\v'.8m' +. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' +. ds q o\h'-\w'o'u*8/10'\s-4\v'.4m'\z\(*i\v'-.4m'\s+4\h'\w'o'u*8/10' +.\} +. \" troff and (daisy-wheel) nroff accents +.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' +.ds 8 \h'\*(#H'\(*b\h'-\*(#H' +.ds v \\k:\h'-(\\n(.wu*9/10-\*(#H)'\v'-\*(#V'\*(#[\s-4v\s0\v'\*(#V'\h'|\\n:u'\*(#] +.ds _ \\k:\h'-(\\n(.wu*9/10-\*(#H+(\*(#F*2/3))'\v'-.4m'\z\(hy\v'.4m'\h'|\\n:u' +.ds . \\k:\h'-(\\n(.wu*8/10)'\v'\*(#V*4/10'\z.\v'-\*(#V*4/10'\h'|\\n:u' +.ds 3 \*(#[\v'.2m'\s-2\&3\s0\v'-.2m'\*(#] +.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] +.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' +.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' +.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] +.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] +.ds ae a\h'-(\w'a'u*4/10)'e +.ds Ae A\h'-(\w'A'u*4/10)'E +.ds oe o\h'-(\w'o'u*4/10)'e +.ds Oe O\h'-(\w'O'u*4/10)'E +. \" corrections for vroff +.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' +.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' +. \" for low resolution devices (crt and lpr) +.if \n(.H>23 .if \n(.V>19 \ +\{\ +. ds : e +. ds 8 ss +. ds v \h'-1'\o'\(aa\(ga' +. ds _ \h'-1'^ +. ds . \h'-1'. +. ds 3 3 +. ds o a +. ds d- d\h'-1'\(ga +. ds D- D\h'-1'\(hy +. ds th \o'bp' +. ds Th \o'LP' +. ds ae ae +. ds Ae AE +. ds oe oe +. ds Oe OE +.\} +.rm #[ #] #H #V #F C +.SH "NAME" +catchsegv \- Catch segmentation faults in programs +.SH "SYNOPSIS" +\fBcatchsegv\fR \fBprogram\fR [\fBargs\fR] +.SH "DESCRIPTION" +Used to debug segmentation faults in programs. The output is the +content of registers, plus a backtrace. Basically you call your +program and its arguments as the arguments to catchsegv. +.SH "AUTHOR" +\fIcatchsegv\fR was written by Ulrich Drepper for the GNU C Library +.PP +This man page was written by Ben Collins for +the Debian GNU/Linux system. + +.rn }` '' +.IX Title "CATCHSEGV 1" +.IX Name "catchsegv - Catch segmentation faults in programs" + +.IX Header "NAME" + +.IX Header "SYNOPSIS" + +.IX Header "DESCRIPTION" + +.IX Header "AUTHOR" + --- glibc-2.5.orig/debian/local/manpages/mtrace.1 +++ glibc-2.5/debian/local/manpages/mtrace.1 @@ -0,0 +1,228 @@ +.rn '' }` +''' $RCSfile: mtrace.1,v $$Revision: 1.1 $$Date: 2007-04-11 03:07:27 +0000 (mer, 11 avr 2007) $ +''' +''' $Log: mtrace.1,v $ +''' Revision 1.1 2003/11/03 17:37:27 jbailey +''' - debian/local/manpages/gencat.1: New file. +''' - debian/local/manpages/trace.1: New file. +''' - debian/debhelper.in/libc-dev.manpages: Install them. +''' - debian/local/manpages/iconvconfig.8: New file. +''' - debian/debhelper.in/libc.manpages: Install it. +''' +''' Revision 1.1.2.2 2003/10/28 05:48:08 dan +''' - Re-add debian/patches/80_glibc232-locales-nb_NO-fix.dpatch, which had +''' gotten lost. +''' - Re-add typo fixes to iconv.1 and rpcgen.1. +''' - Merge iconv.1 fix to iconv.pod. +''' - Fix ld.so name in ld.so.8. +''' - Re-add fix for locale-gen and POSIXLY_CORRECT. +''' +''' +.de Sh +.br +.if t .Sp +.ne 5 +.PP +\fB\\$1\fR +.PP +.. +.de Sp +.if t .sp .5v +.if n .sp +.. +.de Ip +.br +.ie \\n(.$>=3 .ne \\$3 +.el .ne 3 +.IP "\\$1" \\$2 +.. +.de Vb +.ft CW +.nf +.ne \\$1 +.. +.de Ve +.ft R + +.fi +.. +''' +''' +''' Set up \*(-- to give an unbreakable dash; +''' string Tr holds user defined translation string. +''' Bell System Logo is used as a dummy character. +''' +.tr \(*W-|\(bv\*(Tr +.ie n \{\ +.ds -- \(*W- +.ds PI pi +.if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch +.if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch +.ds L" "" +.ds R" "" +''' \*(M", \*(S", \*(N" and \*(T" are the equivalent of +''' \*(L" and \*(R", except that they are used on ".xx" lines, +''' such as .IP and .SH, which do another additional levels of +''' double-quote interpretation +.ds M" """ +.ds S" """ +.ds N" """"" +.ds T" """"" +.ds L' ' +.ds R' ' +.ds M' ' +.ds S' ' +.ds N' ' +.ds T' ' +'br\} +.el\{\ +.ds -- \(em\| +.tr \*(Tr +.ds L" `` +.ds R" '' +.ds M" `` +.ds S" '' +.ds N" `` +.ds T" '' +.ds L' ` +.ds R' ' +.ds M' ` +.ds S' ' +.ds N' ` +.ds T' ' +.ds PI \(*p +'br\} +.\" If the F register is turned on, we'll generate +.\" index entries out stderr for the following things: +.\" TH Title +.\" SH Header +.\" Sh Subsection +.\" Ip Item +.\" X<> Xref (embedded +.\" Of course, you have to process the output yourself +.\" in some meaningful fashion. +.if \nF \{ +.de IX +.tm Index:\\$1\t\\n%\t"\\$2" +.. +.nr % 0 +.rr F +.\} +.TH MTRACE 1 "November 2003" "mtrace (glibc)" "Debian" +.UC +.if n .hy 0 +.if n .na +.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' +.de CQ \" put $1 in typewriter font +.ft CW +'if n "\c +'if t \\&\\$1\c +'if n \\&\\$1\c +'if n \&" +\\&\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 +'.ft R +.. +.\" @(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2 +. \" AM - accent mark definitions +.bd B 3 +. \" fudge factors for nroff and troff +.if n \{\ +. ds #H 0 +. ds #V .8m +. ds #F .3m +. ds #[ \f1 +. ds #] \fP +.\} +.if t \{\ +. ds #H ((1u-(\\\\n(.fu%2u))*.13m) +. ds #V .6m +. ds #F 0 +. ds #[ \& +. ds #] \& +.\} +. \" simple accents for nroff and troff +.if n \{\ +. ds ' \& +. ds ` \& +. ds ^ \& +. ds , \& +. ds ~ ~ +. ds ? ? +. ds ! ! +. ds / +. ds q +.\} +.if t \{\ +. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" +. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' +. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' +. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' +. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' +. ds ? \s-2c\h'-\w'c'u*7/10'\u\h'\*(#H'\zi\d\s+2\h'\w'c'u*8/10' +. ds ! \s-2\(or\s+2\h'-\w'\(or'u'\v'-.8m'.\v'.8m' +. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' +. ds q o\h'-\w'o'u*8/10'\s-4\v'.4m'\z\(*i\v'-.4m'\s+4\h'\w'o'u*8/10' +.\} +. \" troff and (daisy-wheel) nroff accents +.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' +.ds 8 \h'\*(#H'\(*b\h'-\*(#H' +.ds v \\k:\h'-(\\n(.wu*9/10-\*(#H)'\v'-\*(#V'\*(#[\s-4v\s0\v'\*(#V'\h'|\\n:u'\*(#] +.ds _ \\k:\h'-(\\n(.wu*9/10-\*(#H+(\*(#F*2/3))'\v'-.4m'\z\(hy\v'.4m'\h'|\\n:u' +.ds . \\k:\h'-(\\n(.wu*8/10)'\v'\*(#V*4/10'\z.\v'-\*(#V*4/10'\h'|\\n:u' +.ds 3 \*(#[\v'.2m'\s-2\&3\s0\v'-.2m'\*(#] +.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] +.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' +.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' +.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] +.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] +.ds ae a\h'-(\w'a'u*4/10)'e +.ds Ae A\h'-(\w'A'u*4/10)'E +.ds oe o\h'-(\w'o'u*4/10)'e +.ds Oe O\h'-(\w'O'u*4/10)'E +. \" corrections for vroff +.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' +.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' +. \" for low resolution devices (crt and lpr) +.if \n(.H>23 .if \n(.V>19 \ +\{\ +. ds : e +. ds 8 ss +. ds v \h'-1'\o'\(aa\(ga' +. ds _ \h'-1'^ +. ds . \h'-1'. +. ds 3 3 +. ds o a +. ds d- d\h'-1'\(ga +. ds D- D\h'-1'\(hy +. ds th \o'bp' +. ds Th \o'LP' +. ds ae ae +. ds Ae AE +. ds oe oe +. ds Oe OE +.\} +.rm #[ #] #H #V #F C +.SH "NAME" +mtrace \- Interpret output from MALLOC_TRACE +.SH "SYNOPSIS" +mtrace [OPTION]... [Binary] MtraceData +.SH "DESCRIPTION" +The \fBmtrace\fR interprets the output from when the MALLOC_TRACE +environment variable is set. +.SH "AUTHOR" +\fImtrace\fR was written by Ulrich Drepper as part of the GNU C Library. +.PP +This man page was written by Jeff Bailey . + +.rn }` '' +.IX Title "MTRACE 1" +.IX Name "mtrace \- Interpret output from MALLOC_TRACE" + +.IX Header "NAME" + +.IX Header "SYNOPSIS" + +.IX Header "DESCRIPTION" + +.IX Header "AUTHOR" + --- glibc-2.5.orig/debian/local/manpages/gencat.1 +++ glibc-2.5/debian/local/manpages/gencat.1 @@ -0,0 +1,240 @@ +.rn '' }` +''' $RCSfile: gencat.1,v $$Revision: 1.1 $$Date: 2007-04-11 03:07:27 +0000 (mer, 11 avr 2007) $ +''' +''' $Log: gencat.1,v $ +''' Revision 1.1 2003/11/03 17:37:27 jbailey +''' - debian/local/manpages/gencat.1: New file. +''' - debian/local/manpages/trace.1: New file. +''' - debian/debhelper.in/libc-dev.manpages: Install them. +''' - debian/local/manpages/iconvconfig.8: New file. +''' - debian/debhelper.in/libc.manpages: Install it. +''' +''' Revision 1.1.2.2 2003/10/28 05:48:08 dan +''' - Re-add debian/patches/80_glibc232-locales-nb_NO-fix.dpatch, which had +''' gotten lost. +''' - Re-add typo fixes to iconv.1 and rpcgen.1. +''' - Merge iconv.1 fix to iconv.pod. +''' - Fix ld.so name in ld.so.8. +''' - Re-add fix for locale-gen and POSIXLY_CORRECT. +''' +''' +.de Sh +.br +.if t .Sp +.ne 5 +.PP +\fB\\$1\fR +.PP +.. +.de Sp +.if t .sp .5v +.if n .sp +.. +.de Ip +.br +.ie \\n(.$>=3 .ne \\$3 +.el .ne 3 +.IP "\\$1" \\$2 +.. +.de Vb +.ft CW +.nf +.ne \\$1 +.. +.de Ve +.ft R + +.fi +.. +''' +''' +''' Set up \*(-- to give an unbreakable dash; +''' string Tr holds user defined translation string. +''' Bell System Logo is used as a dummy character. +''' +.tr \(*W-|\(bv\*(Tr +.ie n \{\ +.ds -- \(*W- +.ds PI pi +.if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch +.if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch +.ds L" "" +.ds R" "" +''' \*(M", \*(S", \*(N" and \*(T" are the equivalent of +''' \*(L" and \*(R", except that they are used on ".xx" lines, +''' such as .IP and .SH, which do another additional levels of +''' double-quote interpretation +.ds M" """ +.ds S" """ +.ds N" """"" +.ds T" """"" +.ds L' ' +.ds R' ' +.ds M' ' +.ds S' ' +.ds N' ' +.ds T' ' +'br\} +.el\{\ +.ds -- \(em\| +.tr \*(Tr +.ds L" `` +.ds R" '' +.ds M" `` +.ds S" '' +.ds N" `` +.ds T" '' +.ds L' ` +.ds R' ' +.ds M' ` +.ds S' ' +.ds N' ` +.ds T' ' +.ds PI \(*p +'br\} +.\" If the F register is turned on, we'll generate +.\" index entries out stderr for the following things: +.\" TH Title +.\" SH Header +.\" Sh Subsection +.\" Ip Item +.\" X<> Xref (embedded +.\" Of course, you have to process the output yourself +.\" in some meaningful fashion. +.if \nF \{ +.de IX +.tm Index:\\$1\t\\n%\t"\\$2" +.. +.nr % 0 +.rr F +.\} +.TH GENCAT 1 "November 2003" "gencat (glibc)" "Debian" +.UC +.if n .hy 0 +.if n .na +.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' +.de CQ \" put $1 in typewriter font +.ft CW +'if n "\c +'if t \\&\\$1\c +'if n \\&\\$1\c +'if n \&" +\\&\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 +'.ft R +.. +.\" @(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2 +. \" AM - accent mark definitions +.bd B 3 +. \" fudge factors for nroff and troff +.if n \{\ +. ds #H 0 +. ds #V .8m +. ds #F .3m +. ds #[ \f1 +. ds #] \fP +.\} +.if t \{\ +. ds #H ((1u-(\\\\n(.fu%2u))*.13m) +. ds #V .6m +. ds #F 0 +. ds #[ \& +. ds #] \& +.\} +. \" simple accents for nroff and troff +.if n \{\ +. ds ' \& +. ds ` \& +. ds ^ \& +. ds , \& +. ds ~ ~ +. ds ? ? +. ds ! ! +. ds / +. ds q +.\} +.if t \{\ +. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" +. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' +. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' +. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' +. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' +. ds ? \s-2c\h'-\w'c'u*7/10'\u\h'\*(#H'\zi\d\s+2\h'\w'c'u*8/10' +. ds ! \s-2\(or\s+2\h'-\w'\(or'u'\v'-.8m'.\v'.8m' +. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' +. ds q o\h'-\w'o'u*8/10'\s-4\v'.4m'\z\(*i\v'-.4m'\s+4\h'\w'o'u*8/10' +.\} +. \" troff and (daisy-wheel) nroff accents +.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' +.ds 8 \h'\*(#H'\(*b\h'-\*(#H' +.ds v \\k:\h'-(\\n(.wu*9/10-\*(#H)'\v'-\*(#V'\*(#[\s-4v\s0\v'\*(#V'\h'|\\n:u'\*(#] +.ds _ \\k:\h'-(\\n(.wu*9/10-\*(#H+(\*(#F*2/3))'\v'-.4m'\z\(hy\v'.4m'\h'|\\n:u' +.ds . \\k:\h'-(\\n(.wu*8/10)'\v'\*(#V*4/10'\z.\v'-\*(#V*4/10'\h'|\\n:u' +.ds 3 \*(#[\v'.2m'\s-2\&3\s0\v'-.2m'\*(#] +.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] +.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' +.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' +.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] +.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] +.ds ae a\h'-(\w'a'u*4/10)'e +.ds Ae A\h'-(\w'A'u*4/10)'E +.ds oe o\h'-(\w'o'u*4/10)'e +.ds Oe O\h'-(\w'O'u*4/10)'E +. \" corrections for vroff +.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' +.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' +. \" for low resolution devices (crt and lpr) +.if \n(.H>23 .if \n(.V>19 \ +\{\ +. ds : e +. ds 8 ss +. ds v \h'-1'\o'\(aa\(ga' +. ds _ \h'-1'^ +. ds . \h'-1'. +. ds 3 3 +. ds o a +. ds d- d\h'-1'\(ga +. ds D- D\h'-1'\(hy +. ds th \o'bp' +. ds Th \o'LP' +. ds ae ae +. ds Ae AE +. ds oe oe +. ds Oe OE +.\} +.rm #[ #] #H #V #F C +.SH "NAME" +gencat \- Generate message catalog +.SH "SYNOPSIS" +gencat [OPTION...] -o OUTPUT-FILE [INPUT-FILE]... +.SH "DESCRIPTION" +The \fBgencat\fR program is specified in the X/Open standard and the +GNU implementation follows this specification and so processes all +correctly formed input files. Additionally some extension are implemented +which help to work in a more reasonable way with the \fBcatgets\fR(3) functions. +.PP +.TP +\fB-H\fR, \fB--header\fR \fINAME\fR +Create C header file NAME containing symbol definitions +.TP +\fB--new\fR +Do not use existing catalog, force new output file +.TP +\fB-o\fR, \fB--output\fR \fINAME\fR +Write output to file NAME +.SH "AUTHOR" +\fIgencat\fR was written by Ulrich Drepper as part of the GNU C Library. +.PP +This man page was written by Jeff Bailey . + +.rn }` '' +.IX Title "GENCAT 1" +.IX Name "gencat - Generate message catalog" + +.IX Header "NAME" + +.IX Header "SYNOPSIS" + +.IX Header "DESCRIPTION" + +.IX Header "AUTHOR" + --- glibc-2.5.orig/debian/local/manpages/catchsegv.pod +++ glibc-2.5/debian/local/manpages/catchsegv.pod @@ -0,0 +1,20 @@ +=head1 NAME + +catchsegv - Catch segmentation faults in programs + +=head1 SYNOPSIS + +B B [B] + +=head1 DESCRIPTION + +Used to debug segmentation faults in programs. The output is the +content of registers, plus a backtrace. Basically you call your +program and its arguments as the arguments to catchsegv. + +=head1 AUTHOR + +I was written by Ulrich Drepper for the GNU C Library + +This man page was written by Ben Collins Ebcollins@debian.orgE for +the Debian GNU/Linux system. --- glibc-2.5.orig/debian/local/manpages/es/addendum.es +++ glibc-2.5/debian/local/manpages/es/addendum.es @@ -0,0 +1,3 @@ + +.SH TRADUCTOR +Traduccin de Rubn Porras Campo --- glibc-2.5.orig/debian/local/manpages/es/validlocale.es.8 +++ glibc-2.5/debian/local/manpages/es/validlocale.es.8 @@ -0,0 +1,54 @@ +.\" This file was generated with po4a. Translate the source file. +.\" +.TH validlocale 8 0.1 "Petter Reinholdtsen" "" +.SH NOMBRE +.LP +validlocale \- Comprueba si la opcin de localizacin dada est disponible +.SH SINTAXIS +.LP +validlocale <\fIopcin_de_localizacin\fP> +.SH DESCRIPCIN +.LP +Comprueba si la opcin de localizacin dada como argumento es vlida. Si no +lo es muestra en la stdout (salida estndar) la cadena de caracteres que se +necesita aadir a /etc/locale.gen para que locale\-gen genere esa opcin de +localizacin (si es que existe). +.SH FICHEROS +.LP +\fI/usr/sbin/validlocale\fP +.br +\fI/usr/share/i18n/SUPPORTED\fP +.SH "VARIABLES DE ENTORNO" +.LP +.TP +\fBDEFAULTCHARSET\fP +El juego de caracteres que asume en caso de que la opcin de localizacin +dada no est entre la lista de opciones de localizacin soportadas. +.SH EJEMPLOS +.LP +Si usted proporciona una opcin de localizacin vlida como parmetro, +muestra una cadena de caracteres especificndolo en stderr (salida de +errores estndar): +.LP +.IP +% validlocale C +.br +locale 'C' valid and available +.LP +Cuando se proporcione una invlida (no ha sido generada o no existe), +muestra una cadena de caracteres en stderr diciendo que es invlida, y otra +a stdout con la cadena de caracteres que se necesita aadir a +/etc/locale.gen para que se genere: +.LP +.IP +% validlocale de_AU@euro +.br +locale 'de_AT@euro' not available +.br +de_AT@euro ISO\-8859\-15 +.SH AUTORES +.LP +Petter Reinholdtsen +.SH "VASE ADEMS" +.LP +locale\-gen(8), localedef(1), locale(1) --- glibc-2.5.orig/debian/local/manpages/fr/addendum.fr +++ glibc-2.5/debian/local/manpages/fr/addendum.fr @@ -0,0 +1,4 @@ +PO4A-HEADER:mode=after;position=AUTEUR;beginboundary=\.SH + +.SH "TRADUCTION" +Clment Stenac, 2005. Veuillez signaler toute erreur --- glibc-2.5.orig/debian/local/manpages/fr/validlocale.fr.8 +++ glibc-2.5/debian/local/manpages/fr/validlocale.fr.8 @@ -0,0 +1,57 @@ +.\" This file was generated with po4a. Translate the source file. +.\" +.TH validlocale 8 0.1 "Petter Reinholdtsen" "" +.SH NOM +.LP +validlocale \- vrifie si un ensemble donn de paramtres rgionaux est +disponible +.SH SYNTAXE +.LP +validlocale <\fIlocale\fP> +.SH DESCRIPTION +.LP +Teste si l'ensemble de paramtres rgionaux donn en argument est +valable. S'il ne l'est pas, affiche sur la sortie standard la chane de +caractres ajouter /etc/locale.gen afin de permettre locale\-gen de +gnrer l'ensemble de paramtres (s'il existe). +.SH FICHIERS +.LP +\fI/us/sbin/validlocale\fP +.br +\fI/usr/share/i18n/SUPPORTED\fP +.SH "VARIABLES D'ENVIRONNEMENT" +.LP +.TP +\fBDEFAULTCHARSET\fP +Indique quel encodage de caractres doit tre suppos si la locale donne +n'est pas dans la liste des locales gres. +.SH EXEMPLES +.LP +Si vous indiquez comme paramtre une locale valabe, vous recevrez ceci sur +la sortie d'erreur +.LP +.IP +% validlocale C +.br +locale \ C\ valide et disponible +.LP +Lorsqu'une locale non valable (non cre ou inexistante) est indique, vous +recevrez un message sur la sortie d'erreur disant qu'il s'agit d'une locale +non valable et une chane de caractres sur la sortie standard ajouter +/etc/locale.gen pour que la locale soit cre\ : +.LP +.IP +% validlocale de_AU@euro +.br +locale \ de_AT@euro\ non disponible +.br +de_AT@euro ISO\-8859\-15 +.SH AUTEURS +.LP +PetterReinholdtsen + +.SH "TRADUCTION" +Clment Stenac, 2005. Veuillez signaler toute erreur +.SH "VOIR AUSSI" +.LP +locale\-gen(8), localedef(1), locale(1) --- glibc-2.5.orig/debian/local/manpages/tzselect.1 +++ glibc-2.5/debian/local/manpages/tzselect.1 @@ -0,0 +1,67 @@ +.\" Copyright 1998 Marcus Brinkmann (brinkmd@debian.org) +.\" +.\" Permission is granted to make and distribute verbatim copies of this +.\" manual provided the copyright notice and this permission notice are +.\" preserved on all copies. +.\" +.\" Permission is granted to copy and distribute modified versions of this +.\" manual under the conditions for verbatim copying, provided that the +.\" entire resulting derived work is distributed under the terms of a +.\" permission notice identical to this one +.\" +.\" Since the Linux kernel and libraries are constantly changing, this +.\" manual page may be incorrect or out-of-date. The author(s) assume no +.\" responsibility for errors or omissions, or for damages resulting from +.\" the use of the information contained herein. The author(s) may not +.\" have taken the same level of care in the production of this manual, +.\" which is licensed free of charge, as they might when working +.\" professionally. +.\" +.\" Formatted or processed versions of this manual, if unaccompanied by +.\" the source, must acknowledge the copyright and authors of this work. +.\" +.\" Modified Mon Jul 12 18:40:00 1998 by Marcus Brinkmann (brinkmd@debian.org) +.TH TZSELECT 1 "12 June 1998" "Debian" "Debian Timezone Configuration" +.SH NAME +tzselect \- view timezones +.SH SYNOPSIS +.B tzselect +.SH DESCRIPTION +This manual page explains how you can use the +.B "tzselect" +utility to view the installed timezone. It comes handy when you want to know what time it is in +other countries, or if you just wonder what timezones exist. + +.B tzselect +is called without any parameters from the shell. It shows a list of about one dozen geographic +areas one can roughly recognize as continents. After choosing a geographic area by number, a +list of countries and cities in this area will be shown. + +You can press the +.B Enter +key to reprint the list. To choose a timezone, just press the number left to it. +If your input is invalid, the list will be reprinted. + +You may press +.B Ctrl-C +to interrupt the script at any time. + +Note that +.B tzselect +will not actually change the timezone for you. Use 'dpkg-reconfigure tzdata' to achieve this. +.SH FILES +.I /usr/share/zoneinfo/ +.SH "SEE ALSO" +.BR hwclock (8) +.SH AUTHOR +Copyright 1998 Marcus Brinkmann + +Please see nroff source for legal notice. + + + + + + + + --- glibc-2.5.orig/debian/local/manpages/sprof.1 +++ glibc-2.5/debian/local/manpages/sprof.1 @@ -0,0 +1,230 @@ +.rn '' }` +''' $RCSfile: sprof.1,v $$Revision: 1.1.2.1 $$Date: 2003/09/22 21:33:35 $ +''' +''' $Log: sprof.1,v $ +''' Revision 1.1.2.1 2003/09/22 21:33:35 jbailey +''' New directory for things we add to the package +''' +''' +.de Sh +.br +.if t .Sp +.ne 5 +.PP +\fB\\$1\fR +.PP +.. +.de Sp +.if t .sp .5v +.if n .sp +.. +.de Ip +.br +.ie \\n(.$>=3 .ne \\$3 +.el .ne 3 +.IP "\\$1" \\$2 +.. +.de Vb +.ft CW +.nf +.ne \\$1 +.. +.de Ve +.ft R + +.fi +.. +''' +''' +''' Set up \*(-- to give an unbreakable dash; +''' string Tr holds user defined translation string. +''' Bell System Logo is used as a dummy character. +''' +.tr \(*W-|\(bv\*(Tr +.ie n \{\ +.ds -- \(*W- +.ds PI pi +.if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch +.if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch +.ds L" "" +.ds R" "" +''' \*(M", \*(S", \*(N" and \*(T" are the equivalent of +''' \*(L" and \*(R", except that they are used on ".xx" lines, +''' such as .IP and .SH, which do another additional levels of +''' double-quote interpretation +.ds M" """ +.ds S" """ +.ds N" """"" +.ds T" """"" +.ds L' ' +.ds R' ' +.ds M' ' +.ds S' ' +.ds N' ' +.ds T' ' +'br\} +.el\{\ +.ds -- \(em\| +.tr \*(Tr +.ds L" `` +.ds R" '' +.ds M" `` +.ds S" '' +.ds N" `` +.ds T" '' +.ds L' ` +.ds R' ' +.ds M' ` +.ds S' ' +.ds N' ` +.ds T' ' +.ds PI \(*p +'br\} +.\" If the F register is turned on, we'll generate +.\" index entries out stderr for the following things: +.\" TH Title +.\" SH Header +.\" Sh Subsection +.\" Ip Item +.\" X<> Xref (embedded +.\" Of course, you have to process the output yourself +.\" in some meaningful fashion. +.if \nF \{ +.de IX +.tm Index:\\$1\t\\n%\t"\\$2" +.. +.nr % 0 +.rr F +.\} +.TH SPROF 1 "etch" "7/Jan/2001" "Debian GNU/Linux" +.UC +.if n .hy 0 +.if n .na +.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' +.de CQ \" put $1 in typewriter font +.ft CW +'if n "\c +'if t \\&\\$1\c +'if n \\&\\$1\c +'if n \&" +\\&\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 +'.ft R +.. +.\" @(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2 +. \" AM - accent mark definitions +.bd B 3 +. \" fudge factors for nroff and troff +.if n \{\ +. ds #H 0 +. ds #V .8m +. ds #F .3m +. ds #[ \f1 +. ds #] \fP +.\} +.if t \{\ +. ds #H ((1u-(\\\\n(.fu%2u))*.13m) +. ds #V .6m +. ds #F 0 +. ds #[ \& +. ds #] \& +.\} +. \" simple accents for nroff and troff +.if n \{\ +. ds ' \& +. ds ` \& +. ds ^ \& +. ds , \& +. ds ~ ~ +. ds ? ? +. ds ! ! +. ds / +. ds q +.\} +.if t \{\ +. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" +. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' +. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' +. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' +. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' +. ds ? \s-2c\h'-\w'c'u*7/10'\u\h'\*(#H'\zi\d\s+2\h'\w'c'u*8/10' +. ds ! \s-2\(or\s+2\h'-\w'\(or'u'\v'-.8m'.\v'.8m' +. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' +. ds q o\h'-\w'o'u*8/10'\s-4\v'.4m'\z\(*i\v'-.4m'\s+4\h'\w'o'u*8/10' +.\} +. \" troff and (daisy-wheel) nroff accents +.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' +.ds 8 \h'\*(#H'\(*b\h'-\*(#H' +.ds v \\k:\h'-(\\n(.wu*9/10-\*(#H)'\v'-\*(#V'\*(#[\s-4v\s0\v'\*(#V'\h'|\\n:u'\*(#] +.ds _ \\k:\h'-(\\n(.wu*9/10-\*(#H+(\*(#F*2/3))'\v'-.4m'\z\(hy\v'.4m'\h'|\\n:u' +.ds . \\k:\h'-(\\n(.wu*8/10)'\v'\*(#V*4/10'\z.\v'-\*(#V*4/10'\h'|\\n:u' +.ds 3 \*(#[\v'.2m'\s-2\&3\s0\v'-.2m'\*(#] +.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] +.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' +.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' +.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] +.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] +.ds ae a\h'-(\w'a'u*4/10)'e +.ds Ae A\h'-(\w'A'u*4/10)'E +.ds oe o\h'-(\w'o'u*4/10)'e +.ds Oe O\h'-(\w'O'u*4/10)'E +. \" corrections for vroff +.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' +.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' +. \" for low resolution devices (crt and lpr) +.if \n(.H>23 .if \n(.V>19 \ +\{\ +. ds : e +. ds 8 ss +. ds v \h'-1'\o'\(aa\(ga' +. ds _ \h'-1'^ +. ds . \h'-1'. +. ds 3 3 +. ds o a +. ds d- d\h'-1'\(ga +. ds D- D\h'-1'\(hy +. ds th \o'bp' +. ds Th \o'LP' +. ds ae ae +. ds Ae AE +. ds oe oe +. ds Oe OE +.\} +.rm #[ #] #H #V #F C +.SH "NAME" +sprof \- Read and display shared object profiling data +.SH "SYNOPSIS" +\fBsprof\fR \fB\-p\fR|\fB\-c\fR [\fB\-q\fR] +.SH "DESCRIPTION" +\fB--call-pairs\fR, \fB\-c\fR +.PP +.Vb 1 +\& print list of count paths and their number of use +.Ve +\fB--flat-profile\fR, \fB\-p\fR +.PP +.Vb 1 +\& generate flat profile with counts and ticks +.Ve +\fB--graph\fR, \fB\-q\fR +.PP +.Vb 1 +\& generate call graph +.Ve +.SH "AUTHOR" +\fIsprof\fR was written by Ulrich Drepper for the GNU C Library +.PP +This man page was written by Joel Klecker for +the Debian GNU/Linux system. + +.rn }` '' +.IX Title "SPROF 1" +.IX Name "sprof - Read and display shared object profiling data" + +.IX Header "NAME" + +.IX Header "SYNOPSIS" + +.IX Header "DESCRIPTION" + +.IX Header "AUTHOR" + --- glibc-2.5.orig/debian/local/manpages/iconvconfig.8 +++ glibc-2.5/debian/local/manpages/iconvconfig.8 @@ -0,0 +1,232 @@ +.rn '' }` +''' $RCSfile: iconvconfig.8,v $$Revision: 1.1 $$Date: 2007-04-11 03:07:27 +0000 (mer, 11 avr 2007) $ +''' +''' $Log: iconvconfig.8,v $ +''' Revision 1.1 2003/11/03 17:37:27 jbailey +''' - debian/local/manpages/gencat.1: New file. +''' - debian/local/manpages/trace.1: New file. +''' - debian/debhelper.in/libc-dev.manpages: Install them. +''' - debian/local/manpages/iconvconfig.8: New file. +''' - debian/debhelper.in/libc.manpages: Install it. +''' +''' Revision 1.1.2.2 2003/10/28 05:48:08 dan +''' - Re-add debian/patches/80_glibc232-locales-nb_NO-fix.dpatch, which had +''' gotten lost. +''' - Re-add typo fixes to iconv.1 and rpcgen.1. +''' - Merge iconv.1 fix to iconv.pod. +''' - Fix ld.so name in ld.so.8. +''' - Re-add fix for locale-gen and POSIXLY_CORRECT. +''' +''' +.de Sh +.br +.if t .Sp +.ne 5 +.PP +\fB\\$1\fR +.PP +.. +.de Sp +.if t .sp .5v +.if n .sp +.. +.de Ip +.br +.ie \\n(.$>=3 .ne \\$3 +.el .ne 3 +.IP "\\$1" \\$2 +.. +.de Vb +.ft CW +.nf +.ne \\$1 +.. +.de Ve +.ft R + +.fi +.. +''' +''' +''' Set up \*(-- to give an unbreakable dash; +''' string Tr holds user defined translation string. +''' Bell System Logo is used as a dummy character. +''' +.tr \(*W-|\(bv\*(Tr +.ie n \{\ +.ds -- \(*W- +.ds PI pi +.if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch +.if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch +.ds L" "" +.ds R" "" +''' \*(M", \*(S", \*(N" and \*(T" are the equivalent of +''' \*(L" and \*(R", except that they are used on ".xx" lines, +''' such as .IP and .SH, which do another additional levels of +''' double-quote interpretation +.ds M" """ +.ds S" """ +.ds N" """"" +.ds T" """"" +.ds L' ' +.ds R' ' +.ds M' ' +.ds S' ' +.ds N' ' +.ds T' ' +'br\} +.el\{\ +.ds -- \(em\| +.tr \*(Tr +.ds L" `` +.ds R" '' +.ds M" `` +.ds S" '' +.ds N" `` +.ds T" '' +.ds L' ` +.ds R' ' +.ds M' ` +.ds S' ' +.ds N' ` +.ds T' ' +.ds PI \(*p +'br\} +.\" If the F register is turned on, we'll generate +.\" index entries out stderr for the following things: +.\" TH Title +.\" SH Header +.\" Sh Subsection +.\" Ip Item +.\" X<> Xref (embedded +.\" Of course, you have to process the output yourself +.\" in some meaningful fashion. +.if \nF \{ +.de IX +.tm Index:\\$1\t\\n%\t"\\$2" +.. +.nr % 0 +.rr F +.\} +.TH ICONVCONFIG 8 "November 2003" "iconvconfig (glibc)" "Debian" +.UC +.if n .hy 0 +.if n .na +.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' +.de CQ \" put $1 in typewriter font +.ft CW +'if n "\c +'if t \\&\\$1\c +'if n \\&\\$1\c +'if n \&" +\\&\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 +'.ft R +.. +.\" @(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2 +. \" AM - accent mark definitions +.bd B 3 +. \" fudge factors for nroff and troff +.if n \{\ +. ds #H 0 +. ds #V .8m +. ds #F .3m +. ds #[ \f1 +. ds #] \fP +.\} +.if t \{\ +. ds #H ((1u-(\\\\n(.fu%2u))*.13m) +. ds #V .6m +. ds #F 0 +. ds #[ \& +. ds #] \& +.\} +. \" simple accents for nroff and troff +.if n \{\ +. ds ' \& +. ds ` \& +. ds ^ \& +. ds , \& +. ds ~ ~ +. ds ? ? +. ds ! ! +. ds / +. ds q +.\} +.if t \{\ +. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" +. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' +. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' +. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' +. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' +. ds ? \s-2c\h'-\w'c'u*7/10'\u\h'\*(#H'\zi\d\s+2\h'\w'c'u*8/10' +. ds ! \s-2\(or\s+2\h'-\w'\(or'u'\v'-.8m'.\v'.8m' +. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' +. ds q o\h'-\w'o'u*8/10'\s-4\v'.4m'\z\(*i\v'-.4m'\s+4\h'\w'o'u*8/10' +.\} +. \" troff and (daisy-wheel) nroff accents +.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' +.ds 8 \h'\*(#H'\(*b\h'-\*(#H' +.ds v \\k:\h'-(\\n(.wu*9/10-\*(#H)'\v'-\*(#V'\*(#[\s-4v\s0\v'\*(#V'\h'|\\n:u'\*(#] +.ds _ \\k:\h'-(\\n(.wu*9/10-\*(#H+(\*(#F*2/3))'\v'-.4m'\z\(hy\v'.4m'\h'|\\n:u' +.ds . \\k:\h'-(\\n(.wu*8/10)'\v'\*(#V*4/10'\z.\v'-\*(#V*4/10'\h'|\\n:u' +.ds 3 \*(#[\v'.2m'\s-2\&3\s0\v'-.2m'\*(#] +.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] +.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' +.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' +.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] +.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] +.ds ae a\h'-(\w'a'u*4/10)'e +.ds Ae A\h'-(\w'A'u*4/10)'E +.ds oe o\h'-(\w'o'u*4/10)'e +.ds Oe O\h'-(\w'O'u*4/10)'E +. \" corrections for vroff +.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' +.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' +. \" for low resolution devices (crt and lpr) +.if \n(.H>23 .if \n(.V>19 \ +\{\ +. ds : e +. ds 8 ss +. ds v \h'-1'\o'\(aa\(ga' +. ds _ \h'-1'^ +. ds . \h'-1'. +. ds 3 3 +. ds o a +. ds d- d\h'-1'\(ga +. ds D- D\h'-1'\(hy +. ds th \o'bp' +. ds Th \o'LP' +. ds ae ae +. ds Ae AE +. ds oe oe +. ds Oe OE +.\} +.rm #[ #] #H #V #F C +.SH "NAME" +iconvconfig \- Create fastloading iconv module configuration file +.SH "SYNOPSIS" +iconvconfig [OPTION...] [DIR...] +.SH "DESCRIPTION" +The \fBiconvconfig\fR program generates a cache that internationalised +applications can use to reduce loading time. +.PP +.TP +\fB--prefix\fR \fIPATH\fR +Prefix used for all file accesses +.SH "AUTHOR" +\fIiconvconfig\fR was written by Ulrich Drepper as part of the GNU C Library. +.PP +This man page was written by Jeff Bailey . + +.rn }` '' +.IX Title "ICONVCONFIG 8" +.IX Name "iconvconfig - Create fastloading iconv module configuration file" + +.IX Header "NAME" + +.IX Header "SYNOPSIS" + +.IX Header "DESCRIPTION" + +.IX Header "AUTHOR" + --- glibc-2.5.orig/debian/local/manpages/getconf.1 +++ glibc-2.5/debian/local/manpages/getconf.1 @@ -0,0 +1,239 @@ +.rn '' }` +''' $RCSfile: getconf.1,v $$Revision: 1.1.2.1 $$Date: 2003/09/22 21:33:35 $ +''' +''' $Log: getconf.1,v $ +''' Revision 1.1.2.1 2003/09/22 21:33:35 jbailey +''' New directory for things we add to the package +''' +''' +.de Sh +.br +.if t .Sp +.ne 5 +.PP +\fB\\$1\fR +.PP +.. +.de Sp +.if t .sp .5v +.if n .sp +.. +.de Ip +.br +.ie \\n(.$>=3 .ne \\$3 +.el .ne 3 +.IP "\\$1" \\$2 +.. +.de Vb +.ft CW +.nf +.ne \\$1 +.. +.de Ve +.ft R + +.fi +.. +''' +''' +''' Set up \*(-- to give an unbreakable dash; +''' string Tr holds user defined translation string. +''' Bell System Logo is used as a dummy character. +''' +.tr \(*W-|\(bv\*(Tr +.ie n \{\ +.ds -- \(*W- +.ds PI pi +.if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch +.if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch +.ds L" "" +.ds R" "" +''' \*(M", \*(S", \*(N" and \*(T" are the equivalent of +''' \*(L" and \*(R", except that they are used on ".xx" lines, +''' such as .IP and .SH, which do another additional levels of +''' double-quote interpretation +.ds M" """ +.ds S" """ +.ds N" """"" +.ds T" """"" +.ds L' ' +.ds R' ' +.ds M' ' +.ds S' ' +.ds N' ' +.ds T' ' +'br\} +.el\{\ +.ds -- \(em\| +.tr \*(Tr +.ds L" `` +.ds R" '' +.ds M" `` +.ds S" '' +.ds N" `` +.ds T" '' +.ds L' ` +.ds R' ' +.ds M' ` +.ds S' ' +.ds N' ` +.ds T' ' +.ds PI \(*p +'br\} +.\" If the F register is turned on, we'll generate +.\" index entries out stderr for the following things: +.\" TH Title +.\" SH Header +.\" Sh Subsection +.\" Ip Item +.\" X<> Xref (embedded +.\" Of course, you have to process the output yourself +.\" in some meaningful fashion. +.if \nF \{ +.de IX +.tm Index:\\$1\t\\n%\t"\\$2" +.. +.nr % 0 +.rr F +.\} +.TH GETCONF 1 "etch" "7/Jan/2001" "Debian GNU/Linux" +.UC +.if n .hy 0 +.if n .na +.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' +.de CQ \" put $1 in typewriter font +.ft CW +'if n "\c +'if t \\&\\$1\c +'if n \\&\\$1\c +'if n \&" +\\&\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 +'.ft R +.. +.\" @(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2 +. \" AM - accent mark definitions +.bd B 3 +. \" fudge factors for nroff and troff +.if n \{\ +. ds #H 0 +. ds #V .8m +. ds #F .3m +. ds #[ \f1 +. ds #] \fP +.\} +.if t \{\ +. ds #H ((1u-(\\\\n(.fu%2u))*.13m) +. ds #V .6m +. ds #F 0 +. ds #[ \& +. ds #] \& +.\} +. \" simple accents for nroff and troff +.if n \{\ +. ds ' \& +. ds ` \& +. ds ^ \& +. ds , \& +. ds ~ ~ +. ds ? ? +. ds ! ! +. ds / +. ds q +.\} +.if t \{\ +. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" +. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' +. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' +. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' +. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' +. ds ? \s-2c\h'-\w'c'u*7/10'\u\h'\*(#H'\zi\d\s+2\h'\w'c'u*8/10' +. ds ! \s-2\(or\s+2\h'-\w'\(or'u'\v'-.8m'.\v'.8m' +. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' +. ds q o\h'-\w'o'u*8/10'\s-4\v'.4m'\z\(*i\v'-.4m'\s+4\h'\w'o'u*8/10' +.\} +. \" troff and (daisy-wheel) nroff accents +.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' +.ds 8 \h'\*(#H'\(*b\h'-\*(#H' +.ds v \\k:\h'-(\\n(.wu*9/10-\*(#H)'\v'-\*(#V'\*(#[\s-4v\s0\v'\*(#V'\h'|\\n:u'\*(#] +.ds _ \\k:\h'-(\\n(.wu*9/10-\*(#H+(\*(#F*2/3))'\v'-.4m'\z\(hy\v'.4m'\h'|\\n:u' +.ds . \\k:\h'-(\\n(.wu*8/10)'\v'\*(#V*4/10'\z.\v'-\*(#V*4/10'\h'|\\n:u' +.ds 3 \*(#[\v'.2m'\s-2\&3\s0\v'-.2m'\*(#] +.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] +.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' +.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' +.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] +.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] +.ds ae a\h'-(\w'a'u*4/10)'e +.ds Ae A\h'-(\w'A'u*4/10)'E +.ds oe o\h'-(\w'o'u*4/10)'e +.ds Oe O\h'-(\w'O'u*4/10)'E +. \" corrections for vroff +.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' +.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' +. \" for low resolution devices (crt and lpr) +.if \n(.H>23 .if \n(.V>19 \ +\{\ +. ds : e +. ds 8 ss +. ds v \h'-1'\o'\(aa\(ga' +. ds _ \h'-1'^ +. ds . \h'-1'. +. ds 3 3 +. ds o a +. ds d- d\h'-1'\(ga +. ds D- D\h'-1'\(hy +. ds th \o'bp' +. ds Th \o'LP' +. ds ae ae +. ds Ae AE +. ds oe oe +. ds Oe OE +.\} +.rm #[ #] #H #V #F C +.SH "NAME" +getconf \- Query system configuration variables +.SH "SYNOPSIS" +\fBgetconf\fR [\fB\-v specification\fR] system_var +.PP +\fBgetconf\fR [\fB\-v specification\fR] path_var pathname +.SH "DESCRIPTION" +\fB\-v\fR +.PP +.Vb 2 +\& Indicate the specification and version for which to obtain +\& configuration variables. +.Ve +\fBsystem_var\fR +.PP +.Vb 2 +\& A system configuration variable, as defined by sysconf(3) or +\& confstr(3). +.Ve +\fBpath_var\fR +.PP +.Vb 2 +\& A system configuration variable as defined by pathconf(3). This +\& must be used with a pathname. +.Ve +.SH "AUTHOR" +\fIgetconf\fR was written by Roland McGrath for the GNU C Library +.PP +This man page was written by Ben Collins for +the Debian GNU/Linux system. +.SH "SEE ALSO" +\fBsysconf\fR(3), \fBpathconf\fR(3), \fBconfstr\fR(3) + +.rn }` '' +.IX Title "GETCONF 1" +.IX Name "getconf - Query system configuration variables" + +.IX Header "NAME" + +.IX Header "SYNOPSIS" + +.IX Header "DESCRIPTION" + +.IX Header "AUTHOR" + +.IX Header "SEE ALSO" + --- glibc-2.5.orig/debian/local/manpages/iconv.1 +++ glibc-2.5/debian/local/manpages/iconv.1 @@ -0,0 +1,256 @@ +.rn '' }` +''' $RCSfile: iconv.1,v $$Revision: 1.1.2.2 $$Date: 2003/10/28 05:48:08 $ +''' +''' $Log: iconv.1,v $ +''' Revision 1.1.2.2 2003/10/28 05:48:08 dan +''' - Re-add debian/patches/80_glibc232-locales-nb_NO-fix.dpatch, which had +''' gotten lost. +''' - Re-add typo fixes to iconv.1 and rpcgen.1. +''' - Merge iconv.1 fix to iconv.pod. +''' - Fix ld.so name in ld.so.8. +''' - Re-add fix for locale-gen and POSIXLY_CORRECT. +''' +''' +.de Sh +.br +.if t .Sp +.ne 5 +.PP +\fB\\$1\fR +.PP +.. +.de Sp +.if t .sp .5v +.if n .sp +.. +.de Ip +.br +.ie \\n(.$>=3 .ne \\$3 +.el .ne 3 +.IP "\\$1" \\$2 +.. +.de Vb +.ft CW +.nf +.ne \\$1 +.. +.de Ve +.ft R + +.fi +.. +''' +''' +''' Set up \*(-- to give an unbreakable dash; +''' string Tr holds user defined translation string. +''' Bell System Logo is used as a dummy character. +''' +.tr \(*W-|\(bv\*(Tr +.ie n \{\ +.ds -- \(*W- +.ds PI pi +.if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch +.if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch +.ds L" "" +.ds R" "" +''' \*(M", \*(S", \*(N" and \*(T" are the equivalent of +''' \*(L" and \*(R", except that they are used on ".xx" lines, +''' such as .IP and .SH, which do another additional levels of +''' double-quote interpretation +.ds M" """ +.ds S" """ +.ds N" """"" +.ds T" """"" +.ds L' ' +.ds R' ' +.ds M' ' +.ds S' ' +.ds N' ' +.ds T' ' +'br\} +.el\{\ +.ds -- \(em\| +.tr \*(Tr +.ds L" `` +.ds R" '' +.ds M" `` +.ds S" '' +.ds N" `` +.ds T" '' +.ds L' ` +.ds R' ' +.ds M' ` +.ds S' ' +.ds N' ` +.ds T' ' +.ds PI \(*p +'br\} +.\" If the F register is turned on, we'll generate +.\" index entries out stderr for the following things: +.\" TH Title +.\" SH Header +.\" Sh Subsection +.\" Ip Item +.\" X<> Xref (embedded +.\" Of course, you have to process the output yourself +.\" in some meaningful fashion. +.if \nF \{ +.de IX +.tm Index:\\$1\t\\n%\t"\\$2" +.. +.nr % 0 +.rr F +.\} +.TH ICONV 1 "etch" "20/Jun/2004" "Debian GNU/Linux" +.UC +.if n .hy 0 +.if n .na +.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' +.de CQ \" put $1 in typewriter font +.ft CW +'if n "\c +'if t \\&\\$1\c +'if n \\&\\$1\c +'if n \&" +\\&\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 +'.ft R +.. +.\" @(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2 +. \" AM - accent mark definitions +.bd B 3 +. \" fudge factors for nroff and troff +.if n \{\ +. ds #H 0 +. ds #V .8m +. ds #F .3m +. ds #[ \f1 +. ds #] \fP +.\} +.if t \{\ +. ds #H ((1u-(\\\\n(.fu%2u))*.13m) +. ds #V .6m +. ds #F 0 +. ds #[ \& +. ds #] \& +.\} +. \" simple accents for nroff and troff +.if n \{\ +. ds ' \& +. ds ` \& +. ds ^ \& +. ds , \& +. ds ~ ~ +. ds ? ? +. ds ! ! +. ds / +. ds q +.\} +.if t \{\ +. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" +. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' +. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' +. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' +. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' +. ds ? \s-2c\h'-\w'c'u*7/10'\u\h'\*(#H'\zi\d\s+2\h'\w'c'u*8/10' +. ds ! \s-2\(or\s+2\h'-\w'\(or'u'\v'-.8m'.\v'.8m' +. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' +. ds q o\h'-\w'o'u*8/10'\s-4\v'.4m'\z\(*i\v'-.4m'\s+4\h'\w'o'u*8/10' +.\} +. \" troff and (daisy-wheel) nroff accents +.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' +.ds 8 \h'\*(#H'\(*b\h'-\*(#H' +.ds v \\k:\h'-(\\n(.wu*9/10-\*(#H)'\v'-\*(#V'\*(#[\s-4v\s0\v'\*(#V'\h'|\\n:u'\*(#] +.ds _ \\k:\h'-(\\n(.wu*9/10-\*(#H+(\*(#F*2/3))'\v'-.4m'\z\(hy\v'.4m'\h'|\\n:u' +.ds . \\k:\h'-(\\n(.wu*8/10)'\v'\*(#V*4/10'\z.\v'-\*(#V*4/10'\h'|\\n:u' +.ds 3 \*(#[\v'.2m'\s-2\&3\s0\v'-.2m'\*(#] +.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] +.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' +.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' +.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] +.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] +.ds ae a\h'-(\w'a'u*4/10)'e +.ds Ae A\h'-(\w'A'u*4/10)'E +.ds oe o\h'-(\w'o'u*4/10)'e +.ds Oe O\h'-(\w'O'u*4/10)'E +. \" corrections for vroff +.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' +.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' +. \" for low resolution devices (crt and lpr) +.if \n(.H>23 .if \n(.V>19 \ +\{\ +. ds : e +. ds 8 ss +. ds v \h'-1'\o'\(aa\(ga' +. ds _ \h'-1'^ +. ds . \h'-1'. +. ds 3 3 +. ds o a +. ds d- d\h'-1'\(ga +. ds D- D\h'-1'\(hy +. ds th \o'bp' +. ds Th \o'LP' +. ds ae ae +. ds Ae AE +. ds oe oe +. ds Oe OE +.\} +.rm #[ #] #H #V #F C +.SH "NAME" +iconv - Convert encoding of given files from one encoding to another +.SH "SYNOPSIS" +iconv \fB\-f\fR \fIencoding\fR [\fB\-t\fR \fIencoding\fR] \fI[inputfile]\fR... +.SH "DESCRIPTION" +The \fBiconv\fR program converts the encoding of characters in +\fIinputfile\fR, or from the standard input if no filename is specified, +from one coded character set to another. The result is +written to standard output unless otherwise specified by the +\fB\-\-output\fR option. +.TP +\fB\-\-from\-code\fR, \fB\-f\fR \fIencoding\fR +Convert characters from \fIencoding\fR. +.TP +\fB\-\-to\-code\fR, \fB\-t\fR \fIencoding\fR +Convert characters to \fIencoding\fR. If not specified the +encoding corresponding to the current locale is used. +.TP +\fB\-\-list\fR, \fB\-l\fR +List known coded character sets. +.TP +\fB\-c\fR +Omit invalid characters from output. +.TP +\fB\-\-output\fR, \fB\-o\fR \fIfile\fR +Specify output file (instead of stdout). +.TP +\fB\-\-silent\fR, \fB\-s\fR +Suppress warnings, but not errors. +.TP +\fB\-\-verbose\fR +Print progress information. +.TP +\fB\-\-help\fR, \fB\-?\fR +Give help list. +.TP +\fB\-\-usage\fR +Give a short usage message. +.TP +\fB\-\-version\fR, \fB\-V\fR +Print program version. +.SH "AUTHOR" +\fIiconv\fR was written by Ulrich Drepper as part of the GNU C Library. +.PP +This man page was written by Joel Klecker , +for the Debian GNU/Linux system. + +.rn }` '' +.IX Title "ICONV 1" +.IX Name "iconv - Convert encoding of given files from one encoding to another" + +.IX Header "NAME" + +.IX Header "SYNOPSIS" + +.IX Header "DESCRIPTION" + +.IX Header "AUTHOR" + --- glibc-2.5.orig/debian/local/manpages/getconf.pod +++ glibc-2.5/debian/local/manpages/getconf.pod @@ -0,0 +1,37 @@ +=head1 NAME + +getconf - Query system configuration variables + +=head1 SYNOPSIS + +B [B<-v specification>] system_var + +B [B<-v specification>] path_var pathname + +=head1 DESCRIPTION + +B<-v> + + Indicate the specification and version for which to obtain + configuration variables. + +B + + A system configuration variable, as defined by sysconf(3) or + confstr(3). + +B + + A system configuration variable as defined by pathconf(3). This + must be used with a pathname. + +=head1 AUTHOR + +I was written by Roland McGrath for the GNU C Library + +This man page was written by Ben Collins Ebcollins@debian.orgE for +the Debian GNU/Linux system. + +=head1 SEE ALSO + +B(3), B(3), B(3) --- glibc-2.5.orig/debian/local/manpages/getent.1 +++ glibc-2.5/debian/local/manpages/getent.1 @@ -0,0 +1,219 @@ +.rn '' }` +''' $RCSfile: getent.1,v $$Revision: 1.1.2.1 $$Date: 2003/09/22 21:33:35 $ +''' +''' $Log: getent.1,v $ +''' Revision 1.1.2.1 2003/09/22 21:33:35 jbailey +''' New directory for things we add to the package +''' +''' +.de Sh +.br +.if t .Sp +.ne 5 +.PP +\fB\\$1\fR +.PP +.. +.de Sp +.if t .sp .5v +.if n .sp +.. +.de Ip +.br +.ie \\n(.$>=3 .ne \\$3 +.el .ne 3 +.IP "\\$1" \\$2 +.. +.de Vb +.ft CW +.nf +.ne \\$1 +.. +.de Ve +.ft R + +.fi +.. +''' +''' +''' Set up \*(-- to give an unbreakable dash; +''' string Tr holds user defined translation string. +''' Bell System Logo is used as a dummy character. +''' +.tr \(*W-|\(bv\*(Tr +.ie n \{\ +.ds -- \(*W- +.ds PI pi +.if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch +.if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch +.ds L" "" +.ds R" "" +''' \*(M", \*(S", \*(N" and \*(T" are the equivalent of +''' \*(L" and \*(R", except that they are used on ".xx" lines, +''' such as .IP and .SH, which do another additional levels of +''' double-quote interpretation +.ds M" """ +.ds S" """ +.ds N" """"" +.ds T" """"" +.ds L' ' +.ds R' ' +.ds M' ' +.ds S' ' +.ds N' ' +.ds T' ' +'br\} +.el\{\ +.ds -- \(em\| +.tr \*(Tr +.ds L" `` +.ds R" '' +.ds M" `` +.ds S" '' +.ds N" `` +.ds T" '' +.ds L' ` +.ds R' ' +.ds M' ` +.ds S' ' +.ds N' ` +.ds T' ' +.ds PI \(*p +'br\} +.\" If the F register is turned on, we'll generate +.\" index entries out stderr for the following things: +.\" TH Title +.\" SH Header +.\" Sh Subsection +.\" Ip Item +.\" X<> Xref (embedded +.\" Of course, you have to process the output yourself +.\" in some meaningful fashion. +.if \nF \{ +.de IX +.tm Index:\\$1\t\\n%\t"\\$2" +.. +.nr % 0 +.rr F +.\} +.TH GETENT 1 "etch" "7/Jan/2001" "Debian GNU/Linux" +.UC +.if n .hy 0 +.if n .na +.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' +.de CQ \" put $1 in typewriter font +.ft CW +'if n "\c +'if t \\&\\$1\c +'if n \\&\\$1\c +'if n \&" +\\&\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 +'.ft R +.. +.\" @(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2 +. \" AM - accent mark definitions +.bd B 3 +. \" fudge factors for nroff and troff +.if n \{\ +. ds #H 0 +. ds #V .8m +. ds #F .3m +. ds #[ \f1 +. ds #] \fP +.\} +.if t \{\ +. ds #H ((1u-(\\\\n(.fu%2u))*.13m) +. ds #V .6m +. ds #F 0 +. ds #[ \& +. ds #] \& +.\} +. \" simple accents for nroff and troff +.if n \{\ +. ds ' \& +. ds ` \& +. ds ^ \& +. ds , \& +. ds ~ ~ +. ds ? ? +. ds ! ! +. ds / +. ds q +.\} +.if t \{\ +. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" +. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' +. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' +. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' +. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' +. ds ? \s-2c\h'-\w'c'u*7/10'\u\h'\*(#H'\zi\d\s+2\h'\w'c'u*8/10' +. ds ! \s-2\(or\s+2\h'-\w'\(or'u'\v'-.8m'.\v'.8m' +. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' +. ds q o\h'-\w'o'u*8/10'\s-4\v'.4m'\z\(*i\v'-.4m'\s+4\h'\w'o'u*8/10' +.\} +. \" troff and (daisy-wheel) nroff accents +.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' +.ds 8 \h'\*(#H'\(*b\h'-\*(#H' +.ds v \\k:\h'-(\\n(.wu*9/10-\*(#H)'\v'-\*(#V'\*(#[\s-4v\s0\v'\*(#V'\h'|\\n:u'\*(#] +.ds _ \\k:\h'-(\\n(.wu*9/10-\*(#H+(\*(#F*2/3))'\v'-.4m'\z\(hy\v'.4m'\h'|\\n:u' +.ds . \\k:\h'-(\\n(.wu*8/10)'\v'\*(#V*4/10'\z.\v'-\*(#V*4/10'\h'|\\n:u' +.ds 3 \*(#[\v'.2m'\s-2\&3\s0\v'-.2m'\*(#] +.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] +.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' +.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' +.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] +.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] +.ds ae a\h'-(\w'a'u*4/10)'e +.ds Ae A\h'-(\w'A'u*4/10)'E +.ds oe o\h'-(\w'o'u*4/10)'e +.ds Oe O\h'-(\w'O'u*4/10)'E +. \" corrections for vroff +.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' +.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' +. \" for low resolution devices (crt and lpr) +.if \n(.H>23 .if \n(.V>19 \ +\{\ +. ds : e +. ds 8 ss +. ds v \h'-1'\o'\(aa\(ga' +. ds _ \h'-1'^ +. ds . \h'-1'. +. ds 3 3 +. ds o a +. ds d- d\h'-1'\(ga +. ds D- D\h'-1'\(hy +. ds th \o'bp' +. ds Th \o'LP' +. ds ae ae +. ds Ae AE +. ds oe oe +. ds Oe OE +.\} +.rm #[ #] #H #V #F C +.SH "NAME" +getent \- get entries from administrative database +.SH "SYNOPSIS" +\fBgetent\fR \fIdatabase\fR [\fIkey\fR ...] +.SH "DESCRIPTION" +The \fIgetent\fR program gathers entries from the specified +administrative database using the specified search keys. +Where \fIdatabase\fR is one of passwd, group, hosts, services, protocols, +or networks. +.SH "AUTHOR" +\fIgetent\fR was written by Thorsten Kukuk for the GNU C Library. +.PP +This man page was written by Joel Klecker for +the Debian GNU/Linux system. + +.rn }` '' +.IX Title "GETENT 1" +.IX Name "getent - get entries from administrative database" + +.IX Header "NAME" + +.IX Header "SYNOPSIS" + +.IX Header "DESCRIPTION" + +.IX Header "AUTHOR" + --- glibc-2.5.orig/debian/local/manpages/rpcgen.1 +++ glibc-2.5/debian/local/manpages/rpcgen.1 @@ -0,0 +1,442 @@ +.\" @(#)rpcgen.new.1 1.1 90/11/09 TIRPC 1.0; from 40.10 of 10/10/89 +.\" Copyright (c) 1988,1990 Sun Microsystems, Inc. - All Rights Reserved. +.nr X +.if \nX=0 .ds x} rpcgen 1 "" "\&" +.if \nX=1 .ds x} rpcgen 1 "" +.if \nX=2 .ds x} rpcgen 1 "" "\&" +.if \nX=3 .ds x} rpcgen "" "" "\&" +.TH \*(x} +.SH NAME +\f4rpcgen\f1 \- an RPC protocol compiler +.SH SYNOPSIS +.ft 4 +.nf +rpcgen \f2infile\f4 +.fi +.ft 1 +.br +.ft 4 +.nf +rpcgen [\-D\f2name\f4[=\f2value\f4]] [\-T] [\-K \f2secs\fP] \f2infile\f4 +.fi +.ft 1 +.br +.ft 4 +.nf +rpcgen \-c|\-h|\-l|\-m|\-M|\-t [\-o \f2outfile\f4 ] \f2infile\f4 +.fi +.ft 1 +.br +.ft 4 +.nf +rpcgen [\-I] \-s \f2nettype\f4 [\-o \f2outfile\f4] \f2infile\f4 +.fi +.ft 1 +.br +.ft 4 +.nf +rpcgen \-n \f2netid\f4 [\-o \f2outfile\f4] \f2infile\f4 +.ft 1 +.SH DESCRIPTION +.P +\f4rpcgen\f1 +is a tool that generates C code to implement an RPC protocol. +The input to +\f4rpcgen\f1 +is a language similar to C known as +RPC Language (Remote Procedure Call Language). +.P +\f4rpcgen\f1 +is normally used as in the first synopsis where +it takes an input file and generates up to four output files. +If the +\f2infile\f1 +is named +\f4proto.x\f1, +then +\f4rpcgen\f1 +will generate a header file in +\f4proto.h\f1, +XDR routines in +\f4proto_xdr.c\f1, +server-side stubs in +\f4proto_svc.c\f1, +and client-side stubs in +\f4proto_clnt.c\f1. +With the +\f4\-T\f1 +option, +it will also generate the RPC dispatch table in +\f4proto_tbl.i\f1. +With the +\f4\-Sc\f1 +option, +it will also generate sample code which would illustrate how to use the +remote procedures on the client side. This code would be created in +\f4proto_client.c\f1. +With the +\f4\-Ss\f1 +option, +it will also generate a sample server code which would illustrate how to write +the remote procedures. This code would be created in +\f4proto_server.c\f1. +.P +The server created can be started both by the port monitors +(for example, \f4inetd\f1 or \f4listen\f1) +or by itself. +When it is started by a port monitor, +it creates servers only for the transport for which +the file descriptor \f40\fP was passed. +The name of the transport must be specified +by setting up the environmental variable +\f4PM_TRANSPORT\f1. +When the server generated by +\f4rpcgen\f1 +is executed, +it creates server handles for all the transports +specified in +\f4NETPATH\f1 +environment variable, +or if it is unset, +it creates server handles for all the visible transports from +\f4/etc/netconfig\f1 +file. +Note: +the transports are chosen at run time and not at compile time. +.P +When built for a port monitor (\f4rpcgen\f1 \f4\-I\f1), and that the server +is self-started, it backgrounds itself by default. A special define symbol +\f4RPC_SVC_FG\f1 can be used to run the server process in foreground. +.P +The second synopsis provides special features which allow +for the creation of more sophisticated RPC servers. +These features include support for user provided +\f4#defines\f1 +and RPC dispatch tables. +The entries in the RPC dispatch table contain: +.RS +.PD 0 +.TP 3 +\(bu +pointers to the service routine corresponding to that procedure, +.TP +\(bu +a pointer to the input and output arguments +.TP +\(bu +the size of these routines +.PD +.RE +A server can use the dispatch table to check authorization +and then to execute the service routine; +a client library may use it to deal with the details of storage +management and XDR data conversion. +.P +The other three synopses shown above are used when +one does not want to generate all the output files, +but only a particular one. +Some examples of their usage is described in the +EXAMPLE +section below. +When +\f4rpcgen\f1 +is executed with the +\f4\-s\f1 +option, +it creates servers for that particular class of transports. +When +executed with the +\f4\-n\f1 +option, +it creates a server for the transport specified by +\f2netid\f1. +If +\f2infile\f1 +is not specified, +\f4rpcgen\f1 +accepts the standard input. +.P +The C preprocessor, +\f4cc \-E\f1 +[see \f4cc\fP(1)], +is run on the input file before it is actually interpreted by +\f4rpcgen\f1. +For each type of output file, +\f4rpcgen\f1 +defines a special preprocessor symbol for use by the +\f4rpcgen\f1 +programmer: +.P +.PD 0 +.TP 12 +\f4RPC_HDR\f1 +defined when compiling into header files +.TP +\f4RPC_XDR\f1 +defined when compiling into XDR routines +.TP +\f4RPC_SVC\f1 +defined when compiling into server-side stubs +.TP +\f4RPC_CLNT\f1 +defined when compiling into client-side stubs +.TP +\f4RPC_TBL\f1 +defined when compiling into RPC dispatch tables +.PD +.P +Any line beginning with +`\f4%\f1' +is passed directly into the output file, +uninterpreted by +\f4rpcgen\f1. +.P +For every data type referred to in +\f2infile\f1, +\f4rpcgen\f1 +assumes that there exists a +routine with the string +\f4xdr_\f1 +prepended to the name of the data type. +If this routine does not exist in the RPC/XDR +library, it must be provided. +Providing an undefined data type +allows customization of XDR routines. +.br +.ne 10 +.P +The following options are available: +.TP +\f4\-a\f1 +Generate all the files including sample code for client and server side. +.TP +\f4\-b\f1 +This generates code for the SunOS4.1 style of rpc. It is +for backward compatibility. This is the default. +.TP +\f4\-5\f1 +This generates code for the SysVr4 style of rpc. It is used by the +Transport Independent RPC that is in Svr4 systems. +By default rpcgen generates code for SunOS4.1 stype of rpc. +.TP +\f4\-c\f1 +Compile into XDR routines. +.TP +\f4\-C\f1 +Generate code in ANSI C. This option also generates code that could be +compiled with the C++ compiler. This is the default. +.TP +\f4\-k\f1 +Generate code in K&R C. The default is ANSI C. +.TP +\f4\-D\f2name\f4[=\f2value\f4]\f1 +Define a symbol +\f2name\f1. +Equivalent to the +\f4#define\f1 +directive in the source. +If no +\f2value\f1 +is given, +\f2value\f1 +is defined as \f41\f1. +This option may be specified more than once. +.TP +\f4\-h\f1 +Compile into +\f4C\f1 +data-definitions (a header file). +\f4\-T\f1 +option can be used in conjunction to produce a +header file which supports RPC dispatch tables. +.TP +\f4\-I\f1 +Generate a service that can be started from inetd. The default is +to generate a static service that handles transports selected with \f4\-s\f1. +Using \f4\-I\f1 allows starting a service by either method. +.TP +\f4-K\f2 secs\f1 +By default, services created using \f4rpcgen\fP wait \f4120\fP seconds +after servicing a request before exiting. +That interval can be changed using the \f4-K\fP flag. +To create a server that exits immediately upon servicing a request, +\f4-K\ 0\fP can be used. +To create a server that never exits, the appropriate argument is +\f4-K\ -1\fP. +.IP +When monitoring for a server, +some portmonitors, like +\f4listen\fP(1M), +.I always +spawn a new process in response to a service request. +If it is known that a server will be used with such a monitor, the +server should exit immediately on completion. +For such servers, \f4rpcgen\fP should be used with \f4-K\ -1\fP. +.TP +\f4\-l\f1 +Compile into client-side stubs. +.TP +\f4\-m\f1 +Compile into server-side stubs, +but do not generate a \(lqmain\(rq routine. +This option is useful for doing callback-routines +and for users who need to write their own +\(lqmain\(rq routine to do initialization. +.TP +\f4\-M\f1 +Generate multithread-safe stubs for passing arguments +and results between rpcgen-generated code and user written code. +This option is useful for users who want to use threads in their code. +.TP +\f4\-n \f2netid\f1 +Compile into server-side stubs for the transport +specified by +\f2netid\f1. +There should be an entry for +\f2netid\f1 +in the +netconfig database. +This option may be specified more than once, +so as to compile a server that serves multiple transports. +.TP +\f4\-N\f1 +Use the newstyle of rpcgen. This allows procedures to have multiple arguments. +It also uses the style of parameter passing that closely resembles C. So, when +passing an argument to a remote procedure you do not have to pass a pointer to +the argument but the argument itself. This behaviour is different from the oldstyle +of rpcgen generated code. The newstyle is not the default case because of +backward compatibility. +.TP +\f4\-o \f2outfile\f1 +Specify the name of the output file. +If none is specified, +standard output is used +(\f4\-c\f1, +\f4\-h\f1, +\f4\-l\f1, +\f4\-m\f1, +\f4\-n\f1, +\f4\-s\f1, +\f4\-Sc\f1, +\f4\-Sm\f1, +\f4\-Ss\f1, +and +\f4\-t\f1 +modes only). +.TP +\f4\-s \f2nettype\f1 +Compile into server-side stubs for all the +transports belonging to the class +\f2nettype\f1. +The supported classes are +\f4netpath\f1, +\f4visible\f1, +\f4circuit_n\f1, +\f4circuit_v\f1, +\f4datagram_n\f1, +\f4datagram_v\f1, +\f4tcp\f1, +and +\f4udp\f1 +[see \f4rpc\fP(3N) +for the meanings associated with these classes]. +This option may be specified more than once. +Note: +the transports are chosen at run time and not at compile time. +.TP +\f4\-Sc\f1 +Generate sample code to show the use of remote procedure and how to bind +to the server before calling the client side stubs generated by rpcgen. +.TP +\f4\-Sm\f1 +Generate a sample Makefile which can be used for compiling the application. +.TP +\f4\-Ss\f1 +Generate skeleton code for the remote procedures on the server side. You would need +to fill in the actual code for the remote procedures. +.TP +\f4\-t\f1 +Compile into RPC dispatch table. +.TP +\f4\-T\f1 +Generate the code to support RPC dispatch tables. +.P +The options +\f4\-c\f1, +\f4\-h\f1, +\f4\-l\f1, +\f4\-m\f1, +\f4\-s\f1 +and +\f4\-t\f1 +are used exclusively to generate a particular type of file, +while the options +\f4\-D\f1 +and +\f4\-T\f1 +are global and can be used with the other options. +.br +.ne 5 +.SH NOTES +The RPC Language does not support nesting of structures. +As a work-around, +structures can be declared at the top-level, +and their name used inside other structures in +order to achieve the same effect. +.P +Name clashes can occur when using program definitions, +since the apparent scoping does not really apply. +Most of these can be avoided by giving +unique names for programs, +versions, +procedures and types. +.P +The server code generated with +\f4\-n\f1 +option refers to the transport indicated by +\f2netid\f1 +and hence is very site specific. +.SH EXAMPLE +The following example: +.IP +.ft 4 +$ rpcgen \-T prot.x +.ft 1 +.P +generates the five files: +\f4prot.h\f1, +\f4prot_clnt.c\f1, +\f4prot_svc.c\f1, +\f4prot_xdr.c\f1 +and +\f4prot_tbl.i\f1. +.P +The following example sends the C data-definitions (header file) +to the standard output. +.IP +.ft 4 +$ rpcgen \-h prot.x +.ft 1 +.P +To send the test version of the +\f4-DTEST\f1, +server side stubs for +all the transport belonging to the class +\f4datagram_n\f1 +to standard output, use: +.IP +.ft 4 +$ rpcgen \-s datagram_n \-DTEST prot.x +.ft 1 +.P +To create the server side stubs for the transport indicated +by +\f2netid\f1 +\f4tcp\f1, +use: +.IP +.ft 4 +$ rpcgen \-n tcp \-o prot_svc.c prot.x +.ft 1 +.SH "SEE ALSO" +\f4cc\fP(1). --- glibc-2.5.orig/debian/local/manpages/getent.pod +++ glibc-2.5/debian/local/manpages/getent.pod @@ -0,0 +1,21 @@ +=head1 NAME + +getent - get entries from administrative database + +=head1 SYNOPSIS + +B I [I ...] + +=head1 DESCRIPTION + +The I program gathers entries from the specified +administrative database using the specified search keys. +Where I is one of passwd, group, hosts, services, protocols, +or networks. + +=head1 AUTHOR + +I was written by Thorsten Kukuk for the GNU C Library. + +This man page was written by Joel Klecker Eespy@debian.orgE for +the Debian GNU/Linux system. --- glibc-2.5.orig/debian/local/manpages/glibcbug.1 +++ glibc-2.5/debian/local/manpages/glibcbug.1 @@ -0,0 +1,50 @@ +'\" t +.\" ** The above line should force tbl to be a preprocessor ** +.\" Man page for man +.\" +.\" Copyright (C), 2002 Free Software Foundation, Inc. +.\" +.\" You may distribute under the terms of the GNU General Public +.\" License as specified in the file COPYING that comes with the +.\" glibc distribution. +.\" +.\" +.TH glibcbug 1 "10 January 2002" "" "Debian GNU/Linux" +.SH "NAME" +glibcbug \- Report a bug to the Glibc developers +.SH "SYNOPSIS" +.B glibcbug +.SH "DESCRIPTION" +.B glibcbug +is a tool for reporting bugs to the glibc maintainers. +It automatically starts an editor where the user can enter details +of the bug. On completion, the bug is sent to the appropriate +address. +The User should replace the comments (text surrounded by +, and fill in the Subject: and From: lines with +a summary and e-mail address. + +If the user believes the bug is related to Debian rather than to the +glibc (libc6) package, then the +.B reportbug +command should be used instead. +.SH "ENVIRONMENT" +.B glibcbug +will utilize the following enviromntal variables if they exist: +.TP +.B EDITOR +and +.B VISUAL +Specifies the preferred editor. If +neither are set, +.B glibcbug +will default to +.B /usr/bin/sensible-editor +to determine a working editor. +.TP +.B HOME +Directory in which the failed bug report is saved if the mail fails. +.SH "SEE ALSO" +reportbug(1) +.SH "AUTHOR" +Alastair McKinstry . --- glibc-2.5.orig/debian/local/manpages/iconv.pod +++ glibc-2.5/debian/local/manpages/iconv.pod @@ -0,0 +1,45 @@ +=head1 NAME + +iconv - Convert encoding of given files from one encoding to another + +=cut + +=head1 SYNOPSIS + +iconv B<-f> I B<-t> I I + +=head1 DESCRIPTION + +The B program converts the encoding of characters in +I from one coded character set to another. The result is +written to standard output unless otherwise specified by the +B<--output> option. + +B<--from-code>, B<-f> I + +Convert characters from I + +B<--to-code>, B<-t> I + +Convert characters to I + +B<--list> + +List known coded character sets + +B<--output>, B<-o> I + +Specify output file (instead of stdout) + +B<--verbose> + +Print progress information. + +=head1 AUTHOR + +I was written by Ulrich Drepper as part of the GNU C Library. + +This man page was written by Joel Klecker Eespy@debian.orgE, +for the Debian GNU/Linux system. + + --- glibc-2.5.orig/debian/local/manpages/id/addendum.id +++ glibc-2.5/debian/local/manpages/id/addendum.id @@ -0,0 +1,3 @@ + +.SH PENERJEMAH +Parlin Imanuel Toh --- glibc-2.5.orig/debian/local/manpages/ld.so.8 +++ glibc-2.5/debian/local/manpages/ld.so.8 @@ -0,0 +1,167 @@ +.TH "LD.SO" 8 "14 March 1998" +.SH NAME +ld.so/ld-linux.so \- dynamic linker/loader +.SH DESCRIPTION +.B ld.so +loads the shared libraries needed by a program, prepares the program +to run, and then runs it. +Unless explicitly specified via the +.B \-static +option to +.B ld +during compilation, all Linux programs are incomplete and require +further linking at run time. +.PP +The necessary shared libraries needed by the program are searched for +in the following order +.IP o +Using the environment variable +.B LD_LIBRARY_PATH +.RB ( LD_AOUT_LIBRARY_PATH +for a.out programs). +Except if the executable is a setuid/setgid binary, in which case it +is ignored. +.IP o +From the cache file +.BR /etc/ld.so.cache +which contains a compiled list of candidate libraries previously found +in the augmented library path. +.IP o +In the default path +.BR /usr/lib , +and then +.BR /lib . +.SH COMMAND LINE OPTIONS +.TP +.B \-\-list +List all dependencies and how they are resolved. +.TP +.B \-\-verify +Verify that program is dynamically linked and this dynamic linker can handle +it. +.TP +.B \-\-library\-path PATH +Override +.B LD_LIBRARY_PATH +environment variable setting (see below). +.TP +.B \-\-ignore\-rpath LIST +Ignore RPATH and RUNPATH information in object names in LIST. +This option has been supported by glibc2 for about one hour. +Then it was renamed into: +.TP +.B \-\-inhibit\-rpath LIST +.SH ENVIRONMENT +.TP +.B LD_LIBRARY_PATH +A colon-separated list of directories in which to search for +ELF libraries at execution-time. +Similar to the +.B PATH +environment variable. +.TP +.B LD_PRELOAD +A whitespace-separated list of additional, user-specified, ELF shared +libraries to be loaded before all others. +This can be used to selectively override functions in other shared libraries. +For setuid/setgid ELF binaries, only libraries in the standard search +directories that are also setgid will be loaded. +.TP +.B LD_TRACE_LOADED_OBJECTS +If present, causes the program to list its dynamic library dependencies, +as if run by ldd, instead of running normally. +.TP +.B LD_BIND_NOW +If present, causes the dynamic linker to resolve all symbols at program +startup instead of when they are first referenced. +.TP +.B LD_AOUT_LIBRARY_PATH +A colon-separated list of directories in which to search for +a.out libraries at execution-time. +Similar to the +.B PATH +environment variable. +.TP +.B LD_AOUT_PRELOAD +The name of an additional, user-specified, a.out shared library to be loaded +after all others. +This can be used to selectively override functions in other shared libraries. +.TP +.B LD_NOWARN +Suppress warnings about a.out libraries with incompatible minor +version numbers. +.TP +.B LD_WARN +If set to non-empty string, warn about unresolved symbols. +.TP +.B LD_KEEPDIR +Don't ignore the directory in the names of a.out libraries to be loaded. +Use of this option is strongly discouraged. +.TP +.B LD_DEBUG +Output verbose debugging information about the dynamic linker. +If set to all prints all debugging information it has, if set to +help prints a help message about which categories can be specified +in this environment variable. +.TP +.B LD_DEBUG_OUTPUT +File where LD_DEBUG output should be fed into, default is standard +output. LD_DEBUG_OUTPUT is ignored for setuid/setgid binaries. +.TP +.B LD_VERBOSE +If set to non-empty string, output symbol versioning information +about the program if querying information about the program (ie. either +.B LD_TRACE_LOADED_OBJECTS +has been set, or --list or --verify options have been given to the dynamic linker). +.TP +.B LD_ASSUME_KERNEL +Every DSO (Dynamic Shared Object, aka shared library) can tell the dynamic linker in glibc which +minimum OS ABI version is needed. The information about the minimum OS ABI version is encoded in +a ELF note section usually named .note.ABI-tag. This is used to determine which library to load +when multiple version of the same library is installed on the system. + +The +.B LD_ASSUME_KERNEL +environment variable overrides the kernel version used by the dynamic linker to determine which +library to load. +.SH FILES +.PD 0 +.TP 20 +.B /lib/ld.so +a.out dynamic linker/loader +.TP 20 +.B /lib/ld-linux.so.* +ELF dynamic linker/loader +.TP +.B /etc/ld.so.cache +File containing a compiled list of directories in which to search for +libraries and an ordered list of candidate libraries. +.TP +.B /etc/ld.so.preload +File containing a whitespace separated list of ELF shared libraries to +be loaded before the program. +libraries and an ordered list of candidate libraries. +.TP +.B /etc/ld.so.nohwcap +When this file is present the dynamic linker will load the non-optimized version +of a library, even if the CPU supports the optimized version. +.TP +.B lib*.so* +shared libraries +.PD +.SH SEE ALSO +.BR ldd (1), +.BR ldconfig (8). +.SH BUGS +.LP +Currently +.B ld.so +has no means of unloading and searching for compatible or newer version of +libraries. +.PP +.B ld.so +functionality is only available for executables compiled using libc version +4.4.3 or greater. +.SH AUTHORS +David Engel, Eric Youngdale, Peter MacDonald, Hongjiu Lu, Linus +Torvalds, Lars Wirzenius and Mitch D'Souza (not necessarily in that order). --- glibc-2.5.orig/debian/local/manpages/ldd.1 +++ glibc-2.5/debian/local/manpages/ldd.1 @@ -0,0 +1,58 @@ +.\" Copyright 1995-2000 David Engel (david@ods.com) +.\" Copyright 1995 Rickard E. Faith (faith@cs.unc.edu) +.\" Copyright 2000 Ben Collins (bcollins@debian.org) +.\" Redone for GLibc 2.2 +.\" Copyright 2000 Jakub Jelinek (jakub@redhat.com) +.\" Corrected. +.\" Most of this was copied from the README file. Do not restrict distribution. +.\" May be distributed under the GNU General Public License +.TH LDD 1 "30 October 2000" +.SH NAME +ldd \- print shared library dependencies +.SH SYNOPSIS +.B ldd +.RB [OPTION]... +FILE... +.SH DESCRIPTION +.B ldd +prints the shared libraries required by each program or shared library +specified on the command line. +.SH OPTIONS +.TP +.B \-\-version +Print the version number of +.BR ldd . +.TP +.B \-v\ \-\-verbose +Print all information, including e.g. symbol versioning information. +.TP +.B \-d\ \-\-data\-relocs +Perform relocations and report any missing objects (ELF only). +.TP +.B \-r\ \-\-function\-relocs +Perform relocations for both data objects and functions, and +report any missing objects or functions (ELF only). +.TP +.B \-u\ \-\-unused +Print unused direct dependencies. +.TP +.B \-\-help +Usage information. +.SH BUGS +.B ldd +does not work on a.out shared libraries. +.PP +.B ldd +does not work with some extremely old a.out programs which were +built before +.B ldd +support was added to the compiler releases. +If you use +.B ldd +on one of these programs, the program will attempt to run with argc = 0 and +the results will be unpredictable. +.SH AUTHOR +Roland McGrath and Ulrich Drepper. +.SH SEE ALSO +.BR ldconfig (8), +.BR ld.so (8). --- glibc-2.5.orig/debian/local/manpages/locale-gen.8 +++ glibc-2.5/debian/local/manpages/locale-gen.8 @@ -0,0 +1,101 @@ +.\" This -*- nroff -*- file has been generated from +.\" DocBook SGML with docbook-to-man on Debian GNU/Linux. +...\" +...\" transcript compatibility for postscript use. +...\" +...\" synopsis: .P! +...\" +.de P! +\\&. +.fl \" force out current output buffer +\\!%PB +\\!/showpage{}def +...\" the following is from Ken Flowers -- it prevents dictionary overflows +\\!/tempdict 200 dict def tempdict begin +.fl \" prolog +.sy cat \\$1\" bring in postscript file +...\" the following line matches the tempdict above +\\!end % tempdict % +\\!PE +\\!. +.sp \\$2u \" move below the image +.. +.de pF +.ie \\*(f1 .ds f1 \\n(.f +.el .ie \\*(f2 .ds f2 \\n(.f +.el .ie \\*(f3 .ds f3 \\n(.f +.el .ie \\*(f4 .ds f4 \\n(.f +.el .tm ? font overflow +.ft \\$1 +.. +.de fP +.ie !\\*(f4 \{\ +. ft \\*(f4 +. ds f4\" +' br \} +.el .ie !\\*(f3 \{\ +. ft \\*(f3 +. ds f3\" +' br \} +.el .ie !\\*(f2 \{\ +. ft \\*(f2 +. ds f2\" +' br \} +.el .ie !\\*(f1 \{\ +. ft \\*(f1 +. ds f1\" +' br \} +.el .tm ? font underflow +.. +.ds f1\" +.ds f2\" +.ds f3\" +.ds f4\" +'\" t +.ta 8n 16n 24n 32n 40n 48n 56n 64n 72n +.TH "LOCALE-GEN" "8" +.SH "NAME" +locale-gen \(em generates localisation files from templates +.SH "SYNOPSIS" +.PP +\fBlocale-gen\fP +.SH "DESCRIPTION" +.PP +This manual page documents briefly the +\fBlocale-gen\fP command. +.PP +By default, the locale package which provides the base support for +localisation of libc-based programs does not contain usable localisation +files for every supported language. This limitation has became necessary +because of the substantial size of such files and the large number of +languages supported by libc. As a result, Debian uses a special +mechanism where we prepare the actual localisation files on the target +host and distribute only the templates for them. +.PP +\fBlocale-gen\fP is a program that reads the file +\fB/etc/locale.gen\fP and invokes +\fBlocaledef\fP for the chosen localisation profiles. +Run \fBlocale-gen\fP after you have modified the \fB/etc/locale.gen\fP file. + + +.SH "FILES" +.PP +\fB/etc/locale.gen\fP +.PP +The main configuration file, which has a simple format: every +line that is not empty and does not begin with a # is treated as a +locale definition that is to be built. + +.SH "SEE ALSO" +.PP +localedef (1), locale (1), locale.gen (5). +.SH "AUTHOR" +.PP +This manual page was written by Eduard Bloch for +the \fBDebian GNU/Linux\fP system (but may be used by others). Permission is +granted to copy, distribute and/or modify this document under +the terms of the GNU Free Documentation +License, Version 1.1 or any later version published by the Free +Software Foundation; with no Invariant Sections, no Front-Cover +Texts and no Back-Cover Texts. +...\" created by instant / docbook-to-man, Sat 02 Mar 2002, 16:43 --- glibc-2.5.orig/debian/local/manpages/locale-gen.8.sgml +++ glibc-2.5/debian/local/manpages/locale-gen.8.sgml @@ -0,0 +1,148 @@ + manpage.1'. You may view + the manual page with: `docbook-to-man manpage.sgml | nroff -man | + less'. A typical entry in a Makefile or Makefile.am is: + +manpage.1: manpage.sgml + docbook-to-man $< > $@ + --> + + + Eduard"> + Bloch"> + + March 10, 2005"> + + 8"> + blade@debian.org"> + + LOCALE-GEN"> + + + Debian GNU/Linux"> + GNU"> +]> + + + +
+ &dhemail; +
+ + &dhfirstname; + &dhsurname; + + + 2001 + &dhusername; + + &dhdate; +
+ + &dhucpackage; + + &dhsection; + + + &dhpackage; + + generates localisation files from templates + + + + &dhpackage; + + + + + + DESCRIPTION + + This manual page documents briefly the + &dhpackage; command. + + By default, the locale package which provides the base support for + localisation of libc-based programs does not contain usable localisation + files for every supported language. This limitation has became necessary + because of the substantial size of such files and the large number of + languages supported by libc. As a result, Debian uses a special + mechanism where we prepare the actual localisation files on the target + host and distribute only the templates for them. + + &dhpackage; is a program that reads the file + /etc/locale.gen and invokes + localedef for the chosen localisation profiles. + Run &dhpackage; after you have modified the /etc/locale.gen file. + + + + + + OPTIONS + + + + + + By default, &dhpackage; removes all + existing locales and generates new ones afresh. The + option prevents this, so that + only locales which do not already exist are generated. This is + useful if calling locale-gen a number of times in + succession. + + + + + + + FILES + + /etc/locale.gen + The main configuration file, which has a simple format: every + line that is not empty and does not begin with a # is treated as a + locale definition that is to be built. + + + + + + SEE ALSO + + localedef (1), locale (1), locale.alias (5), locale.gen (5). + + + + + AUTHOR + + This manual page was written by &dhusername; <&dhemail;> for + the &debian; system (but may be used by others). Permission is + granted to copy, distribute and/or modify this document under + the terms of the GNU Free Documentation + License, Version 1.1 or any later version published by the Free + Software Foundation; with no Invariant Sections, no Front-Cover + Texts and no Back-Cover Texts. + + +
+ + --- glibc-2.5.orig/debian/local/manpages/locale.1 +++ glibc-2.5/debian/local/manpages/locale.1 @@ -0,0 +1,268 @@ +.\" Automatically generated by Pod::Man v1.3, Pod::Parser v1.13 +.\" +.\" Standard preamble: +.\" ======================================================================== +.de Sh \" Subsection heading +.br +.if t .Sp +.ne 5 +.PP +\fB\\$1\fR +.PP +.. +.de Sp \" Vertical space (when we can't use .PP) +.if t .sp .5v +.if n .sp +.. +.de Vb \" Begin verbatim text +.ft CW +.nf +.ne \\$1 +.. +.de Ve \" End verbatim text +.ft R + +.fi +.. +.\" Set up some character translations and predefined strings. \*(-- will +.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left +.\" double quote, and \*(R" will give a right double quote. | will give a +.\" real vertical bar. \*(C+ will give a nicer C++. Capital omega is used to +.\" do unbreakable dashes and therefore won't be available. \*(C` and \*(C' +.\" expand to `' in nroff, nothing in troff, for use with C<>. +.tr \(*W-|\(bv\*(Tr +.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' +.ie n \{\ +. ds -- \(*W- +. ds PI pi +. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch +. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch +. ds L" "" +. ds R" "" +. ds C` "" +. ds C' "" +'br\} +.el\{\ +. ds -- \|\(em\| +. ds PI \(*p +. ds L" `` +. ds R" '' +'br\} +.\" +.\" If the F register is turned on, we'll generate index entries on stderr for +.\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index +.\" entries marked with X<> in POD. Of course, you'll have to process the +.\" output yourself in some meaningful fashion. +.if \nF \{\ +. de IX +. tm Index:\\$1\t\\n%\t"\\$2" +.. +. nr % 0 +. rr F +.\} +.\" +.\" For nroff, turn off justification. Always turn off hyphenation; it makes +.\" way too many mistakes in technical documents. +.hy 0 +.if n .na +.\" +.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). +.\" Fear. Run. Save yourself. No user-serviceable parts. +. \" fudge factors for nroff and troff +.if n \{\ +. ds #H 0 +. ds #V .8m +. ds #F .3m +. ds #[ \f1 +. ds #] \fP +.\} +.if t \{\ +. ds #H ((1u-(\\\\n(.fu%2u))*.13m) +. ds #V .6m +. ds #F 0 +. ds #[ \& +. ds #] \& +.\} +. \" simple accents for nroff and troff +.if n \{\ +. ds ' \& +. ds ` \& +. ds ^ \& +. ds , \& +. ds ~ ~ +. ds / +.\} +.if t \{\ +. ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" +. ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' +. ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' +. ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' +. ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' +. ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' +.\} +. \" troff and (daisy-wheel) nroff accents +.ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V' +.ds 8 \h'\*(#H'\(*b\h'-\*(#H' +.ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#] +.ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H' +.ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u' +.ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#] +.ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#] +.ds ae a\h'-(\w'a'u*4/10)'e +.ds Ae A\h'-(\w'A'u*4/10)'E +. \" corrections for vroff +.if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u' +.if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u' +. \" for low resolution devices (crt and lpr) +.if \n(.H>23 .if \n(.V>19 \ +\{\ +. ds : e +. ds 8 ss +. ds o a +. ds d- d\h'-1'\(ga +. ds D- D\h'-1'\(hy +. ds th \o'bp' +. ds Th \o'LP' +. ds ae ae +. ds Ae AE +.\} +.rm #[ #] #H #V #F C +.\" ======================================================================== +.\" +.IX Title "LOCALE 1" +.TH LOCALE 1 "2004-12-16" "sarge" "Debian GNU/Linux" +.UC +.SH "NAME" +locale \- Get locale-specific information. +.SH "SYNOPSIS" +.IX Header "SYNOPSIS" +\&\fBlocale\fR \fB[\fR \f(CW\-a\fR | \f(CW\-m\fR\fB]\fR +.PP +\&\fBlocale\fR \fB[\fR \-ck \fB]\fR \fIname\fR... +.SH "DESCRIPTION" +.IX Header "DESCRIPTION" +The \fIlocale\fR program writes information about the current locale +environment, or all locales, to standard output. +.PP +When invoked without arguments, \fIlocale\fR summarizes the current +locale environment for each locale category defined by the LC_* +environment variables. +.PP +\&\fB\-a\fR, \fB\-\-all\-locales\fR +.PP +.Vb 1 +\& Write names of available locales. +.Ve +\&\fB\-m\fR, \fB\-\-charmaps\fR +.PP +.Vb 1 +\& Write names of available charmaps. +.Ve +.Sh "Output Format:" +.IX Subsection "Output Format:" +\&\fB\-c\fR, \fB\-\-category\-name\fR +.PP +.Vb 1 +\& Write names of selected categories. +.Ve +\&\fB\-k\fR, \fB\-\-keyword\-name\fR +.PP +.Vb 1 +\& Write names and values of selected keywords. +.Ve +.SH "ENVIRONMENT VARIABLES" +.IX Header "ENVIRONMENT VARIABLES" +These environment variables affect each locale categories for all locale-aware programs: + +\&\s-1LC_CTYPE\s0 +.PP +.Vb 1 +\& Character classification and case conversion. +.Ve +\&\s-1LC_COLLATE\s0 +.PP +.Vb 1 +\& Collation order. +.Ve +\&\s-1LC_TIME\s0 +.PP +.Vb 1 +\& Date and time formats. +.Ve +\&\s-1LC_NUMERIC\s0 +.PP +.Vb 1 +\& Non-monetary numeric formats. +.Ve +\&\s-1LC_MONETARY\s0 +.PP +.Vb 1 +\& Monetary formats. +.Ve +\&\s-1LC_MESSAGES\s0 +.PP +.Vb 2 +\& Formats of informative and diagnostic messages and +\& interactive responses. +.Ve +\&\s-1LC_PAPER\s0 +.PP +.Vb 1 +\& Paper size. +.Ve +\&\s-1LC_NAME\s0 +.PP +.Vb 1 +\& Name formats. +.Ve +\&\s-1LC_ADDRESS\s0 +.PP +.Vb 1 +\& Address formats and location information. +.Ve +\&\s-1LC_TELEPHONE\s0 +.PP +.Vb 1 +\& Telephone number formats. +.Ve +\&\s-1LC_MEASUREMENT\s0 +.PP +.Vb 1 +\& Measurement units (Metric or Other). +.Ve +\&\s-1LC_IDENTIFICATION\s0 +.PP +.Vb 1 +\& Metadata about the locale information. +.Ve +This environment variable can switch against multiple locale database: + +\&\s-1LOCPATH\s0 +.PP +.Vb 1 +\& The directory where locale data is stored. In default, /usr/lib/locale is used. +.Ve + +.SH "FILES" +.IX Header "FILES" +.PP +.PD 0 +.TP 8 +\fI/usr/share/i18n/SUPPORTED\fP +List of supported values (and their associated encoding) for the locale name. +This representation is recommended over +\fB\-\-all\-locales\fR one, due being the system wide supported values. +.PP + +.SH "AUTHOR" +.IX Header "AUTHOR" +\&\fIlocale\fR was written by Ulrich Drepper for the \s-1GNU\s0 C Library. +.PP +This manpage was written by Joel Klecker for +the Debian GNU/Linux system, and expanded by Alastair McKinstry + +.PP + +.SH "SEE ALSO" +.BR locale "(5), " locale "(7), " setlocale (3) + --- glibc-2.5.orig/debian/local/manpages/locale.alias.5 +++ glibc-2.5/debian/local/manpages/locale.alias.5 @@ -0,0 +1,45 @@ +.\" -*- nroff -*- +.\" Copyright (C) 2002 Free Software Foundation, Inc. +.\" +.\" This program is free software; you can redistribute it and/or modify +.\" it under the terms of the GNU General Public License as published by +.\" the Free Software Foundation; either version 2, or (at your option) +.\" any later version. +.\" +.\" This program is distributed in the hope that it will be useful, +.\" but WITHOUT ANY WARRANTY; without even the implied warranty of +.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +.\" GNU General Public License for more details. +.\" +.\" You should have received a copy of the GNU General Public License +.\" along with this program; if not, write to the Free Software Foundation, +.\" Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +.TH locale.alias 5 "January 2002" "Debian GNU/Linux" +.SH "NAME" +locale.alias \- Locale name alias data base +.SH "DESCRIPTION" +The locale.alias database file (/etc/locale.alias) is used by the +.B locale +command and the +.B X Window System +. +It describes aliases for the locales, with each line being of the +form + + + +Where is in the POSIX format: xx_YY.CHARSET. +The first two letters \fIxx\fR are the ISO-639 Language code, + the next two \fIYY\fR are the ISO-3166 Country code, +and the Charset is one of the character sets (listed in +\fI/usr/share/i18n/charsets\fR +). +The aliases can be free text; they are normally the English language +name, or simpler versions of the POSIX locale name. + +Lines beginning with Hash ("#") are treated as comments and ignored. + +.SH "SEE ALSO" +locale(1), localedef(1), locale-gen(8), locale.gen(5) +.SH "AUTHOR" +Alastair McKinstry --- glibc-2.5.orig/debian/local/manpages/locale.gen.5 +++ glibc-2.5/debian/local/manpages/locale.gen.5 @@ -0,0 +1,41 @@ +.\" -*- nroff -*- +.\" Copyright (C) 2002, 2005 Free Software Foundation, Inc. +.\" +.\" This program is free software; you can redistribute it and/or modify +.\" it under the terms of the GNU General Public License as published by +.\" the Free Software Foundation; either version 2, or (at your option) +.\" any later version. +.\" +.\" This program is distributed in the hope that it will be useful, +.\" but WITHOUT ANY WARRANTY; without even the implied warranty of +.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +.\" GNU General Public License for more details. +.\" +.\" You should have received a copy of the GNU General Public License +.\" along with this program; if not, write to the Free Software Foundation, +.\" Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +.TH locale.gen 5 "July 2005" "Debian GNU/Linux" +.SH "NAME" +locale.gen \- Configuration file for locale-gen +.SH "DESCRIPTION" +The file \fB/etc/locale.gen\fP lists the locales that are to be generated +by the \fBlocale-gen\fP command. + +Each line is of the form: + + + +where is one of the locales given in +.B /usr/share/i18n/locales +and is one of the character sets listed in +.B /usr/share/i18n/charmaps + +The +.B locale-gen +command will generate all the locales, placing them in +\fB/usr/lib/locale\fP. + +.SH "SEE ALSO" +locale-gen(8), localedef(1), locale(1) +.SH "AUTHOR" +Alastair McKinstry --- glibc-2.5.orig/debian/local/manpages/locale.pod +++ glibc-2.5/debian/local/manpages/locale.pod @@ -0,0 +1,95 @@ +=head1 NAME + +locale - Get locale-specific information. + +=head1 SYNOPSIS + +B B<[> C<-a> | C<-m>B<]> + +B B<[> -ck B<]> I... + +=head1 DESCRIPTION + +The I program writes information about the current locale +environment, or all locales, to standard output. + +When invoked without arguments, I summarizes the current +locale environment for each locale category defined by the LC_* +environment variables. + +B<-a>, B<--all-locales> + + Write names of available locales. + +B<-m>, B<--charmaps> + + Write names of available charmaps. + +=head2 Output Format: + +B<-c>, B<--category-name> + + Write names of selected categories. + +B<-k>, B<--keyword-name> + + Write names and values of selected keywords. + +=head1 ENVIRONMENT VARIABLES + +LC_CTYPE + + Character classification and case conversion. + +LC_COLLATE + + Collation order. + +LC_TIME + + Date and time formats. + +LC_NUMERIC + + Non-monetary numeric formats. + +LC_MONETARY + + Monetary formats. + +LC_MESSAGES + + Formats of informative and diagnostic messages and + interactive responses. + +LC_PAPER + + Paper size. + +LC_NAME + + Name formats. + +LC_ADDRESS + + Address formats and location information. + +LC_TELEPHONE + + Telephone number formats. + +LC_MEASUREMENT + + Measurement units (Metric or Other). + +LC_IDENTIFICATION + + Metadata about the locale information. + +=head1 AUTHOR + +I was written by Ulrich Drepper for the GNU C Library. + +This manpage was written by Joel Klecker Eespy@debian.orgE for +the Debian GNU/Linux system, and expanded by Alastair McKinstry +Emckinstry@computer.orgE --- glibc-2.5.orig/debian/local/manpages/localedef.1 +++ glibc-2.5/debian/local/manpages/localedef.1 @@ -0,0 +1,293 @@ +.TH LOCALEDEF 1 "May 20, 2005" +.SH NAME +localedef \- compile locale definition files +.SH SYNOPSIS +.ad l +.nh +.B localedef +.RI [ options ] +.I outputpath +.br +.B "localedef \-\-list\-archive" +.RI [ options ] +.br +.B "localedef \-\-delete\-from\-archive" +.RI [ options ] +.IR localename " ..." +.br +.B "localedef \-\-add\-to\-archive" +.RI [ options ] +.IR compiledpath +.br +.B "localedef \-\-version" +.br +.B "localedef \-\-help" +.br +.B "localedef \-\-usage" +.ad b +.hy +.SH DESCRIPTION +The +.B localedef +program reads the indicated +.I charmap +and +.I input +files, compiles them to a binary form quickly usable by the +.BR locale (7) +functions in the C library, and places the output in +.IR outputpath . +.PP +If +.I outputpath +contains a slash character ('/'), it is directly the name of the output +directory. +In this case, there is a separate output file for each locale category +(LC_CTIME, LC_NUMERIC, and so on). +.PP +Otherwise, if the +.B \-\-no\-archive +option is used, +.I outputpath +is the name of a subdirectory in +.B /usr/lib/locale +where per-category compiled files are placed. +.PP +Otherwise, +.I outputpath +is the name of a locale and the compiled locale data is added to the +archive file +.BR /usr/lib/locale/locale-archive . +.PP +In any case, +.B localedef +aborts if the directory in which it tries to write locale files has +not already been created. +.PP +If no +.I charmapfile +is given, the value +.I POSIX +is used by default. +If no +.I inputfile +is given, or if it is given as a dash +.RB ( \- ), +.B localedef +reads from standard input. +.SH OPTIONS +Most options can have either short or long forms. If multiple short +options are used, they can be combined in one word (for example, +.B \-cv +is identical to +.BR "\-c \-v" ). +.PP +If a short option takes an argument, the argument can be given separately +as the next word +.RB ( "\-f foo" ), +or it can be written together with the option letter +.RB ( \-ffoo ). +If a long option takes an argument, the argument can be given separately +as the next word, or it can be written as option=argument +.RB ( \-\-charmap=foo ). +.SS "Operation selection options" +A few options direct +.B localedef +to do something else than compile locale definitions. +Only one of these should be used at a time. +.TP +.B \-\-delete\-from\-archive +Delete the named locales from the locale archive file. +.TP +.B \-\-list\-archive +List the locales contained in the locale archive file. +.TP +.B \-\-add\-to\-archive +Add the +.I compiledpath +directories to the locale archive file. +The directories should have been created by previous runs of +.BR localedef , +using +.BR \-\-no\-archive . +.SS "Other options" +Some of the following options are only sensible for some operations; hopefully it is self-evident which ones. +.TP +.BI \-f " charmapfile" ", \-\-charmap=" charmapfile +Specify the file that defines the symbolic character names that are +used by the input file. If the file is in the default directory for +character maps, it is not necessary to specify the full pathname. +This default directory is printed by +.BR "localedef \-\-help" . +.TP +.BI \-i " inputfile" ", \-\-inputfile=" inputfile +Specify the locale definition file to compile. If +.I inputfile +is not absolute, +.B localedef +will also look in the directories specified by the environment variable +.B I18NPATH +and in the default directory for locale definition files. This default +directory is printed by +.BR "localedef \-\-help" . +.TP +.BI \-u " repertoirefile" ", \-\-repertoire-map=" repertoirefile +Read mappings from symbolic names to Unicode UCS4 values from +.IR repertoirefile . +.TP +.BI \-A " aliasfile" ", \-\-alias\-file=" aliasfile +Use +.I aliasfile +to look up aliases for locale names. +There is no default aliases file. +.TP +.BI \-\-prefix= pathname +Set prefix to be prepended to the full archive pathname. +By default, the prefix is empty. +Setting the prefix to +.IR foo , +the archive would be placed in +.BR foo/usr/lib/locale/locale-archive . +.TP +.B "\-c, \-\-force" +Write the output files even if warnings were generated about the input +file. +.TP +.B \-\-old\-style +Create old-style tables. +.TP +.B "\-v, \-\-verbose" +Generate extra warnings about errors that are normally ignored. +.TP +.B \-\-quiet +Suppress all notifications and warnings, and report only fatal errors. +.TP +.B \-\-posix +Conform strictly to POSIX. Implies +.BR \-\-verbose . +This option currently has no other effect. Posix conformance is +assumed if the environment variable +.B POSIXLY_CORRECT +is set. +.TP +.B \-\-replace +Replace a locale in the locale archive file. +Without this option, if the locale is in the archive file already, +an error occurs. +.TP +.B \-\-no\-archive +Do not use the locale archive file, instead create +.I outputpath +as a subdirectory in the same directory as the locale archive file, +and create separate output files for locale categories in it. +.TP +.B "\-\-help" +Print a usage summary and exit. Also prints the default paths used by +.BR localedef . +.TP +.B "\-\-usage" +Print a short usage summary and exit. +.TP +.B "\-V, \-\-version" +Print the version number, license, and disclaimer of warranty for +.BR localedef . +.SH ENVIRONMENT +.TP +.B POSIXLY_CORRECT +The +.B \-\-posix +flag is assumed if this environment variable is set. +.TP +.B I18NPATH +A colon separated list of default directories for locale definition files. +.SH FILES +.TP +.B /usr/share/i18n/charmaps +Usual default charmap path. +.TP +.B /usr/share/i18n/locales +Usual default path for locale source files. +.TP +.B /usr/share/i18n/repertoiremaps +Usual default repertoire map path. +.TP +.B /usr/lib/locale/locale-archive +Usual default locale archive location. +.TP +.IB outputpath/ LC_COLLATE +One of the output files. It describes the rules for comparing strings +in the locale's alphabet. +.TP +.IB outputpath/ LC_CTYPE +One of the output files. It contains information about character +cases and case conversions for the locale. +.TP +.IB outputpath/ LC_MONETARY +One of the output files. It describes the way monetary values should +be formatted in the locale. +.TP +.IB outputpath/ LC_MESSAGES/SYS_LC_MESSAGES +One of the output files. It contains information about the language +messages should be printed in, and what an affirmative or negative +answer looks like. +.TP +.IB outputpath/ LC_NUMERIC +One of the output files. It describes the rules for formatting +numbers in the locale. +.TP +.IB outputpath/ LC_TIME +One of the output files. It describes the rules for formatting +times and dates in the locale. +.TP +.IB outputpath/ LC_PAPER +One of the output files. It describes the default paper size +in the locale. +.TP +.IB outputpath/ LC_NAME +One of the output files. It describes the rules for formatting +names in the locale. +.TP +.IB outputpath/ LC_ADDRESS +One of the output files. It describes the rules for formatting +addresses, and other location information in the locale. +.TP +.IB outputpath/ LC_TELEPHONE +One of the output files. It describes the rules for formatting +telephone numbers in the locale. +.TP +.IB outputpath/ LC_MEASUREMENT +One of the output files. It describes the rules for measurement in the +locale, e.g. Metric or other units. +.TP +.IB outputpath/ LC_IDENTIFICATION +One of the output files. It identifies the elements within the locale. +.SH EXAMPLES +Compile the locale files for Finnish in the UTF-8 character set +and add it to the default locale archive with the name +.BR fi_FI.UTF-8 : +.PP +.RS +localedef \-f UTF\-8 \-i fi_FI fi_FI.UTF\-8 +.RE +.PP +The same, but generate files into the current directory (note that the +last argument must then contain a slash): +.PP +.RS +localedef \-f UTF\-8 \-i fi_FI ./ +.RE +.SH "SEE ALSO" +.BR locale "(5), " locale "(7), " locale (1) +.SH AUTHOR +The program was written by Ulrich Drepper. +.PP +This manual page was written by Richard Braakman on +behalf of the Debian GNU/Linux Project and anyone else who wants it. +It was amended by Alastair McKinstry to +explain new ISO 14652 elements, +and amended further by Lars Wirzenius to document new +functionality (as of GNU C library 2.3.5). +The manpage is not supported by the GNU libc maintainers and may be +out of date. +.SH STANDARDS +This program conforms to the POSIX standard P1003.2 --- glibc-2.5.orig/debian/local/manpages/nscd.8 +++ glibc-2.5/debian/local/manpages/nscd.8 @@ -0,0 +1,87 @@ +.\" Placed in the Public Domain by Sebastian Rittau . +.Dd January 07, 2001 +.Dt NSCD 8 +.Os "GNU C Library 2.2" +.Sh NAME +.Nm nscd +.Nd name service caching daemon +.Sh SYNOPSIS +.Nm nscd +.Op OPTION... +.Sh DESCRIPTION +.Nm Nscd +caches libc-issued requests to the Name Service. If retrieving +NSS data is fairly expensive, +.Nm nscd +is able to speed up consecutive access to the same data +dramatically and increase overall system performance. +.Nm Nscd +should be run at boot time by +.Pa /etc/init.d/nscd . +.Sh OPTIONS +.Bl -tag -width Ds +.It Fl d , Fl -debug +Do not fork and display messages on the current tty. +.El +.Bl -tag -width Ds +.It Fl f , Fl -config-file Ar NAME +Read configuration data from +.Pa NAME . +For a description of the config file format, see nscd.conf(5). +.El +.Bl -tag -width Ds +.It Fl g , Fl -statistic +Print current configuration statistics. +.El +.Bl -tag -width Ds +.It Fl i , Fl -invalidate Ar TABLE +Invalidate the specified +.Pa TABLE , +i. e. forget all data cached therein. This should be used if the +database storing this information has been changed. +.El +.Bl -tag -width Ds +.It Fl K , Fl -shutdown +Quit a running +.Nm nscd +process. +.El +.Bl -tag -width Ds +.It Fl S , Fl -secure Ar TABLE +Use a separate cache for each user. +.El +.Bl -tag -width Ds +.It Fl t , Fl -nthreads Ar NUMBER +Start +.Pa NUMBER +threads. This denotes the maximum number +of requests that can be handled simultaneously. The default is set +in the configuration file. (See nscd.conf(5).) +.El +.Bl -tag -width Ds +.It Fl ? , Fl -help +Print the list of available options. +.El +.Bl -tag -width Ds +.It Fl -usage +Print a short usage message. +.El +.Bl -tag -width Ds +.It Fl V , Fl -version +Print program version. +.El +.Sh FILES +.Bl -tag -width Ds +.It Ar /etc/nscd.conf +.Nm Nscd +configuration file. See nscd.conf(5) for more information. +.El +.Bl -tag -width Ds +.It Ar /etc/nsswitch.conf +Name Service Switch configuration. See nsswitch.conf(5) +for more information. +.El +.Sh SEE ALSO +GNU C Library info file, +.Xr nscd.conf 5 , +.Xr nsswitch.conf 5 --- glibc-2.5.orig/debian/local/manpages/nscd.conf.5 +++ glibc-2.5/debian/local/manpages/nscd.conf.5 @@ -0,0 +1,182 @@ +.\" Placed in the Public Domain by Sebastian Rittau +.TH NSCD.CONF 5 "07 January 2001" +.UC 5 +.SH NAME +nscd.conf \- configuration file for Name Service Caching Daemon +.hy 0 +.SH DESCRIPTION +.I /etc/nscd.conf +configures the caches used by +.BR nscd (8) +as well as some generic options. +.BR nscd (8) +is able to use a configuration file at a different location, +when supplied with the +.IR -f +or +.IR --config-file +command line option. + +.PP +The configuration file consists of a set of lines. +Empty lines, and text after a '#' is ignored. +All remaining lines denote the setting of an option. +White space before and after options, and between +options and option arguments is ignored. + +There are two kinds of options: General options influence +.BR nscd (8)'s +general behaviour, while cache related options only affect the +specified cache. Options are set like this: +.nf + + general_option option + cache_option cache_name option +.fi +.SH GENERAL OPTIONS +.TP +.BI logfile \ file +Specifies the name of the debug log-file that +.BR nscd (8) +should use if +.B debug-level +is higher than +.BR 0 . +If this option is not set, +.BR nscd (8) +will write its debug output to stderr. +.TP +.BI debug-level \ level +If +.I level +is higher than +.BR 0 , +.BR nscd (8) +will create some debug output. The higher the level, the more verbose +the output. +.TP +.BI threads \ #threads +This option sets the number of threads that +.BR nscd (8) +should use by default. It can be overridden by calling +.BR nscd (8) +with the +.I -t +or +.I --nthreads +argument. If neither this configuration option nor the command line +argument is given, +.BR nscd (8) +uses 5 threads by default. The minimum is 3. More threads means more +simultaneous connections that +.BR nscd (8) +can handle. +.TP +.BI server-user \ user +By default, +.BR nscd (8) +is run as user root. This option can be set to force +.BR nscd (8) +to drop root privileges after startup. It cannot be used when +.BR nscd (8) +is called with the +.I -S +or +.I --secure +argument. Also note that some services require that nscd run as root, so +using this may break those lookup services. +.SH CACHE OPTIONS +All cache options take two arguments. The first one denotes +the service or cache the option should affect. Currently +.I service +can be one of +.BR passwd , +.BR group , +or +.BR hosts . +.TP +.BI enable-cache \ service\ bool +.I bool +must be one of +.B yes +or +.BR no . +Each cache is disabled by default and must be enabled explicitly +by setting this options to +.BR yes . +.TP +.BI positive-time-to-live \ service\ secs +This is the number of seconds after which a cached entry is +removed from the cache. This defaults to 3600 seconds (i. e. +one hour). +.TP +.BI negative-time-to-live \ service\ secs +If an entry is not found by the Name Service, it is added to +the cache and marked as "not existent". This option sets the number +of seconds after which such a not existent entry is removed from +the cache. This defaults to 20 seconds for the +.B password +and +.B host +caches and to 60 seconds for the +.B group +cache. +.TP +.BI suggested-size \ service\ prime-number +This option sets the size of the hash that is used to store the +cache entries. As this is a hash, it should be reasonably larger +than the maximum number of entries that is expected to be cached +simultaneously and should be a prime number. It defaults to a +size of 211 entries. +.TP +.BI check-files \ service\ bool +.I bool +must be one of +.B yes +(default) or +.BR no . +If file checking is enabled, +.BR nscd (8) +periodically checks the modification time of +.IR /etc/passwd , +.IR /etc/group , +or +.I /etc/hosts +(for the +.BR passwd , +.BR group , +and +.B host +cache respectively) +and invalidates the cache if the file has changed since the +last check. +.SH EXAMPLE +.nf + +# This is a comment. + + logfile /var/log/nscd.log + threads 6 + server-user nobody + debug-level 0 + + enable-cache passwd yes + positive-time-to-live passwd 600 + negative-time-to-live passwd 20 + suggested-size passwd 211 + check-files passwd yes + + enable-cache group yes + positive-time-to-live group 3600 + negative-time-to-live group 60 + suggested-size group 211 + check-files group yes + + enable-cache hosts yes + positive-time-to-live hosts 3600 + negative-time-to-live hosts 20 + suggested-size hosts 211 + check-files hosts yes +.fi +.SH SEE ALSO +nscd(8), nsswitch.conf(5) --- glibc-2.5.orig/debian/local/manpages/nscd_nischeck.8 +++ glibc-2.5/debian/local/manpages/nscd_nischeck.8 @@ -0,0 +1,31 @@ +.\" Placed in the Public Domain by Sebastian Rittau . +.Dd January 08, 2001 +.Dt NSCD_NISCHECK 8 +.Os "GNU C Library 2.2" +.Sh NAME +.Nm nscd_nischeck +.Nd check NIS+ tables for read permissions +.Sh SYNOPSIS +.Nm nscd_nischeck +.Ar OPTION | TABLE +.Sh DESCRIPTION +.Nm Nscd_nischeck +checks if a given NIS+ table is world-readable. 0 is returned in +this case. Otherwise, only authenticated users can read the table +and 1 is returned. +.Sh OPTIONS +.Bl -tag -width Ds +.It Fl ? , Fl -help +Print a short help list. +.El +.Bl -tag -width Ds +.It Fl -usage +Print a short usage message. +.El +.Bl -tag -width Ds +.It Fl V , Fl -version +Print program version. +.El +.Sh SEE ALSO +GNU C Library info file, +.Xr nscd 8 --- glibc-2.5.orig/debian/local/manpages/pl/validlocale.pl.8 +++ glibc-2.5/debian/local/manpages/pl/validlocale.pl.8 @@ -0,0 +1,52 @@ +.\" This file was generated with po4a. Translate the source file. +.\" +.TH validlocale 8 0.1 "Petter Reinholdtsen" "" +.SH NAZWA +.LP +validlocale \- Sprawdza, czy dostpne jest dane locale +.SH SKADNIA +.LP +validlocale <\fIlocale\fP> +.SH OPIS +.LP +Sprawdza, czy locale podane jako argument jest poprawne. Jeli nie jest, +wypisuje na stdout napis, jaki naley doda do /etc/locale.gen, aby +polecenie locale\-gen wygenerowao dane locale (o ile w ogle ono istnieje). +.SH PLIKI +.LP +\fI/usr/sbin/validlocale\fP +.br +\fI/usr/share/i18n/SUPPORTED\fP +.SH "ZMIENNE RODOWISKOWE" +.LP +.TP +\fBDEFAULTCHARSET\fP +Jakiego zestawu znakw uy, jeli podanego locale nie ma w licie +obsugiwanych. +.SH PRZYKADY +.LP +Jeli jako parametr podano nazw poprawnego locale, wypisuje na stderr +odpowiedni napis: +.LP +.IP +% validlocale C +.br +locale 'C' valid and available +.LP +Jeli podano nazw nieprawidowego locale (niewygenerowanego lub po prostu +nieistniejcego), wypisuje na stderr napis mwicy o tym, e nie jest to +prawidowe locale, oraz \- na stdout \- napis, ktry naley doda do +/etc/locale.gen, aby mc wygenerowa dane locale: +.LP +.IP +% validlocale de_AU@euro +.br +locale 'de_AT@euro' not available +.br +de_AT@euro ISO\-8859\-15 +.SH AUTOR +.LP +Petter Reinholdtsen +.SH "PATRZ TAKE" +.LP +locale\-gen(8), localedef(1), locale(1) --- glibc-2.5.orig/debian/local/manpages/po/de.po +++ glibc-2.5/debian/local/manpages/po/de.po @@ -0,0 +1,294 @@ +# base-config manual page +# Copyright (C) 2005 Free Software Foundation, Inc. +# Jens Seidel , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: base-config 2005/11/17\n" +"POT-Creation-Date: 2005-12-27 17:38-0500\n" +"PO-Revision-Date: 2005-11-17 21:06+0100\n" +"Last-Translator: Jens Seidel \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "validlocale" +msgstr "" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "0.1" +msgstr "" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "Petter Reinholdtsen" +msgstr "" + +# type: SH +#: validlocale.8:2 +#, no-wrap +msgid "NAME" +msgstr "NAME" + +# type: Plain text +#: validlocale.8:5 +msgid "validlocale - Test if a given locale is available" +msgstr "" + +# type: SH +#: validlocale.8:5 +#, no-wrap +msgid "SYNTAX" +msgstr "" + +# type: Plain text +#: validlocale.8:8 +msgid "validlocale EIE" +msgstr "" + +# type: SH +#: validlocale.8:8 +#, no-wrap +msgid "DESCRIPTION" +msgstr "BESCHREIBUNG" + +# type: Plain text +#: validlocale.8:13 +msgid "" +"Test if the locale given as argument is a valid locale. If it isn't, print " +"on stdout the string to add to /etc/locale.gen to make locale-gen generate " +"the locale (if it exists at all)." +msgstr "" + +# type: SH +#: validlocale.8:13 +#, no-wrap +msgid "FILES" +msgstr "" + +# type: Plain text +#: validlocale.8:16 +msgid "I" +msgstr "" + +# type: Plain text +#: validlocale.8:18 +msgid "I" +msgstr "" + +# type: SH +#: validlocale.8:18 +#, no-wrap +msgid "ENVIRONMENT VARIABLES" +msgstr "" + +# type: TP +#: validlocale.8:20 +#, no-wrap +msgid "B" +msgstr "" + +# type: Plain text +#: validlocale.8:24 +msgid "" +"Which charset to assume if the given locale is missing from the list of " +"supported locales." +msgstr "" + +# type: SH +#: validlocale.8:24 +#, no-wrap +msgid "EXAMPLES" +msgstr "BEISPIELE" + +# type: Plain text +#: validlocale.8:28 +msgid "" +"If you give a valid locale as parameter, it outputs a string specifying this " +"on stderr:" +msgstr "" + +# type: Plain text +#: validlocale.8:31 +msgid "% validlocale C" +msgstr "" + +# type: Plain text +#: validlocale.8:33 +msgid "locale 'C' valid and available" +msgstr "" + +# type: Plain text +#: validlocale.8:37 +msgid "" +"When given a invalid (not generated or just nonexistent), it outputs a " +"string on stderr telling that this is an invalid locale, and a string to " +"stdout with the string to add to /etc/locale.gen to have this locale " +"generated:" +msgstr "" + +# type: Plain text +#: validlocale.8:40 +msgid "% validlocale de_AU@euro" +msgstr "" + +# type: Plain text +#: validlocale.8:42 +msgid "locale 'de_AT@euro' not available" +msgstr "" + +# type: Plain text +#: validlocale.8:44 +msgid "de_AT@euro ISO-8859-15" +msgstr "" + +# type: SH +#: validlocale.8:44 +#, no-wrap +msgid "AUTHORS" +msgstr "AUTOR" + +# type: Plain text +#: validlocale.8:47 +msgid "Petter Reinholdtsen Epere@hungry.comE" +msgstr "" + +# type: SH +#: validlocale.8:47 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +# type: Plain text +#: validlocale.8:49 +msgid "locale-gen(8), localedef(1), locale(1)" +msgstr "" + +# type: TH +#~ msgid "BASE-CONFIG" +#~ msgstr "BASE-CONFIG" + +# type: Plain text +#~ msgid "base-config - Debian base system configuration" +#~ msgstr "base-config - Debian-Basissystemkonfiguration" + +# type: SH +#~ msgid "SYNOPSIS" +#~ msgstr "BERSICHT" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is the program that was run when you first rebooted into " +#~ "your newly installed debian system. It walks you through setting up the " +#~ "system and downloading additional software, and so forth. The program can " +#~ "be run at any later date to walk you through essentially the same process " +#~ "again." +#~ msgstr "" +#~ "B ist das Programm, das lief, als Sie das erste Mal Ihr neu " +#~ "installiertes Debian-System starteten. Es fhrt Sie durch die Einrichtung " +#~ "des Systems, das Herunterladen zustzlicher Software und so weiter. Das " +#~ "Programm kann zu jedem spteren Zeitpunkt erneut gestartet werden, um " +#~ "erneut durch den selben Prozess zu fhren." + +# type: SH +#~ msgid "IMPLEMENTATION" +#~ msgstr "IMPLEMENTIERUNG" + +# type: Plain text +#~ msgid "" +#~ "B generates a menu of choices from the contents of B, and from debconf templates." +#~ msgstr "" +#~ "B erzeugt ein Auswahlmen aus dem Inhalt von B und von Debconf-Vorlagen." + +# type: SH +#~ msgid "AUTHOR" +#~ msgstr "AUTOR" + +# type: Plain text +#~ msgid "Joey Hess Ejoeyh@debian.orgE" +#~ msgstr "Joey Hess Ejoey@kitenet.netE" + +# type: SH +#~ msgid "OPTIONS" +#~ msgstr "OPTIONEN" + +# type: TP +#~ msgid "I<-nnt>" +#~ msgstr "I<-N>" + +# type: TH +#, fuzzy +#~ msgid "APT-SETUP" +#~ msgstr "APT-SETUP" + +# type: Plain text +#, fuzzy +#~ msgid "apt-setup - add apt download sources" +#~ msgstr "apt-setup - Hinzufgen von Quellen zum Herunterladen" + +# type: Plain text +#, fuzzy +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "B is an interactive program that simplifies adding sources to " +#~ "apt's sources.list. It knows about all the major debian mirrors and can " +#~ "help you select one. It can even use B(8) to scan CDs." +#~ msgstr "" +#~ "B ist ein interaktives Programm, da das Hinzufgen von " +#~ "Quellen zu apt's sources.list vereinfacht. Es kennt alle bedeutenden " +#~ "Debian-Spiegel und kann Ihnen bei der Auswahl helfen. Es kann sogar B(8) zum Durchsuchen von CDs verwenden." + +# type: TP +#, fuzzy +#~ msgid "I" +#~ msgstr "I" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "By default no probing of CDs is done. Passing \"probe\" as the first " +#~ "argument to this program will make it probe for a CD in the drive on " +#~ "startup and add it to sources.list. This is useful on initial debian " +#~ "installs, to minimize interaction with the user." +#~ msgstr "" +#~ "Standardmig wird nicht auf CDs berprft. Wird probe als erstes " +#~ "Argument an dieses Programm bergeben, dann wird beim Starten auf eine CD " +#~ "im Laufwerk geprft und diese zu den sources.list hinzugefgt. Dies ist " +#~ "bei Debian Erstinstallationen ntzlich, um die Interaktion mit dem Nutzer " +#~ "zu minimieren." + +# type: TP +#, fuzzy +#~ msgid "I<-N>" +#~ msgstr "I<-N>" + +# type: Plain text +#, fuzzy +#~ msgid "Joey Hess Ejoey@kitenet.netE" +#~ msgstr "Joey Hess Ejoey@kitenet.netE" + +# type: TH +#~ msgid "TZSETUP" +#~ msgstr "APT-SETUP" + +# type: SH +#~ msgid "DERIVATION" +#~ msgstr "BESCHREIBUNG" --- glibc-2.5.orig/debian/local/manpages/po/es.po +++ glibc-2.5/debian/local/manpages/po/es.po @@ -0,0 +1,672 @@ +msgid "" +msgstr "" +"Project-Id-Version: 2.74\n" +"POT-Creation-Date: 2005-12-27 17:38-0500\n" +"PO-Revision-Date: 2005-11-30 18:58+0100\n" +"Last-Translator: Rubn Porras \n" +"Language-Team: Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "validlocale" +msgstr "validlocale" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "0.1" +msgstr "0.1" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "Petter Reinholdtsen" +msgstr "Petter Reinholdtsen" + +# type: SH +#: validlocale.8:2 +#, no-wrap +msgid "NAME" +msgstr "NOMBRE" + +# type: Plain text +#: validlocale.8:5 +msgid "validlocale - Test if a given locale is available" +msgstr "" +"validlocale - Comprueba si la opcin de localizacin dada est disponible" + +# type: SH +#: validlocale.8:5 +#, no-wrap +msgid "SYNTAX" +msgstr "SINTAXIS" + +# type: Plain text +#: validlocale.8:8 +msgid "validlocale EIE" +msgstr "validlocale EIE" + +# type: SH +#: validlocale.8:8 +#, no-wrap +msgid "DESCRIPTION" +msgstr "DESCRIPCIN" + +# type: Plain text +#: validlocale.8:13 +msgid "" +"Test if the locale given as argument is a valid locale. If it isn't, print " +"on stdout the string to add to /etc/locale.gen to make locale-gen generate " +"the locale (if it exists at all)." +msgstr "" +"Comprueba si la opcin de localizacin dada como argumento es vlida. Si no " +"lo es muestra en la stdout (salida estndar) la cadena de caracteres que se " +"necesita aadir a /etc/locale.gen para que locale-gen genere esa opcin de " +"localizacin (si es que existe)." + +# type: SH +#: validlocale.8:13 +#, no-wrap +msgid "FILES" +msgstr "FICHEROS" + +# type: Plain text +#: validlocale.8:16 +msgid "I" +msgstr "I" + +# type: Plain text +#: validlocale.8:18 +msgid "I" +msgstr "I" + +# type: SH +#: validlocale.8:18 +#, no-wrap +msgid "ENVIRONMENT VARIABLES" +msgstr "VARIABLES DE ENTORNO" + +# type: TP +#: validlocale.8:20 +#, no-wrap +msgid "B" +msgstr "B" + +# type: Plain text +#: validlocale.8:24 +msgid "" +"Which charset to assume if the given locale is missing from the list of " +"supported locales." +msgstr "" +"El juego de caracteres que asume en caso de que la opcin de localizacin " +"dada no est entre la lista de opciones de localizacin soportadas." + +# type: SH +#: validlocale.8:24 +#, no-wrap +msgid "EXAMPLES" +msgstr "EJEMPLOS" + +# type: Plain text +#: validlocale.8:28 +msgid "" +"If you give a valid locale as parameter, it outputs a string specifying this " +"on stderr:" +msgstr "" +"Si usted proporciona una opcin de localizacin vlida como parmetro, " +"muestra una cadena de caracteres especificndolo en stderr (salida de " +"errores estndar):" + +# type: Plain text +#: validlocale.8:31 +msgid "% validlocale C" +msgstr "% validlocale C" + +# type: Plain text +#: validlocale.8:33 +msgid "locale 'C' valid and available" +msgstr "locale 'C' valid and available" + +# type: Plain text +#: validlocale.8:37 +msgid "" +"When given a invalid (not generated or just nonexistent), it outputs a " +"string on stderr telling that this is an invalid locale, and a string to " +"stdout with the string to add to /etc/locale.gen to have this locale " +"generated:" +msgstr "" +"Cuando se proporcione una invlida (no ha sido generada o no existe), " +"muestra una cadena de caracteres en stderr diciendo que es invlida, y otra " +"a stdout con la cadena de caracteres que se necesita aadir a /etc/locale." +"gen para que se genere:" + +# type: Plain text +#: validlocale.8:40 +msgid "% validlocale de_AU@euro" +msgstr "% validlocale de_AU@euro" + +# type: Plain text +#: validlocale.8:42 +msgid "locale 'de_AT@euro' not available" +msgstr "locale 'de_AT@euro' not available" + +# type: Plain text +#: validlocale.8:44 +msgid "de_AT@euro ISO-8859-15" +msgstr "de_AT@euro ISO-8859-15" + +# type: SH +#: validlocale.8:44 +#, no-wrap +msgid "AUTHORS" +msgstr "AUTORES" + +# type: Plain text +#: validlocale.8:47 +msgid "Petter Reinholdtsen Epere@hungry.comE" +msgstr "Petter Reinholdtsen Epere@hungry.comE" + +# type: SH +#: validlocale.8:47 +#, no-wrap +msgid "SEE ALSO" +msgstr "VASE ADEMS" + +# type: Plain text +#: validlocale.8:49 +#, fuzzy +msgid "locale-gen(8), localedef(1), locale(1)" +msgstr "locale-gen(8), localedef(1), locale(1), base-config(8)" + +# type: TH +#~ msgid "BASE-CONFIG" +#~ msgstr "BASE-CONFIG" + +# type: Plain text +#~ msgid "base-config - Debian base system configuration" +#~ msgstr "base-config - configuracin del sistema base de Debian" + +# type: SH +#~ msgid "SYNOPSIS" +#~ msgstr "SINOPSIS" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is the program that was run when you first rebooted into " +#~ "your newly installed debian system. It walks you through setting up the " +#~ "system and downloading additional software, and so forth. The program can " +#~ "be run at any later date to walk you through essentially the same process " +#~ "again." +#~ msgstr "" +#~ "B es el programa que se ejecut la primera vez que arranc " +#~ "en su sistema Debian recin instalado. base-config termina de configurar " +#~ "el sistema, descarga programas adicionales... El programa puede " +#~ "ejecutarse en cualquier momento posterior para realizar el mismo proceso " +#~ "de nuevo." + +# type: SH +#~ msgid "IMPLEMENTATION" +#~ msgstr "IMPLEMENTACIN" + +# type: Plain text +#~ msgid "" +#~ "B generates a menu of choices from the contents of B, and from debconf templates." +#~ msgstr "" +#~ "B genera un men de elecciones con los contenidos de B, y de las plantillas de debconf." + +# type: Plain text +#~ msgid "" +#~ "The .mnu files in /usr/lib/base-config/ control whether the menu item " +#~ "appears only on new installs (Only-New: true), whether debconf can " +#~ "already be running when the item is run (Debconf: true), a numeric Order " +#~ "controls placement in the menu. If a .mnu file contains \"Exit-Menu: true" +#~ "\", then base-config will terminate after running that menu item. " +#~ "Finally, a \"Changes-Menu: true\" line will make base-config rebuild the " +#~ "menu after running the menu item." +#~ msgstr "" +#~ "Los ficheros .mnu de /usr/lib/base-config/ controlan si el elemento del " +#~ "men aparece slo en nuevas instalaciones (\"Only-New: true\"), si " +#~ "debconf puede estar siendo ejecutado en el momento en el que se ejecute " +#~ "el elemento (Debconf: true). Una opcin numrica \"Order\" controla el " +#~ "lugar en el men. Si el fichero .mnu contiene \"Exit-Menu:true\", base-" +#~ "config terminar despus de ejectuar ese elemento del men. Finalmente, " +#~ "una lnea \"Changes-Menu: true\" har que base-config reconstruya el men " +#~ "despus de ejecutar el elemento del men." + +# type: Plain text +#~ msgid "" +#~ "The .tst files in /usr/lib/base-config/ are run when base-config builds " +#~ "the menu and must return true for that menu item to appear on the menu." +#~ msgstr "" +#~ "Los ficheros .tst de /usr/lib/base-config/ se ejecutan cuando base-config " +#~ "construye el men y debe devolver \"true\" para que ese elemento aparezca " +#~ "en el men." + +# type: Plain text +#~ msgid "" +#~ "The menu items are taken from debconf, by looking for items in the " +#~ "debconf database named base-config/menu/whatever." +#~ msgstr "" +#~ "Los elementos del men se toman de debconf, buscando los elementos en la " +#~ "base de datos de debconf llamada base-config/menu/loquesea." + +# type: Plain text +#~ msgid "" +#~ "When a menu item is selected, the corresponding program, in /usr/lib/base-" +#~ "config is run. If this is a fresh install onto a new debian system, the " +#~ "program receives \"new\" as its first argument." +#~ msgstr "" +#~ "Cuando se selecciona elemento del men, se ejecuta el programa " +#~ "correspondiente en /usr/lib/base-config. Si sta es la primera " +#~ "instalacin en un sistema muevo, entonces el programa recibe \"new\" como " +#~ "su primer argumento." + +# type: Plain text +#~ msgid "" +#~ "B checks the return codes of each of the programs. If a " +#~ "program returns nonzero, the main menu is displayed (this may involve " +#~ "lowering the debconf priority)." +#~ msgstr "" +#~ "B comprueba los valores devueltos por cada programa. Si un " +#~ "programa devuelve un valor distinto de cero, se muestra el men principal " +#~ "(puede que esto implique bajar la prioridad de debconf)." + +# type: Plain text +#~ msgid "" +#~ "Generally the user is advanced down the menu from item to item as each " +#~ "succeeds. If a menu item needs to jump back to a previous item in the " +#~ "menu, or skip over a subsequent item, it can write the name of the next " +#~ "menu item to show to the file \"jump-to\" in the current directory." +#~ msgstr "" +#~ "Normalmente el usuario es guiado de arriba abajo de un elemento del men " +#~ "en otro a medida que cada uno de ellos se completa con xito. Si un " +#~ "elemento del men necesita volver a otro anterior o saltar alguno de los " +#~ "posteriores, puede hacerlo escribiendo el nombre del siguiente elemento " +#~ "del men al que saltar en el fichero \"jump-to\" en el directorio actual." + +# type: Plain text +#~ msgid "" +#~ "Every base-config run is logged to B. B contains timing information to go with the log. " +#~ "This allows replays of base-config runs using the B(1) utility." +#~ msgstr "" +#~ "Cualquier ejecucin de base-config se registra en B. B contiene informacin de los " +#~ "tiempos que van con el registro. Esto permite volver a ver la ejecucin " +#~ "de base-config usando la utilidad B(1)B<.>" + +# type: Plain text +#~ msgid "" +#~ "B, if it exists, is used by B " +#~ "on new installs to get values from the debian-installer first stage " +#~ "install." +#~ msgstr "" +#~ "Si existe B, B lo usa en nuevas " +#~ "instalaciones para obtener valores de la primera etapa de instalacin del " +#~ "\"debian-installer\"." + +# type: Plain text +#~ msgid "" +#~ "Other packages can drop files into B, and add menu " +#~ "titles in debconf, and they will be added to the menu. It is very " +#~ "strongly encouraged that any such programs communicate with the user " +#~ "entirely via debconf, so that the base configuration maintains a " +#~ "consistent and professional look." +#~ msgstr "" +#~ "Otros paquetes pueden dejar ficheros en B, y " +#~ "aadir ttulos de men en debconf, y sern aadidos al men. Es altamente " +#~ "recomendable que cualquiera de estos programas se comunique con el " +#~ "usuario totalmente a travs de debconf, de esta forma, la configuracin " +#~ "mantiene un aspecto consistente y profesional." + +# type: Plain text +#~ msgid "" +#~ "Another useful thing for custom distributions is /usr/share/base-config/" +#~ "debconf-seed. If that directory exists, every file in it will be loaded " +#~ "into the debconf database using B(1)" +#~ msgstr "" +#~ "Otra cosa til para las distribuciones personalizadas es /usr/share/base-" +#~ "config/debconf-seed. Si ese directorio existe, todos los ficheros dentro " +#~ "de l se cargarn en la base de datos de debconf usando B(1)" + +# type: Plain text +#~ msgid "" +#~ "If the file /var/log/installer/debconf-seed is created by the debian-" +#~ "installer, it will also be loaded into the debconf database." +#~ msgstr "" +#~ "Si debian-installer crea el fichero /var/log/installer/debconf-seed, " +#~ "tambin se incorporar a la base de datos de debconf." + +# type: SH +#~ msgid "ENVIRONMENT" +#~ msgstr "ENTORNO" + +# type: Plain text +#~ msgid "" +#~ "The following environment variables influence B. These " +#~ "variables may be set at run time, or for new installs, may be passed to " +#~ "the kernel at the B(8) (or other bootloader) command line. Consult " +#~ "your boot loader's documentation for details. For example, lilo can be " +#~ "booted with something like \"linux DEBIAN_FRONTEND=readline\"." +#~ msgstr "" +#~ "Las siguientes variables de entorno influencian a B. Estas " +#~ "variables pueden establecerse en tiempo de ejecucin, o para nuevas " +#~ "instalaciones, puede pasarse al ncleo en la lnea de rdenes de B" +#~ "(8) (u otro gestor de arranque). Consulte la documentacin de su gestor " +#~ "de arranque para ms detalles. Por ejemplo, lilo puede arrancarse con " +#~ "algo como \"linux DEBIAN_FRONTEND=readline\"." + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "Control various things about B(7)" +#~ msgstr "Controlan varias cosas de B(7)" + +# type: SH +#~ msgid "AUTHOR" +#~ msgstr "AUTOR" + +# type: Plain text +#~ msgid "Joey Hess Ejoeyh@debian.orgE" +#~ msgstr "Joey Hess Ejoey@debian.orgE" + +# type: TH +#~ msgid "TERMWRAP" +#~ msgstr "TERMWRAP" + +# type: Plain text +#~ msgid "termwrap - terminal wrapper" +#~ msgstr "termwrap - envuelve un terminal" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is used to execute B(8) on newly installed " +#~ "Debian systems. It examines the environment, taking note of locale " +#~ "settings, and what type of console is available, and runs an appropriate " +#~ "terminal program. For example, at the Linux console and in a Japanese " +#~ "locale, it runs jfterm. The specified command is run inside the terminal " +#~ "program (if any)." +#~ msgstr "" +#~ "B se usa para ejecutar B(8) en sistemas Debian " +#~ "recin instalados. Examina el entorno, toma nota de la configuracin de " +#~ "las opciones de localizacin y de que tipo de terminal est disponible, " +#~ "para luego ejecutar un programa de terminal apropiado. Por ejemplo, en " +#~ "una consola de Linux con configuracin de localizacin japonesa ejecutar " +#~ "jfterm. La orden especificada se ejecuta dentro del programa de terminal " +#~ "(si hay alguno)." + +# type: SH +#~ msgid "OPTIONS" +#~ msgstr "OPCIONES" + +# type: TP +#~ msgid "I<-nnt>" +#~ msgstr "I<-nnt>" + +# type: Plain text +#~ msgid "Don't run another terminal." +#~ msgstr "No ejecutar otro terminal." + +# type: TH +#~ msgid "APT-SETUP" +#~ msgstr "APT-SETUP" + +# type: Plain text +#~ msgid "apt-setup - add apt download sources" +#~ msgstr "apt-setup - aade fuentes para las descargas de apt" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is an interactive program that simplifies adding sources to " +#~ "apt's sources.list. It knows about all the major debian mirrors and can " +#~ "help you select one. It can even use B(8) to scan CDs." +#~ msgstr "" +#~ "B es un programa interactivo que simplifica el proceso de " +#~ "aadir fuentes al sources.list de apt. Conoce las principales rplicas " +#~ "Debian y puede ayudarle a seleccionar una. Incluso puede usar B" +#~ "(8) para analizar CD's." + +# type: TP +#~ msgid "I" +#~ msgstr "I" + +# type: Plain text +#~ msgid "" +#~ "By default no probing of CDs is done. Passing \"probe\" as the first " +#~ "argument to this program will make it probe for a CD in the drive on " +#~ "startup and add it to sources.list. This is useful on initial debian " +#~ "installs, to minimize interaction with the user." +#~ msgstr "" +#~ "Por omisin no se busca ningn CD. Si se pasa \"probe\" como primer " +#~ "argumento el programa mirar al arrancar si hay un CD en la unidad y lo " +#~ "aadir al sources.list. Esto es til en instalaciones iniciales de " +#~ "Debian, para minimizar la interaccin con el usuario." + +# type: TP +#~ msgid "I<-N>" +#~ msgstr "I<-N>" + +# type: Plain text +#~ msgid "" +#~ "Indicates that this is a new install. This parameter allows apt-setup to " +#~ "run in noninteractive mode if its debconf questions have been preseeded." +#~ msgstr "" +#~ "Indica que es una nueva instalacin. Este parmetro permite ejecutar apt-" +#~ "setup de forma no interactiva si los valores de debconf han sido " +#~ "preconfigurados." + +# type: Plain text +#~ msgid "Joey Hess Ejoey@kitenet.netE" +#~ msgstr "Joey Hess Ejoey@kitenet.netE" + +# type: TH +#~ msgid "TZSETUP" +#~ msgstr "TZSETUP" + +# type: TH +#~ msgid "16 January 2004" +#~ msgstr "16 de enero de 2004" + +# type: TH +#~ msgid "Debian" +#~ msgstr "Debian" + +# type: TH +#~ msgid "Debian Timezone Configuration" +#~ msgstr "Configuracin de zona horaria en Debian" + +# type: Plain text +#~ msgid "tzsetup - set the local timezone" +#~ msgstr "tzsetup - establece la zona horaria local" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "This manual page explains how you can use the B utility to set " +#~ "the local timezone. This is necessary to let your system know about the " +#~ "difference between system time and local time (the time in the real " +#~ "world). It is also necessary to make your system behave nicely when your " +#~ "location uses Daylight Savings Time." +#~ msgstr "" +#~ "Esta pgina del manual explica como puede usar la utilidad B " +#~ "para establecer la zona horaria local. Esto es importante para que su " +#~ "sistema sepa la diferencia entre el tiempo del sistema y el tiempo local " +#~ "(el tiempo del mundo real). Tambin es necesario para que su sistema se " +#~ "comporte de forma adecuada cuando en su zona se realicen cambios horarios " +#~ "para aprovechar mejor la luz del da." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "A valid system time together with the correct local time zone will give " +#~ "you best performance and highest reliability. It is especially important " +#~ "in a network environment, where even small time differences can make a " +#~ "mirror refetch a whole ftp site, or where time stamps on external file " +#~ "systems are used." +#~ msgstr "" +#~ "Un tiempo del sistema vlido junto con la zona horaria adecuada le dar " +#~ "mejores resultados y una mayor seguridad. Es especialmente importante en " +#~ "un entorno de red, donde incluso pequeas diferencias de tiempo pueden " +#~ "hacer que una rplica vuelva a descargar todo un sitio ftp, o donde se " +#~ "usan marcas de tiempo en un sistema de ficheros externo." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "B is typically called without any parameters from the shell. " +#~ "Optionally, the -y parameter can be used, to make it always change your " +#~ "time zone without asking first. The -g parameter can also be used, to " +#~ "make it ask if the hardware clock is set to gmt or not. The -c parameter, " +#~ "followed by a country code, hints at the country the user's time zone may " +#~ "be in. The -N parameter allows it to run noninteractively if the debconf " +#~ "questions have been preseeded." +#~ msgstr "" +#~ "Normalmente se invoca B desde un shell sin parmetros. " +#~ "Opcionalmente, puede usarse la opcin -y, para que siempre cambie la zona " +#~ "horaria sin preguntar primero. El parmetro -g puede tambin usarse, para " +#~ "que pregunte si el reloj fsico del sistema est en hora GMT o no. El " +#~ "parmetro -c, seguido de un cdigo de pas, indica el pas en el que " +#~ "posiblemente est la zona horaria del usuario. El parmetro -N hace que " +#~ "se ejecute de forma no interactiva si ha sido preconfigurado." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "After you made your choice, B will try to change the timezone " +#~ "for you. See the B section below for technical details. You " +#~ "must have root privileges to actually change anything. Please use " +#~ "B(1) as a user space command to just look at the timezones. It " +#~ "will print the local time in any timezone recognized by the system." +#~ msgstr "" +#~ "Despus de que realice su eleccin, B tratar de cambiar la zona " +#~ "horaria por usted. Lea la seccin B de ms abajo " +#~ "para los detalles tcnicos. Debe de tener privilegios de superusuario " +#~ "para cambiar realmente cualquier configuracin. Puede usar B" +#~ "(1) como una orden de usuario para simplemente mirar las zonas horarias " +#~ "reconocidas por el sistema. Mostrar la hora local y todas las zonas " +#~ "horarias reconocidas por el sistema." + +# type: SH +#~ msgid "A WORD OF WARNING" +#~ msgstr "UN AVISO" + +# type: Plain text +#~ msgid "" +#~ "What timezone is correct for your system? It depends on the geographical " +#~ "location of the machine. Getting the correct location is important, but " +#~ "the system must also know how your hardware clock is set. Most DOS based " +#~ "PCs set their hardware clock on Local Time, while most UNIX systems set " +#~ "their hardware clock to UTC." +#~ msgstr "" +#~ "Qu zona horaria es correcta para su sistema? Depende de la localizacin " +#~ "geogrfica de la mquina. Obtener la localizacin correcta es importante, " +#~ "pero el sistema tambin necesita saber cmo funciona el reloj fsico. La " +#~ "mayora de los ordenadores personales basados en DOS establecen el reloj " +#~ "fsico segn el tiempo local, mientras que los sistemas UNIX lo " +#~ "establecen segn UTC." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "The Debian GNU/Linux system gains its knowledge of this setting from the " +#~ "file I. This file contains either the line B, " +#~ "which indicates that the hardware clock is set to UTC, or it contains the " +#~ "line B, which declares the hardware clock is set to Local Time. " +#~ "If these setting are correct, and the hardware clock is truly set as " +#~ "indicated, then configuring the proper timezone for the machine will " +#~ "cause the proper date and time to be displayed. If these are not set " +#~ "correctly, the the reported time will be quite incorrect. See B" +#~ "(8) for more details on this topic." +#~ msgstr "" +#~ "El sistema Debian GNU/Linux obtiene la configuracin del fichero I. Este fichero contiene o bien la lnea B, que " +#~ "indica que el reloj fsico est en UTC, o bien la lnea B, que " +#~ "indica que est en tiempo local. Si el reloj est de verdad como se " +#~ "indica, entonces configurar la zona horaria adecuada har que se muestre " +#~ "la fecha y el tiempo correcto. En caso de no ser as, el tiempo mostrado " +#~ "podr ser bastante incorrecto. Consulte B(8) para ms detalles " +#~ "acerca de este tema." + +# type: SH +#~ msgid "INTERNALS" +#~ msgstr "FUNCIONAMIENTO INTERNO" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "The work done by B is actually pretty simple. It just updates " +#~ "the link I to point to the correct timezone installed in " +#~ "I." +#~ msgstr "" +#~ "El trabajo hecho por B es realmente bastante sencillo. Slo " +#~ "actualiza el enlace I para que apunte al la zona horaria " +#~ "correcta instalada en I." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "There is nothing wrong with doing this manually. However, using " +#~ "B you don't have to remember the path to the timezones." +#~ msgstr "" +#~ "No pasa nada malo si esto se realiza manualmente. Sin embargo, usando " +#~ "B no es necesario recordar donde se guardan las zonas horarias." + +# type: Plain text +#~ msgid "I I I" +#~ msgstr "I I I" + +# type: SH +#~ msgid "DERIVATION" +#~ msgstr "DERIVACIN" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "This program is based on B(8) -- the only major difference is " +#~ "that this program uses debconf for its user interface, and that it allows " +#~ "configuration of GMT." +#~ msgstr "" +#~ "Este programa se base en B(8) -- la mayor diferencia est en " +#~ "que ste usa debconf para la interfaz de usuario, y que adems permite la " +#~ "configuracin de GMT." + +# type: Plain text +#~ msgid "B(8) B(1) B(5) B(8)" +#~ msgstr "B(8) B(1) B(5) B(8)" --- glibc-2.5.orig/debian/local/manpages/po/fr.po +++ glibc-2.5/debian/local/manpages/po/fr.po @@ -0,0 +1,505 @@ +# fr.po for base-config manpage +# +# Copyright (C) 2004 Free Software Foundation, Inc. +# +# Previous translator : +# Antoine Gémis . +# +msgid "" +msgstr "" +"Project-Id-Version: base-config\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-12-27 17:38-0500\n" +"PO-Revision-Date: 2005-07-27 19:36+0200\n" +"Last-Translator: Clment Stenac \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8-bit\n" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "validlocale" +msgstr "validlocale" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "0.1" +msgstr "0.1" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "Petter Reinholdtsen" +msgstr "Petter Reinholdtsen" + +# type: SH +#: validlocale.8:2 +#, no-wrap +msgid "NAME" +msgstr "NOM" + +# type: Plain text +#: validlocale.8:5 +msgid "validlocale - Test if a given locale is available" +msgstr "" +"validlocale - vrifie si un ensemble donn de paramtres rgionaux est " +"disponible" + +# type: SH +#: validlocale.8:5 +#, no-wrap +msgid "SYNTAX" +msgstr "SYNTAXE" + +# type: Plain text +#: validlocale.8:8 +msgid "validlocale EIE" +msgstr "validlocale EIE" + +# type: SH +#: validlocale.8:8 +#, no-wrap +msgid "DESCRIPTION" +msgstr "DESCRIPTION" + +# type: Plain text +#: validlocale.8:13 +msgid "" +"Test if the locale given as argument is a valid locale. If it isn't, print " +"on stdout the string to add to /etc/locale.gen to make locale-gen generate " +"the locale (if it exists at all)." +msgstr "" +"Teste si l'ensemble de paramtres rgionaux donn en argument est valable. " +"S'il ne l'est pas, affiche sur la sortie standard la chane de caractres " +"ajouter /etc/locale.gen afin de permettre locale-gen de gnrer " +"l'ensemble de paramtres (s'il existe)." + +# type: SH +#: validlocale.8:13 +#, no-wrap +msgid "FILES" +msgstr "FICHIERS" + +# type: Plain text +#: validlocale.8:16 +msgid "I" +msgstr "I" + +# type: Plain text +#: validlocale.8:18 +msgid "I" +msgstr "I" + +# type: SH +#: validlocale.8:18 +#, no-wrap +msgid "ENVIRONMENT VARIABLES" +msgstr "VARIABLES D'ENVIRONNEMENT" + +# type: TP +#: validlocale.8:20 +#, no-wrap +msgid "B" +msgstr "B" + +# type: Plain text +#: validlocale.8:24 +msgid "" +"Which charset to assume if the given locale is missing from the list of " +"supported locales." +msgstr "" +"Indique quel encodage de caractres doit tre suppos si la locale donne " +"n'est pas dans la liste des locales gres." + +# type: SH +#: validlocale.8:24 +#, no-wrap +msgid "EXAMPLES" +msgstr "EXEMPLES" + +# type: Plain text +#: validlocale.8:28 +msgid "" +"If you give a valid locale as parameter, it outputs a string specifying this " +"on stderr:" +msgstr "" +"Si vous indiquez comme paramtre une locale valabe, vous recevrez ceci sur " +"la sortie d'erreur " + +# type: Plain text +#: validlocale.8:31 +msgid "% validlocale C" +msgstr "% validlocale C" + +# type: Plain text +#: validlocale.8:33 +msgid "locale 'C' valid and available" +msgstr "locale C valide et disponible" + +# type: Plain text +#: validlocale.8:37 +msgid "" +"When given a invalid (not generated or just nonexistent), it outputs a " +"string on stderr telling that this is an invalid locale, and a string to " +"stdout with the string to add to /etc/locale.gen to have this locale " +"generated:" +msgstr "" +"Lorsqu'une locale non valable (non cre ou inexistante) est indique, vous " +"recevrez un message sur la sortie d'erreur disant qu'il s'agit d'une locale " +"non valable et une chane de caractres sur la sortie standard ajouter /" +"etc/locale.gen pour que la locale soit cre:" + +# type: Plain text +#: validlocale.8:40 +msgid "% validlocale de_AU@euro" +msgstr "% validlocale de_AU@euro" + +# type: Plain text +#: validlocale.8:42 +msgid "locale 'de_AT@euro' not available" +msgstr "locale de_AT@euro non disponible" + +# type: Plain text +#: validlocale.8:44 +msgid "de_AT@euro ISO-8859-15" +msgstr "de_AT@euro ISO-8859-15" + +# type: SH +#: validlocale.8:44 +#, no-wrap +msgid "AUTHORS" +msgstr "AUTEURS" + +# type: Plain text +#: validlocale.8:47 +msgid "Petter Reinholdtsen Epere@hungry.comE" +msgstr "PetterReinholdtsenEpere@hungry.comE" + +# type: SH +#: validlocale.8:47 +#, no-wrap +msgid "SEE ALSO" +msgstr "VOIR AUSSI" + +# type: Plain text +#: validlocale.8:49 +#, fuzzy +msgid "locale-gen(8), localedef(1), locale(1)" +msgstr "locale-gen(8),localedef(1),locale(1),base-config(8)" + +# type: TH +#~ msgid "BASE-CONFIG" +#~ msgstr "BASE-CONFIG" + +# type: Plain text +#~ msgid "base-config - Debian base system configuration" +#~ msgstr "base-config - Configuration du systme Debian de base" + +# type: SH +#~ msgid "SYNOPSIS" +#~ msgstr "SYNOPSIS" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is the program that was run when you first rebooted into " +#~ "your newly installed debian system. It walks you through setting up the " +#~ "system and downloading additional software, and so forth. The program can " +#~ "be run at any later date to walk you through essentially the same process " +#~ "again." +#~ msgstr "" +#~ "B est le programme lanc lors du premier redmarrage d'un " +#~ "nouveau systme Debian. Il vous guide pas pas dans la configuration du " +#~ "systme, l'installation de nouveaux programmes, etc. Vous pourrez lancer " +#~ " nouveau ce programme plus tard si vous dsirez modifier la " +#~ "configuration de votre systme." + +# type: SH +#~ msgid "IMPLEMENTATION" +#~ msgstr "IMPLMENTATION" + +# type: Plain text +#~ msgid "" +#~ "B generates a menu of choices from the contents of B, and from debconf templates." +#~ msgstr "" +#~ "B gnre un menu de choix partir du contenu de B et depuis les modles debconf." + +# type: Plain text +#~ msgid "" +#~ "The .mnu files in /usr/lib/base-config/ control whether the menu item " +#~ "appears only on new installs (Only-New: true), whether debconf can " +#~ "already be running when the item is run (Debconf: true), a numeric Order " +#~ "controls placement in the menu. If a .mnu file contains \"Exit-Menu: true" +#~ "\", then base-config will terminate after running that menu item. " +#~ "Finally, a \"Changes-Menu: true\" line will make base-config rebuild the " +#~ "menu after running the menu item." +#~ msgstr "" +#~ "Les fichiers .mnu dans /usr/lib/base-config/ permettent de spcifier si " +#~ "un lment de menu ne doit apparatre que pour les nouvelles " +#~ "installations (Only-New:true), si Debconf doit dj fonctionner lors du " +#~ "lancement de l'lment (Debconf: true), et un champ numrique contrle la " +#~ "position dans le menu. Si un fichier .mnu contient Exit-Menu: true, " +#~ "base-config se terminera aprs l'excution de cet lment. Enfin, une " +#~ "ligne Changes-Menu: true fera que base-config reconstruira le menu " +#~ "aprs l'excution de l'lment." + +# type: Plain text +#~ msgid "" +#~ "The .tst files in /usr/lib/base-config/ are run when base-config builds " +#~ "the menu and must return true for that menu item to appear on the menu." +#~ msgstr "" +#~ "Les fichiers .tst dans /usr/lib/base-config/ sont lancs lorsque base-" +#~ "config construit le menu et doivent renvoyer un rsultat nul pour que cet " +#~ "lment apparaisse dans le menu." + +# type: Plain text +#~ msgid "" +#~ "The menu items are taken from debconf, by looking for items in the " +#~ "debconf database named base-config/menu/whatever." +#~ msgstr "" +#~ "Les lments du menu sont tirs de Debconf, en cherchant les lments " +#~ "dans la base de donnes de Debconf appels base-config/menu/quelque_chose" + +# type: Plain text +#~ msgid "" +#~ "When a menu item is selected, the corresponding program, in /usr/lib/base-" +#~ "config is run. If this is a fresh install onto a new debian system, the " +#~ "program receives \"new\" as its first argument." +#~ msgstr "" +#~ "Lorsqu'un lment du menu est slectionn, le programme correspondant " +#~ "dans /usr/lib/base-config est excut. S'il s'agit d'une installation sur " +#~ "un nouveau systme, le programme reoit new en tant que premier " +#~ "argument." + +# type: Plain text +#~ msgid "" +#~ "B checks the return codes of each of the programs. If a " +#~ "program returns nonzero, the main menu is displayed (this may involve " +#~ "lowering the debconf priority)." +#~ msgstr "" +#~ "B vrifie les codes de retour des programmes. Si un " +#~ "programme retourne une valeur non nulle, le menu principal sera affich " +#~ "(ceci peut conduire une diminution de la priorit Debconf)" + +# type: Plain text +#~ msgid "" +#~ "Generally the user is advanced down the menu from item to item as each " +#~ "succeeds. If a menu item needs to jump back to a previous item in the " +#~ "menu, or skip over a subsequent item, it can write the name of the next " +#~ "menu item to show to the file \"jump-to\" in the current directory." +#~ msgstr "" +#~ "Gnralement, au fur et mesure que les lments se terminent avec " +#~ "succs, les lments suivants du menu sont prslectionns. Si un lment " +#~ "a besoin d'un retour un lment prcdent du menu, ou d'un saut un " +#~ "autre lment, il peut crire le nom de l'lment prslectionner " +#~ "ensuite dans le fichier jump-to du rpertoire courant." + +# type: Plain text +#~ msgid "" +#~ "Every base-config run is logged to B. B contains timing information to go with the log. " +#~ "This allows replays of base-config runs using the B(1) utility." +#~ msgstr "" +#~ "Chaque excution de base-config est consigne dans B. Les informations temporelles du journal sont consignes dans B, ceci permet de relancer base-config en utilisant " +#~ "B(1)B<.>" + +# type: Plain text +#~ msgid "" +#~ "B, if it exists, is used by B " +#~ "on new installs to get values from the debian-installer first stage " +#~ "install." +#~ msgstr "" +#~ "Le fichier B, s'il existe, est " +#~ "utilis par B pendant les nouvelles installations pour " +#~ "obtenir les valeurs produites par la premire tape de debian-installer" + +# type: Plain text +#~ msgid "" +#~ "Other packages can drop files into B, and add menu " +#~ "titles in debconf, and they will be added to the menu. It is very " +#~ "strongly encouraged that any such programs communicate with the user " +#~ "entirely via debconf, so that the base configuration maintains a " +#~ "consistent and professional look." +#~ msgstr "" +#~ "D'autres paquets peuvent insrer des programmes dans B et ajouter des lments de menu debconf; ils seront alors " +#~ "ajouts au menu. Afin de conserver l'homognit et l'aspect " +#~ "professionnel du processus d'installation, il est fortement conseill que " +#~ "la communication entre ces paquets et l'utilisateur se fasse " +#~ "exclusivement par debconf." + +# type: Plain text +#~ msgid "" +#~ "Another useful thing for custom distributions is /usr/share/base-config/" +#~ "debconf-seed. If that directory exists, every file in it will be loaded " +#~ "into the debconf database using B(1)" +#~ msgstr "" +#~ "Un autre rpertoire intressant pour les distributions personnalises " +#~ "est /usr/share/base-config/debconf-seed. Si ce rpertoire existe, tout " +#~ "son contenu sera charg dans la base de donnes debconf l'aide de " +#~ "B(1)" + +# type: Plain text +#~ msgid "" +#~ "If the file /var/log/installer/debconf-seed is created by the debian-" +#~ "installer, it will also be loaded into the debconf database." +#~ msgstr "" +#~ "Si le fichier /var/log/debian-installer/debconf-seedest cr par " +#~ "l'installateur Debian, il sera galement charg dans la base de donnes " +#~ "debconf" + +# type: SH +#~ msgid "ENVIRONMENT" +#~ msgstr "ENVIRONNEMENT" + +# type: Plain text +#~ msgid "" +#~ "The following environment variables influence B. These " +#~ "variables may be set at run time, or for new installs, may be passed to " +#~ "the kernel at the B(8) (or other bootloader) command line. Consult " +#~ "your boot loader's documentation for details. For example, lilo can be " +#~ "booted with something like \"linux DEBIAN_FRONTEND=readline\"." +#~ msgstr "" +#~ "base-config tient compte des variables d'environnement suivantes. Ces " +#~ "variables peuvent tre dfinies dynamiquement, pendant l'installation, ou " +#~ "bien encore passes en paramtre au noyau sur la ligne de commande de " +#~ "B(8) (ou d'un autre chargeur de dmarrage). Consultez la " +#~ "documentation de votre chargeur de dmarrage pour plus d'informations. " +#~ "Par exemple, lilo peut tre lanc avec un paramtre tel que linux " +#~ "DEBIAN_FRONTEND=readline." + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "Control various things about B(7)" +#~ msgstr "Contrle de nombreux aspects de (7)" + +# type: SH +#~ msgid "AUTHOR" +#~ msgstr "AUTEUR" + +# type: Plain text +#~ msgid "Joey Hess Ejoeyh@debian.orgE" +#~ msgstr "Joey Hess Ejoey@debian.orgE" + +# type: TH +#~ msgid "TERMWRAP" +#~ msgstr "TERMWRAP" + +# type: Plain text +#~ msgid "termwrap - terminal wrapper" +#~ msgstr "termwrap - encapsulateur de terminal" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is used to execute B(8) on newly installed " +#~ "Debian systems. It examines the environment, taking note of locale " +#~ "settings, and what type of console is available, and runs an appropriate " +#~ "terminal program. For example, at the Linux console and in a Japanese " +#~ "locale, it runs jfterm. The specified command is run inside the terminal " +#~ "program (if any)." +#~ msgstr "" +#~ "B est utilis pour excuter B (8) sur un systme " +#~ "Debian nouvellement install. Il examine l'environnement, prenant en " +#~ "compte les rglages de paramtres locaux et le type de console " +#~ "disponible, et lance un programme de terminal adquat. Par exemple, pour " +#~ "une console Linux et des paramtres locaux japonais, il lancera jfterm. " +#~ "La commande indique est alors lance dans le programme de terminal, s'il " +#~ "y en a un." + +# type: SH +#~ msgid "OPTIONS" +#~ msgstr "OPTIONS" + +# type: TP +#~ msgid "I<-nnt>" +#~ msgstr "I<-nnt>" + +# type: Plain text +#~ msgid "Don't run another terminal." +#~ msgstr "Ne pas lancer d'autre terminal" + +# type: TH +#~ msgid "APT-SETUP" +#~ msgstr "APT-SETUP" + +# type: Plain text +#~ msgid "apt-setup - add apt download sources" +#~ msgstr "apt-setup - permet d'ajouter des sources de tlchargement apt" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is an interactive program that simplifies adding sources to " +#~ "apt's sources.list. It knows about all the major debian mirrors and can " +#~ "help you select one. It can even use B(8) to scan CDs." +#~ msgstr "" +#~ "B est un programme interactif simplifiant l'ajout de sources " +#~ "au fichier sources.list. Il connat tous les principaux miroirs Debian et " +#~ "peut vous aider en choisir un. Il peut mme utiliser B(8) " +#~ "pour parcourir des cdroms." + +# type: TP +#~ msgid "I" +#~ msgstr "I" + +# type: Plain text +#~ msgid "" +#~ "By default no probing of CDs is done. Passing \"probe\" as the first " +#~ "argument to this program will make it probe for a CD in the drive on " +#~ "startup and add it to sources.list. This is useful on initial debian " +#~ "installs, to minimize interaction with the user." +#~ msgstr "" +#~ "Par dfaut, aucune dtection des CD n'est faite. Si vous passez probe " +#~ "comme premier argument ce programme, il effectuera une dtection du CD " +#~ "dans le lecteur au dmarrage et l'ajoutera au sources.list. Ceci est " +#~ "utile lors des installations initiales de Debian, afin de minimiser " +#~ "l'interaction avec l'utilisateur." + +# type: TP +#~ msgid "I<-N>" +#~ msgstr "I<-N>" + +# type: Plain text +#~ msgid "" +#~ "Indicates that this is a new install. This parameter allows apt-setup to " +#~ "run in noninteractive mode if its debconf questions have been preseeded." +#~ msgstr "" +#~ "Indique qu'il s'agit d'une nouvelle installation. Ce paramtre permet " +#~ "apt-setup de fonctionner en mode non-interactif si les rponses ses " +#~ "questions debconf ont t prcharges." + +# type: Plain text +#~ msgid "Joey Hess Ejoey@kitenet.netE" +#~ msgstr "Joey Hess Ejoey@kitenet.netE" --- glibc-2.5.orig/debian/local/manpages/po/id.po +++ glibc-2.5/debian/local/manpages/po/id.po @@ -0,0 +1,526 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: base-config man\n" +"POT-Creation-Date: 2005-12-27 17:38-0500\n" +"PO-Revision-Date: 2005-11-11 16:50-0500\n" +"Last-Translator: Debian Indonesia Team \n" +"Language-Team: Debian Indonesia Team \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ascii\n" +"Content-Transfer-Encoding: 8bit\n" + +# type: TH +#: validlocale.8:1 +#, fuzzy, no-wrap +msgid "validlocale" +msgstr "validlocale" + +# type: TH +#: validlocale.8:1 +#, fuzzy, no-wrap +msgid "0.1" +msgstr "0.1" + +# type: TH +#: validlocale.8:1 +#, fuzzy, no-wrap +msgid "Petter Reinholdtsen" +msgstr "Petter Reinholdtsen" + +# type: SH +#: validlocale.8:2 +#, fuzzy, no-wrap +msgid "NAME" +msgstr "NAMA" + +# type: Plain text +#: validlocale.8:5 +#, fuzzy +msgid "validlocale - Test if a given locale is available" +msgstr "validlocale - memeriksa apakah lokal yang diberikan tersedia" + +# type: SH +#: validlocale.8:5 +#, fuzzy, no-wrap +msgid "SYNTAX" +msgstr "RINGKASAN" + +# type: Plain text +#: validlocale.8:8 +#, fuzzy +msgid "validlocale EIE" +msgstr "validlocale EIE" + +# type: SH +#: validlocale.8:8 +#, fuzzy, no-wrap +msgid "DESCRIPTION" +msgstr "PENJELASAN" + +# type: Plain text +#: validlocale.8:13 +#, fuzzy +msgid "" +"Test if the locale given as argument is a valid locale. If it isn't, print " +"on stdout the string to add to /etc/locale.gen to make locale-gen generate " +"the locale (if it exists at all)." +msgstr "" +"Memeriksa apakah lokal yang diberikan sebagai argumen adalah lokal yang sah. " +"Jika tidak, akan dicetak pada stdout string yang dapat ditambahkan ke /etc/" +"locale.gen untuk membuat locale-gen meng-generate lokal tersebut (jika " +"tersedia)." + +# type: SH +#: validlocale.8:13 +#, fuzzy, no-wrap +msgid "FILES" +msgstr "BERKAS-BERKAS" + +# type: Plain text +#: validlocale.8:16 +#, fuzzy +msgid "I" +msgstr "I" + +# type: Plain text +#: validlocale.8:18 +#, fuzzy +msgid "I" +msgstr "I" + +# type: SH +#: validlocale.8:18 +#, fuzzy, no-wrap +msgid "ENVIRONMENT VARIABLES" +msgstr "VARIABEL-VARIABEL LINGKUNGAN" + +# type: TP +#: validlocale.8:20 +#, fuzzy, no-wrap +msgid "B" +msgstr "B" + +# type: Plain text +#: validlocale.8:24 +#, fuzzy +msgid "" +"Which charset to assume if the given locale is missing from the list of " +"supported locales." +msgstr "" +"set karakter mana yang akan dipakai bila lokal yang diberikan tidak ada pada " +"daftar lokal yang didukung." + +# type: SH +#: validlocale.8:24 +#, fuzzy, no-wrap +msgid "EXAMPLES" +msgstr "CONTOH" + +# type: Plain text +#: validlocale.8:28 +#, fuzzy +msgid "" +"If you give a valid locale as parameter, it outputs a string specifying this " +"on stderr:" +msgstr "" +"Bila anda memberikan lokal yang sah pada parameter, program akan menuliskan " +"string yang memberitahukan hal ini pada stderr:" + +# type: Plain text +#: validlocale.8:31 +#, fuzzy +msgid "% validlocale C" +msgstr "% validlocale C" + +# type: Plain text +#: validlocale.8:33 +#, fuzzy +msgid "locale 'C' valid and available" +msgstr "locale 'C' valid and available" + +# type: Plain text +#: validlocale.8:37 +#, fuzzy +msgid "" +"When given a invalid (not generated or just nonexistent), it outputs a " +"string on stderr telling that this is an invalid locale, and a string to " +"stdout with the string to add to /etc/locale.gen to have this locale " +"generated:" +msgstr "" +"Ketika parameter yang diberikan tidak sah (tidak digenerate atau tidak " +"tersedia), program akan mencetak pada stderr string yang memberitahu bahwa " +"lokal tidak sah, dan string lain pada stdout, yang dapat ditambahkan pada /" +"etc/locale.gen agar lokal ini digenerate:" + +# type: Plain text +#: validlocale.8:40 +#, fuzzy +msgid "% validlocale de_AU@euro" +msgstr "% validlocale de_AU@euro" + +# type: Plain text +#: validlocale.8:42 +#, fuzzy +msgid "locale 'de_AT@euro' not available" +msgstr "locale 'de_AT@euro' not available" + +# type: Plain text +#: validlocale.8:44 +#, fuzzy +msgid "de_AT@euro ISO-8859-15" +msgstr "de_AT@euro ISO-8859-15" + +# type: SH +#: validlocale.8:44 +#, fuzzy, no-wrap +msgid "AUTHORS" +msgstr "PENULIS" + +# type: Plain text +#: validlocale.8:47 +#, fuzzy +msgid "Petter Reinholdtsen Epere@hungry.comE" +msgstr "Petter Reinholdtsen Epere@hungry.comE" + +# type: SH +#: validlocale.8:47 +#, fuzzy, no-wrap +msgid "SEE ALSO" +msgstr "LIHAT JUGA" + +# type: Plain text +#: validlocale.8:49 +#, fuzzy +msgid "locale-gen(8), localedef(1), locale(1)" +msgstr "locale-gen(8), localedef(1), locale(1), base-config(8)" + +# type: TH +#, fuzzy +#~ msgid "BASE-CONFIG" +#~ msgstr "BASE-CONFIG" + +# type: Plain text +#, fuzzy +#~ msgid "base-config - Debian base system configuration" +#~ msgstr "base-config - Alat konfigurasi sistem basis Debian" + +# type: SH +#, fuzzy +#~ msgid "SYNOPSIS" +#~ msgstr "RINGKASAN" + +# type: Plain text +#, fuzzy +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "B is the program that was run when you first rebooted into " +#~ "your newly installed debian system. It walks you through setting up the " +#~ "system and downloading additional software, and so forth. The program can " +#~ "be run at any later date to walk you through essentially the same process " +#~ "again." +#~ msgstr "" +#~ "B merupakan program yang dijalankan saat pertama kali anda " +#~ "boot ke sistem Debian anda yang baru diinstal. Program ini membimbing " +#~ "anda melalui tahap-tahap pengaturan sistem, mengunduh (mendownload) " +#~ "perangkat lunak tambahan, dan seterusnya. Program ini dapat dijalankan " +#~ "lagi di kemudian hari, apabila anda ingin mengulangi proses yang sama " +#~ "lagi." + +# type: SH +#, fuzzy +#~ msgid "IMPLEMENTATION" +#~ msgstr "IMPLEMENTASI" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "B generates a menu of choices from the contents of B, and from debconf templates." +#~ msgstr "" +#~ "B menghasilkan pilihan menu dari isi berkas B, dan dari templet-templet debconf." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "The .mnu files in /usr/lib/base-config/ control whether the menu item " +#~ "appears only on new installs (Only-New: true), whether debconf can " +#~ "already be running when the item is run (Debconf: true), a numeric Order " +#~ "controls placement in the menu. If a .mnu file contains \"Exit-Menu: true" +#~ "\", then base-config will terminate after running that menu item. " +#~ "Finally, a \"Changes-Menu: true\" line will make base-config rebuild the " +#~ "menu after running the menu item." +#~ msgstr "" +#~ "Berkas-berkas .mnu dalam /usr/lib/base-config mengatur apakah sebuah item " +#~ "menu muncul hanya saat instalasi baru (Only-New: True), apakah debconf " +#~ "dapat telah jalan ketika item tersebut dijalankan (Debconf: true), urutan " +#~ "numerik mengatur peletakan dalam menu. Jika sebuah berkas .mnu berisi " +#~ "\"Exit-Menu: true\", maka base-config akan berhenti setelah menjalankan " +#~ "item menu tersebut. Terakhir, baris \"Changes-menu: true\" akan membuat " +#~ "base-config membangun kembali menu setelah menjalankan item menu tersebut." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "The .tst files in /usr/lib/base-config/ are run when base-config builds " +#~ "the menu and must return true for that menu item to appear on the menu." +#~ msgstr "" +#~ "Berkas-berkas .tst pada /usr/lib/base-config/ akan dijalankan ketika base-" +#~ "config membangun menu dan mesti mengembalikan nilai benar (true) agar " +#~ "item menu tersebut muncul pada menu." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "The menu items are taken from debconf, by looking for items in the " +#~ "debconf database named base-config/menu/whatever." +#~ msgstr "" +#~ "Item-item menu diambil dari debconf, dengan melihat item-item pada basis " +#~ "data debconf yang dinamakan base-config/menu/sesuatu." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "When a menu item is selected, the corresponding program, in /usr/lib/base-" +#~ "config is run. If this is a fresh install onto a new debian system, the " +#~ "program receives \"new\" as its first argument." +#~ msgstr "" +#~ "Saat sebuah item menu dipilih, program yang sesuai pada /usr/lib/base-" +#~ "config akan dijalankan. Jika ini merupakan instalasi perdana pada sebuah " +#~ "sistem Debian yang baru, program akan menerima \"new\" pada argumen " +#~ "pertama." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "B checks the return codes of each of the programs. If a " +#~ "program returns nonzero, the main menu is displayed (this may involve " +#~ "lowering the debconf priority)." +#~ msgstr "" +#~ "B memeriksa nilai kembalian dari tiap program. Jika sebuah " +#~ "program mengembalikan nilai bukan nol, maka menu utama akan ditampilkan " +#~ "(ini bisa melibatkan penurunan prioritas debconf)." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "Every base-config run is logged to B. B contains timing information to go with the log. " +#~ "This allows replays of base-config runs using the B(1) utility." +#~ msgstr "" +#~ "Setiap kali base-config dijalankan, akan ditulis log pada B. B berisi informasi waktu " +#~ "untuk dijalankan dengan log. Ini memungkinkan pengulangan jalannya base-" +#~ "config dengan menggunakan utilitas B(1)" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "B, if it exists, is used by B " +#~ "on new installs to get values from the debian-installer first stage " +#~ "install." +#~ msgstr "" +#~ "B, jika ada, digunakan oleh B " +#~ "pada instalasi baru untuk mengambil nilai-nilai dari tahap pertama " +#~ "instalasi debian-installer." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "Other packages can drop files into B, and add menu " +#~ "titles in debconf, and they will be added to the menu. It is very " +#~ "strongly encouraged that any such programs communicate with the user " +#~ "entirely via debconf, so that the base configuration maintains a " +#~ "consistent and professional look." +#~ msgstr "" +#~ "Paket-paket lain dapat menaruh berkas-berkas pada B, dan menambahkan judul menu pada debconf, dan mereka akan ditambahkan " +#~ "pada menu. Sangat disarankan agar program-program tersebut berinteraksi " +#~ "dengan pengguna sepenuhnya melalui debconf, sehingga konfigurasi basis " +#~ "dapat mempertahankan tampilan yang konsisten dan profesional." + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "Another useful thing for custom distributions is /usr/share/base-config/" +#~ "debconf-seed. If that directory exists, every file in it will be loaded " +#~ "into the debconf database using B(1)" +#~ msgstr "" +#~ "Hal berguna lainnya untuk distribusi yang dikustomisasi adalah berkas /" +#~ "usr/share/base-config/debconf-seed. Bila direktori tersebut ditemukan,' " +#~ "semua berkas didalamnya akan dimuat dalam basis data debconf menggunakan " +#~ "B(1)" + +# type: SH +#, fuzzy +#~ msgid "ENVIRONMENT" +#~ msgstr "LINGKUNGAN" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "The following environment variables influence B. These " +#~ "variables may be set at run time, or for new installs, may be passed to " +#~ "the kernel at the B(8) (or other bootloader) command line. Consult " +#~ "your boot loader's documentation for details. For example, lilo can be " +#~ "booted with something like \"linux DEBIAN_FRONTEND=readline\"." +#~ msgstr "" +#~ "Variabel-variabel lingkungan berikut mempengaruhi B. Nilai-" +#~ "nilai ini dapat diatur saat menjalankan, atau untuk instalasi baru, dapat " +#~ "diberikan pada kernel melalui baris perintah B(8) (atau boot " +#~ "loader lainnya). Lihat dokumentasi boot loader anda untuk informasi " +#~ "detil. Sebagai contoh, lilo dapat diboot sebagai berikut: \"linux " +#~ "DEBIAN_FRONTEND=readline\"." + +# type: TP +#, fuzzy +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#, fuzzy +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#, fuzzy +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#, fuzzy +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#, fuzzy +#~ msgid "Control various things about B(7)" +#~ msgstr "Mengatur beragam hal mengenai B(7)" + +# type: SH +#, fuzzy +#~ msgid "AUTHOR" +#~ msgstr "PENULIS" + +# type: Plain text +#, fuzzy +#~ msgid "Joey Hess Ejoeyh@debian.orgE" +#~ msgstr "Joey Hess Ejoeyh@debian.orgE" + +# type: TH +#, fuzzy +#~ msgid "TERMWRAP" +#~ msgstr "TERMWRAP" + +# type: Plain text +#, fuzzy +#~ msgid "termwrap - terminal wrapper" +#~ msgstr "termwrap - terminal wrapper" + +# type: Plain text +#, fuzzy +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "B is used to execute B(8) on newly installed " +#~ "Debian systems. It examines the environment, taking note of locale " +#~ "settings, and what type of console is available, and runs an appropriate " +#~ "terminal program. For example, at the Linux console and in a Japanese " +#~ "locale, it runs jfterm. The specified command is run inside the terminal " +#~ "program (if any)." +#~ msgstr "" +#~ "B digunakan untuk menjalankan B(8) pada sistem " +#~ "Debian yang baru dipasang. Ia meneliti lingkungan, memperhatikan " +#~ "pengaturan lokal, dan jenis konsol yang tersedia, dan kemudian " +#~ "menjalankan program terminal yang sesuai. Sebagai contoh, pada konsol " +#~ "Linux dan lokal Jepang, ia akan menjalankan jfterm. Program yang " +#~ "diberikan akan dijalakan pada terminal tersebut (jika tersedia)." + +# type: SH +#, fuzzy +#~ msgid "OPTIONS" +#~ msgstr "OPSI-OPSI" + +# type: TP +#, fuzzy +#~ msgid "I<-nnt>" +#~ msgstr "I<-nnt>" + +# type: Plain text +#, fuzzy +#~ msgid "Don't run another terminal." +#~ msgstr "Jangan menjalankan terminal yang lain." + +# type: TH +#, fuzzy +#~ msgid "APT-SETUP" +#~ msgstr "APT-SETUP" + +# type: Plain text +#, fuzzy +#~ msgid "apt-setup - add apt download sources" +#~ msgstr "apt-setup - menambahkan sumber-sumber download untuk apt" + +# type: Plain text +#, fuzzy +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "B is an interactive program that simplifies adding sources to " +#~ "apt's sources.list. It knows about all the major debian mirrors and can " +#~ "help you select one. It can even use B(8) to scan CDs." +#~ msgstr "" +#~ "B merupakan program interaktif yang menyederhanakan penambahan " +#~ "sumber-sumber ke berkas sources.list dari apt. Ia mengetahui semua mirror-" +#~ "mirror utama Debian dan dapat membantu anda memilih salah satu. Ia bahkan " +#~ "dapat menggunakan B(8) untuk memindai CD." + +# type: TP +#, fuzzy +#~ msgid "I" +#~ msgstr "I" + +# type: Plain text +#, fuzzy +#~ msgid "" +#~ "By default no probing of CDs is done. Passing \"probe\" as the first " +#~ "argument to this program will make it probe for a CD in the drive on " +#~ "startup and add it to sources.list. This is useful on initial debian " +#~ "installs, to minimize interaction with the user." +#~ msgstr "" +#~ "Secara bawaan tidak dilakukan pemeriksaan CD. Memberikan \"probe\" " +#~ "sebagai argumen pertama untuk program ini, akan membuat program memeriksa " +#~ "CD yang ada dalam penggerak dan menambahkannya ke berkas sources.list. " +#~ "Ini berguna pada saat instalasi awal Debian, untuk mengurangi interaksi " +#~ "dengan pengguna." + +# type: TP +#, fuzzy +#~ msgid "I<-N>" +#~ msgstr "I<-N>" + +# type: Plain text +#, fuzzy +#~ msgid "Joey Hess Ejoey@kitenet.netE" +#~ msgstr "Joey Hess Ejoey@kitenet.netE" + +# type: SH +#, fuzzy +#~ msgid "DERIVATION" +#~ msgstr "PENJELASAN" --- glibc-2.5.orig/debian/local/manpages/po/man.pot +++ glibc-2.5/debian/local/manpages/po/man.pot @@ -0,0 +1,173 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2005-12-27 17:38-0500\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "validlocale" +msgstr "" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "0.1" +msgstr "" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "Petter Reinholdtsen" +msgstr "" + +# type: SH +#: validlocale.8:2 +#, no-wrap +msgid "NAME" +msgstr "" + +# type: Plain text +#: validlocale.8:5 +msgid "validlocale - Test if a given locale is available" +msgstr "" + +# type: SH +#: validlocale.8:5 +#, no-wrap +msgid "SYNTAX" +msgstr "" + +# type: Plain text +#: validlocale.8:8 +msgid "validlocale EIE" +msgstr "" + +# type: SH +#: validlocale.8:8 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +# type: Plain text +#: validlocale.8:13 +msgid "" +"Test if the locale given as argument is a valid locale. If it isn't, print " +"on stdout the string to add to /etc/locale.gen to make locale-gen generate " +"the locale (if it exists at all)." +msgstr "" + +# type: SH +#: validlocale.8:13 +#, no-wrap +msgid "FILES" +msgstr "" + +# type: Plain text +#: validlocale.8:16 +msgid "I" +msgstr "" + +# type: Plain text +#: validlocale.8:18 +msgid "I" +msgstr "" + +# type: SH +#: validlocale.8:18 +#, no-wrap +msgid "ENVIRONMENT VARIABLES" +msgstr "" + +# type: TP +#: validlocale.8:20 +#, no-wrap +msgid "B" +msgstr "" + +# type: Plain text +#: validlocale.8:24 +msgid "" +"Which charset to assume if the given locale is missing from the list of " +"supported locales." +msgstr "" + +# type: SH +#: validlocale.8:24 +#, no-wrap +msgid "EXAMPLES" +msgstr "" + +# type: Plain text +#: validlocale.8:28 +msgid "" +"If you give a valid locale as parameter, it outputs a string specifying this " +"on stderr:" +msgstr "" + +# type: Plain text +#: validlocale.8:31 +msgid "% validlocale C" +msgstr "" + +# type: Plain text +#: validlocale.8:33 +msgid "locale 'C' valid and available" +msgstr "" + +# type: Plain text +#: validlocale.8:37 +msgid "" +"When given a invalid (not generated or just nonexistent), it outputs a " +"string on stderr telling that this is an invalid locale, and a string to " +"stdout with the string to add to /etc/locale.gen to have this locale " +"generated:" +msgstr "" + +# type: Plain text +#: validlocale.8:40 +msgid "% validlocale de_AU@euro" +msgstr "" + +# type: Plain text +#: validlocale.8:42 +msgid "locale 'de_AT@euro' not available" +msgstr "" + +# type: Plain text +#: validlocale.8:44 +msgid "de_AT@euro ISO-8859-15" +msgstr "" + +# type: SH +#: validlocale.8:44 +#, no-wrap +msgid "AUTHORS" +msgstr "" + +# type: Plain text +#: validlocale.8:47 +msgid "Petter Reinholdtsen Epere@hungry.comE" +msgstr "" + +# type: SH +#: validlocale.8:47 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +# type: Plain text +#: validlocale.8:49 +msgid "locale-gen(8), localedef(1), locale(1)" +msgstr "" --- glibc-2.5.orig/debian/local/manpages/po/pl.po +++ glibc-2.5/debian/local/manpages/po/pl.po @@ -0,0 +1,490 @@ +msgid "" +msgstr "" +"Project-Id-Version: base-config\n" +"POT-Creation-Date: 2005-12-27 17:38-0500\n" +"PO-Revision-Date: 2005-10-23 21:50+0200\n" +"Last-Translator: Robert Luberda \n" +"Language-Team: Polish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "validlocale" +msgstr "validlocale" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "0.1" +msgstr "0.1" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "Petter Reinholdtsen" +msgstr "Petter Reinholdtsen" + +# type: SH +#: validlocale.8:2 +#, no-wrap +msgid "NAME" +msgstr "NAZWA" + +# type: Plain text +#: validlocale.8:5 +msgid "validlocale - Test if a given locale is available" +msgstr "validlocale - Sprawdza, czy dostpne jest dane locale" + +# type: SH +#: validlocale.8:5 +#, no-wrap +msgid "SYNTAX" +msgstr "SKADNIA" + +# type: Plain text +#: validlocale.8:8 +msgid "validlocale EIE" +msgstr "validlocale EIE" + +# type: SH +#: validlocale.8:8 +#, no-wrap +msgid "DESCRIPTION" +msgstr "OPIS" + +# type: Plain text +#: validlocale.8:13 +msgid "" +"Test if the locale given as argument is a valid locale. If it isn't, print " +"on stdout the string to add to /etc/locale.gen to make locale-gen generate " +"the locale (if it exists at all)." +msgstr "" +"Sprawdza, czy locale podane jako argument jest poprawne. Jeli nie jest, " +"wypisuje na stdout napis, jaki naley doda do /etc/locale.gen, aby " +"polecenie locale-gen wygenerowao dane locale (o ile w ogle ono istnieje)." + +# type: SH +#: validlocale.8:13 +#, no-wrap +msgid "FILES" +msgstr "PLIKI" + +# type: Plain text +#: validlocale.8:16 +msgid "I" +msgstr "I" + +# type: Plain text +#: validlocale.8:18 +msgid "I" +msgstr "I" + +# type: SH +#: validlocale.8:18 +#, no-wrap +msgid "ENVIRONMENT VARIABLES" +msgstr "ZMIENNE RODOWISKOWE" + +# type: TP +#: validlocale.8:20 +#, no-wrap +msgid "B" +msgstr "B" + +# type: Plain text +#: validlocale.8:24 +msgid "" +"Which charset to assume if the given locale is missing from the list of " +"supported locales." +msgstr "" +"Jakiego zestawu znakw uy, jeli podanego locale nie ma w licie " +"obsugiwanych." + +# type: SH +#: validlocale.8:24 +#, no-wrap +msgid "EXAMPLES" +msgstr "PRZYKADY" + +# type: Plain text +#: validlocale.8:28 +msgid "" +"If you give a valid locale as parameter, it outputs a string specifying this " +"on stderr:" +msgstr "" +"Jeli jako parametr podano nazw poprawnego locale, wypisuje na stderr " +"odpowiedni napis:" + +# type: Plain text +#: validlocale.8:31 +msgid "% validlocale C" +msgstr "% validlocale C" + +# type: Plain text +#: validlocale.8:33 +msgid "locale 'C' valid and available" +msgstr "locale 'C' valid and available" + +# type: Plain text +#: validlocale.8:37 +msgid "" +"When given a invalid (not generated or just nonexistent), it outputs a " +"string on stderr telling that this is an invalid locale, and a string to " +"stdout with the string to add to /etc/locale.gen to have this locale " +"generated:" +msgstr "" +"Jeli podano nazw nieprawidowego locale (niewygenerowanego lub po prostu " +"nieistniejcego), wypisuje na stderr napis mwicy o tym, e nie jest to " +"prawidowe locale, oraz - na stdout - napis, ktry naley doda do /etc/" +"locale.gen, aby mc wygenerowa dane locale:" + +# type: Plain text +#: validlocale.8:40 +msgid "% validlocale de_AU@euro" +msgstr "% validlocale de_AU@euro" + +# type: Plain text +#: validlocale.8:42 +msgid "locale 'de_AT@euro' not available" +msgstr "locale 'de_AT@euro' not available" + +# type: Plain text +#: validlocale.8:44 +msgid "de_AT@euro ISO-8859-15" +msgstr "de_AT@euro ISO-8859-15" + +# type: SH +#: validlocale.8:44 +#, no-wrap +msgid "AUTHORS" +msgstr "AUTOR" + +# type: Plain text +#: validlocale.8:47 +msgid "Petter Reinholdtsen Epere@hungry.comE" +msgstr "Petter Reinholdtsen Epere@hungry.comE" + +# type: SH +#: validlocale.8:47 +#, no-wrap +msgid "SEE ALSO" +msgstr "PATRZ TAKE" + +# type: Plain text +#: validlocale.8:49 +#, fuzzy +msgid "locale-gen(8), localedef(1), locale(1)" +msgstr "locale-gen(8), localedef(1), locale(1), base-config(8)" + +# type: TH +#~ msgid "BASE-CONFIG" +#~ msgstr "BASE-CONFIG" + +# type: Plain text +#~ msgid "base-config - Debian base system configuration" +#~ msgstr "base-config - konfiguracja podstawowego systemu Debian" + +# type: SH +#~ msgid "SYNOPSIS" +#~ msgstr "SKADNIA" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is the program that was run when you first rebooted into " +#~ "your newly installed debian system. It walks you through setting up the " +#~ "system and downloading additional software, and so forth. The program can " +#~ "be run at any later date to walk you through essentially the same process " +#~ "again." +#~ msgstr "" +#~ "B to program uruchamiany po pierwszym starcie nowo " +#~ "zainstalowanego systemu Debian. Prowadzi on uytkownika przez " +#~ "konfiguracj systemu, pobieranie dodatkowego oprogramowania i tak dalej. " +#~ "Program ten mona uruchomi w dowolnym momencie, aby przej przez ten " +#~ "proces ponownie." + +# type: SH +#~ msgid "IMPLEMENTATION" +#~ msgstr "IMPLEMENTACJA" + +# type: Plain text +#~ msgid "" +#~ "B generates a menu of choices from the contents of B, and from debconf templates." +#~ msgstr "" +#~ "B generuje menu z list wyborw na podstawie zawartoci " +#~ "katalogu B oraz z szablonw programu debconf." + +# type: Plain text +#~ msgid "" +#~ "The .mnu files in /usr/lib/base-config/ control whether the menu item " +#~ "appears only on new installs (Only-New: true), whether debconf can " +#~ "already be running when the item is run (Debconf: true), a numeric Order " +#~ "controls placement in the menu. If a .mnu file contains \"Exit-Menu: true" +#~ "\", then base-config will terminate after running that menu item. " +#~ "Finally, a \"Changes-Menu: true\" line will make base-config rebuild the " +#~ "menu after running the menu item." +#~ msgstr "" +#~ "Pliki .mnu w /usr/lib/base-config/ okrelaj, czy dana pozycja z menu " +#~ "pojawia si tylko w nowo instalowanych systemach (Only-New: true), czy " +#~ "debconf moe ju dziaa, kiedy pozycja z menu jest uruchamiana (Debconf: " +#~ "true), a liczbowy \"Order\" okrela pozycj w menu. Jeeli plik .mnu " +#~ "zawiera \"Exit-Menu: true\", to base-config zakoczy dziaanie po " +#~ "uruchomieniu tej pozycji. W kocu, linia \"Changes-Menu: true\" powoduje, " +#~ "e base-config przebuduje menu po uruchomieniu tej pozycji." + +# type: Plain text +#~ msgid "" +#~ "The .tst files in /usr/lib/base-config/ are run when base-config builds " +#~ "the menu and must return true for that menu item to appear on the menu." +#~ msgstr "" +#~ "Podczas budowania menu base-config uruchamia pliki .tst z katalogu /usr/" +#~ "lib/base-config, ktre musz zwrci warto true, aby dana pozycja " +#~ "pojawia si w menu." + +# type: Plain text +#~ msgid "" +#~ "The menu items are taken from debconf, by looking for items in the " +#~ "debconf database named base-config/menu/whatever." +#~ msgstr "" +#~ "Pozycje menu s brane z programu debconf, przez wyszukiwanie w bazie " +#~ "danych debconfa rekordw o nazwie base-config/menu/cokolwiek." + +# type: Plain text +#~ msgid "" +#~ "When a menu item is selected, the corresponding program, in /usr/lib/base-" +#~ "config is run. If this is a fresh install onto a new debian system, the " +#~ "program receives \"new\" as its first argument." +#~ msgstr "" +#~ "Po wybraniu pozycji w menu uruchamiany jest odpowiadajcy jej program z " +#~ "katalogu /usr/lib/base-config. Jeli jest to pierwsze uruchomienie po " +#~ "zainstalowaniu systemu, kady program otrzymuje jako pierwszy argument " +#~ "wyraz \"new\"." + +# type: Plain text +#~ msgid "" +#~ "B checks the return codes of each of the programs. If a " +#~ "program returns nonzero, the main menu is displayed (this may involve " +#~ "lowering the debconf priority)." +#~ msgstr "" +#~ "B sprawdza kod zakoczenia kadego programu. Jeeli program " +#~ "zwrci warto niezerow, to zostanie wywietlone gwne menu (moe to " +#~ "wymaga zmniejszenia priorytetu debconfa)." + +# type: Plain text +#~ msgid "" +#~ "Generally the user is advanced down the menu from item to item as each " +#~ "succeeds. If a menu item needs to jump back to a previous item in the " +#~ "menu, or skip over a subsequent item, it can write the name of the next " +#~ "menu item to show to the file \"jump-to\" in the current directory." +#~ msgstr "" +#~ "Oglnie rzecz biorc, uytkownik jest przenoszony w d menu od jednej " +#~ "pozycji do nastpnej. Jeeli pozycja z menu potrzebuje wrci do " +#~ "poprzedniej pozycji menu lub przeskoczy pniejsz pozycj, to moe do " +#~ "pliku \"jump-to\" umieszczonego w biecym katalogu wpisa nazw " +#~ "nastpnej pozycji do pokazania w menu." + +# type: Plain text +#~ msgid "" +#~ "Every base-config run is logged to B. B contains timing information to go with the log. " +#~ "This allows replays of base-config runs using the B(1) utility." +#~ msgstr "" +#~ "Kade uruchomienie programu base-config jest zapisywane w B. B zawiera informacje o czasie " +#~ "wykonywania poszczeglnych polece. Pozwala to na powtrzenie uruchomie " +#~ "base-config za pomoc programiku B(1)." + +# type: Plain text +#~ msgid "" +#~ "B, if it exists, is used by B " +#~ "on new installs to get values from the debian-installer first stage " +#~ "install." +#~ msgstr "" +#~ "Podczas nowych instalacji B uywa B, jeeli istnieje, do pobrania wartoci pierwszego etapu " +#~ "instalacji przez program debian-installer." + +# type: Plain text +#~ msgid "" +#~ "Other packages can drop files into B, and add menu " +#~ "titles in debconf, and they will be added to the menu. It is very " +#~ "strongly encouraged that any such programs communicate with the user " +#~ "entirely via debconf, so that the base configuration maintains a " +#~ "consistent and professional look." +#~ msgstr "" +#~ "Pakiety mog instalowa programy w katalogu B, " +#~ "dziki czemu stan si one czci procesu konfiguracji. Zaleca si, aby " +#~ "programy te komunikoway si z uytkownikiem wycznie przy pomocy " +#~ "programu debconf, dziki czemu konfiguracja systemu podstawowego uzyska " +#~ "jednolity i profesjonalny wygld." + +# type: Plain text +#~ msgid "" +#~ "Another useful thing for custom distributions is /usr/share/base-config/" +#~ "debconf-seed. If that directory exists, every file in it will be loaded " +#~ "into the debconf database using B(1)" +#~ msgstr "" +#~ "Kolejn uyteczn rzecz dla wasnych dystrybucji jest /usr/share/base-" +#~ "config/debconf-seed. Jeeli ten katalog istnieje, to kady plik w tym " +#~ "katalogu zostanie zaadowany do bazy danych debconfa za pomoc B(1)." + +# type: Plain text +#~ msgid "" +#~ "If the file /var/log/installer/debconf-seed is created by the debian-" +#~ "installer, it will also be loaded into the debconf database." +#~ msgstr "" +#~ "Jeeli plik /var/log/installer/debconf-seed zostanie utworzony przez " +#~ "instalator Debiana, to take zostanie zaadowany do bazy danych debconfa." + +# type: SH +#~ msgid "ENVIRONMENT" +#~ msgstr "ZMIENNE RODOWISKOWE" + +# type: Plain text +#~ msgid "" +#~ "The following environment variables influence B. These " +#~ "variables may be set at run time, or for new installs, may be passed to " +#~ "the kernel at the B(8) (or other bootloader) command line. Consult " +#~ "your boot loader's documentation for details. For example, lilo can be " +#~ "booted with something like \"linux DEBIAN_FRONTEND=readline\"." +#~ msgstr "" +#~ "Nastpujce zmienne rodowiskowe wpywaj na dziaanie B. " +#~ "Mona je ustawi przy uruchomieniu programu lub (w przypadku instalacji " +#~ "nowego systemu) mona je poda jdru przy pomocy linii polece B(8) " +#~ "(lub innego programu adujcego). Wicej informacji na temat " +#~ "przekazywania parametrw jdru mona znale w dokumentacji danego " +#~ "programu adujcego. W przypadku lilo mona zaadowa system na przykad " +#~ "w nastpujcy sposb: \"linux DEBIAN_FRONTEND=readline\"." + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "Control various things about B(7)" +#~ msgstr "Wpywaj na dziaanie systemu B(7)" + +# type: SH +#~ msgid "AUTHOR" +#~ msgstr "AUTOR" + +# type: Plain text +#~ msgid "Joey Hess Ejoeyh@debian.orgE" +#~ msgstr "Joey Hess Ejoeyh@debian.orgE" + +# type: TH +#~ msgid "TERMWRAP" +#~ msgstr "TERMWRAP" + +# type: Plain text +#~ msgid "termwrap - terminal wrapper" +#~ msgstr "termwrap - program poredniczcy terminala" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is used to execute B(8) on newly installed " +#~ "Debian systems. It examines the environment, taking note of locale " +#~ "settings, and what type of console is available, and runs an appropriate " +#~ "terminal program. For example, at the Linux console and in a Japanese " +#~ "locale, it runs jfterm. The specified command is run inside the terminal " +#~ "program (if any)." +#~ msgstr "" +#~ "B jest uywany do wywoania B(8) w nowo " +#~ "instalowanych systemach Debian. Sprawdza on rodowisko, zwracajc uwag " +#~ "na ustawienia locale i typ dostpnej konsoli, a nastpnie uruchamia " +#~ "odpowiedni program terminala. Na przykad na konsoli Linux przy locale " +#~ "japoskim uruchamia program jfterm. Podana komenda jest wykonywana w " +#~ "uruchomionym terminalu." + +# type: SH +#~ msgid "OPTIONS" +#~ msgstr "OPCJE" + +# type: TP +#~ msgid "I<-nnt>" +#~ msgstr "I<-nnt>" + +# type: Plain text +#~ msgid "Don't run another terminal." +#~ msgstr "Nie uruchamiaj innego terminala." + +# type: TH +#~ msgid "APT-SETUP" +#~ msgstr "APT-SETUP" + +# type: Plain text +#~ msgid "apt-setup - add apt download sources" +#~ msgstr "apt-setup - dodaje nowe rda pakietw dla apt" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is an interactive program that simplifies adding sources to " +#~ "apt's sources.list. It knows about all the major debian mirrors and can " +#~ "help you select one. It can even use B(8) to scan CDs." +#~ msgstr "" +#~ "B to interaktywny program uatwiajcy dodawanie rde " +#~ "pakietw do pliku sources.list programu apt. Zna on wszystkie gwne " +#~ "serwery lustrzane Debiana i moe pomc wybra jeden z nich. Moe nawet " +#~ "uy programu B(8) do przeszukiwania pyt CD." + +# type: TP +#~ msgid "I" +#~ msgstr "I" + +# type: Plain text +#~ msgid "" +#~ "By default no probing of CDs is done. Passing \"probe\" as the first " +#~ "argument to this program will make it probe for a CD in the drive on " +#~ "startup and add it to sources.list. This is useful on initial debian " +#~ "installs, to minimize interaction with the user." +#~ msgstr "" +#~ "Domylnie nie jest sprawdzana obecno pyty CD. Jeli jako pierwszy " +#~ "argument zostanie podany wyraz \"probe\", program przeszuka pyt CD " +#~ "znajdujc si w napdzie i doda j do pliku sources.list. Jest to " +#~ "przydatne przy instalacji systemu, gdy pozwala na ograniczenie " +#~ "koniecznych dziaa uytkownika." + +# type: TP +#~ msgid "I<-N>" +#~ msgstr "I<-N>" + +# type: Plain text +#~ msgid "" +#~ "Indicates that this is a new install. This parameter allows apt-setup to " +#~ "run in noninteractive mode if its debconf questions have been preseeded." +#~ msgstr "" +#~ "Wskazuje, e jest to nowa instalacja. Ten parametr pozwala programowi apt-" +#~ "setup uruchomi si w trybie nieinteraktywnym, jeeli wczeniej zostay " +#~ "wpisane odpowiedzi na jego pytania debconfa." + +# type: Plain text +#~ msgid "Joey Hess Ejoey@kitenet.netE" +#~ msgstr "Joey Hess Ejoey@kitenet.netE" --- glibc-2.5.orig/debian/local/manpages/po/pt_BR.po +++ glibc-2.5/debian/local/manpages/po/pt_BR.po @@ -0,0 +1,503 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) 2005 Free Software Foundation, Inc. +# Brazilian , 2005. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: base-config man\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-12-27 17:38-0500\n" +"PO-Revision-Date: 2005-10-24 21:25-0200\n" +"Last-Translator: Brazilian \n" +"Language-Team: Brazilian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "validlocale" +msgstr "validlocale" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "0.1" +msgstr "0.1" + +# type: TH +#: validlocale.8:1 +#, no-wrap +msgid "Petter Reinholdtsen" +msgstr "Petter Reinholdtsen" + +# type: SH +#: validlocale.8:2 +#, no-wrap +msgid "NAME" +msgstr "NOME" + +# type: Plain text +#: validlocale.8:5 +msgid "validlocale - Test if a given locale is available" +msgstr "validlocale - Testa se uma dada locale est disponvel" + +# type: SH +#: validlocale.8:5 +#, no-wrap +msgid "SYNTAX" +msgstr "SINTAXE" + +# type: Plain text +#: validlocale.8:8 +msgid "validlocale EIE" +msgstr "validlocale EIE" + +# type: SH +#: validlocale.8:8 +#, no-wrap +msgid "DESCRIPTION" +msgstr "DESCRIO" + +# type: Plain text +#: validlocale.8:13 +msgid "" +"Test if the locale given as argument is a valid locale. If it isn't, print " +"on stdout the string to add to /etc/locale.gen to make locale-gen generate " +"the locale (if it exists at all)." +msgstr "" +"Testa se a locale passada como argumento vlida. Se no for, imprime em " +"stdout o texto a ser adicionado em /etc/locale.gen para fazer locale-gen " +"gerar a locale (se ela existir)." + +# type: SH +#: validlocale.8:13 +#, no-wrap +msgid "FILES" +msgstr "ARQUIVOS" + +# type: Plain text +#: validlocale.8:16 +msgid "I" +msgstr "I" + +# type: Plain text +#: validlocale.8:18 +msgid "I" +msgstr "I" + +# type: SH +#: validlocale.8:18 +#, no-wrap +msgid "ENVIRONMENT VARIABLES" +msgstr "VARIVEIS DE AMBIENTE" + +# type: TP +#: validlocale.8:20 +#, no-wrap +msgid "B" +msgstr "B" + +# type: Plain text +#: validlocale.8:24 +msgid "" +"Which charset to assume if the given locale is missing from the list of " +"supported locales." +msgstr "" +"Qual conjunto de caracteres assumir se a locale dada estiver faltando na " +"lista de locales suportadas." + +# type: SH +#: validlocale.8:24 +#, no-wrap +msgid "EXAMPLES" +msgstr "EXEMPLOS" + +# type: Plain text +#: validlocale.8:28 +msgid "" +"If you give a valid locale as parameter, it outputs a string specifying this " +"on stderr:" +msgstr "" +"Se voc der uma locale vlida como parmetro, a sada ser um texto " +"especificando isto em stderr:" + +# type: Plain text +#: validlocale.8:31 +msgid "% validlocale C" +msgstr "% validlocale C" + +# type: Plain text +#: validlocale.8:33 +msgid "locale 'C' valid and available" +msgstr "locale'C' vlida e est disponvel" + +# type: Plain text +#: validlocale.8:37 +msgid "" +"When given a invalid (not generated or just nonexistent), it outputs a " +"string on stderr telling that this is an invalid locale, and a string to " +"stdout with the string to add to /etc/locale.gen to have this locale " +"generated:" +msgstr "" +"Quando dado uma invlida (no gerada ou no existente), a sada ser um " +"texto em stderr dizendo que a locale invlida, e um texto para stdout que " +"deve ser adicionado a /etc/locale.gen para ter esta locale gerada:" + +# type: Plain text +#: validlocale.8:40 +msgid "% validlocale de_AU@euro" +msgstr "% validlocale de_AU@euro" + +# type: Plain text +#: validlocale.8:42 +msgid "locale 'de_AT@euro' not available" +msgstr "locale 'de_AT@euro' no est disponvel" + +# type: Plain text +#: validlocale.8:44 +msgid "de_AT@euro ISO-8859-15" +msgstr "de_AT@euro ISO-8859-15" + +# type: SH +#: validlocale.8:44 +#, no-wrap +msgid "AUTHORS" +msgstr "AUTORES" + +# type: Plain text +#: validlocale.8:47 +msgid "Petter Reinholdtsen Epere@hungry.comE" +msgstr "Petter Reinholdtsen Epere@hungry.comE" + +# type: SH +#: validlocale.8:47 +#, no-wrap +msgid "SEE ALSO" +msgstr "VEJA TAMBM" + +# type: Plain text +#: validlocale.8:49 +#, fuzzy +msgid "locale-gen(8), localedef(1), locale(1)" +msgstr "locale-gen(8), localedef(1), locale(1), base-config(8)" + +# type: TH +#~ msgid "BASE-CONFIG" +#~ msgstr "BASE-CONFIG" + +# type: Plain text +#~ msgid "base-config - Debian base system configuration" +#~ msgstr "base-config - Configurao do sistema base Debian" + +# type: SH +#~ msgid "SYNOPSIS" +#~ msgstr "SINOPSE" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is the program that was run when you first rebooted into " +#~ "your newly installed debian system. It walks you through setting up the " +#~ "system and downloading additional software, and so forth. The program can " +#~ "be run at any later date to walk you through essentially the same process " +#~ "again." +#~ msgstr "" +#~ "B o programa que foi executado quando voc reiniciou a " +#~ "primeira vez em seu novo sistema debian instalado. Ele o guia atravs das " +#~ "configuraes de seu sistema e baixando softwares adicionais, indo alm. " +#~ "O programa pode ser executado posteriormente a qualquer momento para gui-" +#~ "lo essencialmente atravs do mesmo processo novamente." + +# type: SH +#~ msgid "IMPLEMENTATION" +#~ msgstr "IMPLEMENTAO" + +# type: Plain text +#~ msgid "" +#~ "B generates a menu of choices from the contents of B, and from debconf templates." +#~ msgstr "" +#~ "B gera um menu de opes a partir do contedo de B, e dos modelos debconf." + +# type: Plain text +#~ msgid "" +#~ "The .mnu files in /usr/lib/base-config/ control whether the menu item " +#~ "appears only on new installs (Only-New: true), whether debconf can " +#~ "already be running when the item is run (Debconf: true), a numeric Order " +#~ "controls placement in the menu. If a .mnu file contains \"Exit-Menu: true" +#~ "\", then base-config will terminate after running that menu item. " +#~ "Finally, a \"Changes-Menu: true\" line will make base-config rebuild the " +#~ "menu after running the menu item." +#~ msgstr "" +#~ "Os arquivos .mnu em /usr/lib/base-config/ controlam quando um item de " +#~ "menu aparece apenas em novas instalaes (Only-New: true), ou o debconf " +#~ "pode j estar sendo executado quando o item executado (Debconf: true), " +#~ "um nmero Order controla a posio no menu. Se um arquivo .mnu contm " +#~ "\"Exit-Menu: true\", ento base-config ser terminado aps executar esse " +#~ "item do menu. Finalmente a linha \"Changes-Menu: true\" far com que " +#~ "base-config reconstrua o menu aps executar este item." + +# type: Plain text +#~ msgid "" +#~ "The .tst files in /usr/lib/base-config/ are run when base-config builds " +#~ "the menu and must return true for that menu item to appear on the menu." +#~ msgstr "" +#~ "Os arquivos .tst em /usr/lib/base-config/ so executados quando base-" +#~ "config constri o menu e devem retornar verdadeiro para que apaream no " +#~ "menu." + +# type: Plain text +#~ msgid "" +#~ "The menu items are taken from debconf, by looking for items in the " +#~ "debconf database named base-config/menu/whatever." +#~ msgstr "" +#~ "Os itens do menu so pegos do debconf olhando para itens na base de dados " +#~ "do debconf chamada de base-config/menu/qualquercoisa" + +# type: Plain text +#~ msgid "" +#~ "When a menu item is selected, the corresponding program, in /usr/lib/base-" +#~ "config is run. If this is a fresh install onto a new debian system, the " +#~ "program receives \"new\" as its first argument." +#~ msgstr "" +#~ "Quando um item do menu selecionado, o programa correspondente, em /usr/" +#~ "lib/base-config executado. Se esta uma instalao novo em um novo " +#~ "sistema debian, o programa recebe \"new\" como seu primeiro argumento." + +# type: Plain text +#~ msgid "" +#~ "B checks the return codes of each of the programs. If a " +#~ "program returns nonzero, the main menu is displayed (this may involve " +#~ "lowering the debconf priority)." +#~ msgstr "" +#~ "B checa os cdigos de retorno de cada um dos programas. Se " +#~ "um programa retorna no-zero, o menu principal exibido (isso pode " +#~ "envolver diminuir a prioridade do debconf)." + +# type: Plain text +#~ msgid "" +#~ "Generally the user is advanced down the menu from item to item as each " +#~ "succeeds. If a menu item needs to jump back to a previous item in the " +#~ "menu, or skip over a subsequent item, it can write the name of the next " +#~ "menu item to show to the file \"jump-to\" in the current directory." +#~ msgstr "" +#~ "Geralmente o usurio avana descendo o menu item a item medida que cada " +#~ "um completado com sucesso. Se um item do menu precisa voltar para um " +#~ "item anterior ou pular algum item subseqente, ele pode escrever o nome " +#~ "do prximo item do menu para mostrar ao arquivo \"jump-to\" no diretrio " +#~ "atual." + +# type: Plain text +#~ msgid "" +#~ "Every base-config run is logged to B. B contains timing information to go with the log. " +#~ "This allows replays of base-config runs using the B(1) utility." +#~ msgstr "" +#~ "Cada execuo do base-config registrada em B. B contm as informaes de tempo que " +#~ "vo juntamente com o registro. Isso permite repeties da execuo do " +#~ "base-config usando o utilitrio B(1)." + +# type: Plain text +#~ msgid "" +#~ "B, if it exists, is used by B " +#~ "on new installs to get values from the debian-installer first stage " +#~ "install." +#~ msgstr "" +#~ "B, se o arquivo existe, usado pelo B em novas instalaes para obter valores do primeiroestgio de " +#~ "instalao do debian-installer." + +# type: Plain text +#~ msgid "" +#~ "Other packages can drop files into B, and add menu " +#~ "titles in debconf, and they will be added to the menu. It is very " +#~ "strongly encouraged that any such programs communicate with the user " +#~ "entirely via debconf, so that the base configuration maintains a " +#~ "consistent and professional look." +#~ msgstr "" +#~ "Outros pacotes podem colocar arquivos em B, e " +#~ "adicionar ttulos de menu no debconf, que sero adicionados ao menu. " +#~ "fortemente encorajado que qualquer programa desses comunique-se com o " +#~ "usurio inteiramente via debconf, de forma que a configurao da base " +#~ "mantenha a consistncia e o visual profissional." + +# type: Plain text +#~ msgid "" +#~ "Another useful thing for custom distributions is /usr/share/base-config/" +#~ "debconf-seed. If that directory exists, every file in it will be loaded " +#~ "into the debconf database using B(1)" +#~ msgstr "" +#~ "Outra coisa til para distribuies customizadas /usr/share/base-config/" +#~ "debconf-seed. Se esse diretrio existir, cada arquivo nele ser carregado " +#~ "no banco de dados do debconf usando B(1)" + +# type: Plain text +#~ msgid "" +#~ "If the file /var/log/installer/debconf-seed is created by the debian-" +#~ "installer, it will also be loaded into the debconf database." +#~ msgstr "" +#~ "Se o arquivo /var/log/installer/debconf-seed criado pelo debian-" +#~ "installer, ele tambm ser carregado no banco de dados do debconf." + +# type: SH +#~ msgid "ENVIRONMENT" +#~ msgstr "AMBIENTE" + +# type: Plain text +#~ msgid "" +#~ "The following environment variables influence B. These " +#~ "variables may be set at run time, or for new installs, may be passed to " +#~ "the kernel at the B(8) (or other bootloader) command line. Consult " +#~ "your boot loader's documentation for details. For example, lilo can be " +#~ "booted with something like \"linux DEBIAN_FRONTEND=readline\"." +#~ msgstr "" +#~ "As seguintes variveis de ambiente influenciam B. Essas " +#~ "variveis podem ser definidas em tempo de execuo, ou para novas " +#~ "instalaes, podem ser passadas ao kernel na linha de comando do B" +#~ "(8) (ou outro gerenciador de boot). Consulte a documentao do seu " +#~ "gerenciador de boot para detalhes. Por exemplo, lilo pode ser bootado com " +#~ "algo como: \"linux DEBIAN_FRONTEND=readline\"." + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: TP +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "Control various things about B(7)" +#~ msgstr "Controla vrias coisas sobre o B(7)" + +# type: SH +#~ msgid "AUTHOR" +#~ msgstr "AUTOR" + +# type: Plain text +#~ msgid "Joey Hess Ejoeyh@debian.orgE" +#~ msgstr "Joey Hess Ejoey@kitenet.netE" + +# type: TH +#~ msgid "TERMWRAP" +#~ msgstr "TERMWRAP" + +# type: Plain text +#~ msgid "termwrap - terminal wrapper" +#~ msgstr "termwrap - wrapper de terminal" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is used to execute B(8) on newly installed " +#~ "Debian systems. It examines the environment, taking note of locale " +#~ "settings, and what type of console is available, and runs an appropriate " +#~ "terminal program. For example, at the Linux console and in a Japanese " +#~ "locale, it runs jfterm. The specified command is run inside the terminal " +#~ "program (if any)." +#~ msgstr "" +#~ "B usado para executar B(8) em novos sistemas " +#~ "Debian instalados. Ele examina o ambiente, tomando nota das configuraes " +#~ "de localizao, qual tipo de console est disponvel e executa um " +#~ "programa de terminal apropriado. Por exemplo, no console Linux e em uma " +#~ "localizao Japonesa, ele executa jfterm. O comando especificado " +#~ "executado dentro do programa de terminal (caso exista algum)." + +# type: SH +#~ msgid "OPTIONS" +#~ msgstr "OPES" + +# type: TP +#~ msgid "I<-nnt>" +#~ msgstr "I<-nnt>" + +# type: Plain text +#~ msgid "Don't run another terminal." +#~ msgstr "No execute outro terminal." + +# type: TH +#~ msgid "APT-SETUP" +#~ msgstr "APT-SETUP" + +# type: Plain text +#~ msgid "apt-setup - add apt download sources" +#~ msgstr "apt-setup - adiciona fontes de download para o apt" + +# type: Plain text +#~ msgid "B" +#~ msgstr "B" + +# type: Plain text +#~ msgid "" +#~ "B is an interactive program that simplifies adding sources to " +#~ "apt's sources.list. It knows about all the major debian mirrors and can " +#~ "help you select one. It can even use B(8) to scan CDs." +#~ msgstr "" +#~ "B um programa interativo que simplifica a adio de fontes " +#~ "no arquivo sources.list do apt. Ele conhece todos os principais espelhos " +#~ "(mirrors) debian e pode ajud-lo a selecionar um. Pode at mesmo usar o " +#~ "B(8) para vasculhar CDs." + +# type: TP +#~ msgid "I" +#~ msgstr "I" + +# type: Plain text +#~ msgid "" +#~ "By default no probing of CDs is done. Passing \"probe\" as the first " +#~ "argument to this program will make it probe for a CD in the drive on " +#~ "startup and add it to sources.list. This is useful on initial debian " +#~ "installs, to minimize interaction with the user." +#~ msgstr "" +#~ "Por padro nenhuma consulta de CDs feita. Passar \"probe\" como o " +#~ "primeiro argumento para este programa far com que o mesmo procure por um " +#~ "CD no drive em sua inicializao e adicione-o ao sources.list. Isto " +#~ "til em instalaes iniciais do debian para minimizar a interao com o " +#~ "usurio." + +# type: TP +#~ msgid "I<-N>" +#~ msgstr "I<-N>" + +# type: Plain text +#~ msgid "" +#~ "Indicates that this is a new install. This parameter allows apt-setup to " +#~ "run in noninteractive mode if its debconf questions have been preseeded." +#~ msgstr "" +#~ "Indica que esta uma nova instalao. Este parmetro permite ao apt-" +#~ "setup executar no modo no-interativo se suas perguntas do debconf foram " +#~ "previamente respondidas." + +# type: Plain text +#~ msgid "Joey Hess Ejoey@kitenet.netE" +#~ msgstr "Joey Hess Ejoey@kitenet.netE" + +# type: TH +#, fuzzy +#~ msgid "TZSETUP" +#~ msgstr "APT-SETUP" + +# type: SH +#, fuzzy +#~ msgid "DERIVATION" +#~ msgstr "DESCRIÇÃO" --- glibc-2.5.orig/debian/local/manpages/po4a.cfg +++ glibc-2.5/debian/local/manpages/po4a.cfg @@ -0,0 +1,7 @@ +[po4a_paths] po/man.pot de:po/de.po es:po/es.po id:po/id.po \ + fr:po/fr.po pl:po/pl.po pt_BR:po/pt_BR.po + +[type: man] validlocale.8 es:es/validlocale.es.8 \ + id:id/validlocale.id.8 add_id:id/addendum.id fr:fr/validlocale.fr.8 \ + add_fr:fr/addendum.fr pl:pl/validlocale.pl.8 \ + pt_BR:pt_BR/validlocale.pt_BR.8 --- glibc-2.5.orig/debian/local/manpages/rpcinfo.8 +++ glibc-2.5/debian/local/manpages/rpcinfo.8 @@ -0,0 +1,166 @@ +.\" from: @(#)rpcinfo.8c 2.2 88/08/03 4.0 RPCSRC; from 1.24 88/02/25 SMI +.\" $Id: rpcinfo.8,v 1.1.2.1 2003/09/22 21:33:35 jbailey Exp $ +.\" +.Dd December 17, 1987 +.Dt RPCINFO 8 +.Os +.Sh NAME +.Nm rpcinfo +.Nd report RPC information +.Sh SYNOPSIS +.Nm rpcinfo +.Fl p +.Op Ar host +.Nm rpcinfo +.Op Fl n Ar portnum +.Fl u Ar host +.Ar program +.Op Ar version +.Nm rpcinfo +.Op Fl n Ar portnum +.Fl t Ar host +.Ar program +.Op Ar version +.Nm rpcinfo +.Fl b +.Ar program version +.Nm rpcinfo +.Fl d +.Ar program version +.Sh DESCRIPTION +.Nm rpcinfo +makes an +.Tn RPC +call to an +.Tn RPC +server and reports what it finds. +.Sh OPTIONS +.Bl -tag -width indent +.It Fl p +Probe the portmapper on +.Ar host , +and print a list of all registered +.Tn RPC +programs. If +.Ar host +is not specified, it defaults to the value returned by +.Xr hostname 1 . +.It Fl u +Make an +.Tn RPC +call to procedure 0 of +.Ar program +on the specified +.Ar host +using +.Tn UDP , +and report whether a response was received. +.It Fl t +Make an +.Tn RPC +call to procedure 0 of +.Ar program +on the specified +.Ar host +using +.Tn TCP , +and report whether a response was received. +.It Fl n +Use +.Ar portnum +as the port number for the +.Fl t +and +.Fl u +options instead of the port number given by the portmapper. +.It Fl b +Make an +.Tn RPC +broadcast to procedure 0 of the specified +.Ar program +and +.Ar version +using +.Tn UDP +and report all hosts that respond. +.It Fl d +Delete registration for the +.Tn RPC +service of the specified +.Ar program +and +.Ar version . +This option can be exercised only by the super-user. +.El +.Pp +The +.Ar program +argument can be either a name or a number. +.Pp +If a +.Ar version +is specified, +.Nm rpcinfo +attempts to call that version of the specified +.Ar program . +Otherwise, +.Nm rpcinfo +attempts to find all the registered version +numbers for the specified +.Ar program +by calling version 0 (which is presumed not +to exist; if it does exist, +.Ar rpcinfo +attempts to obtain this information by calling +an extremely high version +number instead) and attempts to call each registered version. +Note: the version number is required for +.Fl b +and +.Fl d +options. +.Sh EXAMPLES +To show all of the +.Tn RPC +services registered on the local machine use: +.Pp +.Dl example% rpcinfo -p +.Pp +To show all of the +.Tn RPC +services registered on the machine named +.Ar klaxon +use: +.Pp +.Dl example% rpcinfo -p klaxon +.Pp +To show all machines on the local net that are running the Yellow Pages +service use: +.Pp +.Dl example% rpcinfo -b ypserv 'version' | uniq +.Pp +where 'version' is the current Yellow Pages version obtained from the +results of the +.Fl p +switch above. +.Pp +To delete the registration for version 1 of the +.Nm walld +service use: +.Pp +.Dl example% rpcinfo -d walld 1 +.Sh SEE ALSO +.Xr rpc 5 , +.Xr portmap 8 +.Rs +.%T "RPC Programming Guide" +.Re +.Sh BUGS +In releases prior to SunOS 3.0, the Network File System (NFS) did not +register itself with the portmapper; +.Nm rpcinfo +cannot be used to make +.Tn RPC +calls to the +.Tn NFS +server on hosts running such releases. --- glibc-2.5.orig/debian/local/manpages/sprof.pod +++ glibc-2.5/debian/local/manpages/sprof.pod @@ -0,0 +1,28 @@ +=head1 NAME + +sprof - Read and display shared object profiling data + +=head1 SYNOPSIS + +B B<-p>|B<-c> [B<-q>] + +=head1 DESCRIPTION + +B<--call-pairs>, B<-c> + + print list of count paths and their number of use + +B<--flat-profile>, B<-p> + + generate flat profile with counts and ticks + +B<--graph>, B<-q> + + generate call graph + +=head1 AUTHOR + +I was written by Ulrich Drepper for the GNU C Library + +This man page was written by Joel Klecker Eespy@debian.orgE for +the Debian GNU/Linux system. --- glibc-2.5.orig/debian/local/manpages/update-locale.8 +++ glibc-2.5/debian/local/manpages/update-locale.8 @@ -0,0 +1,49 @@ +.TH UPDATE-LOCALE 8 "April 2006" "Debian GNU/Linux" +.SH "NAME" +.LP +update-locale \- Modify global locale settings +.SH "SYNTAX" +.LP +update-locale +.RI [ OPTIONS ] +[\fIvar\fP=\fIlocale\fP | \fIvar\fP] +[...] +.SH "DESCRIPTION" +.LP +This program can be called by maintainer scripts when Debian packages are +installed or removed, it updates the \fB/etc/default/locale\fP file to +reflect changes in system configuration related to global locale settings. +When variables have no value assigned, they are removed from the locale +file. +Some basic checks are performed to ensure that requested settings are valid. +.SH "OPTIONS" +.TP +.B \-\-help +Display an help message and exit. +.TP +.B \-\-reset +Variables which are not set on command-line are cleared out. +.TP +.BI \-\-locale\-file " FILE" +Define file containing locale variables. (Default: +.BR /etc/default/locale ) +.TP +.B \-\-no\-checks +Do not perform sanity checks on locale variables. +.SH "EXAMPLE" +.nf +The command +.ft B + update-locale LANG=en_CA.UTF-8 LANGUAGE +.ft R +sets \fBLANG\fP to \fBen_CA.UTF-8\fP and removes definitions for \fBLANGUAGE\fP. +.SH "FILES" +.TP +.B /etc/default/locale +File where global locale settings are stored. +.SH "AUTHOR" +.LP +Denis Barbier +.SH "SEE ALSO" +.LP +locale\-gen(8), locale(1) --- glibc-2.5.orig/debian/local/manpages/validlocale.8 +++ glibc-2.5/debian/local/manpages/validlocale.8 @@ -0,0 +1,49 @@ +.TH "validlocale" "8" "0.1" "Petter Reinholdtsen" "" +.SH "NAME" +.LP +validlocale \- Test if a given locale is available +.SH "SYNTAX" +.LP +validlocale <\fIlocale\fP> +.SH "DESCRIPTION" +.LP +Test if the locale given as argument is a valid locale. If it +isn't, print on stdout the string to add to /etc/locale.gen to make +locale\-gen generate the locale (if it exists at all). +.SH "FILES" +.LP +\fI/usr/sbin/validlocale\fP +.br +\fI/usr/share/i18n/SUPPORTED\fP +.SH "ENVIRONMENT VARIABLES" +.LP +.TP +\fBDEFAULTCHARSET\fP +Which charset to assume if the given locale is missing from the +list of supported locales. +.SH "EXAMPLES" +.LP +If you give a valid locale as parameter, it outputs a string +specifying this on stderr: +.LP +.IP +% validlocale C +.br +locale 'C' valid and available +.LP +When given a invalid (not generated or just nonexistent), it +outputs a string on stderr telling that this is an invalid locale, and a string to stdout with the string to add to /etc/locale.gen +to have this locale generated: +.LP +.IP +% validlocale de_AU@euro +.br +locale 'de_AT@euro' not available +.br +de_AT@euro ISO\-8859\-15 +.SH "AUTHORS" +.LP +Petter Reinholdtsen +.SH "SEE ALSO" +.LP +locale\-gen(8), localedef(1), locale(1) --- glibc-2.5.orig/debian/local/manpages/zdump.1 +++ glibc-2.5/debian/local/manpages/zdump.1 @@ -0,0 +1,43 @@ +.TH ZDUMP 1 +.SH NAME +zdump \- time zone dumper +.SH SYNOPSIS +.B zdump +[ +.B \-v +] [ +.B \-c +cutoffyear ] [ zonename ... ] +.SH DESCRIPTION +.I Zdump +prints the current time in each +.I zonename +named on the command line. +.PP +These options are available: +.TP +.B \-v +For each +.I zonename +on the command line, +print the time at the lowest possible time value, +the time one day after the lowest possible time value, +the times both one second before and exactly at +each detected time discontinuity, +the time at one day less than the highest possible time value, +and the time at the highest possible time value, +Each line ends with +.B isdst=1 +if the given time is Daylight Saving Time or +.B isdst=0 +otherwise. +.I zonename +should be the relative path file name from +.B /usr/share/zoneinfo/ +which directory contains all zone data. +.TP +.BI "\-c " cutoffyear +Cut off the verbose output near the start of the given year. +.SH "SEE ALSO" +ctime(3), zic(8) +.\" @(#)zdump.8 7.3 --- glibc-2.5.orig/debian/local/manpages/zic.8 +++ glibc-2.5/debian/local/manpages/zic.8 @@ -0,0 +1,413 @@ +.TH ZIC 8 +.SH NAME +zic \- time zone compiler +.SH SYNOPSIS +.B zic +[ +.B \-v +] [ +.B \-d +.I directory +] [ +.B \-l +.I localtime +] [ +.B \-p +.I posixrules +] [ +.B \-L +.I leapsecondfilename +] [ +.B \-s +] [ +.B \-y +.I command +] [ +.I filename +\&... ] +.SH DESCRIPTION +.if t .ds lq `` +.if t .ds rq '' +.if n .ds lq \&"\" +.if n .ds rq \&"\" +.de q +\\$3\*(lq\\$1\*(rq\\$2 +.. +.I Zic +reads text from the file(s) named on the command line +and creates the time conversion information files specified in this input. +If a +.I filename +is +.BR \- , +the standard input is read. +.PP +These options are available: +.TP +.BI "\-d " directory +Create time conversion information files in the named directory rather than +in the standard directory named below. +.TP +.BI "\-l " timezone +Use the given time zone as local time. +.I Zic +will act as if the input contained a link line of the form +.sp +.ti +.5i +Link \fItimezone\fP localtime +.TP +.BI "\-p " timezone +Use the given time zone's rules when handling POSIX-format +time zone environment variables. +.I Zic +will act as if the input contained a link line of the form +.sp +.ti +.5i +Link \fItimezone\fP posixrules +.TP +.BI "\-L " leapsecondfilename +Read leap second information from the file with the given name. +If this option is not used, +no leap second information appears in output files. +.TP +.B \-v +Complain if a year that appears in a data file is outside the range +of years representable by +.IR time (2) +values. +.TP +.B \-s +Limit time values stored in output files to values that are the same +whether they're taken to be signed or unsigned. +You can use this option to generate SVVS-compatible files. +.TP +.BI "\-y " command +Use the given +.I command +rather than +.B yearistype +when checking year types (see below). +.PP +Input lines are made up of fields. +Fields are separated from one another by any number of white space characters. +Leading and trailing white space on input lines is ignored. +An unquoted sharp character (#) in the input introduces a comment which extends +to the end of the line the sharp character appears on. +White space characters and sharp characters may be enclosed in double quotes +(") if they're to be used as part of a field. +Any line that is blank (after comment stripping) is ignored. +Non-blank lines are expected to be of one of three types: +rule lines, zone lines, and link lines. +.PP +A rule line has the form +.nf +.ti +.5i +.ta \w'Rule\0\0'u +\w'NAME\0\0'u +\w'FROM\0\0'u +\w'1973\0\0'u +\w'TYPE\0\0'u +\w'Apr\0\0'u +\w'lastSun\0\0'u +\w'2:00\0\0'u +\w'SAVE\0\0'u +.sp +Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S +.sp +For example: +.ti +.5i +.sp +Rule US 1967 1973 \- Apr lastSun 2:00 1:00 D +.sp +.fi +The fields that make up a rule line are: +.TP "\w'LETTER/S'u" +.B NAME +Gives the (arbitrary) name of the set of rules this rule is part of. +.TP +.B FROM +Gives the first year in which the rule applies. +Any integer year can be supplied; the Gregorian calendar is assumed. +The word +.B minimum +(or an abbreviation) means the minimum year representable as an integer. +The word +.B maximum +(or an abbreviation) means the maximum year representable as an integer. +Rules can describe times that are not representable as time values, +with the unrepresentable times ignored; this allows rules to be portable +among hosts with differing time value types. +.TP +.B TO +Gives the final year in which the rule applies. +In addition to +.B minimum +and +.B maximum +(as above), +the word +.B only +(or an abbreviation) +may be used to repeat the value of the +.B FROM +field. +.TP +.B TYPE +Gives the type of year in which the rule applies. +If +.B TYPE +is +.B \- +then the rule applies in all years between +.B FROM +and +.B TO +inclusive. +If +.B TYPE +is something else, then +.I zic +executes the command +.ti +.5i +\fByearistype\fP \fIyear\fP \fItype\fP +.br +to check the type of a year: +an exit status of zero is taken to mean that the year is of the given type; +an exit status of one is taken to mean that the year is not of the given type. +.TP +.B IN +Names the month in which the rule takes effect. +Month names may be abbreviated. +.TP +.B ON +Gives the day on which the rule takes effect. +Recognized forms include: +.nf +.in +.5i +.sp +.ta \w'Sun<=25\0\0'u +5 the fifth of the month +lastSun the last Sunday in the month +lastMon the last Monday in the month +Sun>=8 first Sunday on or after the eighth +Sun<=25 last Sunday on or before the 25th +.fi +.in -.5i +.sp +Names of days of the week may be abbreviated or spelled out in full. +Note that there must be no spaces within the +.B ON +field. +.TP +.B AT +Gives the time of day at which the rule takes effect. +Recognized forms include: +.nf +.in +.5i +.sp +.ta \w'1:28:13\0\0'u +2 time in hours +2:00 time in hours and minutes +15:00 24-hour format time (for times after noon) +1:28:14 time in hours, minutes, and seconds +.fi +.in -.5i +.sp +where hour 0 is midnight at the start of the day, +and hour 24 is midnight at the end of the day. +Any of these forms may be followed by the letter +.B w +if the given time is local +.q "wall clock" +time, +.B s +if the given time is local +.q standard +time, or +.B u +(or +.B g +or +.BR z ) +if the given time is universal time; +in the absence of an indicator, +wall clock time is assumed. +.TP +.B SAVE +Gives the amount of time to be added to local standard time when the rule is in +effect. +This field has the same format as the +.B AT +field +(although, of course, the +.B w +and +.B s +suffixes are not used). +.TP +.B LETTER/S +Gives the +.q "variable part" +(for example, the +.q S +or +.q D +in +.q EST +or +.q EDT ) +of time zone abbreviations to be used when this rule is in effect. +If this field is +.BR \- , +the variable part is null. +.PP +A zone line has the form +.sp +.nf +.ti +.5i +.ta \w'Zone\0\0'u +\w'Australia/Adelaide\0\0'u +\w'GMTOFF\0\0'u +\w'RULES/SAVE\0\0'u +\w'FORMAT\0\0'u +Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL] +.sp +For example: +.sp +.ti +.5i +Zone Australia/Adelaide 9:30 Aus CST 1971 Oct 31 2:00 +.sp +.fi +The fields that make up a zone line are: +.TP "\w'GMTOFF'u" +.B NAME +The name of the time zone. +This is the name used in creating the time conversion information file for the +zone. +.TP +.B GMTOFF +The amount of time to add to UTC to get standard time in this zone. +This field has the same format as the +.B AT +and +.B SAVE +fields of rule lines; +begin the field with a minus sign if time must be subtracted from UTC. +.TP +.B RULES/SAVE +The name of the rule(s) that apply in the time zone or, +alternately, an amount of time to add to local standard time. +If this field is +.B \- +then standard time always applies in the time zone. +.TP +.B FORMAT +The format for time zone abbreviations in this time zone. +The pair of characters +.B %s +is used to show where the +.q "variable part" +of the time zone abbreviation goes. +Alternately, +a slash (/) +separates standard and daylight abbreviations. +.TP +.B UNTIL +The time at which the UTC offset or the rule(s) change for a location. +It is specified as a year, a month, a day, and a time of day. +If this is specified, +the time zone information is generated from the given UTC offset +and rule change until the time specified. +The month, day, and time of day have the same format as the IN, ON, and AT +columns of a rule; trailing columns can be omitted, and default to the +earliest possible value for the missing columns. +.IP +The next line must be a +.q continuation +line; this has the same form as a zone line except that the +string +.q Zone +and the name are omitted, as the continuation line will +place information starting at the time specified as the +.B UNTIL +field in the previous line in the file used by the previous line. +Continuation lines may contain an +.B UNTIL +field, just as zone lines do, indicating that the next line is a further +continuation. +.PP +A link line has the form +.sp +.nf +.ti +.5i +.ta \w'Link\0\0'u +\w'Europe/Istanbul\0\0'u +Link LINK-FROM LINK-TO +.sp +For example: +.sp +.ti +.5i +Link Europe/Istanbul Asia/Istanbul +.sp +.fi +The +.B LINK-FROM +field should appear as the +.B NAME +field in some zone line; +the +.B LINK-TO +field is used as an alternate name for that zone. +.PP +Except for continuation lines, +lines may appear in any order in the input. +.PP +Lines in the file that describes leap seconds have the following form: +.nf +.ti +.5i +.ta \w'Leap\0\0'u +\w'YEAR\0\0'u +\w'MONTH\0\0'u +\w'DAY\0\0'u +\w'HH:MM:SS\0\0'u +\w'CORR\0\0'u +.sp +Leap YEAR MONTH DAY HH:MM:SS CORR R/S +.sp +For example: +.ti +.5i +.sp +Leap 1974 Dec 31 23:59:60 + S +.sp +.fi +The +.BR YEAR , +.BR MONTH , +.BR DAY , +and +.B HH:MM:SS +fields tell when the leap second happened. +The +.B CORR +field +should be +.q + +if a second was added +or +.q - +if a second was skipped. +.\" There's no need to document the following, since it's impossible for more +.\" than one leap second to be inserted or deleted at a time. +.\" The C Standard is in error in suggesting the possibility. +.\" See Terry J Quinn, The BIPM and the accurate measure of time, +.\" Proc IEEE 79, 7 (July 1991), 894-905. +.\" or +.\" .q ++ +.\" if two seconds were added +.\" or +.\" .q -- +.\" if two seconds were skipped. +The +.B R/S +field +should be (an abbreviation of) +.q Stationary +if the leap second time given by the other fields should be interpreted as UTC +or +(an abbreviation of) +.q Rolling +if the leap second time given by the other fields should be interpreted as +local wall clock time. +.SH NOTE +For areas with more than two types of local time, +you may need to use local standard time in the +.B AT +field of the earliest transition time's rule to ensure that +the earliest transition time recorded in the compiled file is correct. +.SH FILE +/usr/share/zoneinfo standard directory used for created files +.SH "SEE ALSO" +ctime(3), zdump(1) +.\" @(#)zic.8 7.18 --- glibc-2.5.orig/debian/local/usr_sbin/locale-gen +++ glibc-2.5/debian/local/usr_sbin/locale-gen @@ -0,0 +1,54 @@ +#!/bin/sh + +set -e + +LOCALEGEN=/etc/locale.gen +LOCALES=/usr/share/i18n/locales +if [ -n "$POSIXLY_CORRECT" ]; then + unset POSIXLY_CORRECT +fi + + +[ -f $LOCALEGEN ] || exit 0; +[ -s $LOCALEGEN ] || exit 0; + +KEEP= +if [ "$1" = '--keep-existing' ]; then + KEEP=1 +fi + +if [ -z "$KEEP" ]; then + # Remove all old locale dir and locale-archive before generating new + # locale data. + rm -rf /usr/lib/locale/* || true +fi + +umask 022 + +is_entry_ok() { + if [ -n "$locale" -a -n "$charset" ] ; then + true + else + echo "error: Bad entry '$locale $charset'" + false + fi +} + +echo "Generating locales (this might take a while)..." +while read locale charset; do \ + case $locale in \#*) continue;; "") continue;; esac; \ + is_entry_ok || continue + if [ "$KEEP" ] && PERL_BADLANG=0 perl -MPOSIX -e \ + 'exit 1 unless setlocale(LC_ALL, $ARGV[0])' "$locale"; then + continue + fi + echo -n " `echo $locale | sed 's/\([^.\@]*\).*/\1/'`"; \ + echo -n ".$charset"; \ + echo -n `echo $locale | sed 's/\([^\@]*\)\(\@.*\)*/\2/'`; \ + echo -n '...'; \ + if [ -f $LOCALES/$locale ]; then input=$locale; else \ + input=`echo $locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; fi; \ + localedef -i $input -c -f $charset -A /usr/share/locale/locale.alias $locale || :; \ + echo ' done'; \ +done < $LOCALEGEN +echo "Generation complete." --- glibc-2.5.orig/debian/local/usr_sbin/update-locale +++ glibc-2.5/debian/local/usr_sbin/update-locale @@ -0,0 +1,126 @@ +#! /usr/bin/perl -w + +use strict; +use Getopt::Long; + +my $progname = "update-locale"; +my $locale_file = "/etc/default/locale"; + +my $help = 0; +my $reset = 0; +# Kept for compatibility reasons +my $remove = 0; +my $no_checks = 0; + +GetOptions( + 'reset' => \$reset, + 'remove' => \$remove, + 'locale-file=s' => \$locale_file, + 'no-checks' => \$no_checks, + 'h|help' => \$help, +); + +sub usage +{ + my $rc = shift; + print STDERR "Usage: $progname [OPTIONS] [LANG=locale] [LC_NUMERIC=locale] ... +Options: + --help display this message and exit + --reset ignore variables defined in the locale file + --locale-file=FILE file containing locale variables + (Default: /etc/default/locale) + --no-checks do not perform sanity checks on locale variables +"; + exit $rc; +} + +$help && usage(0); + +# Process command-line arguments +my %arg = (); +my $content = ''; +my $mode = 0644; +if (-r $locale_file) +{ + # Keep file mode + $mode = (stat($locale_file))[2] & 07777; + # Read current values + open(IN, "<", $locale_file) + or die "$progname: Unable to read $locale_file: $!\n"; + while () + { + $content .= $_; + next unless m/^(\w+)=(.*)/; + $arg{$1} = $2 unless $reset; + } + close(IN) + or die "$progname: Unable to close $locale_file: $!\n"; + $content =~ s/^(\s*\w+=)/#$1/mg; + $content .= "\n" unless $content =~ m/\n$/s; +} +else +{ + $content = "# File generated by $progname\n"; +} +for (@ARGV) +{ + if (m/(.*?)=(.*)/) + { + $arg{$1} = $2; + } + else + { + delete $arg{$_}; + } +} + +my $env = ''; +my ($key, $value); +while (($key, $value) = each %arg) +{ + $env .= " $key=$value"; + $content =~ s/^#\s*$key=.*/$key=$value/m or + $content .= "$key=$value\n"; +} + +# Sanity checks +if ($no_checks == 0) +{ + # Check that this locale does exist + my $charset = `LANG= LC_CTYPE= LC_NUMERIC= LC_TIME= LC_COLLATE= LC_MONETARY= LC_MESSAGES= LC_PAPER= LC_NAME= LC_ADDRESS= LC_TELEPHONE= LC_MEASUREMENT= LC_IDENTIFICATION= LC_ALL= $env locale charmap 2>&1`; + die "*** $progname: Error: invalid locale settings: $env\n" + if ($charset =~ m/Cannot set/); + # If LANGUAGE is set, its first value must be compatible with LC_MESSAGES + if (defined $arg{LANGUAGE}) + { + my $language = $arg{LANGUAGE}; + $language =~ s/["']//g; + $language =~ s/[.:_].*//; + my $msg = ''; + my $var = ''; + for (qw(LANG LC_MESSAGES LC_ALL)) + { + if (defined $arg{$_}) + { + $var = $_; + $msg = $arg{$_}; + } + } + $msg =~ s/["']//g; + die "*** $progname: Error: LANGUAGE ($arg{LANGUAGE}) is not compatible with $var ($msg)\n" + if ($msg !~ m/^$language/ && $var ne '' + && $msg ne 'C' && $msg ne 'POSIX' + && $language ne 'C' && $language ne 'POSIX'); + } +} + +# Write locale file +open(OUT, ">", $locale_file) + or die "$progname: Unable to write $locale_file: $!\n"; +print OUT $content; +close(OUT) + or die "$progname: Unable to close $locale_file: $!\n"; +chmod($mode, $locale_file) + or die "$progname: Unable to chmod $locale_file: $!\n"; + +1; --- glibc-2.5.orig/debian/local/usr_sbin/validlocale +++ glibc-2.5/debian/local/usr_sbin/validlocale @@ -0,0 +1,75 @@ +#!/usr/bin/perl -w +# +# Author: Petter Reinholdtsen +# Date: 2002-02-23 +# +# Test if the locale given as argument is a valid locale. If it +# is not, print on stdout the string to add to /etc/locale.gen to make +# locale-gen generate the locale (if it exists at all). + +use POSIX qw(setlocale LC_ALL); + +my $debug = 0; + +my $defaultcharset = $ENV{"DEFAULTCHARSET"} || "ISO-8859-1"; + +my $supportedlist = "/usr/share/i18n/SUPPORTED"; + +unless (defined $ARGV[0]) { + usage(); + exit 1; +} + +my $LANG = $ARGV[0]; + +my $loc = setlocale(LC_ALL, $LANG); +if ( ! $loc) { + print STDERR "locale '$LANG' not available\n"; + + my ($locale) = $LANG =~ m/^([^.@]+)/; + my ($charset) = $LANG =~ m/^[^.]+\.([^@]+)/; + my ($modifier) = $LANG =~ m/(@.+)$/; + + $modifier = "" unless defined $modifier; + + # Hm, if charset is missing, how to we pick the correct one to + # use? Fetching the value from /usr/share/i18n/SUPPORTED should + # work on Debian. + my $codeset = ""; + if (defined $charset) { + $codeset = '.' . $charset; + } else { + $charset = get_default_charset("$locale$modifier"); + } + + # print "L: $locale C: $charset M: $modifier\n"; + print "$locale$codeset$modifier $charset\n"; + + exit 1; +} else { + print STDERR "locale '$LANG' valid and available\n"; + exit 0; +} + +sub usage { + print "Usage: $0 \n" +} + +sub get_default_charset { + my ($locale) = @_; + my ($l, $c); + open(SUPPORTED, "< $supportedlist") || die "Unable to open $supportedlist"; + while () { + chomp; + ($l, $c) = split(/\s+/); + print "Checking '$l' '$c' != '$locale'\n" if $debug; + last if ($l eq $locale); + } + close(SUPPORTED); + + if ($l eq $locale) { + return $c; + } else { + return $defaultcharset; + } +} --- glibc-2.5.orig/debian/locales.NEWS.Debian +++ glibc-2.5/debian/locales.NEWS.Debian @@ -0,0 +1,11 @@ +locales (2.3.6-7) unstable; urgency=low + + * Locale variables are now stored in /etc/default/locale and no more + /etc/environment. The reason is that Debian Policy forbids modifying + configuration files of other packages, and /etc/environment is a + configuration file for PAM. + Make sure to remove old definitions from /etc/environment, this file + is no more modified for the reason explained above. + + -- Denis Barbier Tue, 11 Apr 2006 21:24:13 +0200 + --- glibc-2.5.orig/debian/make-cvs-locales-patch.sh +++ glibc-2.5/debian/make-cvs-locales-patch.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +set -e + +# This script is designed to help make patches to update from the last +# release to the latest CVS. Hand it the argument of the directory from +# which to generate the diff. + +# This script is not robust. Feel free to improve it. Specifically, +# run this from the root of the package. + +# This file is in the PUBLIC DOMAIN +# written by Jeff Bailey jbailey@debian.org September 6th, 2002 + +if [ $# -ne 1 ]; then + echo "`basename $0`: script expects a CVS tree to diff against" + exit 1 +fi + +PATCHLIST=10_cvs debian/rules patch + +SRCDIR=build-tree/glibc-* + +# DESCRIPTION, DETAILS, DATE, PATCHLEVEL + +cat debian/patches/template.dpatch | sed -e "s/@DESCRIPTION@/Locales CVS Update/" -e "s/@DATE@/`date`/" -e "s/@PATCHLEVEL@/2/" > debian/patches/11_cvs_locales.dpatch + +diff -urN -x CVS $SRCDIR/localedata $1/localedata >>debian/patches/11_cvs_locales.dpatch + --- glibc-2.5.orig/debian/make-cvs-patch.sh +++ glibc-2.5/debian/make-cvs-patch.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +# This script is designed to help make patches to update from the last +# release to the latest CVS. Hand it the argument of the directory from +# which to generate the diff. + +# This script is not robust. Feel free to improve it. Specifically, +# run this from the root of the package. + +# This file is in the PUBLIC DOMAIN +# written by Jeff Bailey jbailey@debian.org September 6th, 2002 + +if [ $# -ne 1 ]; then + echo "`basename $0`: script expects a CVS tree to diff against" + exit 1 +fi + +debian/rules unpack + +SRCDIR=build-tree/glibc-* + +diff -urN -x CVS -x .cvsignore -x '*texi' -x '*manual*' $SRCDIR $1 >cvs.patch + --- glibc-2.5.orig/debian/patches/README +++ glibc-2.5/debian/patches/README @@ -0,0 +1,18 @@ +For the patch directory we follow this naming scheme: + + {ARCH|all|any}/{local|branch|cvs|submitted}-"Description" + +Branch means commited in the upstream branch. +CVS means committed in the upstream trunk. +Submitted means we're hopeful that it will go in. +Local means that it's not going upstream. + +The goal is to get all patches to "Branch". Patches should be split by +arch so that it's easy to send just the relevant bits to various +arch maintainers if needed. + +The difference between 'all' and 'any' is that the latter touches several +architecture dependent files (usually in the sysdeps directory), whereas +the former only modifies architecture independent files. Porters are +supposed to have an eye on their arch patches and on 'any'. + --- glibc-2.5.orig/debian/patches/all/local-pthread-manpages.diff +++ glibc-2.5/debian/patches/all/local-pthread-manpages.diff @@ -0,0 +1,2084 @@ +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_atfork.man glibc-2.5/linuxthreads/man/pthread_atfork.man +--- glibc-2.5.orig/linuxthreads/man/pthread_atfork.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_atfork.man 2007-02-18 19:29:49.000000000 +0100 +@@ -10,44 +10,44 @@ + + .SH DESCRIPTION + +-!pthread_atfork! registers handler functions to be called just before +-and just after a new process is created with !fork!(2). The |prepare| ++\fBpthread_atfork\fP registers handler functions to be called just before ++and just after a new process is created with \fBfork\fP(2). The \fIprepare\fP + handler will be called from the parent process, just before the new +-process is created. The |parent| handler will be called from the parent +-process, just before !fork!(2) returns. The |child| handler will be +-called from the child process, just before !fork!(2) returns. ++process is created. The \fIparent\fP handler will be called from the parent ++process, just before \fBfork\fP(2) returns. The \fIchild\fP handler will be ++called from the child process, just before \fBfork\fP(2) returns. + +-One or several of the three handlers |prepare|, |parent| and |child| +-can be given as !NULL!, meaning that no handler needs to be called at ++One or several of the three handlers \fIprepare\fP, \fIparent\fP and \fIchild\fP ++can be given as \fBNULL\fP, meaning that no handler needs to be called at + the corresponding point. + +-!pthread_atfork! can be called several times to install several sets +-of handlers. At !fork!(2) time, the |prepare| handlers are called in +-LIFO order (last added with !pthread_atfork!, first called before !fork!), +-while the |parent| and |child| handlers are called in FIFO order ++\fBpthread_atfork\fP can be called several times to install several sets ++of handlers. At \fBfork\fP(2) time, the \fIprepare\fP handlers are called in ++LIFO order (last added with \fBpthread_atfork\fP, first called before \fBfork\fP), ++while the \fIparent\fP and \fIchild\fP handlers are called in FIFO order + (first added, first called). + +-To understand the purpose of !pthread_atfork!, recall that !fork!(2) ++To understand the purpose of \fBpthread_atfork\fP, recall that \fBfork\fP(2) + duplicates the whole memory space, including mutexes in their current + locking state, but only the calling thread: other threads are not + running in the child process. The mutexes are not usable after the +-!fork! and must be initialized with |pthread_mutex_init| in the child ++\fBfork\fP and must be initialized with \fIpthread_mutex_init\fP in the child + process. This is a limitation of the current implementation and might + or might not be present in future versions. + + .SH "RETURN VALUE" + +-!pthread_atfork! returns 0 on success and a non-zero error code on error. ++\fBpthread_atfork\fP returns 0 on success and a non-zero error code on error. + + .SH ERRORS + .TP +-!ENOMEM! ++\fBENOMEM\fP + insufficient memory available to register the handlers. + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!fork!(2), +-!pthread_mutex_lock!(3), +-!pthread_mutex_unlock!(3). ++\fBfork\fP(2), ++\fBpthread_mutex_lock\fP(3), ++\fBpthread_mutex_unlock\fP(3). +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_attr_init.man glibc-2.5/linuxthreads/man/pthread_attr_init.man +--- glibc-2.5.orig/linuxthreads/man/pthread_attr_init.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_attr_init.man 2007-02-18 19:29:49.000000000 +0100 +@@ -45,27 +45,27 @@ + .SH DESCRIPTION + + Setting attributes for threads is achieved by filling a +-thread attribute object |attr| of type !pthread_attr_t!, then passing it as +-second argument to !pthread_create!(3). Passing !NULL! is equivalent to ++thread attribute object \fIattr\fP of type \fBpthread_attr_t\fP, then passing it as ++second argument to \fBpthread_create\fP(3). Passing \fBNULL\fP is equivalent to + passing a thread attribute object with all attributes set to their + default values. + +-!pthread_attr_init! initializes the thread attribute object |attr| and ++\fBpthread_attr_init\fP initializes the thread attribute object \fIattr\fP and + fills it with default values for the attributes. (The default values + are listed below for each attribute.) + +-Each attribute |attrname| (see below for a list of all attributes) can +-be individually set using the function !pthread_attr_set!|attrname| +-and retrieved using the function !pthread_attr_get!|attrname|. ++Each attribute \fIattrname\fP (see below for a list of all attributes) can ++be individually set using the function \fBpthread_attr_set\fP\fIattrname\fP ++and retrieved using the function \fBpthread_attr_get\fP\fIattrname\fP. + +-!pthread_attr_destroy! destroys a thread attribute object, which +-must not be reused until it is reinitialized. !pthread_attr_destroy! ++\fBpthread_attr_destroy\fP destroys a thread attribute object, which ++must not be reused until it is reinitialized. \fBpthread_attr_destroy\fP + does nothing in the LinuxThreads implementation. + + Attribute objects are consulted only when creating a new thread. The + same attribute object can be used for creating several + threads. Modifying an attribute object after a call to +-!pthread_create! does not change the attributes of the thread ++\fBpthread_create\fP does not change the attributes of the thread + previously created. + + The following thread attributes are supported: +@@ -73,149 +73,149 @@ + .SS detachstate + + Control whether the thread is created in the joinable state (value +-!PTHREAD_CREATE_JOINABLE!) or in the detached state +-(!PTHREAD_CREATE_DETACHED!). ++\fBPTHREAD_CREATE_JOINABLE\fP) or in the detached state ++(\fBPTHREAD_CREATE_DETACHED\fP). + +-Default value: !PTHREAD_CREATE_JOINABLE!. ++Default value: \fBPTHREAD_CREATE_JOINABLE\fP. + + In the joinable state, another thread can synchronize on the thread +-termination and recover its termination code using !pthread_join!(3), ++termination and recover its termination code using \fBpthread_join\fP(3), + but some of the thread resources are kept allocated after the thread + terminates, and reclaimed only when another thread performs +-!pthread_join!(3) on that thread. ++\fBpthread_join\fP(3) on that thread. + + In the detached state, the thread resources are immediately freed when +-it terminates, but !pthread_join!(3) cannot be used to synchronize on ++it terminates, but \fBpthread_join\fP(3) cannot be used to synchronize on + the thread termination. + + A thread created in the joinable state can later be put in the +-detached thread using !pthread_detach!(3). ++detached state using \fBpthread_detach\fP(3). + + .SS schedpolicy + + Select the scheduling policy for the thread: one of +-!SCHED_OTHER! (regular, non-realtime scheduling), +-!SCHED_RR! (realtime, round-robin) or +-!SCHED_FIFO! (realtime, first-in first-out). See +-!sched_setpolicy!(2) for more information on scheduling policies. ++\fBSCHED_OTHER\fP (regular, non-realtime scheduling), ++\fBSCHED_RR\fP (realtime, round-robin) or ++\fBSCHED_FIFO\fP (realtime, first-in first-out). See ++\fBsched_setpolicy\fP(2) for more information on scheduling policies. + +-Default value: !SCHED_OTHER!. ++Default value: \fBSCHED_OTHER\fP. + +-The realtime scheduling policies !SCHED_RR! and !SCHED_FIFO! are ++The realtime scheduling policies \fBSCHED_RR\fP and \fBSCHED_FIFO\fP are + available only to processes with superuser privileges. + + The scheduling policy of a thread can be changed after creation with +-!pthread_setschedparam!(3). ++\fBpthread_setschedparam\fP(3). + + .SS schedparam + + Contain the scheduling parameters (essentially, the scheduling +-priority) for the thread. See !sched_setparam!(2) for more information ++priority) for the thread. See \fBsched_setparam\fP(2) for more information + on scheduling parameters. + + Default value: priority is 0. + +-This attribute is not significant if the scheduling policy is !SCHED_OTHER!; +-it only matters for the realtime policies !SCHED_RR! and !SCHED_FIFO!. ++This attribute is not significant if the scheduling policy is \fBSCHED_OTHER\fP; ++it only matters for the realtime policies \fBSCHED_RR\fP and \fBSCHED_FIFO\fP. + + The scheduling priority of a thread can be changed after creation with +-!pthread_setschedparam!(3). ++\fBpthread_setschedparam\fP(3). + + .SS inheritsched + + Indicate whether the scheduling policy and scheduling parameters for + the newly created thread are determined by the values of the +-|schedpolicy| and |schedparam| attributes (value +-!PTHREAD_EXPLICIT_SCHED!) or are inherited from the parent thread +-(value !PTHREAD_INHERIT_SCHED!). ++\fIschedpolicy\fP and \fIschedparam\fP attributes (value ++\fBPTHREAD_EXPLICIT_SCHED\fP) or are inherited from the parent thread ++(value \fBPTHREAD_INHERIT_SCHED\fP). + +-Default value: !PTHREAD_EXPLICIT_SCHED!. ++Default value: \fBPTHREAD_EXPLICIT_SCHED\fP. + + .SS scope + + Define the scheduling contention scope for the created thread. The + only value supported in the LinuxThreads implementation is +-!PTHREAD_SCOPE_SYSTEM!, meaning that the threads contend for CPU time ++\fBPTHREAD_SCOPE_SYSTEM\fP, meaning that the threads contend for CPU time + with all processes running on the machine. In particular, thread + priorities are interpreted relative to the priorities of all other + processes on the machine. The other value specified by the standard, +-!PTHREAD_SCOPE_PROCESS!, means that scheduling contention occurs only ++\fBPTHREAD_SCOPE_PROCESS\fP, means that scheduling contention occurs only + between the threads of the running process: thread priorities are + interpreted relative to the priorities of the other threads of the + process, regardless of the priorities of other processes. +-!PTHREAD_SCOPE_PROCESS! is not supported in LinuxThreads. ++\fBPTHREAD_SCOPE_PROCESS\fP is not supported in LinuxThreads. + +-Default value: !PTHREAD_SCOPE_SYSTEM!. ++Default value: \fBPTHREAD_SCOPE_SYSTEM\fP. + + .SH "RETURN VALUE" + + All functions return 0 on success and a non-zero error code on error. +-On success, the !pthread_attr_get!|attrname| functions also store the +-current value of the attribute |attrname| in the location pointed to ++On success, the \fBpthread_attr_get\fP\fIattrname\fP functions also store the ++current value of the attribute \fIattrname\fP in the location pointed to + by their second argument. + + .SH ERRORS + +-The !pthread_attr_setdetachstate! function returns the following error ++The \fBpthread_attr_setdetachstate\fP function returns the following error + codes on error: + .RS + .TP +-!EINVAL! +-the specified |detachstate| is not one of !PTHREAD_CREATE_JOINABLE! or +-!PTHREAD_CREATE_DETACHED!. ++\fBEINVAL\fP ++the specified \fIdetachstate\fP is not one of \fBPTHREAD_CREATE_JOINABLE\fP or ++\fBPTHREAD_CREATE_DETACHED\fP. + .RE + +-The !pthread_attr_setschedparam! function returns the following error ++The \fBpthread_attr_setschedparam\fP function returns the following error + codes on error: + .RS + .TP +-!EINVAL! +-the priority specified in |param| is outside the range of allowed +-priorities for the scheduling policy currently in |attr| +-(1 to 99 for !SCHED_FIFO! and !SCHED_RR!; 0 for !SCHED_OTHER!). ++\fBEINVAL\fP ++the priority specified in \fIparam\fP is outside the range of allowed ++priorities for the scheduling policy currently in \fIattr\fP ++(1 to 99 for \fBSCHED_FIFO\fP and \fBSCHED_RR\fP; 0 for \fBSCHED_OTHER\fP). + .RE + +-The !pthread_attr_setschedpolicy! function returns the following error ++The \fBpthread_attr_setschedpolicy\fP function returns the following error + codes on error: + .RS + .TP +-!EINVAL! +-the specified |policy| is not one of !SCHED_OTHER!, !SCHED_FIFO!, or +-!SCHED_RR!. ++\fBEINVAL\fP ++the specified \fIpolicy\fP is not one of \fBSCHED_OTHER\fP, \fBSCHED_FIFO\fP, or ++\fBSCHED_RR\fP. + + .TP +-!ENOTSUP! +-|policy| is !SCHED_FIFO! or !SCHED_RR!, and the effective user of the ++\fBENOTSUP\fP ++\fIpolicy\fP is \fBSCHED_FIFO\fP or \fBSCHED_RR\fP, and the effective user of the + calling process is not super-user. + .RE + +-The !pthread_attr_setinheritsched! function returns the following error ++The \fBpthread_attr_setinheritsched\fP function returns the following error + codes on error: + .RS + .TP +-!EINVAL! +-the specified |inherit| is not one of !PTHREAD_INHERIT_SCHED! or +-!PTHREAD_EXPLICIT_SCHED!. ++\fBEINVAL\fP ++the specified \fIinherit\fP is not one of \fBPTHREAD_INHERIT_SCHED\fP or ++\fBPTHREAD_EXPLICIT_SCHED\fP. + .RE + +-The !pthread_attr_setscope! function returns the following error ++The \fBpthread_attr_setscope\fP function returns the following error + codes on error: + .RS + .TP +-!EINVAL! +-the specified |scope| is not one of !PTHREAD_SCOPE_SYSTEM! or +-!PTHREAD_SCOPE_PROCESS!. ++\fBEINVAL\fP ++the specified \fIscope\fP is not one of \fBPTHREAD_SCOPE_SYSTEM\fP or ++\fBPTHREAD_SCOPE_PROCESS\fP. + + .TP +-!ENOTSUP! +-the specified |scope| is !PTHREAD_SCOPE_PROCESS! (not supported). ++\fBENOTSUP\fP ++the specified \fIscope\fP is \fBPTHREAD_SCOPE_PROCESS\fP (not supported). + .RE + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_create!(3), +-!pthread_join!(3), +-!pthread_detach!(3), +-!pthread_setschedparam!(3). ++\fBpthread_create\fP(3), ++\fBpthread_join\fP(3), ++\fBpthread_detach\fP(3), ++\fBpthread_setschedparam\fP(3). +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_cancel.man glibc-2.5/linuxthreads/man/pthread_cancel.man +--- glibc-2.5.orig/linuxthreads/man/pthread_cancel.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_cancel.man 2007-02-18 19:30:54.000000000 +0100 +@@ -27,119 +27,119 @@ + immediately, or defer it till it reaches a cancellation point. + + When a thread eventually honors a cancellation request, it performs as +-if !pthread_exit(PTHREAD_CANCELED)! has been called at that point: ++if \fBpthread_exit(PTHREAD_CANCELED)\fP has been called at that point: + all cleanup handlers are executed in reverse order, finalization + functions for thread-specific data are called, and finally the thread +-stops executing with the return value !PTHREAD_CANCELED!. See +-!pthread_exit!(3) for more information. ++stops executing with the return value \fBPTHREAD_CANCELED\fP. See ++\fBpthread_exit\fP(3) for more information. + +-!pthread_cancel! sends a cancellation request to the thread denoted +-by the |thread| argument. ++\fBpthread_cancel\fP sends a cancellation request to the thread denoted ++by the \fIthread\fP argument. + +-!pthread_setcancelstate! changes the cancellation state for the ++\fBpthread_setcancelstate\fP changes the cancellation state for the + calling thread -- that is, whether cancellation requests are ignored +-or not. The |state| argument is the new cancellation state: either +-!PTHREAD_CANCEL_ENABLE! to enable cancellation, or +-!PTHREAD_CANCEL_DISABLE! to disable cancellation (cancellation +-requests are ignored). If |oldstate| is not !NULL!, the previous +-cancellation state is stored in the location pointed to by |oldstate|, ++or not. The \fIstate\fP argument is the new cancellation state: either ++\fBPTHREAD_CANCEL_ENABLE\fP to enable cancellation, or ++\fBPTHREAD_CANCEL_DISABLE\fP to disable cancellation (cancellation ++requests are ignored). If \fIoldstate\fP is not \fBNULL\fP, the previous ++cancellation state is stored in the location pointed to by \fIoldstate\fP, + and can thus be restored later by another call to +-!pthread_setcancelstate!. ++\fBpthread_setcancelstate\fP. + +-!pthread_setcanceltype! changes the type of responses to cancellation ++\fBpthread_setcanceltype\fP changes the type of responses to cancellation + requests for the calling thread: asynchronous (immediate) or deferred. +-The |type| argument is the new cancellation type: either +-!PTHREAD_CANCEL_ASYNCHRONOUS! to cancel the calling thread as soon as +-the cancellation request is received, or !PTHREAD_CANCEL_DEFERRED! to ++The \fItype\fP argument is the new cancellation type: either ++\fBPTHREAD_CANCEL_ASYNCHRONOUS\fP to cancel the calling thread as soon as ++the cancellation request is received, or \fBPTHREAD_CANCEL_DEFERRED\fP to + keep the cancellation request pending until the next cancellation +-point. If |oldtype| is not !NULL!, the previous +-cancellation state is stored in the location pointed to by |oldtype|, ++point. If \fIoldtype\fP is not \fBNULL\fP, the previous ++cancellation state is stored in the location pointed to by \fIoldtype\fP, + and can thus be restored later by another call to +-!pthread_setcanceltype!. ++\fBpthread_setcanceltype\fP. + +-Threads are always created by !pthread_create!(3) with cancellation ++Threads are always created by \fBpthread_create\fP(3) with cancellation + enabled and deferred. That is, the initial cancellation state is +-!PTHREAD_CANCEL_ENABLE! and the initial type is +-!PTHREAD_CANCEL_DEFERRED!. ++\fBPTHREAD_CANCEL_ENABLE\fP and the initial type is ++\fBPTHREAD_CANCEL_DEFERRED\fP. + + Cancellation points are those points in the program execution where a + test for pending cancellation requests is performed and cancellation + is executed if positive. The following POSIX threads functions + are cancellation points: + +-!pthread_join!(3) ++\fBpthread_join\fP(3) + .br +-!pthread_cond_wait!(3) ++\fBpthread_cond_wait\fP(3) + .br +-!pthread_cond_timedwait!(3) ++\fBpthread_cond_timedwait\fP(3) + .br +-!pthread_testcancel!(3) ++\fBpthread_testcancel\fP(3) + .br +-!sem_wait!(3) ++\fBsem_wait\fP(3) + .br +-!sigwait!(3) ++\fBsigwait\fP(3) + + All other POSIX threads functions are guaranteed not to be + cancellation points. That is, they never perform cancellation in + deferred cancellation mode. + +-!pthread_testcancel! does nothing except testing for pending ++\fBpthread_testcancel\fP does nothing except testing for pending + cancellation and executing it. Its purpose is to introduce explicit + checks for cancellation in long sequences of code that do not call + cancellation point functions otherwise. + + .SH "RETURN VALUE" + +-!pthread_cancel!, !pthread_setcancelstate! and +-!pthread_setcanceltype! return 0 on success and a non-zero error code ++\fBpthread_cancel\fP, \fBpthread_setcancelstate\fP and ++\fBpthread_setcanceltype\fP return 0 on success and a non-zero error code + on error. + + .SH ERRORS +-!pthread_cancel! returns the following error code on error: ++\fBpthread_cancel\fP returns the following error code on error: + .RS + .TP +-!ESRCH! +-no thread could be found corresponding to that specified by the |thread| ID. ++\fBESRCH\fP ++no thread could be found corresponding to that specified by the \fIthread\fP ID. + .RE + +-!pthread_setcancelstate! returns the following error code on error: ++\fBpthread_setcancelstate\fP returns the following error code on error: + .RS + .TP +-!EINVAL! +-the |state| argument is not !PTHREAD_CANCEL_ENABLE! nor +-!PTHREAD_CANCEL_DISABLE! ++\fBEINVAL\fP ++the \fIstate\fP argument is not \fBPTHREAD_CANCEL_ENABLE\fP nor ++\fBPTHREAD_CANCEL_DISABLE\fP + .RE + +-!pthread_setcanceltype! returns the following error code on error: ++\fBpthread_setcanceltype\fP returns the following error code on error: + .RS + .TP +-!EINVAL! +-the |type| argument is not !PTHREAD_CANCEL_DEFERRED! nor +-!PTHREAD_CANCEL_ASYNCHRONOUS! ++\fBEINVAL\fP ++the \fItype\fP argument is not \fBPTHREAD_CANCEL_DEFERRED\fP nor ++\fBPTHREAD_CANCEL_ASYNCHRONOUS\fP + .RE + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_exit!(3), +-!pthread_cleanup_push!(3), +-!pthread_cleanup_pop!(3). ++\fBpthread_exit\fP(3), ++\fBpthread_cleanup_push\fP(3), ++\fBpthread_cleanup_pop\fP(3). + + .SH BUGS + + POSIX specifies that a number of system calls (basically, all +-system calls that may block, such as !read!(2), !write!(2), !wait!(2), ++system calls that may block, such as \fBread\fP(2), \fBwrite\fP(2), \fBwait\fP(2), + etc.) and library functions that may call these system calls (e.g. +-!fprintf!(3)) are cancellation points. LinuxThreads is not yet ++\fBfprintf\fP(3)) are cancellation points. LinuxThreads is not yet + integrated enough with the C library to implement this, and thus none + of the C library functions is a cancellation point. + + For system calls at least, there is a workaround. Cancellation + requests are transmitted to the target thread by sending it a + signal. That signal will interrupt all blocking system calls, causing +-them to return immediately with the !EINTR! error. So, checking for +-cancellation during a !read! system call, for instance, can be ++them to return immediately with the \fBEINTR\fP error. So, checking for ++cancellation during a \fBread\fP system call, for instance, can be + achieved as follows: + + .RS +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_cleanup_push.man glibc-2.5/linuxthreads/man/pthread_cleanup_push.man +--- glibc-2.5.orig/linuxthreads/man/pthread_cleanup_push.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_cleanup_push.man 2007-02-18 19:31:21.000000000 +0100 +@@ -21,7 +21,7 @@ + .SH DESCRIPTION + + Cleanup handlers are functions that get called when a thread +-terminates, either by calling !pthread_exit!(3) or because of ++terminates, either by calling \fBpthread_exit\fP(3) or because of + cancellation. Cleanup handlers are installed and removed following a + stack-like discipline. + +@@ -32,41 +32,41 @@ + normally. The best way to avoid this is, just before locking the + mutex, to install a cleanup handler whose effect is to unlock the + mutex. Cleanup handlers can be used similarly to free blocks allocated +-with !malloc!(3) or close file descriptors on thread termination. ++with \fBmalloc\fP(3) or close file descriptors on thread termination. + +-!pthread_cleanup_push! installs the |routine| function with argument +-|arg| as a cleanup handler. From this point on to the matching +-!pthread_cleanup_pop!, the function |routine| will be called with +-arguments |arg| when the thread terminates, either through !pthread_exit!(3) ++\fBpthread_cleanup_push\fP installs the \fIroutine\fP function with argument ++\fIarg\fP as a cleanup handler. From this point on to the matching ++\fBpthread_cleanup_pop\fP, the function \fIroutine\fP will be called with ++arguments \fIarg\fP when the thread terminates, either through \fBpthread_exit\fP(3) + or by cancellation. If several cleanup handlers are active at that + point, they are called in LIFO order: the most recently installed + handler is called first. + +-!pthread_cleanup_pop! removes the most recently installed cleanup +-handler. If the |execute| argument is not 0, it also executes the +-handler, by calling the |routine| function with arguments |arg|. If +-the |execute| argument is 0, the handler is only removed but not ++\fBpthread_cleanup_pop\fP removes the most recently installed cleanup ++handler. If the \fIexecute\fP argument is not 0, it also executes the ++handler, by calling the \fIroutine\fP function with arguments \fIarg\fP. If ++the \fIexecute\fP argument is 0, the handler is only removed but not + executed. + +-Matching pairs of !pthread_cleanup_push! and !pthread_cleanup_pop! ++Matching pairs of \fBpthread_cleanup_push\fP and \fBpthread_cleanup_pop\fP + must occur in the same function, at the same level of block nesting. +-Actually, !pthread_cleanup_push! and !pthread_cleanup_pop! are macros, +-and the expansion of !pthread_cleanup_push! introduces an open brace !{! +-with the matching closing brace !}! being introduced by the expansion +-of the matching !pthread_cleanup_pop!. ++Actually, \fBpthread_cleanup_push\fP and \fBpthread_cleanup_pop\fP are macros, ++and the expansion of \fBpthread_cleanup_push\fP introduces an open brace \fB{\fP ++with the matching closing brace \fB}\fP being introduced by the expansion ++of the matching \fBpthread_cleanup_pop\fP. + +-!pthread_cleanup_push_defer_np! is a non-portable extension that +-combines !pthread_cleanup_push! and !pthread_setcanceltype!(3). +-It pushes a cleanup handler just as !pthread_cleanup_push! does, but ++\fBpthread_cleanup_push_defer_np\fP is a non-portable extension that ++combines \fBpthread_cleanup_push\fP and \fBpthread_setcanceltype\fP(3). ++It pushes a cleanup handler just as \fBpthread_cleanup_push\fP does, but + also saves the current cancellation type and sets it to deferred + cancellation. This ensures that the cleanup mechanism is effective + even if the thread was initially in asynchronous cancellation mode. + +-!pthread_cleanup_pop_restore_np! pops a cleanup handler introduced by +-!pthread_cleanup_push_defer_np!, and restores the cancellation type to +-its value at the time !pthread_cleanup_push_defer_np! was called. ++\fBpthread_cleanup_pop_restore_np\fP pops a cleanup handler introduced by ++\fBpthread_cleanup_push_defer_np\fP, and restores the cancellation type to ++its value at the time \fBpthread_cleanup_push_defer_np\fP was called. + +-!pthread_cleanup_push_defer_np! and !pthread_cleanup_pop_restore_np! ++\fBpthread_cleanup_push_defer_np\fP and \fBpthread_cleanup_pop_restore_np\fP + must occur in matching pairs, at the same level of block nesting. + + The following sequence +@@ -113,14 +113,14 @@ + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_exit!(3), +-!pthread_cancel!(3), +-!pthread_setcanceltype!(3). ++\fBpthread_exit\fP(3), ++\fBpthread_cancel\fP(3), ++\fBpthread_setcanceltype\fP(3). + + .SH EXAMPLE + +-Here is how to lock a mutex |mut| in such a way that it will be +-unlocked if the thread is canceled while |mut| is locked: ++Here is how to lock a mutex \fImut\fP in such a way that it will be ++unlocked if the thread is canceled while \fImut\fP is locked: + + .RS + .ft 3 +@@ -149,10 +149,10 @@ + .fi + + Notice that the code above is safe only in deferred cancellation mode +-(see !pthread_setcanceltype!(3)). In asynchronous cancellation mode, +-a cancellation can occur between !pthread_cleanup_push! and +-!pthread_mutex_lock!, or between !pthread_mutex_unlock! and +-!pthread_cleanup_pop!, resulting in both cases in the thread trying to ++(see \fBpthread_setcanceltype\fP(3)). In asynchronous cancellation mode, ++a cancellation can occur between \fBpthread_cleanup_push\fP and ++\fBpthread_mutex_lock\fP, or between \fBpthread_mutex_unlock\fP and ++\fBpthread_cleanup_pop\fP, resulting in both cases in the thread trying to + unlock a mutex not locked by the current thread. This is the main + reason why asynchronous cancellation is difficult to use. + +@@ -177,7 +177,7 @@ + + The code above can be rewritten in a more compact and more + efficient way, using the non-portable functions +-!pthread_cleanup_push_defer_np! and !pthread_cleanup_pop_restore_np!: ++\fBpthread_cleanup_push_defer_np\fP and \fBpthread_cleanup_pop_restore_np\fP: + + .RS + .ft 3 +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_condattr_init.man glibc-2.5/linuxthreads/man/pthread_condattr_init.man +--- glibc-2.5.orig/linuxthreads/man/pthread_condattr_init.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_condattr_init.man 2007-02-18 19:29:49.000000000 +0100 +@@ -15,25 +15,25 @@ + .SH DESCRIPTION + + Condition attributes can be specified at condition creation time, by passing a +-condition attribute object as second argument to !pthread_cond_init!(3). +-Passing !NULL! is equivalent to passing a condition attribute object with ++condition attribute object as second argument to \fBpthread_cond_init\fP(3). ++Passing \fBNULL\fP is equivalent to passing a condition attribute object with + all attributes set to their default values. + + The LinuxThreads implementation supports no attributes for + conditions. The functions on condition attributes are included only + for compliance with the POSIX standard. + +-!pthread_condattr_init! initializes the condition attribute object +-|attr| and fills it with default values for the attributes. +-!pthread_condattr_destroy! destroys a condition attribute object, ++\fBpthread_condattr_init\fP initializes the condition attribute object ++\fIattr\fP and fills it with default values for the attributes. ++\fBpthread_condattr_destroy\fP destroys a condition attribute object, + which must not be reused until it is reinitialized. Both functions do + nothing in the LinuxThreads implementation. + + .SH "RETURN VALUE" +-!pthread_condattr_init! and !pthread_condattr_destroy! always return 0. ++\fBpthread_condattr_init\fP and \fBpthread_condattr_destroy\fP always return 0. + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_cond_init!(3). ++\fBpthread_cond_init\fP(3). +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_cond_init.man glibc-2.5/linuxthreads/man/pthread_cond_init.man +--- glibc-2.5.orig/linuxthreads/man/pthread_cond_init.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_cond_init.man 2007-02-18 19:29:49.000000000 +0100 +@@ -40,31 +40,31 @@ + variable and another thread signals the condition just before the + first thread actually waits on it. + +-!pthread_cond_init! initializes the condition variable |cond|, using the +-condition attributes specified in |cond_attr|, or default attributes +-if |cond_attr| is !NULL!. The LinuxThreads implementation supports no +-attributes for conditions, hence the |cond_attr| parameter is actually ++\fBpthread_cond_init\fP initializes the condition variable \fIcond\fP, using the ++condition attributes specified in \fIcond_attr\fP, or default attributes ++if \fIcond_attr\fP is \fBNULL\fP. The LinuxThreads implementation supports no ++attributes for conditions, hence the \fIcond_attr\fP parameter is actually + ignored. + +-Variables of type !pthread_cond_t! can also be initialized +-statically, using the constant !PTHREAD_COND_INITIALIZER!. ++Variables of type \fBpthread_cond_t\fP can also be initialized ++statically, using the constant \fBPTHREAD_COND_INITIALIZER\fP. + +-!pthread_cond_signal! restarts one of the threads that are waiting on +-the condition variable |cond|. If no threads are waiting on |cond|, +-nothing happens. If several threads are waiting on |cond|, exactly one ++\fBpthread_cond_signal\fP restarts one of the threads that are waiting on ++the condition variable \fIcond\fP. If no threads are waiting on \fIcond\fP, ++nothing happens. If several threads are waiting on \fIcond\fP, exactly one + is restarted, but it is not specified which. + +-!pthread_cond_broadcast! restarts all the threads that are waiting on +-the condition variable |cond|. Nothing happens if no threads are +-waiting on |cond|. ++\fBpthread_cond_broadcast\fP restarts all the threads that are waiting on ++the condition variable \fIcond\fP. Nothing happens if no threads are ++waiting on \fIcond\fP. + +-!pthread_cond_wait! atomically unlocks the |mutex| (as per +-!pthread_unlock_mutex!) and waits for the condition variable |cond| to ++\fBpthread_cond_wait\fP atomically unlocks the \fImutex\fP (as per ++\fBpthread_unlock_mutex\fP) and waits for the condition variable \fIcond\fP to + be signaled. The thread execution is suspended and does not consume +-any CPU time until the condition variable is signaled. The |mutex| ++any CPU time until the condition variable is signaled. The \fImutex\fP + must be locked by the calling thread on entrance to +-!pthread_cond_wait!. Before returning to the calling thread, +-!pthread_cond_wait! re-acquires |mutex| (as per !pthread_lock_mutex!). ++\fBpthread_cond_wait\fP. Before returning to the calling thread, ++\fBpthread_cond_wait\fP re-acquires \fImutex\fP (as per \fBpthread_lock_mutex\fP). + + Unlocking the mutex and suspending on the condition variable is done + atomically. Thus, if all threads always acquire the mutex before +@@ -72,37 +72,37 @@ + signaled (and thus ignored) between the time a thread locks the mutex + and the time it waits on the condition variable. + +-!pthread_cond_timedwait! atomically unlocks |mutex| and waits on +-|cond|, as !pthread_cond_wait! does, but it also bounds the duration +-of the wait. If |cond| has not been signaled within the amount of time +-specified by |abstime|, the mutex |mutex| is re-acquired and +-!pthread_cond_timedwait! returns the error !ETIMEDOUT!. +-The |abstime| parameter specifies an absolute time, with the same +-origin as !time!(2) and !gettimeofday!(2): an |abstime| of 0 ++\fBpthread_cond_timedwait\fP atomically unlocks \fImutex\fP and waits on ++\fIcond\fP, as \fBpthread_cond_wait\fP does, but it also bounds the duration ++of the wait. If \fIcond\fP has not been signaled within the amount of time ++specified by \fIabstime\fP, the mutex \fImutex\fP is re-acquired and ++\fBpthread_cond_timedwait\fP returns the error \fBETIMEDOUT\fP. ++The \fIabstime\fP parameter specifies an absolute time, with the same ++origin as \fBtime\fP(2) and \fBgettimeofday\fP(2): an \fIabstime\fP of 0 + corresponds to 00:00:00 GMT, January 1, 1970. + +-!pthread_cond_destroy! destroys a condition variable, freeing the ++\fBpthread_cond_destroy\fP destroys a condition variable, freeing the + resources it might hold. No threads must be waiting on the condition +-variable on entrance to !pthread_cond_destroy!. In the LinuxThreads ++variable on entrance to \fBpthread_cond_destroy\fP. In the LinuxThreads + implementation, no resources are associated with condition variables, +-thus !pthread_cond_destroy! actually does nothing except checking that ++thus \fBpthread_cond_destroy\fP actually does nothing except checking that + the condition has no waiting threads. + + .SH CANCELLATION + +-!pthread_cond_wait! and !pthread_cond_timedwait! are cancellation ++\fBpthread_cond_wait\fP and \fBpthread_cond_timedwait\fP are cancellation + points. If a thread is cancelled while suspended in one of these + functions, the thread immediately resumes execution, then locks again +-the |mutex| argument to !pthread_cond_wait! and +-!pthread_cond_timedwait!, and finally executes the cancellation. +-Consequently, cleanup handlers are assured that |mutex| is locked when ++the \fImutex\fP argument to \fBpthread_cond_wait\fP and ++\fBpthread_cond_timedwait\fP, and finally executes the cancellation. ++Consequently, cleanup handlers are assured that \fImutex\fP is locked when + they are called. + + .SH "ASYNC-SIGNAL SAFETY" + + The condition functions are not async-signal safe, and should not be + called from a signal handler. In particular, calling +-!pthread_cond_signal! or !pthread_cond_broadcast! from a signal ++\fBpthread_cond_signal\fP or \fBpthread_cond_broadcast\fP from a signal + handler may deadlock the calling thread. + + .SH "RETURN VALUE" +@@ -112,45 +112,45 @@ + + .SH ERRORS + +-!pthread_cond_init!, !pthread_cond_signal!, !pthread_cond_broadcast!, +-and !pthread_cond_wait! never return an error code. ++\fBpthread_cond_init\fP, \fBpthread_cond_signal\fP, \fBpthread_cond_broadcast\fP, ++and \fBpthread_cond_wait\fP never return an error code. + +-The !pthread_cond_timedwait! function returns the following error codes ++The \fBpthread_cond_timedwait\fP function returns the following error codes + on error: + .RS + .TP +-!ETIMEDOUT! ++\fBETIMEDOUT\fP + the condition variable was not signaled until the timeout specified by +-|abstime| ++\fIabstime\fP + + .TP +-!EINTR! +-!pthread_cond_timedwait! was interrupted by a signal ++\fBEINTR\fP ++\fBpthread_cond_timedwait\fP was interrupted by a signal + .RE + +-The !pthread_cond_destroy! function returns the following error code ++The \fBpthread_cond_destroy\fP function returns the following error code + on error: + .RS + .TP +-!EBUSY! +-some threads are currently waiting on |cond|. ++\fBEBUSY\fP ++some threads are currently waiting on \fIcond\fP. + .RE + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_condattr_init!(3), +-!pthread_mutex_lock!(3), +-!pthread_mutex_unlock!(3), +-!gettimeofday!(2), +-!nanosleep!(2). ++\fBpthread_condattr_init\fP(3), ++\fBpthread_mutex_lock\fP(3), ++\fBpthread_mutex_unlock\fP(3), ++\fBgettimeofday\fP(2), ++\fBnanosleep\fP(2). + + .SH EXAMPLE + +-Consider two shared variables |x| and |y|, protected by the mutex |mut|, +-and a condition variable |cond| that is to be signaled whenever |x| +-becomes greater than |y|. ++Consider two shared variables \fIx\fP and \fIy\fP, protected by the mutex \fImut\fP, ++and a condition variable \fIcond\fP that is to be signaled whenever \fIx\fP ++becomes greater than \fIy\fP. + + .RS + .ft 3 +@@ -164,7 +164,7 @@ + .RE + .fi + +-Waiting until |x| is greater than |y| is performed as follows: ++Waiting until \fIx\fP is greater than \fIy\fP is performed as follows: + + .RS + .ft 3 +@@ -181,8 +181,8 @@ + .RE + .fi + +-Modifications on |x| and |y| that may cause |x| to become greater than +-|y| should signal the condition if needed: ++Modifications on \fIx\fP and \fIy\fP that may cause \fIx\fP to become greater than ++\fIy\fP should signal the condition if needed: + + .RS + .ft 3 +@@ -199,11 +199,11 @@ + + If it can be proved that at most one waiting thread needs to be waken + up (for instance, if there are only two threads communicating through +-|x| and |y|), !pthread_cond_signal! can be used as a slightly more +-efficient alternative to !pthread_cond_broadcast!. In doubt, use +-!pthread_cond_broadcast!. ++\fIx\fP and \fIy\fP), \fBpthread_cond_signal\fP can be used as a slightly more ++efficient alternative to \fBpthread_cond_broadcast\fP. In doubt, use ++\fBpthread_cond_broadcast\fP. + +-To wait for |x| to becomes greater than |y| with a timeout of 5 ++To wait for \fIx\fP to becomes greater than \fIy\fP with a timeout of 5 + seconds, do: + + .RS +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_create.man glibc-2.5/linuxthreads/man/pthread_create.man +--- glibc-2.5.orig/linuxthreads/man/pthread_create.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_create.man 2007-02-18 19:29:49.000000000 +0100 +@@ -9,38 +9,38 @@ + int pthread_create(pthread_t * thread, pthread_attr_t * attr, void * (*start_routine)(void *), void * arg); + + .SH DESCRIPTION +-!pthread_create! creates a new thread of control that executes ++\fBpthread_create\fP creates a new thread of control that executes + concurrently with the calling thread. The new thread applies the +-function |start_routine| passing it |arg| as first argument. The new +-thread terminates either explicitly, by calling !pthread_exit!(3), +-or implicitly, by returning from the |start_routine| function. The +-latter case is equivalent to calling !pthread_exit!(3) with the result +-returned by |start_routine| as exit code. ++function \fIstart_routine\fP passing it \fIarg\fP as first argument. The new ++thread terminates either explicitly, by calling \fBpthread_exit\fP(3), ++or implicitly, by returning from the \fIstart_routine\fP function. The ++latter case is equivalent to calling \fBpthread_exit\fP(3) with the result ++returned by \fIstart_routine\fP as exit code. + +-The |attr| argument specifies thread attributes to be applied to the +-new thread. See !pthread_attr_init!(3) for a complete list of thread +-attributes. The |attr| argument can also be !NULL!, in which case ++The \fIattr\fP argument specifies thread attributes to be applied to the ++new thread. See \fBpthread_attr_init\fP(3) for a complete list of thread ++attributes. The \fIattr\fP argument can also be \fBNULL\fP, in which case + default attributes are used: the created thread is joinable (not + detached) and has default (non real-time) scheduling policy. + + .SH "RETURN VALUE" + On success, the identifier of the newly created thread is stored in +-the location pointed by the |thread| argument, and a 0 is returned. On ++the location pointed by the \fIthread\fP argument, and a 0 is returned. On + error, a non-zero error code is returned. + + .SH ERRORS + .TP +-!EAGAIN! ++\fBEAGAIN\fP + not enough system resources to create a process for the new thread. + .TP +-!EAGAIN! +-more than !PTHREAD_THREADS_MAX! threads are already active. ++\fBEAGAIN\fP ++more than \fBPTHREAD_THREADS_MAX\fP threads are already active. + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_exit!(3), +-!pthread_join!(3), +-!pthread_detach!(3), +-!pthread_attr_init!(3). ++\fBpthread_exit\fP(3), ++\fBpthread_join\fP(3), ++\fBpthread_detach\fP(3), ++\fBpthread_attr_init\fP(3). +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_detach.man glibc-2.5/linuxthreads/man/pthread_detach.man +--- glibc-2.5.orig/linuxthreads/man/pthread_detach.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_detach.man 2007-02-18 19:29:49.000000000 +0100 +@@ -9,36 +9,36 @@ + int pthread_detach(pthread_t th); + + .SH DESCRIPTION +-!pthread_detach! put the thread |th| in the detached state. This +-guarantees that the memory resources consumed by |th| will be freed +-immediately when |th| terminates. However, this prevents other threads +-from synchronizing on the termination of |th| using !pthread_join!. ++\fBpthread_detach\fP put the thread \fIth\fP in the detached state. This ++guarantees that the memory resources consumed by \fIth\fP will be freed ++immediately when \fIth\fP terminates. However, this prevents other threads ++from synchronizing on the termination of \fIth\fP using \fBpthread_join\fP. + + A thread can be created initially in the detached state, using the +-!detachstate! attribute to !pthread_create!(3). In contrast, +-!pthread_detach! applies to threads created in the joinable state, and ++\fBdetachstate\fP attribute to \fBpthread_create\fP(3). In contrast, ++\fBpthread_detach\fP applies to threads created in the joinable state, and + which need to be put in the detached state later. + +-After !pthread_detach! completes, subsequent attempts to perform +-!pthread_join! on |th| will fail. If another thread is already joining +-the thread |th| at the time !pthread_detach! is called, +-!pthread_detach! does nothing and leaves |th| in the joinable state. ++After \fBpthread_detach\fP completes, subsequent attempts to perform ++\fBpthread_join\fP on \fIth\fP will fail. If another thread is already joining ++the thread \fIth\fP at the time \fBpthread_detach\fP is called, ++\fBpthread_detach\fP does nothing and leaves \fIth\fP in the joinable state. + + .SH "RETURN VALUE" + On success, 0 is returned. On error, a non-zero error code is returned. + + .SH ERRORS + .TP +-!ESRCH! +-No thread could be found corresponding to that specified by |th| ++\fBESRCH\fP ++No thread could be found corresponding to that specified by \fIth\fP + .TP +-!EINVAL! +-the thread |th| is already in the detached state ++\fBEINVAL\fP ++the thread \fIth\fP is already in the detached state + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_create!(3), +-!pthread_join!(3), +-!pthread_attr_setdetachstate!(3). +\ Pas de fin de ligne à la fin du fichier. ++\fBpthread_create\fP(3), ++\fBpthread_join\fP(3), ++\fBpthread_attr_setdetachstate\fP(3). +\ Pas de fin de ligne à la fin du fichier. +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_equal.man glibc-2.5/linuxthreads/man/pthread_equal.man +--- glibc-2.5.orig/linuxthreads/man/pthread_equal.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_equal.man 2007-02-18 19:29:49.000000000 +0100 +@@ -9,15 +9,15 @@ + int pthread_equal(pthread_t thread1, pthread_t thread2); + + .SH DESCRIPTION +-!pthread_equal! determines if two thread identifiers refer to the same ++\fBpthread_equal\fP determines if two thread identifiers refer to the same + thread. + + .SH "RETURN VALUE" +-A non-zero value is returned if |thread1| and |thread2| refer to the ++A non-zero value is returned if \fIthread1\fP and \fIthread2\fP refer to the + same thread. Otherwise, 0 is returned. + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_self!(3). ++\fBpthread_self\fP(3). +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_exit.man glibc-2.5/linuxthreads/man/pthread_exit.man +--- glibc-2.5.orig/linuxthreads/man/pthread_exit.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_exit.man 2007-02-18 19:29:49.000000000 +0100 +@@ -9,24 +9,24 @@ + void pthread_exit(void *retval); + + .SH DESCRIPTION +-!pthread_exit! terminates the execution of the calling thread. ++\fBpthread_exit\fP terminates the execution of the calling thread. + All cleanup handlers that have been set for the calling thread with +-!pthread_cleanup_push!(3) are executed in reverse order (the most ++\fBpthread_cleanup_push\fP(3) are executed in reverse order (the most + recently pushed handler is executed first). Finalization functions for +-thread-specific data are then called for all keys that have non-!NULL! ++thread-specific data are then called for all keys that have non-\fBNULL\fP + values associated with them in the calling thread (see +-!pthread_key_create!(3)). Finally, execution of the calling thread is ++\fBpthread_key_create\fP(3)). Finally, execution of the calling thread is + stopped. + +-The |retval| argument is the return value of the thread. It can be +-consulted from another thread using !pthread_join!(3). ++The \fIretval\fP argument is the return value of the thread. It can be ++consulted from another thread using \fBpthread_join\fP(3). + + .SH "RETURN VALUE" +-The !pthread_exit! function never returns. ++The \fBpthread_exit\fP function never returns. + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_create!(3), +-!pthread_join!(3). ++\fBpthread_create\fP(3), ++\fBpthread_join\fP(3). +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_join.man glibc-2.5/linuxthreads/man/pthread_join.man +--- glibc-2.5.orig/linuxthreads/man/pthread_join.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_join.man 2007-02-18 19:29:49.000000000 +0100 +@@ -9,62 +9,62 @@ + int pthread_join(pthread_t th, void **thread_return); + + .SH DESCRIPTION +-!pthread_join! suspends the execution of the calling thread until the +-thread identified by |th| terminates, either by calling !pthread_exit!(3) ++\fBpthread_join\fP suspends the execution of the calling thread until the ++thread identified by \fIth\fP terminates, either by calling \fBpthread_exit\fP(3) + or by being cancelled. + +-If |thread_return| is not !NULL!, the return value of |th| is stored +-in the location pointed to by |thread_return|. The return value of +-|th| is either the argument it gave to !pthread_exit!(3), or +-!PTHREAD_CANCELED! if |th| was cancelled. ++If \fIthread_return\fP is not \fBNULL\fP, the return value of \fIth\fP is stored ++in the location pointed to by \fIthread_return\fP. The return value of ++\fIth\fP is either the argument it gave to \fBpthread_exit\fP(3), or ++\fBPTHREAD_CANCELED\fP if \fIth\fP was cancelled. + +-The joined thread !th! must be in the joinable state: it must not have +-been detached using !pthread_detach!(3) or the +-!PTHREAD_CREATE_DETACHED! attribute to !pthread_create!(3). ++The joined thread \fBth\fP must be in the joinable state: it must not have ++been detached using \fBpthread_detach\fP(3) or the ++\fBPTHREAD_CREATE_DETACHED\fP attribute to \fBpthread_create\fP(3). + + When a joinable thread terminates, its memory resources (thread + descriptor and stack) are not deallocated until another thread +-performs !pthread_join! on it. Therefore, !pthread_join! must be ++performs \fBpthread_join\fP on it. Therefore, \fBpthread_join\fP must be + called once for each joinable thread created to avoid memory leaks. + + At most one thread can wait for the termination of a given +-thread. Calling !pthread_join! on a thread |th| on which another ++thread. Calling \fBpthread_join\fP on a thread \fIth\fP on which another + thread is already waiting for termination returns an error. + + .SH CANCELLATION + +-!pthread_join! is a cancellation point. If a thread is canceled while +-suspended in !pthread_join!, the thread execution resumes immediately +-and the cancellation is executed without waiting for the |th| thread +-to terminate. If cancellation occurs during !pthread_join!, the |th| ++\fBpthread_join\fP is a cancellation point. If a thread is canceled while ++suspended in \fBpthread_join\fP, the thread execution resumes immediately ++and the cancellation is executed without waiting for the \fIth\fP thread ++to terminate. If cancellation occurs during \fBpthread_join\fP, the \fIth\fP + thread remains not joined. + + .SH "RETURN VALUE" +-On success, the return value of |th| is stored in the location pointed +-to by |thread_return|, and 0 is returned. On error, a non-zero error ++On success, the return value of \fIth\fP is stored in the location pointed ++to by \fIthread_return\fP, and 0 is returned. On error, a non-zero error + code is returned. + + .SH ERRORS + .TP +-!ESRCH! +-No thread could be found corresponding to that specified by |th|. ++\fBESRCH\fP ++No thread could be found corresponding to that specified by \fIth\fP. + .TP +-!EINVAL! +-The |th| thread has been detached. ++\fBEINVAL\fP ++The \fIth\fP thread has been detached. + .TP +-!EINVAL! +-Another thread is already waiting on termination of |th|. ++\fBEINVAL\fP ++Another thread is already waiting on termination of \fIth\fP. + .TP +-!EDEADLK! +-The |th| argument refers to the calling thread. ++\fBEDEADLK\fP ++The \fIth\fP argument refers to the calling thread. + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_exit!(3), +-!pthread_detach!(3), +-!pthread_create!(3), +-!pthread_attr_setdetachstate!(3), +-!pthread_cleanup_push!(3), +-!pthread_key_create!(3). ++\fBpthread_exit\fP(3), ++\fBpthread_detach\fP(3), ++\fBpthread_create\fP(3), ++\fBpthread_attr_setdetachstate\fP(3), ++\fBpthread_cleanup_push\fP(3), ++\fBpthread_key_create\fP(3). +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_key_create.man glibc-2.5/linuxthreads/man/pthread_key_create.man +--- glibc-2.5.orig/linuxthreads/man/pthread_key_create.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_key_create.man 2007-02-18 19:31:39.000000000 +0100 +@@ -23,81 +23,81 @@ + + Each thread possesses a private memory block, the thread-specific data + area, or TSD area for short. This area is indexed by TSD keys. The TSD +-area associates values of type !void *! to TSD keys. TSD keys are ++area associates values of type \fBvoid *\fP to TSD keys. TSD keys are + common to all threads, but the value associated with a given TSD key + can be different in each thread. + +-For concreteness, the TSD areas can be viewed as arrays of !void *! ++For concreteness, the TSD areas can be viewed as arrays of \fBvoid *\fP + pointers, TSD keys as integer indices into these arrays, and the value + of a TSD key as the value of the corresponding array element in the + calling thread. + +-When a thread is created, its TSD area initially associates !NULL! ++When a thread is created, its TSD area initially associates \fBNULL\fP + with all keys. + +-!pthread_key_create! allocates a new TSD key. The key is stored in the +-location pointed to by |key|. There is a limit of !PTHREAD_KEYS_MAX! ++\fBpthread_key_create\fP allocates a new TSD key. The key is stored in the ++location pointed to by \fIkey\fP. There is a limit of \fBPTHREAD_KEYS_MAX\fP + on the number of keys allocated at a given time. The value initially +-associated with the returned key is !NULL! in all currently executing ++associated with the returned key is \fBNULL\fP in all currently executing + threads. + +-The |destr_function| argument, if not !NULL!, specifies a destructor ++The \fIdestr_function\fP argument, if not \fBNULL\fP, specifies a destructor + function associated with the key. When a thread terminates via +-!pthread_exit! or by cancellation, |destr_function| is called with ++\fBpthread_exit\fP or by cancellation, \fIdestr_function\fP is called with + arguments the value associated with the key in that thread. The +-|destr_function| is not called if that value is !NULL!. The order in ++\fIdestr_function\fP is not called if that value is \fBNULL\fP. The order in + which destructor functions are called at thread termination time is + unspecified. + +-Before the destructor function is called, the !NULL! value is ++Before the destructor function is called, the \fBNULL\fP value is + associated with the key in the current thread. A destructor function +-might, however, re-associate non-!NULL! values to that key or some ++might, however, re-associate non-\fBNULL\fP values to that key or some + other key. To deal with this, if after all the destructors have been +-called for all non-!NULL! values, there are still some non-!NULL! ++called for all non-\fBNULL\fP values, there are still some non-\fBNULL\fP + values with associated destructors, then the process is repeated. The + LinuxThreads implementation stops the process after +-!PTHREAD_DESTRUCTOR_ITERATIONS! iterations, even if some non-!NULL! ++\fBPTHREAD_DESTRUCTOR_ITERATIONS\fP iterations, even if some non-\fBNULL\fP + values with associated descriptors remain. Other implementations may + loop indefinitely. + +-!pthread_key_delete! deallocates a TSD key. It does not check whether +-non-!NULL! values are associated with that key in the currently ++\fBpthread_key_delete\fP deallocates a TSD key. It does not check whether ++non-\fBNULL\fP values are associated with that key in the currently + executing threads, nor call the destructor function associated with + the key. + +-!pthread_setspecific! changes the value associated with |key| in the +-calling thread, storing the given |pointer| instead. ++\fBpthread_setspecific\fP changes the value associated with \fIkey\fP in the ++calling thread, storing the given \fIpointer\fP instead. + +-!pthread_getspecific! returns the value currently associated with +-|key| in the calling thread. ++\fBpthread_getspecific\fP returns the value currently associated with ++\fIkey\fP in the calling thread. + + .SH "RETURN VALUE" + +-!pthread_key_create!, !pthread_key_delete!, and !pthread_setspecific! ++\fBpthread_key_create\fP, \fBpthread_key_delete\fP, and \fBpthread_setspecific\fP + return 0 on success and a non-zero error code on failure. If +-successful, !pthread_key_create! stores the newly allocated key in the +-location pointed to by its |key| argument. ++successful, \fBpthread_key_create\fP stores the newly allocated key in the ++location pointed to by its \fIkey\fP argument. + +-!pthread_getspecific! returns the value associated with |key| on +-success, and !NULL! on error. ++\fBpthread_getspecific\fP returns the value associated with \fIkey\fP on ++success, and \fBNULL\fP on error. + + .SH ERRORS +-!pthread_key_create! returns the following error code on error: ++\fBpthread_key_create\fP returns the following error code on error: + .RS + .TP +-!EAGAIN! +-!PTHREAD_KEYS_MAX! keys are already allocated ++\fBEAGAIN\fP ++\fBPTHREAD_KEYS_MAX\fP keys are already allocated + .RE + +-!pthread_key_delete! and !pthread_setspecific! return the following ++\fBpthread_key_delete\fP and \fBpthread_setspecific\fP return the following + error code on error: + .RS + .TP +-!EINVAL! +-|key| is not a valid, allocated TSD key ++\fBEINVAL\fP ++\fIkey\fP is not a valid, allocated TSD key + .RE + +-!pthread_getspecific! returns !NULL! if |key| is not a valid, ++\fBpthread_getspecific\fP returns \fBNULL\fP if \fIkey\fP is not a valid, + allocated TSD key. + + .SH AUTHOR +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_kill_other_threads_np.man glibc-2.5/linuxthreads/man/pthread_kill_other_threads_np.man +--- glibc-2.5.orig/linuxthreads/man/pthread_kill_other_threads_np.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_kill_other_threads_np.man 2007-02-18 19:32:04.000000000 +0100 +@@ -9,14 +9,14 @@ + void pthread_kill_other_threads_np(void); + + .SH DESCRIPTION +-!pthread_kill_other_threads_np! is a non-portable LinuxThreads extension. ++\fBpthread_kill_other_threads_np\fP is a non-portable LinuxThreads extension. + It causes all threads in the program to terminate immediately, except + the calling thread which proceeds normally. It is intended to be +-called just before a thread calls one of the !exec! functions, +-e.g. !execve!(2). ++called just before a thread calls one of the \fBexec\fP functions, ++e.g. \fBexecve\fP(2). + + Termination of the other threads is not performed through +-!pthread_cancel!(3) and completely bypasses the cancellation ++\fBpthread_cancel\fP(3) and completely bypasses the cancellation + mechanism. Hence, the current settings for cancellation state and + cancellation type are ignored, and the cleanup handlers are not + executed in the terminated threads. +@@ -25,16 +25,16 @@ + Xavier Leroy + + .SH "SEE ALSO" +-!execve!(2), +-!pthread_setcancelstate!(3), +-!pthread_setcanceltype!(3), +-!pthread_cancel!(3). ++\fBexecve\fP(2), ++\fBpthread_setcancelstate\fP(3), ++\fBpthread_setcanceltype\fP(3), ++\fBpthread_cancel\fP(3). + + .SH BUGS + +-According to POSIX 1003.1c, a successful !exec*! in one of the threads ++According to POSIX 1003.1c, a successful \fBexec*\fP in one of the threads + should terminate automatically all other threads in the program. + This behavior is not yet implemented in LinuxThreads. +-Calling !pthread_kill_other_threads_np! before !exec*! achieves much +-of the same behavior, except that if !exec*! ultimately fails, then ++Calling \fBpthread_kill_other_threads_np\fP before \fBexec*\fP achieves much ++of the same behavior, except that if \fBexec*\fP ultimately fails, then + all other threads are already killed. +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_mutexattr_init.man glibc-2.5/linuxthreads/man/pthread_mutexattr_init.man +--- glibc-2.5.orig/linuxthreads/man/pthread_mutexattr_init.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_mutexattr_init.man 2007-02-18 19:29:49.000000000 +0100 +@@ -21,64 +21,64 @@ + .SH DESCRIPTION + + Mutex attributes can be specified at mutex creation time, by passing a +-mutex attribute object as second argument to !pthread_mutex_init!(3). +-Passing !NULL! is equivalent to passing a mutex attribute object with ++mutex attribute object as second argument to \fBpthread_mutex_init\fP(3). ++Passing \fBNULL\fP is equivalent to passing a mutex attribute object with + all attributes set to their default values. + +-!pthread_mutexattr_init! initializes the mutex attribute object |attr| ++\fBpthread_mutexattr_init\fP initializes the mutex attribute object \fIattr\fP + and fills it with default values for the attributes. + +-!pthread_mutexattr_destroy! destroys a mutex attribute object, which +-must not be reused until it is reinitialized. !pthread_mutexattr_destroy! ++\fBpthread_mutexattr_destroy\fP destroys a mutex attribute object, which ++must not be reused until it is reinitialized. \fBpthread_mutexattr_destroy\fP + does nothing in the LinuxThreads implementation. + + LinuxThreads supports only one mutex attribute: the mutex kind, which +-is either !PTHREAD_MUTEX_FAST_NP! for ``fast'' mutexes, +-!PTHREAD_MUTEX_RECURSIVE_NP! for ``recursive'' mutexes, +-or !PTHREAD_MUTEX_ERRORCHECK_NP! for ``error checking'' mutexes. +-As the !NP! suffix indicates, this is a non-portable extension to the ++is either \fBPTHREAD_MUTEX_FAST_NP\fP for ``fast'' mutexes, ++\fBPTHREAD_MUTEX_RECURSIVE_NP\fP for ``recursive'' mutexes, ++or \fBPTHREAD_MUTEX_ERRORCHECK_NP\fP for ``error checking'' mutexes. ++As the \fBNP\fP suffix indicates, this is a non-portable extension to the + POSIX standard and should not be employed in portable programs. + + The mutex kind determines what happens if a thread attempts to lock a +-mutex it already owns with !pthread_mutex_lock!(3). If the mutex is of +-the ``fast'' kind, !pthread_mutex_lock!(3) simply suspends the calling ++mutex it already owns with \fBpthread_mutex_lock\fP(3). If the mutex is of ++the ``fast'' kind, \fBpthread_mutex_lock\fP(3) simply suspends the calling + thread forever. If the mutex is of the ``error checking'' kind, +-!pthread_mutex_lock!(3) returns immediately with the error code +-!EDEADLK!. If the mutex is of the ``recursive'' kind, the call to +-!pthread_mutex_lock!(3) returns immediately with a success return ++\fBpthread_mutex_lock\fP(3) returns immediately with the error code ++\fBEDEADLK\fP. If the mutex is of the ``recursive'' kind, the call to ++\fBpthread_mutex_lock\fP(3) returns immediately with a success return + code. The number of times the thread owning the mutex has locked it is + recorded in the mutex. The owning thread must call +-!pthread_mutex_unlock!(3) the same number of times before the mutex ++\fBpthread_mutex_unlock\fP(3) the same number of times before the mutex + returns to the unlocked state. + +-The default mutex kind is ``fast'', that is, !PTHREAD_MUTEX_FAST_NP!. ++The default mutex kind is ``fast'', that is, \fBPTHREAD_MUTEX_FAST_NP\fP. + +-!pthread_mutexattr_settype! sets the mutex kind attribute in |attr| +-to the value specified by |kind|. ++\fBpthread_mutexattr_settype\fP sets the mutex kind attribute in \fIattr\fP ++to the value specified by \fIkind\fP. + +-!pthread_mutexattr_gettype! retrieves the current value of the +-mutex kind attribute in |attr| and stores it in the location pointed +-to by |kind|. ++\fBpthread_mutexattr_gettype\fP retrieves the current value of the ++mutex kind attribute in \fIattr\fP and stores it in the location pointed ++to by \fIkind\fP. + + .SH "RETURN VALUE" +-!pthread_mutexattr_init!, !pthread_mutexattr_destroy! and +-!pthread_mutexattr_gettype! always return 0. ++\fBpthread_mutexattr_init\fP, \fBpthread_mutexattr_destroy\fP and ++\fBpthread_mutexattr_gettype\fP always return 0. + +-!pthread_mutexattr_settype! returns 0 on success and a non-zero ++\fBpthread_mutexattr_settype\fP returns 0 on success and a non-zero + error code on error. + + .SH ERRORS + +-On error, !pthread_mutexattr_settype! returns the following error code: ++On error, \fBpthread_mutexattr_settype\fP returns the following error code: + .TP +-!EINVAL! +-|kind| is neither !PTHREAD_MUTEX_FAST_NP! nor !PTHREAD_MUTEX_RECURSIVE_NP! +-nor !PTHREAD_MUTEX_ERRORCHECK_NP! ++\fBEINVAL\fP ++\fIkind\fP is neither \fBPTHREAD_MUTEX_FAST_NP\fP nor \fBPTHREAD_MUTEX_RECURSIVE_NP\fP ++nor \fBPTHREAD_MUTEX_ERRORCHECK_NP\fP + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_mutex_init!(3), +-!pthread_mutex_lock!(3), +-!pthread_mutex_unlock!(3). ++\fBpthread_mutex_init\fP(3), ++\fBpthread_mutex_lock\fP(3), ++\fBpthread_mutex_unlock\fP(3). +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_mutexattr_setkind_np.man glibc-2.5/linuxthreads/man/pthread_mutexattr_setkind_np.man +--- glibc-2.5.orig/linuxthreads/man/pthread_mutexattr_setkind_np.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_mutexattr_setkind_np.man 2007-02-18 19:29:49.000000000 +0100 +@@ -14,26 +14,26 @@ + + .SH DESCRIPTION + +-These functions are deprecated, use !pthread_mutexattr_settype!(3) +-and !pthread_mutexattr_gettype!(3) instead. ++These functions are deprecated, use \fBpthread_mutexattr_settype\fP(3) ++and \fBpthread_mutexattr_gettype\fP(3) instead. + + .SH "RETURN VALUE" +-!pthread_mutexattr_getkind_np! always returns 0. ++\fBpthread_mutexattr_getkind_np\fP always returns 0. + +-!pthread_mutexattr_setkind_np! returns 0 on success and a non-zero ++\fBpthread_mutexattr_setkind_np\fP returns 0 on success and a non-zero + error code on error. + + .SH ERRORS + +-On error, !pthread_mutexattr_setkind_np! returns the following error code: ++On error, \fBpthread_mutexattr_setkind_np\fP returns the following error code: + .TP +-!EINVAL! +-|kind| is neither !PTHREAD_MUTEX_FAST_NP! nor !PTHREAD_MUTEX_RECURSIVE_NP! +-nor !PTHREAD_MUTEX_ERRORCHECK_NP! ++\fBEINVAL\fP ++\fIkind\fP is neither \fBPTHREAD_MUTEX_FAST_NP\fP nor \fBPTHREAD_MUTEX_RECURSIVE_NP\fP ++nor \fBPTHREAD_MUTEX_ERRORCHECK_NP\fP + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_mutexattr_settype!(3), +-!pthread_mutexattr_gettype!(3). ++\fBpthread_mutexattr_settype\fP(3), ++\fBpthread_mutexattr_gettype\fP(3). +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_mutex_init.man glibc-2.5/linuxthreads/man/pthread_mutex_init.man +--- glibc-2.5.orig/linuxthreads/man/pthread_mutex_init.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_mutex_init.man 2007-02-18 19:29:49.000000000 +0100 +@@ -38,75 +38,75 @@ + that is already locked by another thread is suspended until the owning + thread unlocks the mutex first. + +-!pthread_mutex_init! initializes the mutex object pointed to by +-|mutex| according to the mutex attributes specified in |mutexattr|. +-If |mutexattr| is !NULL!, default attributes are used instead. ++\fBpthread_mutex_init\fP initializes the mutex object pointed to by ++\fImutex\fP according to the mutex attributes specified in \fImutexattr\fP. ++If \fImutexattr\fP is \fBNULL\fP, default attributes are used instead. + + The LinuxThreads implementation supports only one mutex attributes, + the |mutex kind|, which is either ``fast'', ``recursive'', or + ``error checking''. The kind of a mutex determines whether + it can be locked again by a thread that already owns it. +-The default kind is ``fast''. See !pthread_mutexattr_init!(3) for more ++The default kind is ``fast''. See \fBpthread_mutexattr_init\fP(3) for more + information on mutex attributes. + +-Variables of type !pthread_mutex_t! can also be initialized +-statically, using the constants !PTHREAD_MUTEX_INITIALIZER! (for fast +-mutexes), !PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP! (for recursive +-mutexes), and !PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP! (for error checking ++Variables of type \fBpthread_mutex_t\fP can also be initialized ++statically, using the constants \fBPTHREAD_MUTEX_INITIALIZER\fP (for fast ++mutexes), \fBPTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP\fP (for recursive ++mutexes), and \fBPTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP\fP (for error checking + mutexes). + +-!pthread_mutex_lock! locks the given mutex. If the mutex is currently ++\fBpthread_mutex_lock\fP locks the given mutex. If the mutex is currently + unlocked, it becomes locked and owned by the calling thread, and +-!pthread_mutex_lock! returns immediately. If the mutex is already +-locked by another thread, !pthread_mutex_lock! suspends the calling ++\fBpthread_mutex_lock\fP returns immediately. If the mutex is already ++locked by another thread, \fBpthread_mutex_lock\fP suspends the calling + thread until the mutex is unlocked. + + If the mutex is already locked by the calling thread, the behavior of +-!pthread_mutex_lock! depends on the kind of the mutex. If the mutex is ++\fBpthread_mutex_lock\fP depends on the kind of the mutex. If the mutex is + of the ``fast'' kind, the calling thread is suspended until the mutex + is unlocked, thus effectively causing the calling thread to + deadlock. If the mutex is of the ``error checking'' kind, +-!pthread_mutex_lock! returns immediately with the error code !EDEADLK!. +-If the mutex is of the ``recursive'' kind, !pthread_mutex_lock! ++\fBpthread_mutex_lock\fP returns immediately with the error code \fBEDEADLK\fP. ++If the mutex is of the ``recursive'' kind, \fBpthread_mutex_lock\fP + succeeds and returns immediately, recording the number of times the + calling thread has locked the mutex. An equal number of +-!pthread_mutex_unlock! operations must be performed before the mutex ++\fBpthread_mutex_unlock\fP operations must be performed before the mutex + returns to the unlocked state. + +-!pthread_mutex_trylock! behaves identically to !pthread_mutex_lock!, ++\fBpthread_mutex_trylock\fP behaves identically to \fBpthread_mutex_lock\fP, + except that it does not block the calling thread if the mutex is + already locked by another thread (or by the calling thread in the case +-of a ``fast'' mutex). Instead, !pthread_mutex_trylock! returns +-immediately with the error code !EBUSY!. ++of a ``fast'' mutex). Instead, \fBpthread_mutex_trylock\fP returns ++immediately with the error code \fBEBUSY\fP. + +-!pthread_mutex_unlock! unlocks the given mutex. The mutex is assumed ++\fBpthread_mutex_unlock\fP unlocks the given mutex. The mutex is assumed + to be locked and owned by the calling thread on entrance to +-!pthread_mutex_unlock!. If the mutex is of the ``fast'' kind, +-!pthread_mutex_unlock! always returns it to the unlocked state. If it ++\fBpthread_mutex_unlock\fP. If the mutex is of the ``fast'' kind, ++\fBpthread_mutex_unlock\fP always returns it to the unlocked state. If it + is of the ``recursive'' kind, it decrements the locking count of the +-mutex (number of !pthread_mutex_lock! operations performed on it by ++mutex (number of \fBpthread_mutex_lock\fP operations performed on it by + the calling thread), and only when this count reaches zero is the + mutex actually unlocked. + +-On ``error checking'' mutexes, !pthread_mutex_unlock! actually checks ++On ``error checking'' mutexes, \fBpthread_mutex_unlock\fP actually checks + at run-time that the mutex is locked on entrance, and that it was +-locked by the same thread that is now calling !pthread_mutex_unlock!. ++locked by the same thread that is now calling \fBpthread_mutex_unlock\fP. + If these conditions are not met, an error code is returned and the + mutex remains unchanged. ``Fast'' and ``recursive'' mutexes perform + no such checks, thus allowing a locked mutex to be unlocked by a + thread other than its owner. This is non-portable behavior and must + not be relied upon. + +-!pthread_mutex_destroy! destroys a mutex object, freeing the resources ++\fBpthread_mutex_destroy\fP destroys a mutex object, freeing the resources + it might hold. The mutex must be unlocked on entrance. In the + LinuxThreads implementation, no resources are associated with mutex +-objects, thus !pthread_mutex_destroy! actually does nothing except ++objects, thus \fBpthread_mutex_destroy\fP actually does nothing except + checking that the mutex is unlocked. + + .SH CANCELLATION + + None of the mutex functions is a cancellation point, not even +-!pthread_mutex_lock!, in spite of the fact that it can suspend a ++\fBpthread_mutex_lock\fP, in spite of the fact that it can suspend a + thread for arbitrary durations. This way, the status of mutexes at + cancellation points is predictable, allowing cancellation handlers to + unlock precisely those mutexes that need to be unlocked before the +@@ -117,58 +117,58 @@ + + The mutex functions are not async-signal safe. What this means is that + they should not be called from a signal handler. In particular, +-calling !pthread_mutex_lock! or !pthread_mutex_unlock! from a signal ++calling \fBpthread_mutex_lock\fP or \fBpthread_mutex_unlock\fP from a signal + handler may deadlock the calling thread. + + .SH "RETURN VALUE" + +-!pthread_mutex_init! always returns 0. The other mutex functions ++\fBpthread_mutex_init\fP always returns 0. The other mutex functions + return 0 on success and a non-zero error code on error. + + .SH ERRORS + +-The !pthread_mutex_lock! function returns the following error code ++The \fBpthread_mutex_lock\fP function returns the following error code + on error: + .RS + .TP +-!EINVAL! ++\fBEINVAL\fP + the mutex has not been properly initialized. + + .TP +-!EDEADLK! ++\fBEDEADLK\fP + the mutex is already locked by the calling thread + (``error checking'' mutexes only). + .RE + +-The !pthread_mutex_trylock! function returns the following error codes ++The \fBpthread_mutex_trylock\fP function returns the following error codes + on error: + .RS + .TP +-!EBUSY! ++\fBEBUSY\fP + the mutex could not be acquired because it was currently locked. + + .TP +-!EINVAL! ++\fBEINVAL\fP + the mutex has not been properly initialized. + .RE + +-The !pthread_mutex_unlock! function returns the following error code ++The \fBpthread_mutex_unlock\fP function returns the following error code + on error: + .RS + .TP +-!EINVAL! ++\fBEINVAL\fP + the mutex has not been properly initialized. + + .TP +-!EPERM! ++\fBEPERM\fP + the calling thread does not own the mutex (``error checking'' mutexes only). + .RE + +-The !pthread_mutex_destroy! function returns the following error code ++The \fBpthread_mutex_destroy\fP function returns the following error code + on error: + .RS + .TP +-!EBUSY! ++\fBEBUSY\fP + the mutex is currently locked. + .RE + +@@ -176,13 +176,13 @@ + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_mutexattr_init!(3), +-!pthread_mutexattr_setkind_np!(3), +-!pthread_cancel!(3). ++\fBpthread_mutexattr_init\fP(3), ++\fBpthread_mutexattr_setkind_np\fP(3), ++\fBpthread_cancel\fP(3). + + .SH EXAMPLE + +-A shared global variable |x| can be protected by a mutex as follows: ++A shared global variable \fIx\fP can be protected by a mutex as follows: + + .RS + .ft 3 +@@ -195,8 +195,8 @@ + .RE + .fi + +-All accesses and modifications to |x| should be bracketed by calls to +-!pthread_mutex_lock! and !pthread_mutex_unlock! as follows: ++All accesses and modifications to \fIx\fP should be bracketed by calls to ++\fBpthread_mutex_lock\fP and \fBpthread_mutex_unlock\fP as follows: + + .RS + .ft 3 +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_once.man glibc-2.5/linuxthreads/man/pthread_once.man +--- glibc-2.5.orig/linuxthreads/man/pthread_once.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_once.man 2007-02-18 19:29:49.000000000 +0100 +@@ -12,19 +12,19 @@ + + .SH DESCRIPTION + +-The purpose of !pthread_once! is to ensure that a piece of +-initialization code is executed at most once. The |once_control| ++The purpose of \fBpthread_once\fP is to ensure that a piece of ++initialization code is executed at most once. The \fIonce_control\fP + argument points to a static or extern variable statically initialized +-to !PTHREAD_ONCE_INIT!. ++to \fBPTHREAD_ONCE_INIT\fP. + +-The first time !pthread_once! is called with a given |once_control| +-argument, it calls |init_routine| with no argument and changes the +-value of the |once_control| variable to record that initialization has +-been performed. Subsequent calls to !pthread_once! with the same +-!once_control! argument do nothing. ++The first time \fBpthread_once\fP is called with a given \fIonce_control\fP ++argument, it calls \fIinit_routine\fP with no argument and changes the ++value of the \fIonce_control\fP variable to record that initialization has ++been performed. Subsequent calls to \fBpthread_once\fP with the same ++\fBonce_control\fP argument do nothing. + + .SH "RETURN VALUE" +-!pthread_once! always returns 0. ++\fBpthread_once\fP always returns 0. + + .SH ERRORS + None. +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_self.man glibc-2.5/linuxthreads/man/pthread_self.man +--- glibc-2.5.orig/linuxthreads/man/pthread_self.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_self.man 2007-02-18 19:29:49.000000000 +0100 +@@ -9,15 +9,15 @@ + pthread_t pthread_self(void); + + .SH DESCRIPTION +-!pthread_self! return the thread identifier for the calling thread. ++\fBpthread_self\fP return the thread identifier for the calling thread. + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_equal!(3), +-!pthread_join!(3), +-!pthread_detach!(3), +-!pthread_setschedparam!(3), +-!pthread_getschedparam!(3). ++\fBpthread_equal\fP(3), ++\fBpthread_join\fP(3), ++\fBpthread_detach\fP(3), ++\fBpthread_setschedparam\fP(3), ++\fBpthread_getschedparam\fP(3). + +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_setschedparam.man glibc-2.5/linuxthreads/man/pthread_setschedparam.man +--- glibc-2.5.orig/linuxthreads/man/pthread_setschedparam.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_setschedparam.man 2007-02-18 19:29:49.000000000 +0100 +@@ -14,66 +14,66 @@ + + .SH DESCRIPTION + +-!pthread_setschedparam! sets the scheduling parameters for the thread +-|target_thread| as indicated by |policy| and |param|. |policy| can be +-either !SCHED_OTHER! (regular, non-realtime scheduling), !SCHED_RR! +-(realtime, round-robin) or !SCHED_FIFO! (realtime, first-in +-first-out). |param| specifies the scheduling priority for the two +-realtime policies. See !sched_setpolicy!(2) for more information on ++\fBpthread_setschedparam\fP sets the scheduling parameters for the thread ++\fItarget_thread\fP as indicated by \fIpolicy\fP and \fIparam\fP. \fIpolicy\fP can be ++either \fBSCHED_OTHER\fP (regular, non-realtime scheduling), \fBSCHED_RR\fP ++(realtime, round-robin) or \fBSCHED_FIFO\fP (realtime, first-in ++first-out). \fIparam\fP specifies the scheduling priority for the two ++realtime policies. See \fBsched_setpolicy\fP(2) for more information on + scheduling policies. + +-The realtime scheduling policies !SCHED_RR! and !SCHED_FIFO! are ++The realtime scheduling policies \fBSCHED_RR\fP and \fBSCHED_FIFO\fP are + available only to processes with superuser privileges. + +-!pthread_getschedparam! retrieves the scheduling policy and scheduling +-parameters for the thread |target_thread| and store them in the +-locations pointed to by |policy| and |param|, respectively. ++\fBpthread_getschedparam\fP retrieves the scheduling policy and scheduling ++parameters for the thread \fItarget_thread\fP and store them in the ++locations pointed to by \fIpolicy\fP and \fIparam\fP, respectively. + + .SH "RETURN VALUE" +-!pthread_setschedparam! and !pthread_getschedparam! return 0 on ++\fBpthread_setschedparam\fP and \fBpthread_getschedparam\fP return 0 on + success and a non-zero error code on error. + + .SH ERRORS +-On error, !pthread_setschedparam! returns the following error codes: ++On error, \fBpthread_setschedparam\fP returns the following error codes: + .RS + .TP +-!EINVAL! +-|policy| is not one of !SCHED_OTHER!, !SCHED_RR!, !SCHED_FIFO! ++\fBEINVAL\fP ++\fIpolicy\fP is not one of \fBSCHED_OTHER\fP, \fBSCHED_RR\fP, \fBSCHED_FIFO\fP + + .TP +-!EINVAL! +-the priority value specified by |param| is not valid for the specified policy ++\fBEINVAL\fP ++the priority value specified by \fIparam\fP is not valid for the specified policy + + .TP +-!EPERM! ++\fBEPERM\fP + the calling process does not have superuser permissions + + .TP +-!ESRCH! +-the |target_thread| is invalid or has already terminated ++\fBESRCH\fP ++the \fItarget_thread\fP is invalid or has already terminated + + .TP +-!EFAULT! +-|param| points outside the process memory space ++\fBEFAULT\fP ++\fIparam\fP points outside the process memory space + .RE + +-On error, !pthread_getschedparam! returns the following error codes: ++On error, \fBpthread_getschedparam\fP returns the following error codes: + .RS + .TP +-!ESRCH! +-the |target_thread| is invalid or has already terminated ++\fBESRCH\fP ++the \fItarget_thread\fP is invalid or has already terminated + + .TP +-!EFAULT! +-|policy| or |param| point outside the process memory space ++\fBEFAULT\fP ++\fIpolicy\fP or \fIparam\fP point outside the process memory space + .RE + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!sched_setscheduler!(2), +-!sched_getscheduler!(2), +-!sched_getparam!(2), +-!pthread_attr_setschedpolicy!(3), +-!pthread_attr_setschedparam!(3). ++\fBsched_setscheduler\fP(2), ++\fBsched_getscheduler\fP(2), ++\fBsched_getparam\fP(2), ++\fBpthread_attr_setschedpolicy\fP(3), ++\fBpthread_attr_setschedparam\fP(3). +diff -Nurd glibc-2.5.orig/linuxthreads/man/pthread_sigmask.man glibc-2.5/linuxthreads/man/pthread_sigmask.man +--- glibc-2.5.orig/linuxthreads/man/pthread_sigmask.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/pthread_sigmask.man 2007-02-18 19:29:49.000000000 +0100 +@@ -19,36 +19,36 @@ + + .SH DESCRIPTION + +-!pthread_sigmask! changes the signal mask for the calling thread as +-described by the |how| and |newmask| arguments. If |oldmask| is not +-!NULL!, the previous signal mask is stored in the location pointed to +-by |oldmask|. ++\fBpthread_sigmask\fP changes the signal mask for the calling thread as ++described by the \fIhow\fP and \fInewmask\fP arguments. If \fIoldmask\fP is not ++\fBNULL\fP, the previous signal mask is stored in the location pointed to ++by \fIoldmask\fP. + +-The meaning of the |how| and |newmask| arguments is the same as for +-!sigprocmask!(2). If |how| is !SIG_SETMASK!, the signal mask is set to +-|newmask|. If |how| is !SIG_BLOCK!, the signals specified to |newmask| +-are added to the current signal mask. If |how| is !SIG_UNBLOCK!, the +-signals specified to |newmask| are removed from the current signal ++The meaning of the \fIhow\fP and \fInewmask\fP arguments is the same as for ++\fBsigprocmask\fP(2). If \fIhow\fP is \fBSIG_SETMASK\fP, the signal mask is set to ++\fInewmask\fP. If \fIhow\fP is \fBSIG_BLOCK\fP, the signals specified to \fInewmask\fP ++are added to the current signal mask. If \fIhow\fP is \fBSIG_UNBLOCK\fP, the ++signals specified to \fInewmask\fP are removed from the current signal + mask. + + Recall that signal masks are set on a per-thread basis, but signal +-actions and signal handlers, as set with !sigaction!(2), are shared ++actions and signal handlers, as set with \fBsigaction\fP(2), are shared + between all threads. + +-!pthread_kill! send signal number |signo| to the thread +-|thread|. The signal is delivered and handled as described in +-!kill!(2). ++\fBpthread_kill\fP send signal number \fIsigno\fP to the thread ++\fIthread\fP. The signal is delivered and handled as described in ++\fBkill\fP(2). + +-!sigwait! suspends the calling thread until one of the signals +-in |set| is delivered to the calling thread. It then stores the number +-of the signal received in the location pointed to by |sig| and +-returns. The signals in |set| must be blocked and not ignored on +-entrance to !sigwait!. If the delivered signal has a signal handler +-function attached, that function is |not| called. ++\fBsigwait\fP suspends the calling thread until one of the signals ++in \fIset\fP is delivered to the calling thread. It then stores the number ++of the signal received in the location pointed to by \fIsig\fP and ++returns. The signals in \fIset\fP must be blocked and not ignored on ++entrance to \fBsigwait\fP. If the delivered signal has a signal handler ++function attached, that function is \fInot\fP called. + + .SH CANCELLATION + +-!sigwait! is a cancellation point. ++\fBsigwait\fP is a cancellation point. + + .SH "RETURN VALUE" + +@@ -56,50 +56,50 @@ + + .SH ERRORS + +-The !pthread_sigmask! function returns the following error codes ++The \fBpthread_sigmask\fP function returns the following error codes + on error: + .RS + .TP +-!EINVAL! +-|how| is not one of !SIG_SETMASK!, !SIG_BLOCK!, or !SIG_UNBLOCK! ++\fBEINVAL\fP ++\fIhow\fP is not one of \fBSIG_SETMASK\fP, \fBSIG_BLOCK\fP, or \fBSIG_UNBLOCK\fP + + .TP +-!EFAULT! +-|newmask| or |oldmask| point to invalid addresses ++\fBEFAULT\fP ++\fInewmask\fP or \fIoldmask\fP point to invalid addresses + .RE + +-The !pthread_kill! function returns the following error codes ++The \fBpthread_kill\fP function returns the following error codes + on error: + .RS + .TP +-!EINVAL! +-|signo| is not a valid signal number ++\fBEINVAL\fP ++\fIsigno\fP is not a valid signal number + + .TP +-!ESRCH! +-the thread |thread| does not exist (e.g. it has already terminated) ++\fBESRCH\fP ++the thread \fIthread\fP does not exist (e.g. it has already terminated) + .RE + +-The !sigwait! function never returns an error. ++The \fBsigwait\fP function never returns an error. + + .SH AUTHOR + Xavier Leroy + + .SH "SEE ALSO" +-!sigprocmask!(2), +-!kill!(2), +-!sigaction!(2), +-!sigsuspend!(2). ++\fBsigprocmask\fP(2), ++\fBkill\fP(2), ++\fBsigaction\fP(2), ++\fBsigsuspend\fP(2). + + .SH NOTES + +-For !sigwait! to work reliably, the signals being waited for must be ++For \fBsigwait\fP to work reliably, the signals being waited for must be + blocked in all threads, not only in the calling thread, since + otherwise the POSIX semantics for signal delivery do not guarantee +-that it's the thread doing the !sigwait! that will receive the signal. ++that it's the thread doing the \fBsigwait\fP that will receive the signal. + The best way to achieve this is block those signals before any threads + are created, and never unblock them in the program other than by +-calling !sigwait!. ++calling \fBsigwait\fP. + + .SH BUGS + +@@ -112,11 +112,11 @@ + + In LinuxThreads, each thread is actually a kernel process with its own + PID, so external signals are always directed to one particular thread. +-If, for instance, another thread is blocked in !sigwait! on that ++If, for instance, another thread is blocked in \fBsigwait\fP on that + signal, it will not be restarted. + +-The LinuxThreads implementation of !sigwait! installs dummy signal +-handlers for the signals in |set| for the duration of the wait. Since ++The LinuxThreads implementation of \fBsigwait\fP installs dummy signal ++handlers for the signals in \fIset\fP for the duration of the wait. Since + signal handlers are shared between all threads, other threads must not + attach their own signal handlers to these signals, or alternatively + they should all block these signals (which is recommended anyway -- +diff -Nurd glibc-2.5.orig/linuxthreads/man/sem_init.man glibc-2.5/linuxthreads/man/sem_init.man +--- glibc-2.5.orig/linuxthreads/man/sem_init.man 2007-02-18 19:29:35.000000000 +0100 ++++ glibc-2.5/linuxthreads/man/sem_init.man 2007-02-18 19:29:49.000000000 +0100 +@@ -26,98 +26,98 @@ + + .SH DESCRIPTION + This manual page documents POSIX 1003.1b semaphores, not to be +-confused with SystemV semaphores as described in !ipc!(5), !semctl!(2) +-and !semop!(2). ++confused with SystemV semaphores as described in \fBipc\fP(5), \fBsemctl\fP(2) ++and \fBsemop\fP(2). + + Semaphores are counters for resources shared between threads. The + basic operations on semaphores are: increment the counter atomically, + and wait until the counter is non-null and decrement it atomically. + +-!sem_init! initializes the semaphore object pointed to by |sem|. The +-count associated with the semaphore is set initially to |value|. The +-|pshared| argument indicates whether the semaphore is local to the +-current process (|pshared| is zero) or is to be shared between several +-processes (|pshared| is not zero). LinuxThreads currently does not +-support process-shared semaphores, thus !sem_init! always returns with +-error !ENOSYS! if |pshared| is not zero. ++\fBsem_init\fP initializes the semaphore object pointed to by \fIsem\fP. The ++count associated with the semaphore is set initially to \fIvalue\fP. The ++\fIpshared\fP argument indicates whether the semaphore is local to the ++current process (\fIpshared\fP is zero) or is to be shared between several ++processes (\fIpshared\fP is not zero). LinuxThreads currently does not ++support process-shared semaphores, thus \fBsem_init\fP always returns with ++error \fBENOSYS\fP if \fIpshared\fP is not zero. + +-!sem_wait! suspends the calling thread until the semaphore pointed to +-by |sem| has non-zero count. It then atomically decreases the ++\fBsem_wait\fP suspends the calling thread until the semaphore pointed to ++by \fIsem\fP has non-zero count. It then atomically decreases the + semaphore count. + +-!sem_trywait! is a non-blocking variant of !sem_wait!. If the +-semaphore pointed to by |sem| has non-zero count, the count is +-atomically decreased and !sem_trywait! immediately returns 0. +-If the semaphore count is zero, !sem_trywait! immediately returns with +-error !EAGAIN!. ++\fBsem_trywait\fP is a non-blocking variant of \fBsem_wait\fP. If the ++semaphore pointed to by \fIsem\fP has non-zero count, the count is ++atomically decreased and \fBsem_trywait\fP immediately returns 0. ++If the semaphore count is zero, \fBsem_trywait\fP immediately returns with ++error \fBEAGAIN\fP. + +-!sem_post! atomically increases the count of the semaphore pointed to +-by |sem|. This function never blocks and can safely be used in ++\fBsem_post\fP atomically increases the count of the semaphore pointed to ++by \fIsem\fP. This function never blocks and can safely be used in + asynchronous signal handlers. + +-!sem_getvalue! stores in the location pointed to by |sval| the current +-count of the semaphore |sem|. ++\fBsem_getvalue\fP stores in the location pointed to by \fIsval\fP the current ++count of the semaphore \fIsem\fP. + +-!sem_destroy! destroys a semaphore object, freeing the resources it ++\fBsem_destroy\fP destroys a semaphore object, freeing the resources it + might hold. No threads should be waiting on the semaphore at the time +-!sem_destroy! is called. In the LinuxThreads implementation, no +-resources are associated with semaphore objects, thus !sem_destroy! ++\fBsem_destroy\fP is called. In the LinuxThreads implementation, no ++resources are associated with semaphore objects, thus \fBsem_destroy\fP + actually does nothing except checking that no thread is waiting on the + semaphore. + + .SH CANCELLATION + +-!sem_wait! is a cancellation point. ++\fBsem_wait\fP is a cancellation point. + + .SH "ASYNC-SIGNAL SAFETY" + + On processors supporting atomic compare-and-swap (Intel 486, Pentium +-and later, Alpha, PowerPC, MIPS II, Motorola 68k), the !sem_post! ++and later, Alpha, PowerPC, MIPS II, Motorola 68k), the \fBsem_post\fP + function is async-signal safe and can therefore be + called from signal handlers. This is the only thread synchronization + function provided by POSIX threads that is async-signal safe. + + On the Intel 386 and the Sparc, the current LinuxThreads +-implementation of !sem_post! is not async-signal safe by lack of the ++implementation of \fBsem_post\fP is not async-signal safe by lack of the + required atomic operations. + + .SH "RETURN VALUE" + +-The !sem_wait! and !sem_getvalue! functions always return 0. ++The \fBsem_wait\fP and \fBsem_getvalue\fP functions always return 0. + All other semaphore functions return 0 on success and -1 on error, in +-addition to writing an error code in !errno!. ++addition to writing an error code in \fBerrno\fP. + + .SH ERRORS + +-The !sem_init! function sets !errno! to the following codes on error: ++The \fBsem_init\fP function sets \fBerrno\fP to the following codes on error: + .RS + .TP +-!EINVAL! +-|value| exceeds the maximal counter value !SEM_VALUE_MAX! ++\fBEINVAL\fP ++\fIvalue\fP exceeds the maximal counter value \fBSEM_VALUE_MAX\fP + .TP +-!ENOSYS! +-|pshared| is not zero ++\fBENOSYS\fP ++\fIpshared\fP is not zero + .RE + +-The !sem_trywait! function sets !errno! to the following error code on error: ++The \fBsem_trywait\fP function sets \fBerrno\fP to the following error code on error: + .RS + .TP +-!EAGAIN! ++\fBEAGAIN\fP + the semaphore count is currently 0 + .RE + +-The !sem_post! function sets !errno! to the following error code on error: ++The \fBsem_post\fP function sets \fBerrno\fP to the following error code on error: + .RS + .TP +-!ERANGE! +-after incrementation, the semaphore value would exceed !SEM_VALUE_MAX! ++\fBERANGE\fP ++after incrementation, the semaphore value would exceed \fBSEM_VALUE_MAX\fP + (the semaphore count is left unchanged in this case) + .RE + +-The !sem_destroy! function sets !errno! to the following error code on error: ++The \fBsem_destroy\fP function sets \fBerrno\fP to the following error code on error: + .RS + .TP +-!EBUSY! ++\fBEBUSY\fP + some threads are currently blocked waiting on the semaphore. + .RE + +@@ -125,8 +125,8 @@ + Xavier Leroy + + .SH "SEE ALSO" +-!pthread_mutex_init!(3), +-!pthread_cond_init!(3), +-!pthread_cancel!(3), +-!ipc!(5). ++\fBpthread_mutex_init\fP(3), ++\fBpthread_cond_init\fP(3), ++\fBpthread_cancel\fP(3), ++\fBipc\fP(5). + --- glibc-2.5.orig/debian/patches/all/local-pt_BR.diff +++ glibc-2.5/debian/patches/all/local-pt_BR.diff @@ -0,0 +1,13 @@ +Author: Guilherme de S. Pastore (fatalerror) + +--- glibc-2.3.2/po/pt_BR.po 2001-04-27 00:40:08.000000000 -0300 ++++ glibc-2.3.2/po/pt_BR.po.new 2005-07-21 19:47:52.172350336 -0300 +@@ -2381,7 +2381,7 @@ + + #: posix/../sysdeps/posix/gai_strerror.c:31 + msgid "Temporary failure in name resolution" +-msgstr "Falha temporrio na resoluo de nome" ++msgstr "Falha temporria na resoluo de nome" + + #: stdio-common/../sysdeps/unix/siglist.c:40 + #: sysdeps/unix/sysv/linux/siglist.h:34 --- glibc-2.5.orig/debian/patches/all/cvs-iconv-E13B.diff +++ glibc-2.5/debian/patches/all/cvs-iconv-E13B.diff @@ -0,0 +1,11 @@ +--- iconvdata/gconv-modules 2007-04-19 07:57:08.000000000 +0200 ++++ iconvdata/gconv-modules 2007-04-22 00:58:09.000000000 +0200 +@@ -1376,7 +1376,7 @@ + # from to module cost + alias ISO-IR-98// ISO_2033// + alias ISO_2033-1983// ISO_2033// +-alias E13B/ ISO_2033// ++alias E13B// ISO_2033// + alias CSISO2033// ISO_2033// + module ISO_2033// INTERNAL ISO_2033 1 + module INTERNAL ISO_2033// ISO_2033 1 --- glibc-2.5.orig/debian/patches/all/local-remove-manual.diff +++ glibc-2.5/debian/patches/all/local-remove-manual.diff @@ -0,0 +1,290 @@ +The GNU Libc Reference manual has to be removed for licensing reasons. +But some files have a dependency on manual/errno.texi; the easiest +solution is to drop those dependencies and make sure that MAKEINFO=: +so that no target depends on manual/*.texi files. + +Index: glibc-2.4/manual/Makefile +=================================================================== +--- /dev/null ++++ glibc-2.4/manual/Makefile +@@ -0,0 +1,254 @@ ++# Copyright (C) 1992-1999,2000,2001,2002,2003,2004,2006 ++# Free Software Foundation, Inc. ++# This file is part of the GNU C Library. ++ ++# The GNU C Library is free software; you can redistribute it and/or ++# modify it under the terms of the GNU Lesser General Public ++# License as published by the Free Software Foundation; either ++# version 2.1 of the License, or (at your option) any later version. ++ ++# The GNU C Library is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++# Lesser General Public License for more details. ++ ++# You should have received a copy of the GNU Lesser General Public ++# License along with the GNU C Library; if not, write to the Free ++# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++# 02111-1307 USA. ++ ++# Makefile for the GNU C Library manual. ++ ++subdir := manual ++export subdir := $(subdir) ++ ++# Allow override ++INSTALL_INFO = install-info ++ ++.PHONY: all dvi pdf info html ++all: dvi ++dvi: libc.dvi ++pdf: libc.pdf ++ ++# Get glibc's configuration info. ++ifneq (,$(wildcard ../Makeconfig)) ++include ../Makeconfig ++else ++MAKEINFO = makeinfo ++TEXI2DVI = texi2dvi ++AWK = gawk ++endif ++ ++TEXI2PDF = texi2dvi --pdf ++ ++ifneq ($(strip $(MAKEINFO)),:) ++all: info ++info: libc.info ++endif ++ ++# scripts we use ++ifndef move-if-change ++move-if-change = ./move-if-change ++endif ++mkinstalldirs = $(..)scripts/mkinstalldirs ++ ++chapters = $(addsuffix .texi, \ ++ intro errno memory ctype string charset locale \ ++ message search pattern io stdio llio filesys \ ++ pipe socket terminal syslog math arith time \ ++ resource setjmp signal startup process job nss \ ++ users sysinfo conf crypt debug) ++add-chapters = $(wildcard $(foreach d, $(add-ons), ../$d/$d.texi)) ++appendices = lang.texi header.texi install.texi maint.texi contrib.texi \ ++ freemanuals.texi ++ ++-include texis ++texis: texis.awk $(chapters) $(add-chapters) $(appendices) lesser.texi fdl.texi ++ $(AWK) -f $^ > $@.T ++ mv -f $@.T $@ ++ ++nonexamples = $(filter-out $(add-chapters) %.c.texi, $(texis)) ++examples = $(filter-out $(foreach d, $(add-ons), ../$d/%.c.texi), \ ++ $(filter %.c.texi, $(texis))) ++ ++# Kludge: implicit rule so Make knows the one command does it all. ++chapters.% top-menu.%: libc-texinfo.sh $(texis) Makefile ++ AWK=$(AWK) $(SHELL) $< '$(chapters)' '$(add-chapters)' '$(appendices)' ++ ++libc.dvi libc.pdf libc.info: chapters.texi top-menu.texi dir-add.texi \ ++ libm-err.texi ++libc.dvi libc.pdf: texinfo.tex ++ ++html: libc/index.html ++libc/index.html: chapters.texi top-menu.texi dir-add.texi libm-err.texi ++ $(MAKEINFO) --html libc.texinfo ++ ++# Generate the summary from the Texinfo source files for each chapter. ++summary.texi: stamp-summary ; ++stamp-summary: summary.awk $(filter-out summary.texi, $(texis)) ++ $(AWK) -f $^ | sort -t' ' -df -k 1,1 | tr '\014' '\012' > summary-tmp ++ $(move-if-change) summary-tmp summary.texi ++ touch $@ ++ ++# Generate a file which can be added to the `dir' content to provide direct ++# access to the documentation of the function, variables, and other ++# definitions. ++dir-add.texi: xtract-typefun.awk $(texis) ++ (echo "@dircategory GNU C library functions and macros"; \ ++ echo "@direntry"; \ ++ $(AWK) -f $^ | sort; \ ++ echo "@end direntry") > $@.new ++ mv -f $@.new $@ ++ ++# The table with the math errors is generated. ++libm-err.texi: stamp-libm-err ++stamp-libm-err: libm-err-tab.pl $(wildcard $(foreach dir,$(sysdirs),\ ++ $(dir)/libm-test-ulps)) ++ pwd=`pwd`; \ ++ $(PERL) $< $$pwd/.. > libm-err-tmp ++ $(move-if-change) libm-err-tmp libm-err.texi ++ touch $@ ++ ++# Generate Texinfo files from the C source for the example programs. ++%.c.texi: examples/%.c ++ sed -e 's,[{}],@&,g' \ ++ -e 's,/\*\(@.*\)\*/,\1,g' \ ++ -e 's,/\* *,/* @r{,g' -e 's, *\*/,} */,' \ ++ -e 's/\(@[a-z][a-z]*\)@{\([^}]*\)@}/\1{\2}/g'\ ++ $< | expand > $@.new ++ mv -f $@.new $@ ++ ++%.info: %.texinfo ++ LANGUAGE=C LC_ALL=C $(MAKEINFO) $< ++ ++%.dvi: %.texinfo ++ $(TEXI2DVI) $< ++ ++%.pdf: %.texinfo ++ $(TEXI2PDF) $< ++ ++# Distribution. ++minimal-dist = summary.awk texis.awk tsort.awk libc-texinfo.sh libc.texinfo \ ++ libm-err.texi stamp-libm-err \ ++ $(filter-out summary.texi, $(nonexamples)) \ ++ $(patsubst %.c.texi,examples/%.c, $(examples)) ++ ++doc-only-dist = Makefile COPYING.LIB ++distribute = $(minimal-dist) $(examples) stdio-fp.c \ ++ libc.info* libc.?? libc.??s texinfo.tex \ ++ xtract-typefun.awk dir-add.texi dir libm-err-tab.pl ++export distribute := $(distribute) ++ ++tar-it = tar chovf $@ $^ ++ ++manual.tar: $(doc-only-dist) $(minimal-dist) ; $(tar-it) ++mandist.tar: $(doc-only-dist) $(distribute) ; $(tar-it) ++ ++edition := $(shell sed -n 's/^@set EDITION \([0-9][0-9.]*\)[^0-9.]*.*$$/\1/p' \ ++ libc.texinfo) ++ ++glibc-doc-$(edition).tar: $(doc-only-dist) $(distribute) ++ @rm -f glibc-doc-$(edition) ++ ln -s . glibc-doc-$(edition) ++ tar chovf $@ $(addprefix glibc-doc-$(edition)/,$^) ++ rm -f glibc-doc-$(edition) ++ ++%.Z: % ++ compress -c $< > $@.new ++ mv -f $@.new $@ ++%.gz: % ++ gzip -9 -c $< > $@.new ++ mv -f $@.new $@ ++%.uu: % ++ uuencode $< < $< > $@.new ++ mv -f $@.new $@ ++ ++.PHONY: mostlyclean distclean realclean clean ++mostlyclean: ++ -rm -f libc.dvi libc.pdf libc.tmp libc.info* ++ -rm -f $(objpfx)stubs ++ -rm -f $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o) ++clean: mostlyclean ++distclean: clean ++indices = cp fn pg tp vr ky ++realclean: distclean ++ -rm -f texis summary.texi stamp-summary *.c.texi dir-add.texi ++ -rm -f $(foreach index,$(indices),libc.$(index) libc.$(index)s) ++ -rm -f libc.log libc.aux libc.toc dir-add.texinfo ++ -rm -f top-menu.texi chapters.texi ++ ++.PHONY: install subdir_install installdirs install-data ++install-data subdir_install: install ++ifneq ($(strip $(MAKEINFO)),:) ++install: $(inst_infodir)/libc.info ++ @if $(SHELL) -c '$(INSTALL_INFO) --version' >/dev/null 2>&1; then \ ++ test -f $(inst_infodir)/dir || $(INSTALL_DATA) dir $(inst_infodir);\ ++ $(INSTALL_INFO) --info-dir=$(inst_infodir) $(inst_infodir)/libc.info;\ ++ else : ; fi ++endif ++# Catchall implicit rule for other installation targets from the parent. ++install-%: ; ++ ++$(inst_infodir)/libc.info: libc.info installdirs ++ for file in $<*; do \ ++ $(INSTALL_DATA) $$file $(@D)/$$file; \ ++ done ++ ++installdirs: ++ $(mkinstalldirs) $(inst_infodir) ++ ++.PHONY: dist ++dist: # glibc-doc-$(edition).tar.gz ++ ++ifneq (,$(wildcard ../Make-dist)) ++dist: ../Make-dist ++ $(MAKE) -f $< $(Make-dist-args) ++endif ++ ++ifndef ETAGS ++ETAGS = etags -T ++endif ++TAGS: $(minimal-dist) ++ $(ETAGS) -o $@ $^ ++ ++# The parent makefile sometimes invokes us with targets `subdir_REAL-TARGET'. ++subdir_%: % ; ++# For targets we don't define, do nothing. ++subdir_%: ; ++ ++# These are targets that each glibc subdirectory is expected to understand. ++# ../Rules defines them for code subdirectories; for us, they are no-ops. ++# None of these should be `subdir_TARGET'; those targets are transformed ++# by the implicit rule above into `TARGET' deps. ++glibc-targets := lib objects objs others tests xtests lint.out echo-headers ++.PHONY: $(glibc-targets) ++$(glibc-targets): ++ ++# Create stamp files if they don't exist, so the parent makefile's rules for ++# updating the library archives are happy with us, and never think we have ++# changed the library. ++lib: $(foreach o,$(object-suffixes-for-libc),$(objpfx)stamp$o) ++ifdef objpfx ++.PHONY: stubs ++stubs: $(objpfx)stubs ++endif ++$(objpfx)stubs ../po/manual.pot $(objpfx)stamp%: ++ $(make-target-directory) ++ touch $@ ++ ++# Make the target directory if it doesn't exist, using the `mkinstalldirs' ++# script that does `mkdir -p' even if `mkdir' doesn't support that flag. ++define make-target-directory ++$(addprefix $(mkinstalldirs) ,\ ++ $(filter-out $(wildcard $(@D:%/=%)),$(@D:%/=%))) ++endef ++ ++# The top-level glibc Makefile expects subdir_install to update the stubs file. ++subdir_install: stubs ++ ++# Get rid of these variables if they came from the parent. ++routines = ++aux = ++sources = ++objects = ++headers = +Index: glibc-2.4/sysdeps/gnu/Makefile +=================================================================== +--- glibc-2.4.orig/sysdeps/gnu/Makefile ++++ glibc-2.4/sysdeps/gnu/Makefile +@@ -20,7 +20,7 @@ + # Generate the list of strings for errno codes from the section of the + # manual which documents the codes. + +-$(..)sysdeps/gnu/errlist.c: $(..)sysdeps/gnu/errlist.awk \ ++$(..)sysdeps/gnu/errlist-disabled.c: $(..)sysdeps/gnu/errlist.awk \ + $(..)manual/errno.texi + $(AWK) -f $^ > $@-tmp + # Make it unwritable so noone will edit it by mistake. +Index: glibc-2.4/sysdeps/mach/hurd/Makefile +=================================================================== +--- glibc-2.4.orig/sysdeps/mach/hurd/Makefile ++++ glibc-2.4/sysdeps/mach/hurd/Makefile +@@ -87,7 +87,7 @@ + -e 's, \.\./, $(..),g' > $@t + mv -f $@t $@ + +-$(hurd)/bits/errno.h: $(common-objpfx)stamp-errnos ; ++$(hurd)/bits/errno-disabled.h: $(common-objpfx)stamp-errnos ; + $(common-objpfx)stamp-errnos: $(hurd)/errnos.awk $(errno.texinfo) \ + $(mach-errnos-deps) $(common-objpfx)errnos.d + $(AWK) -f $^ > $(hurd)/bits/errno.h-tmp --- glibc-2.5.orig/debian/patches/all/local-ru_RU.diff +++ glibc-2.5/debian/patches/all/local-ru_RU.diff @@ -0,0 +1,20 @@ +# DP: Description: Change default charset for 'russian' locale alias +# DP: Related bugs: #62586 +# DP: Dpatch author: Ben Collins +# DP: Patch author: Alistair McKinstry +# DP: Upstream status: Submitted +# DP: Status Details: http://sources.redhat.com/bugzilla/show_bug.cgi?id=120 +# DP: Date: 2002-03-10 + +diff -urN glibc-2.2.5.orig/intl/locale.alias glibc-2.2.5/intl/locale.alias +--- glibc-2.2.5.orig/intl/locale.alias Sun Jul 22 16:24:50 2001 ++++ glibc-2.2.5/intl/locale.alias Sun Mar 10 23:00:09 2002 +@@ -65,7 +65,7 @@ + polish pl_PL.ISO-8859-2 + portuguese pt_PT.ISO-8859-1 + romanian ro_RO.ISO-8859-2 +-russian ru_RU.ISO-8859-5 ++russian ru_RU.KOI8-R + slovak sk_SK.ISO-8859-2 + slovene sl_SI.ISO-8859-2 + slovenian sl_SI.ISO-8859-2 --- glibc-2.5.orig/debian/patches/all/submitted-new-brf-encoding.diff +++ glibc-2.5/debian/patches/all/submitted-new-brf-encoding.diff @@ -0,0 +1,218 @@ +This patch has been submitted upstream BZ2681 by Samuel Thibault, +who works on accessibility issues. It adds a new BRF encoding, +aka ASCII Braille. + +Index: iconvdata/Makefile +=================================================================== +--- iconvdata/Makefile.orig ++++ iconvdata/Makefile +@@ -58,7 +58,7 @@ + IBM1142 IBM1143 IBM1144 IBM1145 IBM1146 IBM1147 IBM1148 \ + IBM1149 IBM1166 IBM1167 IBM4517 IBM4899 IBM4909 IBM4971 \ + IBM5347 IBM9030 IBM9066 IBM9448 IBM12712 IBM16804 \ +- IBM1364 IBM1371 IBM1388 IBM1390 IBM1399 ISO_11548-1 MIK ++ IBM1364 IBM1371 IBM1388 IBM1390 IBM1399 ISO_11548-1 MIK BRF + + modules.so := $(addsuffix .so, $(modules)) + +@@ -196,7 +196,7 @@ + ibm9030.c ibm9030.h ibm9066.c ibm9066.h ibm9448.c ibm9448.h \ + ibm12712.c ibm12712.h ibm16804.c ibm16804.h \ + ibm1364.c ibm1364.h ibm1371.c ibm1371.h ibm1388.c ibm1388.h \ +- ibm1390.c ibm1390.h ibm1399.c ibm1399.h iso_11548-1.c mik.c ++ ibm1390.c ibm1390.h ibm1399.c ibm1399.h iso_11548-1.c mik.c brf.c + + # We build the transformation modules only when we build shared libs. + ifeq (yes,$(build-shared)) +@@ -237,7 +237,7 @@ + iso8859-13 iso8859-14 iso8859-15 mac-uk sami-ws2 \ + iso-ir-197 tis-620 koi8-u ibm874 cp10007 koi8-t \ + georgian-ps georgian-academy iso-ir-209 mac-sami \ +- iso8859-11 ibm866nav pt154 rk1048 mik ++ iso8859-11 ibm866nav pt154 rk1048 mik brf + + gen-special-modules := iso8859-7jp + +Index: iconvdata/brf.c +=================================================================== +--- /dev/null ++++ iconvdata/brf.c +@@ -0,0 +1,29 @@ ++/* Conversion from and to BRF. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Samuel Thibault , 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++/* Get the conversion table. */ ++#define TABLES ++ ++#define CHARSET_NAME "BRF//" ++#define HAS_HOLES 1 /* Not all 256 character are defined. */ ++ ++#include <8bit-gap.c> +Index: iconvdata/gconv-modules +=================================================================== +--- iconvdata/gconv-modules.orig ++++ iconvdata/gconv-modules +@@ -1907,3 +1907,7 @@ + # from to module cost + module MIK// INTERNAL MIK 1 + module INTERNAL MIK// MIK 1 ++ ++# from to module cost ++module BRF// INTERNAL BRF 1 ++module INTERNAL BRF// BRF 1 +Index: iconvdata/testdata/BRF +=================================================================== +--- /dev/null ++++ iconvdata/testdata/BRF +@@ -0,0 +1,7 @@ ++A B C D E F G H I J ++K L M N O P Q R S T ++U V X Y Z & = ( ! ) ++* < % ? : $ ] \ [ W ++1 2 3 4 5 6 7 8 9 0 ++/ + # > ' - ++@ ^ _ " . ; , +Index: iconvdata/testdata/BRF..UTF-8 +=================================================================== +--- /dev/null ++++ iconvdata/testdata/BRF..UTF-8 +@@ -0,0 +1,7 @@ ++⠁⠀⠃⠀⠉⠀⠙⠀⠑⠀⠋⠀⠛⠀⠓⠀⠊⠀⠚ ++⠅⠀⠇⠀⠍⠀⠝⠀⠕⠀⠏⠀⠟⠀⠗⠀⠎⠀⠞ ++⠥⠀⠧⠀⠭⠀⠽⠀⠵⠀⠯⠀⠿⠀⠷⠀⠮⠀⠾ ++⠡⠀⠣⠀⠩⠀⠹⠀⠱⠀⠫⠀⠻⠀⠳⠀⠪⠀⠺ ++⠂⠀⠆⠀⠒⠀⠲⠀⠢⠀⠖⠀⠶⠀⠦⠀⠔⠀⠴ ++⠌⠀⠬⠀⠼⠀⠜⠀⠄⠀⠤ ++⠈⠀⠘⠀⠸⠀⠐⠀⠨⠀⠰⠀⠠ +Index: localedata/charmaps/BRF +=================================================================== +--- /dev/null ++++ localedata/charmaps/BRF +@@ -0,0 +1,108 @@ ++ BRF ++ % ++ / ++% version: 1.0 ++% source: Samuel Thibault ++ ++CHARMAP ++ /x00 NULL (NUL) ++ /x01 START OF HEADING (SOH) ++ /x02 START OF TEXT (STX) ++ /x03 END OF TEXT (ETX) ++ /x04 END OF TRANSMISSION (EOT) ++ /x05 ENQUIRY (ENQ) ++ /x06 ACKNOWLEDGE (ACK) ++ /x07 BELL (BEL) ++ /x08 BACKSPACE (BS) ++ /x09 CHARACTER TABULATION (HT) ++ /x0a LINE FEED (LF) ++ /x0b LINE TABULATION (VT) ++ /x0c FORM FEED (FF) ++ /x0d CARRIAGE RETURN (CR) ++ /x0e SHIFT OUT (SO) ++ /x0f SHIFT IN (SI) ++ /x10 DATALINK ESCAPE (DLE) ++ /x11 DEVICE CONTROL ONE (DC1) ++ /x12 DEVICE CONTROL TWO (DC2) ++ /x13 DEVICE CONTROL THREE (DC3) ++ /x14 DEVICE CONTROL FOUR (DC4) ++ /x15 NEGATIVE ACKNOWLEDGE (NAK) ++ /x16 SYNCHRONOUS IDLE (SYN) ++ /x17 END OF TRANSMISSION BLOCK (ETB) ++ /x18 CANCEL (CAN) ++ /x19 END OF MEDIUM (EM) ++ /x1a SUBSTITUTE (SUB) ++ /x1b ESCAPE (ESC) ++ /x1c FILE SEPARATOR (IS4) ++ /x1d GROUP SEPARATOR (IS3) ++ /x1e RECORD SEPARATOR (IS2) ++ /x1f UNIT SEPARATOR (IS1) ++ /x20 BRAILLE PATTERN BLANK ++ /x21 BRAILLE PATTERN DOTS-2346 ++ /x22 BRAILLE PATTERN DOTS-5 ++ /x23 BRAILLE PATTERN DOTS-3456 ++ /x24 BRAILLE PATTERN DOTS-1246 ++ /x25 BRAILLE PATTERN DOTS-146 ++ /x26 BRAILLE PATTERN DOTS-12346 ++ /x27 BRAILLE PATTERN DOTS-3 ++ /x28 BRAILLE PATTERN DOTS-12356 ++ /x29 BRAILLE PATTERN DOTS-23456 ++ /x2a BRAILLE PATTERN DOTS-16 ++ /x2b BRAILLE PATTERN DOTS-346 ++ /x2c BRAILLE PATTERN DOTS-6 ++ /x2d BRAILLE PATTERN DOTS-36 ++ /x2e BRAILLE PATTERN DOTS-46 ++ /x2f BRAILLE PATTERN DOTS-34 ++ /x30 BRAILLE PATTERN DOTS-356 ++ /x31 BRAILLE PATTERN DOTS-2 ++ /x32 BRAILLE PATTERN DOTS-23 ++ /x33 BRAILLE PATTERN DOTS-25 ++ /x34 BRAILLE PATTERN DOTS-256 ++ /x35 BRAILLE PATTERN DOTS-26 ++ /x36 BRAILLE PATTERN DOTS-235 ++ /x37 BRAILLE PATTERN DOTS-2356 ++ /x38 BRAILLE PATTERN DOTS-236 ++ /x39 BRAILLE PATTERN DOTS-35 ++ /x3a BRAILLE PATTERN DOTS-156 ++ /x3b BRAILLE PATTERN DOTS-56 ++ /x3c BRAILLE PATTERN DOTS-126 ++ /x3d BRAILLE PATTERN DOTS-123456 ++ /x3e BRAILLE PATTERN DOTS-345 ++ /x3f BRAILLE PATTERN DOTS-1456 ++ /x40 BRAILLE PATTERN DOTS-4 ++ /x41 BRAILLE PATTERN DOTS-1 ++ /x42 BRAILLE PATTERN DOTS-12 ++ /x43 BRAILLE PATTERN DOTS-14 ++ /x44 BRAILLE PATTERN DOTS-145 ++ /x45 BRAILLE PATTERN DOTS-15 ++ /x46 BRAILLE PATTERN DOTS-124 ++ /x47 BRAILLE PATTERN DOTS-1245 ++ /x48 BRAILLE PATTERN DOTS-125 ++ /x49 BRAILLE PATTERN DOTS-24 ++ /x4a BRAILLE PATTERN DOTS-245 ++ /x4b BRAILLE PATTERN DOTS-13 ++ /x4c BRAILLE PATTERN DOTS-123 ++ /x4d BRAILLE PATTERN DOTS-134 ++ /x4e BRAILLE PATTERN DOTS-1345 ++ /x4f BRAILLE PATTERN DOTS-135 ++ /x50 BRAILLE PATTERN DOTS-1234 ++ /x51 BRAILLE PATTERN DOTS-12345 ++ /x52 BRAILLE PATTERN DOTS-1235 ++ /x53 BRAILLE PATTERN DOTS-234 ++ /x54 BRAILLE PATTERN DOTS-2345 ++ /x55 BRAILLE PATTERN DOTS-136 ++ /x56 BRAILLE PATTERN DOTS-1236 ++ /x57 BRAILLE PATTERN DOTS-2456 ++ /x58 BRAILLE PATTERN DOTS-1346 ++ /x59 BRAILLE PATTERN DOTS-13456 ++ /x5a BRAILLE PATTERN DOTS-1356 ++ /x5b BRAILLE PATTERN DOTS-246 ++ /x5c BRAILLE PATTERN DOTS-1256 ++ /x5d BRAILLE PATTERN DOTS-12456 ++ /x5e BRAILLE PATTERN DOTS-45 ++ /x5f BRAILLE PATTERN DOTS-456 ++END CHARMAP ++ ++WIDTH ++... 1 ++END WIDTH --- glibc-2.5.orig/debian/patches/alpha/submitted-sigsuspend.diff +++ glibc-2.5/debian/patches/alpha/submitted-sigsuspend.diff @@ -0,0 +1,27 @@ +This page fix the build of the glibc on alpha. It has been submitted +on libc-alpha by Jakub Jelinek . + +--- glibc-2.5/sysdeps/unix/sysv/linux/alpha/sigsuspend.S.orig 2006-10-22 22:17:01.000000000 +0200 ++++ glibc-2.5/sysdeps/unix/sysv/linux/alpha/sigsuspend.S 2006-10-22 22:18:05.000000000 +0200 +@@ -31,3 +31,21 @@ + libc_hidden_def (__sigsuspend) + weak_alias (__sigsuspend, sigsuspend) + strong_alias (__sigsuspend, __libc_sigsuspend) ++ ++#ifndef NO_CANCELLATION ++ .globl __sigsuspend_nocancel; ++ .align 4; ++ .type __sigsuspend_nocancel, @function; ++ .usepv __sigsuspend_nocancel, std; ++ cfi_startproc; ++__LABEL(__sigsuspend_nocancel) ++ ldgp gp, 0(pv); ++ PSEUDO_PROF; ++ PSEUDO_PREPARE_ARGS ++ lda v0, SYS_ify(sigsuspend); ++ call_pal PAL_callsys; ++ bne a3, SYSCALL_ERROR_LABEL; ++ ret; ++ cfi_endproc; ++ .size __sigsuspend_nocancel, .-__sigsuspend_nocancel ++#endif --- glibc-2.5.orig/debian/patches/alpha/local-gcc4.1.diff +++ glibc-2.5/debian/patches/alpha/local-gcc4.1.diff @@ -0,0 +1,51 @@ +2006-05-30 Falk Hueffner + + * sysdeps/unix/sysv/linux/alpha/ioperm.c: force the architecture + to ev6 in assembly code. + +{standard input}: Assembler messages: +{standard input}:341: Error: macro requires $at register while noat in effect +{standard input}:374: Error: macro requires $at register while noat in effect +{standard input}:438: Error: macro requires $at register while noat in effect +{standard input}:471: Error: macro requires $at register while noat in effect +make[3]: *** [/tmp/buildd/glibc-2.3.6/build-tree/alpha-libc/misc/ioperm.o] Error 1 + +Hrm. gcc puts .arch ev4 into the .s, and this overrides -mev6 for as. +I cannot really think of anything better than + +--- sysdeps/unix/sysv/linux/alpha/ioperm.c 2001-07-06 06:56:13.000000000 +0200 ++++ sysdeps/unix/sysv/linux/alpha/ioperm.c 2006-05-30 21:22:54.000000000 +0200 +@@ -173,13 +173,13 @@ + static inline void + stb_mb(unsigned char val, unsigned long addr) + { +- __asm__("stb %1,%0; mb" : "=m"(*(vucp)addr) : "r"(val)); ++ __asm__(".arch ev6; stb %1,%0; mb" : "=m"(*(vucp)addr) : "r"(val)); + } + + static inline void + stw_mb(unsigned short val, unsigned long addr) + { +- __asm__("stw %1,%0; mb" : "=m"(*(vusp)addr) : "r"(val)); ++ __asm__(".arch ev6; stw %1,%0; mb" : "=m"(*(vusp)addr) : "r"(val)); + } + + static inline void +@@ -351,7 +351,7 @@ + unsigned long int addr = dense_port_to_cpu_addr (port); + unsigned char r; + +- __asm__ ("ldbu %0,%1" : "=r"(r) : "m"(*(vucp)addr)); ++ __asm__ (".arch ev6; ldbu %0,%1" : "=r"(r) : "m"(*(vucp)addr)); + return r; + } + +@@ -361,7 +361,7 @@ + unsigned long int addr = dense_port_to_cpu_addr (port); + unsigned short r; + +- __asm__ ("ldwu %0,%1" : "=r"(r) : "m"(*(vusp)addr)); ++ __asm__ (".arch ev6; ldwu %0,%1" : "=r"(r) : "m"(*(vusp)addr)); + return r; + } + --- glibc-2.5.orig/debian/patches/alpha/cvs-sigsuspend.diff +++ glibc-2.5/debian/patches/alpha/cvs-sigsuspend.diff @@ -0,0 +1,32 @@ +2007-03-13 Richard Henderson + + * sysdeps/unix/sysv/linux/alpha/sigsuspend.S: Add support for + __sigsuspend_nocancel. + +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/alpha/sigsuspend.S,v +retrieving revision 1.13 +retrieving revision 1.14 +diff -u -r1.13 -r1.14 +--- libc/sysdeps/unix/sysv/linux/alpha/sigsuspend.S 2005/05/26 14:30:46 1.13 ++++ libc/sysdeps/unix/sysv/linux/alpha/sigsuspend.S 2007/03/13 16:05:44 1.14 +@@ -20,6 +20,19 @@ + /* sigsuspend is a special syscall since it needs to dereference the + sigset. This will have to change when we have more than 64 signals. */ + ++#ifndef NO_CANCELLATION ++#include ++ ++#undef PSEUDO_PREPARE_ARGS ++#define PSEUDO_PREPARE_ARGS ldq a0, 0(a0); ++ ++PSEUDO(__sigsuspend_nocancel, sigsuspend, 1) ++ ret ++/* Use END, not PSEUDO_END, so that we don't issue two $syscall_error ++ symbols; we'll jump into __sigsuspend for the error case. */ ++END(__sigsuspend_nocancel) ++#endif /* NO_CANCELLATION */ ++ + #include + + #undef PSEUDO_PREPARE_ARGS --- glibc-2.5.orig/debian/patches/alpha/submitted-pic.diff +++ glibc-2.5/debian/patches/alpha/submitted-pic.diff @@ -0,0 +1,24 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Fix errno for secondary threads on Alpha +# DP: Author: Daniel Jacobowitz +# DP: Upstream status: Pending +# DP: Status Details: Submitted Jan 8, 2003 +# DP: Date: Jan 8, 2003, updated 2003-03-23 by gotom. + +--- sysdeps/unix/alpha/sysdep.S 2003-03-23 16:01:02.000000000 +0900 ++++ sysdeps/unix/alpha/sysdep.S.new 2003-03-23 16:02:50.000000000 +0900 +@@ -95,14 +95,10 @@ + PROLOGUE + + /* Find our per-thread errno address */ +-#ifdef PIC +- bsr ra, __errno_location !samegp +-#else + jsr ra, __errno_location + #ifndef GPSAVEREG + ldgp gp, 0(ra) + #endif +-#endif + + /* Store the error value. */ + ldq t0, 8(sp) --- glibc-2.5.orig/debian/patches/alpha/submitted-xstat.diff +++ glibc-2.5/debian/patches/alpha/submitted-xstat.diff @@ -0,0 +1,258 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Fix alpha compile failure when kernel header < 2.6.4 is used. +# DP: Related bugs: +# DP: Dpatch author: GOTO Masanori +# DP: Patch author: GOTO Masanori +# DP: Upstream status: Submitting +# DP: Status Details: Submitting +# DP: Date: 2005-03-03 + +Subject: [PATCH] alpha compilation fix with the kernel header < 2.6.4. + +This patch fixes alpha compilation fix when kernel header (< 2.6.4) is +used. Note that I unfold the original "fail:" part because enclosing +only "fail:" with #ifdef __ASSUME_STAT64_SYSCALL and __NR_*stat64 looks +unseemly. + +Regards, +-- gotom + +2005-02-18 GOTO Masanori + + * sysdeps/unix/sysv/linux/alpha/fxstat.c: Check + __ASSUME_STAT64_SYSCALL. + * sysdeps/unix/sysv/linux/alpha/lxstat.c: Likewise. + * sysdeps/unix/sysv/linux/alpha/xstat.c: Likewise. + * sysdeps/unix/sysv/linux/alpha/xstatconv.c: Don't define + __libc_missing_axp_stat64 when it's not needed. + * sysdeps/unix/sysv/linux/alpha/xstatconv.h: Likewise. + +Index: sysdeps/unix/sysv/linux/alpha/fxstat.c +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/alpha/fxstat.c,v +retrieving revision 1.1 +diff -u -p -r1.1 fxstat.c +--- sysdeps/unix/sysv/linux/alpha/fxstat.c 11 Mar 2004 02:58:44 -0000 1.1 ++++ sysdeps/unix/sysv/linux/alpha/fxstat.c 18 Feb 2005 06:21:10 -0000 +@@ -1,5 +1,5 @@ + /* fxstat using old-style Unix stat system call. +- Copyright (C) 2004 Free Software Foundation, Inc. ++ Copyright (C) 2004, 2005 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -35,27 +35,39 @@ int + __fxstat (int vers, int fd, struct stat *buf) + { + INTERNAL_SYSCALL_DECL (err); +- int result, errno_out; ++ int result; + struct kernel_stat kbuf; + ++#if __ASSUME_STAT64_SYSCALL > 0 ++ if (vers == _STAT_VER_KERNEL64) ++ { ++ result = INTERNAL_SYSCALL (fstat64, err, 2, fd, buf); ++ if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1)) ++ return result; ++ __set_errno (INTERNAL_SYSCALL_ERRNO (result, err)); ++ return -1; ++ } ++#elif defined __NR_fstat64 + if (vers == _STAT_VER_KERNEL64 && !__libc_missing_axp_stat64) + { ++ int errno_out; + result = INTERNAL_SYSCALL (fstat64, err, 2, fd, buf); + if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1)) + return result; + errno_out = INTERNAL_SYSCALL_ERRNO (result, err); + if (errno_out != ENOSYS) +- goto fail; ++ { ++ __set_errno (errno_out); ++ return -1; ++ } + __libc_missing_axp_stat64 = 1; + } ++#endif + + result = INTERNAL_SYSCALL (fstat, err, 2, fd, &kbuf); + if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1)) + return __xstat_conv (vers, &kbuf, buf); +- errno_out = INTERNAL_SYSCALL_ERRNO (result, err); +- +- fail: +- __set_errno (errno_out); ++ __set_errno (INTERNAL_SYSCALL_ERRNO (result, err)); + return -1; + } + hidden_def (__fxstat) +Index: sysdeps/unix/sysv/linux/alpha/lxstat.c +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/alpha/lxstat.c,v +retrieving revision 1.1 +diff -u -p -r1.1 lxstat.c +--- sysdeps/unix/sysv/linux/alpha/lxstat.c 11 Mar 2004 02:58:44 -0000 1.1 ++++ sysdeps/unix/sysv/linux/alpha/lxstat.c 18 Feb 2005 06:21:10 -0000 +@@ -1,5 +1,5 @@ + /* lxstat using old-style Unix stat system call. +- Copyright (C) 2004 Free Software Foundation, Inc. ++ Copyright (C) 2004, 2005 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -35,27 +35,39 @@ int + __lxstat (int vers, const char *name, struct stat *buf) + { + INTERNAL_SYSCALL_DECL (err); +- int result, errno_out; ++ int result; + struct kernel_stat kbuf; + ++#if __ASSUME_STAT64_SYSCALL > 0 ++ if (vers == _STAT_VER_KERNEL64) ++ { ++ result = INTERNAL_SYSCALL (lstat64, err, 2, name, buf); ++ if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1)) ++ return result; ++ __set_errno (INTERNAL_SYSCALL_ERRNO (result, err)); ++ return -1; ++ } ++#elif defined __NR_lstat64 + if (vers == _STAT_VER_KERNEL64 && !__libc_missing_axp_stat64) + { ++ int errno_out; + result = INTERNAL_SYSCALL (lstat64, err, 2, name, buf); + if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1)) + return result; + errno_out = INTERNAL_SYSCALL_ERRNO (result, err); + if (errno_out != ENOSYS) +- goto fail; ++ { ++ __set_errno (errno_out); ++ return -1; ++ } + __libc_missing_axp_stat64 = 1; + } ++#endif + + result = INTERNAL_SYSCALL (lstat, err, 2, name, &kbuf); + if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1)) + return __xstat_conv (vers, &kbuf, buf); +- errno_out = INTERNAL_SYSCALL_ERRNO (result, err); +- +- fail: +- __set_errno (errno_out); ++ __set_errno (INTERNAL_SYSCALL_ERRNO (result, err)); + return -1; + } + hidden_def (__lxstat) +Index: sysdeps/unix/sysv/linux/alpha/xstat.c +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/alpha/xstat.c,v +retrieving revision 1.1 +diff -u -p -r1.1 xstat.c +--- sysdeps/unix/sysv/linux/alpha/xstat.c 11 Mar 2004 02:58:44 -0000 1.1 ++++ sysdeps/unix/sysv/linux/alpha/xstat.c 18 Feb 2005 06:21:10 -0000 +@@ -1,5 +1,5 @@ + /* xstat using old-style Unix stat system call. +- Copyright (C) 2004 Free Software Foundation, Inc. ++ Copyright (C) 2004, 2005 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -35,27 +35,39 @@ int + __xstat (int vers, const char *name, struct stat *buf) + { + INTERNAL_SYSCALL_DECL (err); +- int result, errno_out; ++ int result; + struct kernel_stat kbuf; + ++#if __ASSUME_STAT64_SYSCALL > 0 ++ if (vers == _STAT_VER_KERNEL64) ++ { ++ result = INTERNAL_SYSCALL (stat64, err, 2, name, buf); ++ if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1)) ++ return result; ++ __set_errno (INTERNAL_SYSCALL_ERRNO (result, err)); ++ return -1; ++ } ++#elif defined __NR_stat64 + if (vers == _STAT_VER_KERNEL64 && !__libc_missing_axp_stat64) + { ++ int errno_out; + result = INTERNAL_SYSCALL (stat64, err, 2, name, buf); + if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1)) + return result; + errno_out = INTERNAL_SYSCALL_ERRNO (result, err); + if (errno_out != ENOSYS) +- goto fail; ++ { ++ __set_errno (errno_out); ++ return -1; ++ } + __libc_missing_axp_stat64 = 1; + } ++#endif + + result = INTERNAL_SYSCALL (stat, err, 2, name, &kbuf); + if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1)) + return __xstat_conv (vers, &kbuf, buf); +- errno_out = INTERNAL_SYSCALL_ERRNO (result, err); +- +- fail: +- __set_errno (errno_out); ++ __set_errno (INTERNAL_SYSCALL_ERRNO (result, err)); + return -1; + } + hidden_def (__xstat) +Index: sysdeps/unix/sysv/linux/alpha/xstatconv.c +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/alpha/xstatconv.c,v +retrieving revision 1.6 +diff -u -p -r1.6 xstatconv.c +--- sysdeps/unix/sysv/linux/alpha/xstatconv.c 11 Mar 2004 02:58:44 -0000 1.6 ++++ sysdeps/unix/sysv/linux/alpha/xstatconv.c 26 Feb 2005 13:58:07 -0000 +@@ -1,5 +1,5 @@ + /* Convert between the kernel's `struct stat' format, and libc's. +- Copyright (C) 1997, 2003, 2004 Free Software Foundation, Inc. ++ Copyright (C) 1997, 2003, 2004, 2005 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -22,9 +22,14 @@ + #include + #include + #include ++#include + + ++#ifdef __NR_stat64 ++# if __ASSUME_STAT64_SYSCALL == 0 + int __libc_missing_axp_stat64; ++# endif ++#endif + + int + __xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf) +Index: sysdeps/unix/sysv/linux/alpha/xstatconv.h +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/unix/sysv/linux/alpha/xstatconv.h,v +retrieving revision 1.1 +diff -u -p -r1.1 xstatconv.h +--- sysdeps/unix/sysv/linux/alpha/xstatconv.h 11 Mar 2004 02:58:44 -0000 1.1 ++++ sysdeps/unix/sysv/linux/alpha/xstatconv.h 26 Feb 2005 13:58:07 -0000 +@@ -18,7 +18,12 @@ + 02111-1307 USA. */ + + #include ++#include + ++#ifdef __NR_stat64 ++# if __ASSUME_STAT64_SYSCALL == 0 + extern int __libc_missing_axp_stat64 attribute_hidden; ++# endif ++#endif + extern int __xstat_conv (int vers, struct kernel_stat *kbuf, void *ubuf) + attribute_hidden; --- glibc-2.5.orig/debian/patches/amd64/local-biarch.diff +++ glibc-2.5/debian/patches/amd64/local-biarch.diff @@ -0,0 +1,30 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Allow ldconfig to work on x86-64/i386 biarch systems + +--- libc/sysdeps/unix/sysv/linux/x86_64/dl-cache.h.orig 2006-03-27 00:08:28.219686388 +0200 ++++ libc/sysdeps/unix/sysv/linux/x86_64/dl-cache.h 2006-03-27 00:09:23.199203246 +0200 +@@ -22,4 +22,23 @@ + #define _dl_cache_check_flags(flags) \ + ((flags) == _DL_CACHE_DEFAULT_ID) + +-#include ++#define add_system_dir(dir) \ ++ do \ ++ { \ ++ size_t len = strlen (dir); \ ++ char path[len + 3]; \ ++ memcpy (path, dir, len + 1); \ ++ if (len >= 6 && ! memcmp (path + len - 6, "/lib32", 6)) \ ++ { \ ++ len -= 2; \ ++ path[len] = '\0'; \ ++ } \ ++ add_dir (path); \ ++ if (len >= 4 && ! memcmp (path + len - 4, "/lib", 4)) \ ++ { \ ++ memcpy (path + len, "32", 3); \ ++ add_dir (path); \ ++ } \ ++ } while (0) ++ ++#include --- glibc-2.5.orig/debian/patches/any/local-tcsetaddr.diff +++ glibc-2.5/debian/patches/any/local-tcsetaddr.diff @@ -0,0 +1,81 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: tcsetattr sanity check on PARENB/CREAD/CSIZE for ptys +# DP: Related bugs: 218131 +# DP: Author: Jeff Licquia +# DP: Upstream status: [In CVS | Debian-Specific | Pending | Not submitted ] +# DP: Status Details: +# DP: Date: 2003-10-29 + +Index: sysdeps/unix/sysv/linux/tcsetattr.c +=================================================================== +--- sysdeps/unix/sysv/linux/tcsetattr.c.orig ++++ sysdeps/unix/sysv/linux/tcsetattr.c +@@ -48,7 +48,12 @@ + const struct termios *termios_p; + { + struct __kernel_termios k_termios; ++ struct __kernel_termios k_termios_old; + unsigned long int cmd; ++ int retval, old_retval; ++ ++ /* Preserve the previous termios state if we can. */ ++ old_retval = INLINE_SYSCALL (ioctl, 3, fd, TCGETS, &k_termios_old); + + switch (optional_actions) + { +@@ -80,6 +85,54 @@ + memcpy (&k_termios.c_cc[0], &termios_p->c_cc[0], + __KERNEL_NCCS * sizeof (cc_t)); + +- return INLINE_SYSCALL (ioctl, 3, fd, cmd, &k_termios); ++ retval = INLINE_SYSCALL (ioctl, 3, fd, cmd, &k_termios); ++ ++ /* The Linux kernel silently ignores the invalid c_cflag on pty. ++ We have to check it here, and return an error. But if some other ++ setting was successfully changed, POSIX requires us to report ++ success. */ ++ if ((retval == 0) && (old_retval == 0)) ++ { ++ int save = errno; ++ retval = INLINE_SYSCALL (ioctl, 3, fd, TCGETS, &k_termios); ++ if (retval) ++ { ++ /* We cannot verify if the setting is ok. We don't return ++ an error (?). */ ++ __set_errno (save); ++ retval = 0; ++ } ++ else if ((k_termios_old.c_oflag != k_termios.c_oflag) || ++ (k_termios_old.c_lflag != k_termios.c_lflag) || ++ (k_termios_old.c_line != k_termios.c_line) || ++ ((k_termios_old.c_iflag | IBAUD0) != (k_termios.c_iflag | IBAUD0))) ++ { ++ /* Some other setting was successfully changed, which ++ means we should not return an error. */ ++ __set_errno (save); ++ retval = 0; ++ } ++ else if ((k_termios_old.c_cflag | (PARENB & CREAD & CSIZE)) != ++ (k_termios.c_cflag | (PARENB & CREAD & CSIZE))) ++ { ++ /* Some other c_cflag setting was successfully changed, which ++ means we should not return an error. */ ++ __set_errno (save); ++ retval = 0; ++ } ++ else if ((termios_p->c_cflag & (PARENB | CREAD)) ++ != (k_termios.c_cflag & (PARENB | CREAD)) ++ || ((termios_p->c_cflag & CSIZE) ++ && (termios_p->c_cflag & CSIZE) ++ != (k_termios.c_cflag & CSIZE))) ++ { ++ /* It looks like the Linux kernel silently changed the ++ PARENB/CREAD/CSIZE bits in c_cflag. Report it as an ++ error. */ ++ __set_errno (EINVAL); ++ retval = -1; ++ } ++ } ++ return retval; + } + libc_hidden_def (tcsetattr) --- glibc-2.5.orig/debian/patches/any/local-rtld.diff +++ glibc-2.5/debian/patches/any/local-rtld.diff @@ -0,0 +1,47 @@ +2006-01-21 Aurelien Jarno + + * Makeconfig: new configuration variable rtlddir to change the + dynamic linker in the ELF binaries, which defaults to slibdir + +2005-08-30 Andreas Jochen + * Makeconfig: use rtlddir instead of slibdir + * elf/Makefile: likewise + +Index: Makeconfig +=================================================================== +--- Makeconfig.orig ++++ Makeconfig +@@ -201,6 +201,11 @@ + endif + inst_slibdir = $(install_root)$(slibdir) + ++# Directory of the dynamic linker in the ELF binaries ++ifndef rtlddir ++rtlddir := $(slibdir) ++endif ++ + # Prefix to put on files installed in $(libdir). For libraries `libNAME.a', + # the prefix is spliced between `lib' and the name, so the linker switch + # `-l$(libprefix)NAME' finds the library; for other files the prefix is +@@ -466,7 +471,7 @@ + endif + ifndef config-LDFLAGS + ifeq (yesyes,$(build-shared)$(elf)) +-config-LDFLAGS = -Wl,-dynamic-linker=$(slibdir)/$(rtld-installed-name) ++config-LDFLAGS = -Wl,-dynamic-linker=$(rtlddir)/$(rtld-installed-name) + endif + endif + ifndef link-libc +Index: elf/Makefile +=================================================================== +--- elf/Makefile.orig ++++ elf/Makefile +@@ -317,7 +317,7 @@ + rm -f $@.lds + + # interp.c exists just to get this string into the libraries. +-CFLAGS-interp.c = -D'RUNTIME_LINKER="$(slibdir)/$(rtld-installed-name)"' \ ++CFLAGS-interp.c = -D'RUNTIME_LINKER="$(rtlddir)/$(rtld-installed-name)"' \ + -DNOT_IN_libc=1 + $(objpfx)interp.os: $(common-objpfx)config.make + --- glibc-2.5.orig/debian/patches/any/local-2.6.19-linux-libc-dev.diff +++ glibc-2.5/debian/patches/any/local-2.6.19-linux-libc-dev.diff @@ -0,0 +1,58 @@ +# DP: Description: Add missing bits in 2.6.19 kernel headers +# DP: Author: Jeff Bailey +# DP: Upstream status: Not Submitted. +# DP: Status Details: No response on http://sourceware.org/ml/libc-alpha/2006-10/msg00024.html +# DP: Date: 2006-10-27 + +--- sysdeps/unix/sysv/linux/ifaddrs.c.old 2006-10-26 21:58:12.000000000 -0400 ++++ sysdeps/unix/sysv/linux/ifaddrs.c 2006-10-26 23:06:12.000000000 -0400 +@@ -33,9 +33,14 @@ + #include + #include + #include ++#include + + #include "netlinkaccess.h" + ++#define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg)))) ++#define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg)) ++#define IFA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg)))) ++#define IFA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg)) + + /* We don't know if we have NETLINK support compiled in in our + Kernel, so include the old implementation as fallback. */ +--- sysdeps/unix/sysv/linux/check_pf.c.old 2006-10-26 23:04:57.000000000 -0400 ++++ sysdeps/unix/sysv/linux/check_pf.c 2006-10-26 23:05:46.000000000 -0400 +@@ -30,10 +30,15 @@ + #include + #include + #include ++#include + + #include + #include + ++#define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg)))) ++#define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg)) ++#define IFA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg)))) ++#define IFA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg)) + + #ifndef IFA_F_TEMPORARY + # define IFA_F_TEMPORARY IFA_F_SECONDARY +--- sysdeps/unix/sysv/linux/if_index.c.old 2006-10-26 23:38:48.000000000 -0400 ++++ sysdeps/unix/sysv/linux/if_index.c 2006-10-26 23:39:42.000000000 -0400 +@@ -28,9 +28,14 @@ + #include + #include + #include ++#include + + #include "netlinkaccess.h" + ++#define IFA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg)))) ++#define IFA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg)) ++#define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg)))) ++#define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg)) + + /* Variable to signal whether SIOCGIFCONF is not available. */ + # if __ASSUME_SIOCGIFNAME == 0 --- glibc-2.5.orig/debian/patches/any/local-iconv-fix-trampoline.diff +++ glibc-2.5/debian/patches/any/local-iconv-fix-trampoline.diff @@ -0,0 +1,88 @@ +# DP: Description: Fix iconvconfig segfault when run under exec-shield, +# PaX or similar. (#397020) +# DP: Patch Author: Robert Connolly +# DP: Upstream status: rejected (non-upstream kernels not supported) +# DP: Date: 2006-10-11 + +diff -Naur glibc-2.5.orig/iconv/iconvconfig.c glibc-2.5/iconv/iconvconfig.c +--- glibc-2.5.orig/iconv/iconvconfig.c 2006-09-21 03:57:30.000000000 +0000 ++++ glibc-2.5/iconv/iconvconfig.c 2006-10-11 21:36:18.000000000 +0000 +@@ -1011,6 +1011,38 @@ + module name offset + (following last entry with step count 0) + */ ++ ++/* Function to insert the names. */ ++/* Made non-nested to avoid trampoline. ++ * Requires hash_table and hash_size to be made global, ++ * but since the caller (write_output) is called once ++ * in the only thread there should be no problem */ ++static struct hash_entry *hash_table; ++static size_t hash_size; ++static void ++name_insert (const void *nodep, VISIT value, int level) ++ { ++ struct name *name; ++ unsigned int idx; ++ unsigned int hval2; ++ ++ if (value != leaf && value != postorder) ++ return; ++ ++ name = *(struct name **) nodep; ++ idx = name->hashval % hash_size; ++ hval2 = 1 + name->hashval % (hash_size - 2); ++ ++ while (hash_table[idx].string_offset != 0) ++ if ((idx += hval2) >= hash_size) ++ idx -= hash_size; ++ ++ hash_table[idx].string_offset = strtaboffset (name->strent); ++ ++ assert (name->module_idx != -1); ++ hash_table[idx].module_idx = name->module_idx; ++ } ++ + static int + write_output (void) + { +@@ -1018,8 +1050,6 @@ + char *string_table; + size_t string_table_size; + struct gconvcache_header header; +- struct hash_entry *hash_table; +- size_t hash_size; + struct module_entry *module_table; + char *extra_table; + char *cur_extra_table; +@@ -1032,30 +1062,6 @@ + char tmpfname[(output_file == NULL ? sizeof finalname : output_file_len + 1) + + strlen (".XXXXXX")]; + +- /* Function to insert the names. */ +- auto void +- name_insert (const void *nodep, VISIT value, int level) +- { +- struct name *name; +- unsigned int idx; +- unsigned int hval2; +- +- if (value != leaf && value != postorder) +- return; +- +- name = *(struct name **) nodep; +- idx = name->hashval % hash_size; +- hval2 = 1 + name->hashval % (hash_size - 2); +- +- while (hash_table[idx].string_offset != 0) +- if ((idx += hval2) >= hash_size) +- idx -= hash_size; +- +- hash_table[idx].string_offset = strtaboffset (name->strent); +- +- assert (name->module_idx != -1); +- hash_table[idx].module_idx = name->module_idx; +- } + + /* Open the output file. */ + if (output_file == NULL) --- glibc-2.5.orig/debian/patches/any/local-notls.diff +++ glibc-2.5/debian/patches/any/local-notls.diff @@ -0,0 +1,164 @@ +# DP: Description: Fix build when TLS is not available. +# DP: Upstream status: Submitted parts have been rejected. Parts + submitted would very probably be rejected. + +2007-04-13 Aurelien Jarno + + linuxthreads/sysdeps/pthread/gai_misc.h: Include . + +2007-02-09 Aurelien Jarno + + resolv/gai_misc.h: Include . + +2007-02-06 Petr Salinger + + inet/inet_ntoa.c: Only use __thread if USE___THREAD. + +2005-08-28 Thomas Schwinge + + malloc/memusage.c: Only use __thread if USE___THREAD. + + +Index: malloc/memusage.c +=================================================================== +--- malloc/memusage.c.orig ++++ malloc/memusage.c +@@ -84,7 +84,11 @@ + static memusage_cntr_t decreasing_mremap; + static memusage_size_t current_heap; + static memusage_size_t peak_use[3]; ++#if USE___THREAD + static __thread uintptr_t start_sp; ++#else ++static uintptr_t start_sp; ++#endif + + /* A few macros to make the source more readable. */ + #define peak_heap peak_use[0] +Index: inet/inet_ntoa.c +=================================================================== +--- inet/inet_ntoa.c.orig ++++ inet/inet_ntoa.c +@@ -21,10 +21,14 @@ + #include + #include + #include ++#include + + /* The interface of this function is completely stupid, it requires a + static buffer. We relax this a bit in that we allow one buffer for + each thread. */ ++ ++#if USE_TLS && HAVE___THREAD ++ + static __thread char buffer[18]; + + +@@ -37,3 +41,83 @@ + + return buffer; + } ++ ++#else ++#include ++ ++/* The interface of this function is completely stupid, it requires a ++ static buffer. We relax this a bit in that we allow at least one ++ buffer for each thread. */ ++ ++/* This is the key for the thread specific memory. */ ++static __libc_key_t key; ++ ++/* If nonzero the key allocation failed and we should better use a ++ static buffer than fail. */ ++static char local_buf[18]; ++static char *static_buf; ++ ++/* Destructor for the thread-specific data. */ ++static void init (void); ++static void free_key_mem (void *mem); ++ ++ ++char * ++inet_ntoa (struct in_addr in) ++{ ++ __libc_once_define (static, once); ++ char *buffer; ++ unsigned char *bytes; ++ ++ /* If we have not yet initialized the buffer do it now. */ ++ __libc_once (once, init); ++ ++ if (static_buf != NULL) ++ buffer = static_buf; ++ else ++ { ++ /* We don't use the static buffer and so we have a key. Use it ++ to get the thread-specific buffer. */ ++ buffer = __libc_getspecific (key); ++ if (buffer == NULL) ++ { ++ /* No buffer allocated so far. */ ++ buffer = malloc (18); ++ if (buffer == NULL) ++ /* No more memory available. We use the static buffer. */ ++ buffer = local_buf; ++ else ++ __libc_setspecific (key, buffer); ++ } ++ } ++ ++ bytes = (unsigned char *) ∈ ++ __snprintf (buffer, 18, "%d.%d.%d.%d", ++ bytes[0], bytes[1], bytes[2], bytes[3]); ++ ++ return buffer; ++} ++ ++ ++/* Initialize buffer. */ ++static void ++init (void) ++{ ++ if (__libc_key_create (&key, free_key_mem)) ++ /* Creating the key failed. This means something really went ++ wrong. In any case use a static buffer which is better than ++ nothing. */ ++ static_buf = local_buf; ++} ++ ++ ++/* Free the thread specific data, this is done if a thread terminates. */ ++static void ++free_key_mem (void *mem) ++{ ++ free (mem); ++ __libc_setspecific (key, NULL); ++} ++ ++#endif ++ +Index: linuxthreads/sysdeps/pthread/gai_misc.h +=================================================================== +--- linuxthreads/sysdeps/pthread/gai_misc.h.orig ++++ linuxthreads/sysdeps/pthread/gai_misc.h +@@ -23,6 +23,7 @@ + + #include + #include ++#include + + #undef DONT_NEED_GAI_MISC_COND + +Index: resolv/gai_misc.h +=================================================================== +--- resolv/gai_misc.h.orig ++++ resolv/gai_misc.h +@@ -22,6 +22,7 @@ + + #include + #include ++#include + + + /* Used to synchronize. */ --- glibc-2.5.orig/debian/patches/any/cvs-2.5-branch-update.diff +++ glibc-2.5/debian/patches/any/cvs-2.5-branch-update.diff @@ -0,0 +1,48077 @@ +diff -urN --exclude=CVS glibc-2_5/libc/ChangeLog glibc-2_5-branch/libc/ChangeLog +--- glibc-2_5/libc/ChangeLog 2006-09-29 20:45:39.000000000 +0200 ++++ glibc-2_5-branch/libc/ChangeLog 2007-03-20 14:21:30.000000000 +0100 +@@ -1,5 +1,416 @@ ++2007-01-05 Steven Munroe ++ ++ * stdlib/tst-makecontext.c: Include errno.h. Change main() ++ to do_test(). Define TEST_FUNCTION. Include test-skeleton.c. ++ (do_test): Check errno and exit(0) if ENOSYS. ++ ++2007-01-11 Jakub Jelinek ++ ++ * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix handling of multi-byte ++ thousands separators. ++ * stdlib/Makefile: Add rules to build and run tst-strtod4. ++ * stdlib/tst-strtod4.c: New test. ++ ++ [BZ #3855] ++ * stdlib/strtod_l.c (____STRTOF_INTERNAL): 0x. not followed by ++ hexadecimal digit should accept just the initial 0. ++ * stdlib/tst-strtod2.c (tests): New variable. ++ (do_test): Run several tests rather than just one. ++ ++2007-01-03 Ulrich Drepper ++ ++ * stdlib/Makefile (tst-strtod3-ENV): Define. ++ ++2006-12-11 Ulrich Drepper ++ ++ * stdlib/strtod_l.c (____STRTOF_INTERNAL): Parse thousand ++ separators also if no non-zero digits found. ++ * stdlib/Makefile (tests): Add tst-strtod3. ++ ++2006-12-09 Ulrich Drepper ++ ++ [BZ #3664] ++ * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix test to recognize ++ empty parsed strings. ++ * stdlib/Makefile (tests): Add tst-strtod2. ++ * stdlib/tst-strtod2.c: New file. ++ ++ [BZ #3673] ++ * stdlib/strtod_l.c (____STRTOF_INTERNAL): Fix exp_limit ++ computation. ++ * stdlib/Makefile (tests): Add tst-atof2. ++ * stdlib/tst-atof2.c: New file. ++ ++ [BZ #3674] ++ * stdlib/strtod_l.c (____STRTOF_INTERNAL): Adjust exponent value ++ correctly if removing trailing zero of hex-float. ++ * stdlib/Makefile (tests): Add tst-atof1. ++ * stdlib/tst-atof1.c: New file. ++ ++2007-01-03 Ulrich Drepper ++ ++ * string/Makefile (tst-strxfrm2-ENV): Define. ++ ++2006-11-10 Jakub Jelinek ++ ++ * string/strxfrm_l.c (STRXFRM): Fix trailing \1 optimization ++ if N is one bigger than return value. ++ * string/tst-strxfrm2.c (do_test): Also test strxfrm with l1 + 1 ++ and l1 last arguments, if buf is defined, verify the return value ++ equals to strlen (buf) and verify no byte beyond passed length ++ is modified. ++ ++2006-11-09 Ulrich Drepper ++ ++ * string/Makefile (tests): Add tst-strxfrm2. ++ * string/tst-strxfrm2.c: New file. ++ ++2006-11-08 Jakub Jelinek ++ ++ * string/strxfrm_l.c (STRXFRM): Do the trailing \1 removal ++ optimization even if needed > n. ++ ++2006-12-22 Gavin Romig-Koch ++ ++ * nis/nss_compat/compat-grp.c (internal_getgrgid_r): Don't ++ blacklist the group till after we look it up. ++ ++2006-12-21 Ulrich Drepper ++ ++ * include/atomic.h (atomic_forced_read): New macro. ++ ++2006-12-19 Jakub Jelinek ++ ++ * nss/getXXbyYY_r.c: Include atomic.h. ++ (INTERNAL (REENTRANT_NAME)): Write startp after start_fct, ++ add atomic_write_barrier () in between. ++ ++2006-12-18 Jakub Jelinek ++ ++ [BZ #3747] ++ * stdlib/jrand48_r.c (__jrand48_r): Make sure result is in the ++ [-231 .. 231) range. ++ * stdlib/tst-rand48.c (main): Fix expected values for 64-bit ++ targets. ++ * stdlib/tst-rand48-2.c: New test. ++ * stdlib/Makefile (tests): Add tst-rand48-2. ++ ++2006-12-14 Jakub Jelinek ++ ++ * misc/tst-pselect.c (do_test): Fix sigblock argument. ++ ++2006-12-14 Ulrich Drepper ++ ++ * misc/tst-pselect.c (do_test): Make sure the helper process is ++ terminating when the test is aborted. ++ ++2006-12-13 Ulrich Drepper ++ ++ [BZ #2337] ++ * libio/Makefile (tests): Add tst-setvbuf1. ++ * libio/tst-setvbuf1.c: New file. ++ ++2006-12-08 Jakub Jelinek ++ ++ [BZ #2337] ++ * libio/genops.c (__uflow): Fix a typo. ++ * libio/wfiledoalloc.c (_IO_wfile_doallocate): Don't stat ++ nor set _IO_LINE_BUF bit here. Size the wide buffer based on ++ the narrow buffer size. ++ ++2006-11-24 Jakub Jelinek ++ ++ [BZ #2337] ++ * libio/libio.h (_IO_FLAGS2_USER_WBUF): Define. ++ * libio/wgenops.c (_IO_wsetb, _IO_wdefault_finish): Test and set ++ _IO_FLAGS2_USER_WBUF bit in _flags2 instead of _IO_USER_BUF bit ++ in _flags. ++ * libio/wstrops.c (_IO_wstr_overflow, enlarge_userbuf, ++ _IO_wstr_finish): Likewise. ++ * libio/wmemstream.c (open_wmemstream): Likewise. ++ * libio/fileops.c (_IO_new_file_close_it): Call _IO_set[bgp] ++ even for wide streams. ++ ++2006-12-09 Jakub Jelinek ++ ++ * misc/mntent_r.c (__hasmntopt): Check p[optlen] even when p == rest. ++ Start searching for next comma at p rather than rest. ++ * misc/Makefile (tests): Add tst-mntent2. ++ * misc/tst-mntent2.c: New test. ++ ++2006-12-09 Ulrich Drepper ++ ++ [BZ #3632] ++ * include/features.h: Fix comment about default value for ++ _POSIX_C_SOURCE. ++ ++2006-12-09 Jakub Jelinek ++ ++ * misc/getusershell.c (initshells): Check for integer overflows. ++ Make strings buffer one bigger as fgets always succeeds when second ++ argument is 1. Don't use calloc for shells array. Disallow ++ / as shell. ++ ++2006-12-05 Jakub Jelinek ++ ++ * nis/nis_subr.c (nis_getnames): Revert last change. ++ ++2006-10-11 Jakub Jelinek ++ ++ * nis/nis_defaults.c (__nis_default_access): Don't call getenv twice. ++ ++ * nis/nis_subr.c (nis_getnames): Use __secure_getenv instead of getenv. ++ * sysdeps/generic/unsecvars.h: Add NIS_PATH. ++ ++2006-12-04 Jakub Jelinek ++ ++ * sysdeps/unix/sysv/linux/ttyname.c: Include termios.h. ++ (ttyname): Use tcgetattr instead of isatty, don't set errno to ENOTTY. ++ * sysdeps/unix/sysv/linux/ttyname_r.c: Include termios.h. ++ (__ttyname_r): Use tcgetattr instead of isatty, don't set errno to ++ ENOTTY. ++ * io/Makefile: Add rules to build and run tst-ttyname_r test. ++ * io/tst-ttyname_r.c: New test. ++ ++2006-11-28 Jakub Jelinek ++ ++ * elf/dl-support.c: Include dl-procinfo.h. ++ * sysdeps/powerpc/dl-procinfo.h (PPC_PLATFORM_POWER4, ++ PPC_PLATFORM_PPC970, PPC_PLATFORM_POWER5, PPC_PLATFORM_POWER5_PLUS, ++ PPC_PLATFORM_POWER6, PPC_PLATFORM_CELL_BE, PPC_PLATFORM_POWER6X): ++ Define. ++ (_dl_string_platform): Use PPC_PLATFORM_* macros instead of ++ hardcoded constants. ++ * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_platform): Use ++ PPC_PLATFORM_* macros for array designators. ++ ++2006-11-11 Steven Munroe ++ ++ * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 3 new cap ++ names to the beginning. ++ (_dl_powerpc_platforms): Add "power6x". ++ * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease. ++ (HWCAP_IMPORTANT): Add PPC_FEATURE_HAS_DFP. ++ (_DL_PLATFORMS_COUNT): Increase. ++ (_dl_string_platform): Handle power6x case. ++ * sysdeps/powerpc/sysdep.h (PPC_FEATURE_PA6T, PPC_FEATURE_HAS_DFP, ++ PPC_FEATURE_POWER6_EXT): Define. ++ (PPC_FEATURE_POWER5, PPC_FEATURE_POWER5_PLUS): Correct Comment. ++ ++2006-11-27 Jakub Jelinek ++ ++ [BZ #3559] ++ * sunrpc/svc_run.c (svc_run): Fail instead of segfaulting if ++ malloc crashed. ++ ++2006-11-14 Jakub Jelinek ++ ++ * nss/nss_files/files-alias.c (get_next_alias): Set line back ++ to first_unused after parsing :include: file. ++ ++2006-11-14 Ulrich Drepper ++ ++ * po/nl.po: Update from translation team. ++ ++2006-11-10 Ulrich Drepper ++ ++ * po/sv.po: Update from translation team. ++ ++2006-11-01 Ulrich Drepper ++ ++ * po/sv.po: Update from translation team. ++ ++2006-10-29 Ulrich Drepper ++ ++ * po/sv.po: Update from translation team. ++ ++2006-10-09 Ulrich Drepper ++ ++ * po/sv.po: Update from translation team. ++ ++2006-10-07 Ulrich Drepper ++ ++ * po/tr.po: Update from translation team. ++ ++2006-10-06 Ulrich Drepper ++ ++ * po/pl.po: Update from translation team. ++ ++2006-11-10 Ulrich Drepper ++ ++ [BZ #3451] ++ * sysdeps/i386/fpu/bits/mathinline.h (floor): Make rounding mode ++ change atomic. ++ (ceil): Likewise. ++ ++2006-11-09 Ulrich Drepper ++ ++ * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): Add ++ noinline attribute. ++ ++2006-11-10 Jakub Jelinek ++ ++ * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): Add ++ noinline attribute. ++ ++2006-11-05 Ulrich Drepper ++ ++ * sysdeps/unix/sysv/linux/i386/sysconf.c (intel_check_word): ++ Update handling of cache descriptor 0x49 for new models. ++ * sysdeps/unix/sysv/linux/x86_64/sysconf.c (intel_check_word): ++ Likewise. ++ ++2006-11-08 Jakub Jelinek ++ ++ * elf/dl-load.c (decompose_rpath): Return bool rather than void. ++ If l->l_name is on inhibit_rpath list, set sps->dirs to -1 and ++ return false, otherwise return true. ++ (cache_rpath): Return decompose_rpath return value. ++ ++2006-11-02 Jakub Jelinek ++ ++ * malloc/memusage.c (dest): Reset not_me back to false after ++ printing statistics. ++ ++2006-10-27 Ulrich Drepper ++ ++ * elf/dl-close.c (_dl_close_worker): Renamed from _dl_close and ++ split out locking and parameter checking. ++ (_dl_close): Call _dl_close_worker after locking and checking. ++ * elf/dl-open.c (_dl_open): Call _dl_close_worker instead of ++ _dl_close. ++ * elf/Makefile: Add rules to build and run tst-thrlock. ++ * elf/tst-thrlock.c: New file. ++ ++ [BZ #3429] ++ * elf/dl-open.c (dl_open_worker): Keep holding dl_load_lock until ++ we are sure we do not need it anymore for _dl_close. Also move ++ the asserts inside the lock region. ++ Patch mostly by Suzuki . ++ ++2006-10-17 Jakub Jelinek ++ ++ * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses ++ as signed longs, check for x_base + pos overflow. ++ * sunrpc/Makefile (tests): Add tst-xdrmem2. ++ * sunrpc/tst-xdrmem2.c: New test. ++ ++2006-10-16 Ulrich Drepper ++ ++ [BZ #3369] ++ * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Fix typos in rules 4 ++ and 7. ++ ++2006-10-13 Ulrich Drepper ++ ++ * elf/dl-minimal.c (realloc): Optimize last patch. ++ ++2006-10-12 Richard Sandiford ++ ++ [BZ #3352] ++ * elf/dl-minimal.c (realloc): Let malloc() return a new pointer, ++ and use memcpy() if it does. ++ ++2006-10-11 Ulrich Drepper ++ ++ * sysdeps/unix/sysv/linux/i386/sysdep.h (DOARGS_6): Fix offset. ++ ++2006-10-10 Ulrich Drepper ++ ++ * nis/nis_subr.c (nis_getnames): Add trailing dot to NIS_PATH ++ components which lack them. ++ ++ * nis/nis_subr.c (nis_getnames): Make sure that we always return ++ at least one entry consisting of the parameter concatenated with ++ the domain. ++ ++2006-10-09 Jakub Jelinek ++ ++ * elf/dl-debug.c (_dl_debug_initialize): Check r->r_map for 0 ++ rather than r->r_brk. ++ ++2006-10-06 Ulrich Drepper ++ ++ * nis/nis_table.c (nis_list): If __follow_path fails in the new ++ code, make sure the nis_freeresult call doesn't crash and that the ++ result is reported correctly. ++ ++2006-09-27 Jakub Jelinek ++ ++ * nis/nis_table.c (nis_list): Handle FOLLOW_PATH | ALL_RESULTS ++ when callback is NULL. ++ ++ * nis/Versions (libnss_nisplus): Add ++ _nss_nisplus_initgroups_dyn@@GLIBC_PRIVATE. ++ * nis/Makefile (libnss_nisplus-routines): Add nisplus-initgroups. ++ * nis/nss_nisplus/nisplus-grp.c (tablename_val, tablename_len, ++ _nss_create_tablename): Rename to... ++ (grp_tablename_val, grp_tablename_len, _nss_grp_create_tablename): ++ ... these. No longer static. ++ (internal_setgrent): Adjust users. ++ (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise. ++ Don't use locking around _nss_grp_create_tablename call. ++ * nis/nss_nisplus/nisplus-initgroups.c: New file. ++ ++2006-10-06 Andreas Jaeger ++ ++ * include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now. ++ ++2006-10-06 Ulrich Drepper ++ ++ * po/pl.po: Update from translation team. ++ ++ * nscd/nscd.c (main): Fix typo in message. ++ Patch by Jakub Bogsz . ++ ++2006-10-02 Jakub Jelinek ++ ++ [BZ #3291] ++ * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include ++ errno.h, signal.h, unistd.h and sysdep-cancel.h. ++ (__sigprocmask): Define. ++ ++2006-10-02 Ulrich Drepper ++ ++ * elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is ++ used. ++ ++2006-10-02 Jakub Jelinek ++ ++ * nscd/mem.c (mempool_alloc): Round array size to 16 bytes ++ in oldtotal and newtotal calculation. ++ * nscd/nscd-client.h (struct mapped_database): Add datasize ++ field. ++ * nscd/nscd_helper.c (get_mapping): Initialize datasize field. ++ (__nscd_get_map_ref): Get a new mapping even if mapping's data_size ++ increased. ++ (__nscd_cache_search): Add checks to make sure we never reference ++ data beyond the current mapping. ++ ++2006-10-02 Dmitry V. Levin ++ ++ * sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val ++ variables const to avoid compiler warnings. ++ ++ * io/fts.c (fts_close): Remove redundant checks. ++ (fts_build): Likewise. ++ (fts_palloc): Likewise. ++ ++ * manual/message.texi (Advanced gettext functions, ++ Using gettextized software): Fix typos. ++ ++2006-09-30 Ulrich Drepper ++ ++ * posix/glob.c (glob_in_dir): Add some comments and asserts to ++ explain why there are no leaks. ++ + 2006-09-29 Ulrich Drepper + ++ * libio/wmemstream.c: Include . ++ * libio/bug-wmemstream1.c: Likewise. ++ * libio/tst-wmemstream1.c: Likewise. ++ * libio/tst-wmemstream2.c: Likewise. ++ + * version.h (RELEASE): Bump to 2.5. + * README: Regenerated. + +diff -urN --exclude=CVS glibc-2_5/libc/elf/dl-close.c glibc-2_5-branch/libc/elf/dl-close.c +--- glibc-2_5/libc/elf/dl-close.c 2006-09-19 16:39:42.000000000 +0200 ++++ glibc-2_5-branch/libc/elf/dl-close.c 2007-03-20 14:21:38.000000000 +0100 +@@ -101,22 +101,9 @@ + + + void +-_dl_close (void *_map) ++_dl_close_worker (struct link_map *map) + { +- struct link_map *map = _map; + Lmid_t ns = map->l_ns; +- unsigned int i; +- /* First see whether we can remove the object at all. */ +- if (__builtin_expect (map->l_flags_1 & DF_1_NODELETE, 0) +- && map->l_init_called) +- /* Nope. Do nothing. */ +- return; +- +- if (__builtin_expect (map->l_direct_opencount, 1) == 0) +- GLRO(dl_signal_error) (0, map->l_name, NULL, N_("shared object not open")); +- +- /* Acquire the lock. */ +- __rtld_lock_lock_recursive (GL(dl_load_lock)); + + /* One less direct use. */ + --map->l_direct_opencount; +@@ -137,7 +124,6 @@ + _dl_debug_printf ("\nclosing file=%s; direct_opencount=%u\n", + map->l_name, map->l_direct_opencount); + +- __rtld_lock_unlock_recursive (GL(dl_load_lock)); + return; + } + +@@ -240,7 +226,7 @@ + #endif + bool unload_any = false; + unsigned int first_loaded = ~0; +- for (i = 0; i < nloaded; ++i) ++ for (unsigned int i = 0; i < nloaded; ++i) + { + struct link_map *imap = maps[i]; + +@@ -411,7 +397,7 @@ + + /* Check each element of the search list to see if all references to + it are gone. */ +- for (i = first_loaded; i < nloaded; ++i) ++ for (unsigned int i = first_loaded; i < nloaded; ++i) + { + struct link_map *imap = maps[i]; + if (!used[i]) +@@ -627,6 +613,30 @@ + goto retry; + + dl_close_state = not_pending; ++} ++ ++ ++void ++_dl_close (void *_map) ++{ ++ struct link_map *map = _map; ++ ++ /* First see whether we can remove the object at all. */ ++ if (__builtin_expect (map->l_flags_1 & DF_1_NODELETE, 0)) ++ { ++ assert (map->l_init_called); ++ /* Nope. Do nothing. */ ++ return; ++ } ++ ++ if (__builtin_expect (map->l_direct_opencount, 1) == 0) ++ GLRO(dl_signal_error) (0, map->l_name, NULL, N_("shared object not open")); ++ ++ /* Acquire the lock. */ ++ __rtld_lock_lock_recursive (GL(dl_load_lock)); ++ ++ _dl_close_worker (map); ++ + __rtld_lock_unlock_recursive (GL(dl_load_lock)); + } + +diff -urN --exclude=CVS glibc-2_5/libc/elf/dl-debug.c glibc-2_5-branch/libc/elf/dl-debug.c +--- glibc-2_5/libc/elf/dl-debug.c 2006-03-01 07:18:30.000000000 +0100 ++++ glibc-2_5-branch/libc/elf/dl-debug.c 2007-03-20 14:21:38.000000000 +0100 +@@ -54,7 +54,7 @@ + else + r = &GL(dl_ns)[ns]._ns_debug; + +- if (r->r_brk == 0 || ldbase != 0) ++ if (r->r_map == NULL || ldbase != 0) + { + /* Tell the debugger where to find the map of loaded objects. */ + r->r_version = 1 /* R_DEBUG_VERSION XXX */; +diff -urN --exclude=CVS glibc-2_5/libc/elf/dl-load.c glibc-2_5-branch/libc/elf/dl-load.c +--- glibc-2_5/libc/elf/dl-load.c 2006-08-29 03:43:42.000000000 +0200 ++++ glibc-2_5-branch/libc/elf/dl-load.c 2007-03-20 14:21:38.000000000 +0100 +@@ -511,7 +511,7 @@ + } + + +-static void ++static bool + internal_function + decompose_rpath (struct r_search_path_struct *sps, + const char *rpath, struct link_map *l, const char *what) +@@ -546,19 +546,8 @@ + { + /* This object is on the list of objects for which the + RUNPATH and RPATH must not be used. */ +- result = calloc (1, sizeof *result); +- if (result == NULL) +- { +- signal_error_cache: +- errstring = N_("cannot create cache for search path"); +- signal_error: +- _dl_signal_error (ENOMEM, NULL, NULL, errstring); +- } +- +- sps->dirs = result; +- sps->malloced = 1; +- +- return; ++ sps->dirs = (void *) -1; ++ return false; + } + + while (*inhp != '\0') +@@ -588,7 +577,11 @@ + result = (struct r_search_path_elem **) malloc ((nelems + 1 + 1) + * sizeof (*result)); + if (result == NULL) +- goto signal_error_cache; ++ { ++ errstring = N_("cannot create cache for search path"); ++ signal_error: ++ _dl_signal_error (ENOMEM, NULL, NULL, errstring); ++ } + + fillin_rpath (copy, result, ":", 0, what, where); + +@@ -599,6 +592,7 @@ + sps->dirs = result; + /* The caller will change this value if we haven't used a real malloc. */ + sps->malloced = 1; ++ return true; + } + + /* Make sure cached path information is stored in *SP +@@ -623,10 +617,9 @@ + } + + /* Make sure the cache information is available. */ +- decompose_rpath (sp, (const char *) (D_PTR (l, l_info[DT_STRTAB]) +- + l->l_info[tag]->d_un.d_val), +- l, what); +- return true; ++ return decompose_rpath (sp, (const char *) (D_PTR (l, l_info[DT_STRTAB]) ++ + l->l_info[tag]->d_un.d_val), ++ l, what); + } + + +diff -urN --exclude=CVS glibc-2_5/libc/elf/dl-minimal.c glibc-2_5-branch/libc/elf/dl-minimal.c +--- glibc-2_5/libc/elf/dl-minimal.c 2005-12-18 00:08:29.000000000 +0100 ++++ glibc-2_5-branch/libc/elf/dl-minimal.c 2007-03-20 14:21:38.000000000 +0100 +@@ -1,5 +1,6 @@ + /* Minimal replacements for basic facilities used in the dynamic linker. +- Copyright (C) 1995-1998,2000-2002,2004,2005 Free Software Foundation, Inc. ++ Copyright (C) 1995-1998,2000-2002,2004,2005,2006 ++ Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -128,14 +129,13 @@ + void * weak_function + realloc (void *ptr, size_t n) + { +- void *new; + if (ptr == NULL) + return malloc (n); + assert (ptr == alloc_last_block); ++ size_t old_size = alloc_ptr - alloc_last_block; + alloc_ptr = alloc_last_block; +- new = malloc (n); +- assert (new == ptr); +- return new; ++ void *new = malloc (n); ++ return new != ptr ? memcpy (new, ptr, old_size) : new; + } + + /* Avoid signal frobnication in setjmp/longjmp. Keeps things smaller. */ +diff -urN --exclude=CVS glibc-2_5/libc/elf/dl-open.c glibc-2_5-branch/libc/elf/dl-open.c +--- glibc-2_5/libc/elf/dl-open.c 2006-08-29 00:56:50.000000000 +0200 ++++ glibc-2_5-branch/libc/elf/dl-open.c 2007-03-20 14:21:38.000000000 +0100 +@@ -547,15 +547,9 @@ + _dl_unload_cache (); + #endif + +- /* Release the lock. */ +- __rtld_lock_unlock_recursive (GL(dl_load_lock)); +- ++ /* See if an error occurred during loading. */ + if (__builtin_expect (errstring != NULL, 0)) + { +- /* Some error occurred during loading. */ +- char *local_errstring; +- size_t len_errstring; +- + /* Remove the object from memory. It may be in an inconsistent + state if relocation failed, for example. */ + if (args.map) +@@ -572,12 +566,18 @@ + GL(dl_tls_dtv_gaps) = true; + #endif + +- _dl_close (args.map); ++ _dl_close_worker (args.map); + } + ++ assert (_dl_debug_initialize (0, args.nsid)->r_state == RT_CONSISTENT); ++ ++ /* Release the lock. */ ++ __rtld_lock_unlock_recursive (GL(dl_load_lock)); ++ + /* Make a local copy of the error string so that we can release the + memory allocated for it. */ +- len_errstring = strlen (errstring) + 1; ++ size_t len_errstring = strlen (errstring) + 1; ++ char *local_errstring; + if (objname == errstring + len_errstring) + { + size_t total_len = len_errstring + strlen (objname) + 1; +@@ -594,14 +594,15 @@ + if (malloced) + free ((char *) errstring); + +- assert (_dl_debug_initialize (0, args.nsid)->r_state == RT_CONSISTENT); +- + /* Reraise the error. */ + _dl_signal_error (errcode, objname, NULL, local_errstring); + } + + assert (_dl_debug_initialize (0, args.nsid)->r_state == RT_CONSISTENT); + ++ /* Release the lock. */ ++ __rtld_lock_unlock_recursive (GL(dl_load_lock)); ++ + #ifndef SHARED + DL_STATIC_INIT (args.map); + #endif +diff -urN --exclude=CVS glibc-2_5/libc/elf/dl-support.c glibc-2_5-branch/libc/elf/dl-support.c +--- glibc-2_5/libc/elf/dl-support.c 2005-05-11 19:27:22.000000000 +0200 ++++ glibc-2_5-branch/libc/elf/dl-support.c 2007-03-20 14:21:38.000000000 +0100 +@@ -1,5 +1,5 @@ + /* Support for dynamic linking code in static libc. +- Copyright (C) 1996-2002, 2003, 2004, 2005 Free Software Foundation, Inc. ++ Copyright (C) 1996-2005, 2006 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -29,6 +29,7 @@ + #include + #include + #include ++#include + #include + #include + +diff -urN --exclude=CVS glibc-2_5/libc/elf/Makefile glibc-2_5-branch/libc/elf/Makefile +--- glibc-2_5/libc/elf/Makefile 2006-09-19 16:41:41.000000000 +0200 ++++ glibc-2_5-branch/libc/elf/Makefile 2007-03-20 14:21:37.000000000 +0100 +@@ -171,7 +171,7 @@ + tst-dlmopen1 tst-dlmopen2 tst-dlmopen3 \ + unload3 unload4 unload5 unload6 unload7 tst-global1 order2 \ + tst-audit1 tst-audit2 \ +- tst-stackguard1 tst-addr1 ++ tst-stackguard1 tst-addr1 tst-thrlock + # reldep9 + test-srcs = tst-pathopt + tests-vis-yes = vismain +@@ -916,3 +916,5 @@ + tst-leaks1-ENV = MALLOC_TRACE=$(objpfx)tst-leaks1.mtrace + + $(objpfx)tst-addr1: $(libdl) ++ ++$(objpfx)tst-thrlock: $(libdl) $(shared-thread-library) +diff -urN --exclude=CVS glibc-2_5/libc/elf/rtld.c glibc-2_5-branch/libc/elf/rtld.c +--- glibc-2_5/libc/elf/rtld.c 2006-09-29 18:56:15.000000000 +0200 ++++ glibc-2_5-branch/libc/elf/rtld.c 2007-03-20 14:21:38.000000000 +0100 +@@ -2087,7 +2087,8 @@ + } + + if (main_map->l_info[ADDRIDX (DT_GNU_LIBLIST)] +- && ! __builtin_expect (GLRO(dl_profile) != NULL, 0)) ++ && ! __builtin_expect (GLRO(dl_profile) != NULL, 0) ++ && ! __builtin_expect (GLRO(dl_dynamic_weak), 0)) + { + ElfW(Lib) *liblist, *liblistend; + struct link_map **r_list, **r_listend, *l; +diff -urN --exclude=CVS glibc-2_5/libc/elf/tst-thrlock.c glibc-2_5-branch/libc/elf/tst-thrlock.c +--- glibc-2_5/libc/elf/tst-thrlock.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/elf/tst-thrlock.c 2007-01-12 16:21:33.000000000 +0100 +@@ -0,0 +1,55 @@ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++static void * ++tf (void *arg) ++{ ++ void *h = dlopen (LIBM_SO, RTLD_LAZY); ++ if (h == NULL) ++ { ++ printf ("dlopen failed: %s\n", dlerror ()); ++ exit (1); ++ } ++ if (dlsym (h, "sin") == NULL) ++ { ++ printf ("dlsym failed: %s\n", dlerror ()); ++ exit (1); ++ } ++ if (dlclose (h) != 0) ++ { ++ printf ("dlclose failed: %s\n", dlerror ()); ++ exit (1); ++ } ++ return NULL; ++} ++ ++int ++main (void) ++{ ++#define N 10 ++ pthread_t th[N]; ++ for (int i = 0; i < N; ++i) ++ { ++ int e = pthread_create (&th[i], NULL, tf, NULL); ++ if (e != 0) ++ { ++ printf ("pthread_create failed with %d (%s)\n", e, strerror (e)); ++ return 1; ++ } ++ } ++ for (int i = 0; i < N; ++i) ++ { ++ void *res; ++ int e = pthread_join (th[i], &res); ++ if (e != 0 || res != NULL) ++ { ++ puts ("thread failed"); ++ return 1; ++ } ++ } ++ return 0; ++} +diff -urN --exclude=CVS glibc-2_5/libc/include/atomic.h glibc-2_5-branch/libc/include/atomic.h +--- glibc-2_5/libc/include/atomic.h 2006-02-17 19:50:09.000000000 +0100 ++++ glibc-2_5-branch/libc/include/atomic.h 2007-03-20 14:21:47.000000000 +0100 +@@ -324,6 +324,12 @@ + #endif + + ++#ifndef atomic_forced_read ++# define atomic_forced_read(x) \ ++ ({ __typeof (x) __x; __asm ("" : "=r" (__x) : "0" (x)); __x; }) ++#endif ++ ++ + #ifndef atomic_delay + # define atomic_delay() do { /* nothing */ } while (0) + #endif +diff -urN --exclude=CVS glibc-2_5/libc/include/features.h glibc-2_5-branch/libc/include/features.h +--- glibc-2_5/libc/include/features.h 2006-04-25 22:34:32.000000000 +0200 ++++ glibc-2_5-branch/libc/include/features.h 2007-03-20 14:21:47.000000000 +0100 +@@ -49,7 +49,7 @@ + The `-ansi' switch to the GNU C compiler defines __STRICT_ANSI__. + If none of these are defined, the default is to have _SVID_SOURCE, + _BSD_SOURCE, and _POSIX_SOURCE set to one and _POSIX_C_SOURCE set to +- 199506L. If more than one of these are defined, they accumulate. ++ 200112L. If more than one of these are defined, they accumulate. + For example __STRICT_ANSI__, _POSIX_SOURCE and _POSIX_C_SOURCE + together give you ISO C, 1003.1, and 1003.2, but nothing else. + +@@ -304,7 +304,7 @@ + /* Major and minor version number of the GNU C library package. Use + these macros to test for features in specific releases. */ + #define __GLIBC__ 2 +-#define __GLIBC_MINOR__ 4 ++#define __GLIBC_MINOR__ 5 + + #define __GLIBC_PREREQ(maj, min) \ + ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min)) +diff -urN --exclude=CVS glibc-2_5/libc/io/fts.c glibc-2_5-branch/libc/io/fts.c +--- glibc-2_5/libc/io/fts.c 2006-04-08 21:33:17.000000000 +0200 ++++ glibc-2_5-branch/libc/io/fts.c 2007-03-20 14:21:49.000000000 +0100 +@@ -251,8 +251,7 @@ + /* Free up child linked list, sort array, path buffer. */ + if (sp->fts_child) + fts_lfree(sp->fts_child); +- if (sp->fts_array) +- free(sp->fts_array); ++ free(sp->fts_array); + free(sp->fts_path); + + /* Return to original directory, save errno if necessary. */ +@@ -705,8 +704,7 @@ + * structures already allocated. + */ + mem1: saved_errno = errno; +- if (p) +- free(p); ++ free(p); + fts_lfree(head); + (void)__closedir(dirp); + cur->fts_info = FTS_ERR; +@@ -1043,10 +1041,7 @@ + * We limit fts_pathlen to USHRT_MAX to be safe in both cases. + */ + if (sp->fts_pathlen < 0 || sp->fts_pathlen >= USHRT_MAX) { +- if (sp->fts_path) { +- free(sp->fts_path); +- sp->fts_path = NULL; +- } ++ free(sp->fts_path); + sp->fts_path = NULL; + __set_errno (ENAMETOOLONG); + return (1); +diff -urN --exclude=CVS glibc-2_5/libc/io/Makefile glibc-2_5-branch/libc/io/Makefile +--- glibc-2_5/libc/io/Makefile 2006-09-17 09:25:55.000000000 +0200 ++++ glibc-2_5-branch/libc/io/Makefile 2007-03-20 14:21:49.000000000 +0100 +@@ -66,7 +66,7 @@ + tst-openat tst-unlinkat tst-fstatat tst-futimesat \ + tst-renameat tst-fchownat tst-fchmodat tst-faccessat \ + tst-symlinkat tst-linkat tst-readlinkat tst-mkdirat \ +- tst-mknodat tst-mkfifoat ++ tst-mknodat tst-mkfifoat tst-ttyname_r + + distribute := ftwtest-sh + +diff -urN --exclude=CVS glibc-2_5/libc/io/tst-ttyname_r.c glibc-2_5-branch/libc/io/tst-ttyname_r.c +--- glibc-2_5/libc/io/tst-ttyname_r.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/io/tst-ttyname_r.c 2007-01-12 18:27:52.000000000 +0100 +@@ -0,0 +1,42 @@ ++#include ++#include ++#include ++#include ++#include ++ ++static void do_prepare (void); ++#define PREPARE(argc, argv) do_prepare () ++static int do_test (void); ++#define TEST_FUNCTION do_test () ++#include ++ ++static int temp_fd; ++ ++static void ++do_prepare (void) ++{ ++ char *temp_file; ++ temp_fd = create_temp_file ("tst-ttyname_r.", &temp_file); ++ if (temp_fd == -1) ++ error (1, errno, "cannot create temporary file"); ++} ++ ++static int ++do_test (void) ++{ ++ int ret = 0; ++ char buf[sysconf (_SC_TTY_NAME_MAX) + 1]; ++ int res = ttyname_r (-1, buf, sizeof (buf)); ++ if (res != EBADF) ++ { ++ printf ("1st ttyname_r returned with res %d\n", res); ++ ret++; ++ } ++ res = ttyname_r (temp_fd, buf, sizeof (buf)); ++ if (res != ENOTTY) ++ { ++ printf ("2nd ttyname_r returned with res %d\n", res); ++ ret++; ++ } ++ return ret; ++} +diff -urN --exclude=CVS glibc-2_5/libc/libio/bug-wmemstream1.c glibc-2_5-branch/libc/libio/bug-wmemstream1.c +--- glibc-2_5/libc/libio/bug-wmemstream1.c 2006-08-15 00:11:34.000000000 +0200 ++++ glibc-2_5-branch/libc/libio/bug-wmemstream1.c 2007-03-20 14:21:51.000000000 +0100 +@@ -1,5 +1,6 @@ + #include + #include ++#include + + + static int +diff -urN --exclude=CVS glibc-2_5/libc/libio/fileops.c glibc-2_5-branch/libc/libio/fileops.c +--- glibc-2_5/libc/libio/fileops.c 2006-01-19 01:38:35.000000000 +0100 ++++ glibc-2_5-branch/libc/libio/fileops.c 2007-03-20 14:21:52.000000000 +0100 +@@ -174,14 +174,8 @@ + close_status = _IO_SYSCLOSE (fp); + + /* Free buffer. */ +- if (fp->_mode <= 0) +- { +- INTUSE(_IO_setb) (fp, NULL, NULL, 0); +- _IO_setg (fp, NULL, NULL, NULL); +- _IO_setp (fp, NULL, NULL); +- } + #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T +- else ++ if (fp->_mode > 0) + { + if (_IO_have_wbackup (fp)) + INTUSE(_IO_free_wbackup_area) (fp); +@@ -190,6 +184,9 @@ + _IO_wsetp (fp, NULL, NULL); + } + #endif ++ INTUSE(_IO_setb) (fp, NULL, NULL, 0); ++ _IO_setg (fp, NULL, NULL, NULL); ++ _IO_setp (fp, NULL, NULL); + + INTUSE(_IO_un_link) ((struct _IO_FILE_plus *) fp); + fp->_flags = _IO_MAGIC|CLOSED_FILEBUF_FLAGS; +diff -urN --exclude=CVS glibc-2_5/libc/libio/genops.c glibc-2_5-branch/libc/libio/genops.c +--- glibc-2_5/libc/libio/genops.c 2006-03-01 06:32:48.000000000 +0100 ++++ glibc-2_5-branch/libc/libio/genops.c 2007-03-20 14:21:52.000000000 +0100 +@@ -367,7 +367,7 @@ + #endif + + if (fp->_mode == 0) +- _IO_fwide (fp, -11); ++ _IO_fwide (fp, -1); + if (_IO_in_put_mode (fp)) + if (INTUSE(_IO_switch_to_get_mode) (fp) == EOF) + return EOF; +diff -urN --exclude=CVS glibc-2_5/libc/libio/libio.h glibc-2_5-branch/libc/libio/libio.h +--- glibc-2_5/libc/libio/libio.h 2006-01-14 13:09:46.000000000 +0100 ++++ glibc-2_5-branch/libc/libio/libio.h 2007-03-20 14:21:52.000000000 +0100 +@@ -142,6 +142,7 @@ + #ifdef _LIBC + # define _IO_FLAGS2_FORTIFY 4 + #endif ++#define _IO_FLAGS2_USER_WBUF 8 + + /* These are "formatting flags" matching the iostream fmtflags enum values. */ + #define _IO_SKIPWS 01 +diff -urN --exclude=CVS glibc-2_5/libc/libio/Makefile glibc-2_5-branch/libc/libio/Makefile +--- glibc-2_5/libc/libio/Makefile 2006-08-15 00:12:27.000000000 +0200 ++++ glibc-2_5-branch/libc/libio/Makefile 2007-03-20 14:21:51.000000000 +0100 +@@ -57,7 +57,8 @@ + bug-ungetc2 bug-ftell bug-ungetc3 bug-ungetc4 tst-fopenloc2 \ + tst-memstream1 tst-memstream2 \ + tst-wmemstream1 tst-wmemstream2 \ +- bug-memstream1 bug-wmemstream1 ++ bug-memstream1 bug-wmemstream1 \ ++ tst-setvbuf1 + test-srcs = test-freopen + + all: # Make this the default target; it will be defined in Rules. +diff -urN --exclude=CVS glibc-2_5/libc/libio/tst-setvbuf1.c glibc-2_5-branch/libc/libio/tst-setvbuf1.c +--- glibc-2_5/libc/libio/tst-setvbuf1.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/libio/tst-setvbuf1.c 2007-01-12 18:25:38.000000000 +0100 +@@ -0,0 +1,39 @@ ++/* Dereived from the test case in BZ #2337. */ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++ ++static char buf[512] __attribute__ ((aligned (4096))); ++ ++ ++static int ++do_test (void) ++{ ++ setlocale (LC_ALL, "de_DE.UTF-8"); ++ ++ FILE *fp = fdopen (dup (STDOUT_FILENO), "a"); ++ if (fp == NULL) ++ error (EXIT_FAILURE, errno, "fdopen(,\"a\")"); ++ ++ setvbuf (fp, buf, _IOFBF, sizeof (buf)); ++ ++ /* fwprintf to unbuffered stream. */ ++ fwprintf (fp, L"hello.\n"); ++ ++ fclose (fp); ++ ++ /* touch my buffer */ ++ buf[45] = 'a'; ++ ++ return 0; ++} ++ ++#define TEST_FUNCTION do_test () ++#include "../test-skeleton.c" +diff -urN --exclude=CVS glibc-2_5/libc/libio/tst-wmemstream1.c glibc-2_5-branch/libc/libio/tst-wmemstream1.c +--- glibc-2_5/libc/libio/tst-wmemstream1.c 2006-01-12 03:02:27.000000000 +0100 ++++ glibc-2_5-branch/libc/libio/tst-wmemstream1.c 2007-03-20 14:21:52.000000000 +0100 +@@ -1,3 +1,5 @@ ++#include ++ + #define CHAR_T wchar_t + #define W(o) L##o + #define OPEN_MEMSTREAM open_wmemstream +diff -urN --exclude=CVS glibc-2_5/libc/libio/tst-wmemstream2.c glibc-2_5-branch/libc/libio/tst-wmemstream2.c +--- glibc-2_5/libc/libio/tst-wmemstream2.c 2006-01-12 03:02:27.000000000 +0100 ++++ glibc-2_5-branch/libc/libio/tst-wmemstream2.c 2007-03-20 14:21:52.000000000 +0100 +@@ -1,3 +1,5 @@ ++#include ++ + #define CHAR_T wchar_t + #define W(o) L##o + #define OPEN_MEMSTREAM open_wmemstream +diff -urN --exclude=CVS glibc-2_5/libc/libio/wfiledoalloc.c glibc-2_5-branch/libc/libio/wfiledoalloc.c +--- glibc-2_5/libc/libio/wfiledoalloc.c 2002-07-06 08:35:54.000000000 +0200 ++++ glibc-2_5-branch/libc/libio/wfiledoalloc.c 2007-03-20 14:21:52.000000000 +0100 +@@ -1,4 +1,5 @@ +-/* Copyright (C) 1993, 1997, 1999, 2000, 2002 Free Software Foundation, Inc. ++/* Copyright (C) 1993, 1997, 1999, 2000, 2002, 2006 ++ Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -85,35 +86,20 @@ + _IO_FILE *fp; + { + _IO_size_t size; +- int couldbetty; + wchar_t *p; +- struct _G_stat64 st; + + /* Allocate room for the external buffer. */ + if (fp->_IO_buf_base == NULL) + INTUSE(_IO_file_doallocate) (fp); + +- if (fp->_fileno < 0 || _IO_SYSSTAT (fp, &st) < 0) +- { +- couldbetty = 0; +- size = _IO_BUFSIZ; +-#if 0 +- /* do not try to optimise fseek() */ +- fp->_flags |= __SNPT; +-#endif +- } +- else +- { +- couldbetty = S_ISCHR (st.st_mode); +-#if _IO_HAVE_ST_BLKSIZE +- size = st.st_blksize <= 0 ? _IO_BUFSIZ : st.st_blksize; +-#else +- size = _IO_BUFSIZ; +-#endif +- } ++ /* If narrow buffer is user allocated (set by setvbuf etc.), ++ use that size as the size of the wide buffer, when it is ++ allocated by _IO_file_doallocate, multiply that by size ++ of the wide character. */ ++ size = fp->_IO_buf_end - fp->_IO_buf_base; ++ if ((fp->_flags & _IO_USER_BUF)) ++ size = (size + sizeof (wchar_t) - 1) / sizeof (wchar_t); + ALLOC_WBUF (p, size * sizeof (wchar_t), EOF); + INTUSE(_IO_wsetb) (fp, p, p + size, 1); +- if (couldbetty && isatty (fp->_fileno)) +- fp->_flags |= _IO_LINE_BUF; + return 1; + } +diff -urN --exclude=CVS glibc-2_5/libc/libio/wgenops.c glibc-2_5-branch/libc/libio/wgenops.c +--- glibc-2_5/libc/libio/wgenops.c 2006-02-12 22:20:57.000000000 +0100 ++++ glibc-2_5-branch/libc/libio/wgenops.c 2007-03-20 14:21:52.000000000 +0100 +@@ -115,14 +115,14 @@ + wchar_t *eb; + int a; + { +- if (f->_wide_data->_IO_buf_base && !(f->_flags & _IO_USER_BUF)) ++ if (f->_wide_data->_IO_buf_base && !(f->_flags2 & _IO_FLAGS2_USER_WBUF)) + FREE_BUF (f->_wide_data->_IO_buf_base, _IO_wblen (f) * sizeof (wchar_t)); + f->_wide_data->_IO_buf_base = b; + f->_wide_data->_IO_buf_end = eb; + if (a) +- f->_flags &= ~_IO_USER_BUF; ++ f->_flags2 &= ~_IO_FLAGS2_USER_WBUF; + else +- f->_flags |= _IO_USER_BUF; ++ f->_flags2 |= _IO_FLAGS2_USER_WBUF; + } + INTDEF(_IO_wsetb) + +@@ -198,7 +198,7 @@ + int dummy; + { + struct _IO_marker *mark; +- if (fp->_wide_data->_IO_buf_base && !(fp->_flags & _IO_USER_BUF)) ++ if (fp->_wide_data->_IO_buf_base && !(fp->_flags2 & _IO_FLAGS2_USER_WBUF)) + { + FREE_BUF (fp->_wide_data->_IO_buf_base, + _IO_wblen (fp) * sizeof (wchar_t)); +diff -urN --exclude=CVS glibc-2_5/libc/libio/wmemstream.c glibc-2_5-branch/libc/libio/wmemstream.c +--- glibc-2_5/libc/libio/wmemstream.c 2006-08-15 00:13:48.000000000 +0200 ++++ glibc-2_5-branch/libc/libio/wmemstream.c 2007-03-20 14:21:52.000000000 +0100 +@@ -20,6 +20,7 @@ + #include "strfile.h" + #include + #include ++#include + + + struct _IO_FILE_wmemstream +@@ -91,7 +92,7 @@ + _IO_fwide (&new_f->fp._sf._sbf._f, 1); + _IO_wstr_init_static (&new_f->fp._sf._sbf._f, buf, + _IO_BUFSIZ / sizeof (wchar_t), buf); +- new_f->fp._sf._sbf._f._flags &= ~_IO_USER_BUF; ++ new_f->fp._sf._sbf._f._flags2 &= ~_IO_FLAGS2_USER_WBUF; + new_f->fp._sf._s._allocate_buffer = (_IO_alloc_type) malloc; + new_f->fp._sf._s._free_buffer = (_IO_free_type) free; + +diff -urN --exclude=CVS glibc-2_5/libc/libio/wstrops.c glibc-2_5-branch/libc/libio/wstrops.c +--- glibc-2_5/libc/libio/wstrops.c 2006-08-15 00:14:53.000000000 +0200 ++++ glibc-2_5-branch/libc/libio/wstrops.c 2007-03-20 14:21:52.000000000 +0100 +@@ -88,7 +88,7 @@ + pos = fp->_wide_data->_IO_write_ptr - fp->_wide_data->_IO_write_base; + if (pos >= (_IO_size_t) (_IO_wblen (fp) + flush_only)) + { +- if (fp->_flags & _IO_USER_BUF) /* not allowed to enlarge */ ++ if (fp->_flags2 & _IO_FLAGS2_USER_WBUF) /* not allowed to enlarge */ + return WEOF; + else + { +@@ -182,7 +182,7 @@ + _IO_ssize_t oldend = wd->_IO_write_end - wd->_IO_write_base; + + /* Try to enlarge the buffer. */ +- if (fp->_flags & _IO_USER_BUF) ++ if (fp->_flags2 & _IO_FLAGS2_USER_WBUF) + /* User-provided buffer. */ + return 1; + +@@ -335,7 +335,7 @@ + _IO_FILE *fp; + int dummy; + { +- if (fp->_wide_data->_IO_buf_base && !(fp->_flags & _IO_USER_BUF)) ++ if (fp->_wide_data->_IO_buf_base && !(fp->_flags2 & _IO_FLAGS2_USER_WBUF)) + (((_IO_strfile *) fp)->_s._free_buffer) (fp->_wide_data->_IO_buf_base); + fp->_wide_data->_IO_buf_base = NULL; + +diff -urN --exclude=CVS glibc-2_5/libc/localedata/ChangeLog glibc-2_5-branch/libc/localedata/ChangeLog +--- glibc-2_5/libc/localedata/ChangeLog 2006-09-29 20:30:52.000000000 +0200 ++++ glibc-2_5-branch/libc/localedata/ChangeLog 2007-03-20 14:21:53.000000000 +0100 +@@ -1,3 +1,28 @@ ++2006-11-02 Ulrich Drepper ++ ++ * locales/mai_IN: New file. ++ Provided by Rajesh Ranjan . ++ ++ * SUPPORTED: Add mai_IN/UTF-8. ++ ++2006-10-12 Ulrich Drepper ++ ++ [BZ #3320] ++ * locales/es_ES (LC_TIME): Add week, first_weekday, and first_workday. ++ ++2006-10-05 Dmitry V. Levin ++ ++ * locales/tt_RU: Fix territory, title and descriptive comment. ++ ++2006-10-05 Ulrich Drepper ++ ++ * locales/pa_IN (abday): Fix spelling of Sunday. ++ Patch by Mayank Jain . ++ ++2006-10-01 Ulrich Drepper ++ ++ * locales/en_GB: Use more complete en_US data in LC_NAME. ++ + 2006-09-29 Ulrich Drepper + + [BZ #39] +diff -urN --exclude=CVS glibc-2_5/libc/localedata/locales/en_GB glibc-2_5-branch/libc/localedata/locales/en_GB +--- glibc-2_5/libc/localedata/locales/en_GB 2006-07-31 00:19:44.000000000 +0200 ++++ glibc-2_5-branch/libc/localedata/locales/en_GB 2007-03-20 14:21:59.000000000 +0100 +@@ -146,8 +146,7 @@ + END LC_MEASUREMENT + + LC_NAME +-name_fmt "/ +-" ++copy "en_US" + END LC_NAME + + LC_ADDRESS +diff -urN --exclude=CVS glibc-2_5/libc/localedata/locales/es_ES glibc-2_5-branch/libc/localedata/locales/es_ES +--- glibc-2_5/libc/localedata/locales/es_ES 2006-07-31 00:19:44.000000000 +0200 ++++ glibc-2_5-branch/libc/localedata/locales/es_ES 2007-03-20 14:21:59.000000000 +0100 +@@ -2187,12 +2187,13 @@ + date_fmt "/ + / + " ++week 7;19971130;5 ++first_weekday 2 ++first_workday 2 + END LC_TIME + + LC_PAPER +-% FIXME + height 297 +-% FIXME + width 210 + END LC_PAPER + +diff -urN --exclude=CVS glibc-2_5/libc/localedata/locales/mai_IN glibc-2_5-branch/libc/localedata/locales/mai_IN +--- glibc-2_5/libc/localedata/locales/mai_IN 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/localedata/locales/mai_IN 2007-01-12 16:26:50.000000000 +0100 +@@ -0,0 +1,84 @@ ++comment_char % ++escape_char / ++% Maithili language locale for India. ++% Contributed by Rajesh Ranjan and ++% Sangeeta Kumari . ++ ++LC_IDENTIFICATION ++title "Maithili language locale for India" ++source "Maithili Computing Research Center, Pune, India" ++address "B-3/302, Lunkad Daffodills, Viman Nagar, Pune, India" ++contact "" ++email "rajeshkajha@yahoo.com" ++tel "" ++fax "" ++language "Maithili" ++territory "India" ++revision "1.0" ++date "2006-11-01" ++% ++category "mai_IN:2006";LC_IDENTIFICATION ++category "mai_IN:2006";LC_CTYPE ++category "mai_IN:2006";LC_COLLATE ++category "mai_IN:2006";LC_TIME ++category "mai_IN:2006";LC_NUMERIC ++category "mai_IN:2006";LC_MONETARY ++category "mai_IN:2006";LC_MESSAGES ++category "mai_IN:2006";LC_PAPER ++category "mai_IN:2006";LC_NAME ++category "mai_IN:2006";LC_ADDRESS ++category "mai_IN:2006";LC_TELEPHONE ++ ++END LC_IDENTIFICATION ++ ++LC_CTYPE ++copy "hi_IN" ++END LC_CTYPE ++ ++LC_COLLATE ++copy "hi_IN" ++END LC_COLLATE ++ ++LC_MONETARY ++copy "hi_IN" ++END LC_MONETARY ++ ++ ++LC_NUMERIC ++copy "hi_IN" ++END LC_NUMERIC ++ ++ ++LC_TIME ++copy "hi_IN" ++END LC_TIME ++ ++ ++LC_MESSAGES ++copy "hi_IN" ++END LC_MESSAGES ++ ++ ++LC_PAPER ++copy "hi_IN" ++END LC_PAPER ++ ++ ++LC_NAME ++copy "hi_IN" ++END LC_NAME ++ ++ ++LC_ADDRESS ++copy "hi_IN" ++END LC_ADDRESS ++ ++ ++LC_TELEPHONE ++copy "hi_IN" ++END LC_TELEPHONE ++ ++ ++LC_MEASUREMENT ++copy "hi_IN" ++END LC_MEASUREMENT +diff -urN --exclude=CVS glibc-2_5/libc/localedata/locales/pa_IN glibc-2_5-branch/libc/localedata/locales/pa_IN +--- glibc-2_5/libc/localedata/locales/pa_IN 2006-08-13 07:47:24.000000000 +0200 ++++ glibc-2_5-branch/libc/localedata/locales/pa_IN 2007-03-20 14:22:00.000000000 +0100 +@@ -80,7 +80,7 @@ + "";/ + "";/ + "";/ +- "" ++ "" + % + % Full weekday names (%A) + day "";/ +diff -urN --exclude=CVS glibc-2_5/libc/localedata/locales/tt_RU glibc-2_5-branch/libc/localedata/locales/tt_RU +--- glibc-2_5/libc/localedata/locales/tt_RU 2006-07-31 00:19:43.000000000 +0200 ++++ glibc-2_5-branch/libc/localedata/locales/tt_RU 2007-03-20 14:22:00.000000000 +0100 +@@ -1,7 +1,7 @@ + comment_char % + escape_char / + % +-% Tatar Language Locale for Tatarstan ++% Tatar Language Locale for Russia + % Source: + % Contact: Pablo Saratxaga, Rinat Norkin + % Email: , +@@ -24,7 +24,7 @@ + % replace cyrillic alphabet + + LC_IDENTIFICATION +-title "Tatar language locale for Tatarstan" ++title "Tatar language locale for Russia" + source "Rinat Norkin" + address "" + contact "Pablo Saratxaga, Rinat Norkin" +@@ -32,7 +32,7 @@ + tel "" + fax "" + language "Tatar" +-territory "Tatarstan" ++territory "Russia" + revision "0.4" + date "2001-01-28" + +diff -urN --exclude=CVS glibc-2_5/libc/localedata/SUPPORTED glibc-2_5-branch/libc/localedata/SUPPORTED +--- glibc-2_5/libc/localedata/SUPPORTED 2006-09-29 20:29:11.000000000 +0200 ++++ glibc-2_5-branch/libc/localedata/SUPPORTED 2007-03-20 14:21:53.000000000 +0100 +@@ -252,6 +252,7 @@ + lt_LT/ISO-8859-13 \ + lv_LV.UTF-8/UTF-8 \ + lv_LV/ISO-8859-13 \ ++mai_IN/UTF-8 \ + mg_MG.UTF-8/UTF-8 \ + mg_MG/ISO-8859-15 \ + mi_NZ.UTF-8/UTF-8 \ +diff -urN --exclude=CVS glibc-2_5/libc/malloc/memusage.c glibc-2_5-branch/libc/malloc/memusage.c +--- glibc-2_5/libc/malloc/memusage.c 2005-10-14 23:09:34.000000000 +0200 ++++ glibc-2_5-branch/libc/malloc/memusage.c 2007-03-20 14:22:02.000000000 +0100 +@@ -1,5 +1,5 @@ + /* Profile heap and stack memory usage of running program. +- Copyright (C) 1998-2002, 2004, 2005 Free Software Foundation, Inc. ++ Copyright (C) 1998-2002, 2004, 2005, 2006 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper , 1998. + +@@ -887,4 +887,10 @@ + fputc ('=', stderr); + fputs ("\e[0;0m\n", stderr); + } ++ ++ /* Any following malloc/free etc. calls should generate statistics again, ++ because otherwise freeing something that has been malloced before ++ this destructor (including struct header in front of it) wouldn't ++ be properly freed. */ ++ not_me = false; + } +diff -urN --exclude=CVS glibc-2_5/libc/manual/message.texi glibc-2_5-branch/libc/manual/message.texi +--- glibc-2_5/libc/manual/message.texi 2003-08-29 09:15:18.000000000 +0200 ++++ glibc-2_5-branch/libc/manual/message.texi 2007-03-20 14:22:02.000000000 +0100 +@@ -1189,7 +1189,7 @@ + with every language this is the only viable solution except for + hardcoding the information in the code (which still would require the + possibility of extensions to not prevent the use of new languages). The +-details are explained in the GNU @code{gettext} manual. Here only a a ++details are explained in the GNU @code{gettext} manual. Here only a + bit of information is provided. + + The information about the plural form selection has to be stored in the +@@ -1590,7 +1590,7 @@ + them. + + The POSIX locale model uses the environment variables @code{LC_COLLATE}, +-@code{LC_CTYPE}, @code{LC_MESSAGES}, @code{LC_MONETARY}, @code{NUMERIC}, ++@code{LC_CTYPE}, @code{LC_MESSAGES}, @code{LC_MONETARY}, @code{LC_NUMERIC}, + and @code{LC_TIME} to select the locale which is to be used. This way + the user can influence lots of functions. As we mentioned above the + @code{gettext} functions also take advantage of this. +diff -urN --exclude=CVS glibc-2_5/libc/manual/stdio.texi glibc-2_5-branch/libc/manual/stdio.texi +--- glibc-2_5/libc/manual/stdio.texi 2006-02-04 08:12:54.000000000 +0100 ++++ glibc-2_5-branch/libc/manual/stdio.texi 2007-03-20 14:22:02.000000000 +0100 +@@ -2393,8 +2393,9 @@ + allocates a string (as with @code{malloc}; @pxref{Unconstrained + Allocation}) to hold the output, instead of putting the output in a + buffer you allocate in advance. The @var{ptr} argument should be the +-address of a @code{char *} object, and @code{asprintf} stores a pointer +-to the newly allocated string at that location. ++address of a @code{char *} object, and a successful call to ++@code{asprintf} stores a pointer to the newly allocated string at that ++location. + + The return value is the number of characters allocated for the buffer, or + less than zero if an error occurred. Usually this means that the buffer +diff -urN --exclude=CVS glibc-2_5/libc/misc/getusershell.c glibc-2_5-branch/libc/misc/getusershell.c +--- glibc-2_5/libc/misc/getusershell.c 2006-05-15 20:56:36.000000000 +0200 ++++ glibc-2_5-branch/libc/misc/getusershell.c 2007-03-20 14:22:05.000000000 +0100 +@@ -98,7 +98,7 @@ + register char **sp, *cp; + register FILE *fp; + struct stat64 statb; +- int flen; ++ size_t flen; + + free(shells); + shells = NULL; +@@ -114,9 +114,11 @@ + okshells[1] = _PATH_CSHELL; + return (char **) okshells; + } +- if ((strings = malloc((u_int)statb.st_size + 1)) == NULL) ++ if (statb.st_size > ~(size_t)0 / sizeof (char *) * 3) + goto init_okshells; +- shells = calloc((unsigned)statb.st_size / 3, sizeof (char *)); ++ if ((strings = malloc(statb.st_size + 2)) == NULL) ++ goto init_okshells; ++ shells = malloc(statb.st_size / 3 * sizeof (char *)); + if (shells == NULL) { + free(strings); + strings = NULL; +@@ -124,11 +126,11 @@ + } + sp = shells; + cp = strings; +- flen = statb.st_size; ++ flen = statb.st_size + 2; + while (fgets_unlocked(cp, flen - (cp - strings), fp) != NULL) { + while (*cp != '#' && *cp != '/' && *cp != '\0') + cp++; +- if (*cp == '#' || *cp == '\0') ++ if (*cp == '#' || *cp == '\0' || cp[1] == '\0') + continue; + *sp++ = cp; + while (!isspace(*cp) && *cp != '#' && *cp != '\0') +diff -urN --exclude=CVS glibc-2_5/libc/misc/Makefile glibc-2_5-branch/libc/misc/Makefile +--- glibc-2_5/libc/misc/Makefile 2006-06-17 19:00:58.000000000 +0200 ++++ glibc-2_5-branch/libc/misc/Makefile 2007-03-20 14:22:05.000000000 +0100 +@@ -78,7 +78,7 @@ + gpl2lgpl := error.c error.h + + tests := tst-dirname tst-tsearch tst-fdset tst-efgcvt tst-mntent tst-hsearch \ +- tst-error1 tst-pselect tst-insremque ++ tst-error1 tst-pselect tst-insremque tst-mntent2 + ifeq (no,$(cross-compiling)) + tests: $(objpfx)tst-error1-mem + endif +diff -urN --exclude=CVS glibc-2_5/libc/misc/mntent_r.c glibc-2_5-branch/libc/misc/mntent_r.c +--- glibc-2_5/libc/misc/mntent_r.c 2003-12-18 00:29:02.000000000 +0100 ++++ glibc-2_5-branch/libc/misc/mntent_r.c 2007-03-20 14:22:06.000000000 +0100 +@@ -1,5 +1,6 @@ + /* Utilities for reading/writing fstab, mtab, etc. +- Copyright (C) 1995-2000, 2001, 2002, 2003 Free Software Foundation, Inc. ++ Copyright (C) 1995-2000, 2001, 2002, 2003, 2006 ++ Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -278,14 +279,11 @@ + + while ((p = strstr (rest, opt)) != NULL) + { +- if (p == rest +- || (p[-1] == ',' +- && (p[optlen] == '\0' || +- p[optlen] == '=' || +- p[optlen] == ','))) ++ if ((p == rest || p[-1] == ',') ++ && (p[optlen] == '\0' || p[optlen] == '=' || p[optlen] == ',')) + return p; + +- rest = strchr (rest, ','); ++ rest = strchr (p, ','); + if (rest == NULL) + break; + ++rest; +diff -urN --exclude=CVS glibc-2_5/libc/misc/tst-mntent2.c glibc-2_5-branch/libc/misc/tst-mntent2.c +--- glibc-2_5/libc/misc/tst-mntent2.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/misc/tst-mntent2.c 2007-01-12 18:20:09.000000000 +0100 +@@ -0,0 +1,41 @@ ++#include ++#include ++#include ++ ++ ++int ++main (void) ++{ ++ int result = 0; ++ struct mntent mef; ++ ++ mef.mnt_fsname = strdupa ("/dev/sdf6"); ++ mef.mnt_dir = strdupa ("/some dir"); ++ mef.mnt_type = strdupa ("ext3"); ++ mef.mnt_opts = strdupa ("opt1,opt2,noopt=6,rw,norw,brw"); ++ mef.mnt_freq = 1; ++ mef.mnt_passno = 2; ++ ++#define TEST(opt, found) \ ++ if (!!hasmntopt (&mef, (opt)) != (found)) \ ++ { \ ++ printf ("Option %s was %sfound\n", (opt), (found) ? "not " : ""); \ ++ result = 1; \ ++ } ++ ++ TEST ("opt1", 1) ++ TEST ("opt2", 1) ++ TEST ("noopt", 1) ++ TEST ("rw", 1) ++ TEST ("norw", 1) ++ TEST ("brw", 1) ++ TEST ("opt", 0) ++ TEST ("oopt", 0) ++ TEST ("w", 0) ++ TEST ("r", 0) ++ TEST ("br", 0) ++ TEST ("nor", 0) ++ TEST ("or", 0) ++ ++ return result; ++} +diff -urN --exclude=CVS glibc-2_5/libc/misc/tst-pselect.c glibc-2_5-branch/libc/misc/tst-pselect.c +--- glibc-2_5/libc/misc/tst-pselect.c 2006-01-21 20:58:31.000000000 +0100 ++++ glibc-2_5-branch/libc/misc/tst-pselect.c 2007-03-20 14:22:06.000000000 +0100 +@@ -29,7 +29,16 @@ + return 1; + } + +- if (sigblock (SIGUSR1) != 0) ++ sa.sa_handler = SIG_IGN; ++ sa.sa_flags = SA_NOCLDWAIT; ++ ++ if (sigaction (SIGCHLD, &sa, NULL) != 0) ++ { ++ puts ("2nd sigaction failed"); ++ return 1; ++ } ++ ++ if (sigblock (sigmask (SIGUSR1)) != 0) + { + puts ("sigblock failed"); + return 1; +@@ -52,6 +61,7 @@ + + struct timespec to = { .tv_sec = 0, .tv_nsec = 500000000 }; + ++ pid_t parent = getpid (); + pid_t p = fork (); + if (p == 0) + { +@@ -63,6 +73,9 @@ + int e; + do + { ++ if (getppid () != parent) ++ exit (2); ++ + errno = 0; + e = pselect (fds[0][0] + 1, &rfds, NULL, NULL, &to, &ss); + } +@@ -108,12 +121,6 @@ + return 1; + } + +- if (TEMP_FAILURE_RETRY (waitpid (p, NULL, 0)) != p) +- { +- puts ("waitpid failed"); +- return 1; +- } +- + return 0; + } + +diff -urN --exclude=CVS glibc-2_5/libc/nis/Makefile glibc-2_5-branch/libc/nis/Makefile +--- glibc-2_5/libc/nis/Makefile 2006-04-14 07:45:49.000000000 +0200 ++++ glibc-2_5-branch/libc/nis/Makefile 2007-03-20 14:22:06.000000000 +0100 +@@ -64,7 +64,7 @@ + libnss_nis-inhibit-o = $(filter-out .os,$(object-suffixes)) + + libnss_nisplus-routines := $(addprefix nisplus-,$(databases)) nisplus-parser \ +- nss-nisplus ++ nss-nisplus nisplus-initgroups + libnss_nisplus-inhibit-o = $(filter-out .os,$(object-suffixes)) + + include ../Rules +diff -urN --exclude=CVS glibc-2_5/libc/nis/nis_defaults.c glibc-2_5-branch/libc/nis/nis_defaults.c +--- glibc-2_5/libc/nis/nis_defaults.c 2006-05-10 04:54:46.000000000 +0200 ++++ glibc-2_5-branch/libc/nis/nis_defaults.c 2007-03-20 14:22:06.000000000 +0100 +@@ -447,7 +447,7 @@ + { + cptr = getenv ("NIS_DEFAULTS"); + if (cptr != NULL && strstr (cptr, "access=") != NULL) +- result = searchaccess (getenv ("NIS_DEFAULTS"), result); ++ result = searchaccess (cptr, result); + } + + return result; +diff -urN --exclude=CVS glibc-2_5/libc/nis/nis_subr.c glibc-2_5-branch/libc/nis/nis_subr.c +--- glibc-2_5/libc/nis/nis_subr.c 2006-06-17 00:30:02.000000000 +0200 ++++ glibc-2_5-branch/libc/nis/nis_subr.c 2007-03-20 14:22:06.000000000 +0100 +@@ -251,13 +251,16 @@ + { + char *p; + +- tmp = malloc (cplen + name_len + 2); ++ tmp = malloc (cplen + name_len + 3); + if (__builtin_expect (tmp == NULL, 0)) + goto free_null; + +- p = __stpcpy (tmp, name); ++ p = __mempcpy (tmp, name, name_len); + *p++ = '.'; +- memcpy (p, cp, cplen + 1); ++ p = __mempcpy (p, cp, cplen); ++ if (p[-1] != '.') ++ *p++ = '.'; ++ *p = '\0'; + } + + if (pos >= count) +@@ -275,6 +278,13 @@ + cp = __strtok_r (NULL, ":", &saveptr); + } + ++ if (pos == 0 ++ && __asprintf (&getnames[pos++], "%s%s%s%s", ++ name, name[name_len - 1] == '.' ? "" : ".", ++ local_domain, ++ local_domain[local_domain_len - 1] == '.' ? "" : ".") < 0) ++ goto free_null; ++ + getnames[pos] = NULL; + + return getnames; +diff -urN --exclude=CVS glibc-2_5/libc/nis/nis_table.c glibc-2_5-branch/libc/nis/nis_table.c +--- glibc-2_5/libc/nis/nis_table.c 2006-08-07 18:01:44.000000000 +0200 ++++ glibc-2_5-branch/libc/nis/nis_table.c 2007-03-20 14:22:06.000000000 +0100 +@@ -215,6 +215,7 @@ + char *tableptr; + char *tablepath = NULL; + int first_try = 0; /* Do we try the old binding at first ? */ ++ nis_result *allres = NULL; + + if (res == NULL) + return NULL; +@@ -223,6 +224,7 @@ + { + status = NIS_BADNAME; + err_out: ++ nis_freeresult (allres); + memset (res, '\0', sizeof (nis_result)); + NIS_RES_STATUS (res) = status; + return res; +@@ -349,6 +351,7 @@ + if (names != namebuf) + nis_freenames (names); + nis_free_request (ibreq); ++ nis_freeresult (allres); + return res; + } + if (NIS_RES_OBJECT (res)->LI_data.li_attrs.li_attrs_len) +@@ -392,6 +395,57 @@ + goto again; + } + } ++ else if ((flags & (FOLLOW_PATH | ALL_RESULTS)) ++ == (FOLLOW_PATH | ALL_RESULTS)) ++ { ++ if (allres == NULL) ++ { ++ allres = res; ++ res = malloc (sizeof (nis_result)); ++ if (res == NULL) ++ { ++ res = allres; ++ allres = NULL; ++ NIS_RES_STATUS (res) = NIS_NOMEMORY; ++ goto fail; ++ } ++ NIS_RES_STATUS (res) = NIS_RES_STATUS (allres); ++ } ++ else ++ { ++ nis_object *objects_val ++ = realloc (NIS_RES_OBJECT (allres), ++ (NIS_RES_NUMOBJ (allres) ++ + NIS_RES_NUMOBJ (res)) ++ * sizeof (nis_object)); ++ if (objects_val == NULL) ++ { ++ NIS_RES_STATUS (res) = NIS_NOMEMORY; ++ goto fail; ++ } ++ NIS_RES_OBJECT (allres) = objects_val; ++ memcpy (NIS_RES_OBJECT (allres) + NIS_RES_NUMOBJ (allres), ++ NIS_RES_OBJECT (res), ++ NIS_RES_NUMOBJ (res) * sizeof (nis_object)); ++ NIS_RES_NUMOBJ (allres) += NIS_RES_NUMOBJ (res); ++ NIS_RES_NUMOBJ (res) = 0; ++ free (NIS_RES_OBJECT (res)); ++ NIS_RES_OBJECT (res) = NULL; ++ NIS_RES_STATUS (allres) = NIS_RES_STATUS (res); ++ xdr_free ((xdrproc_t) _xdr_nis_result, (char *) res); ++ } ++ clnt_status = __follow_path (&tablepath, &tableptr, ibreq, ++ &bptr); ++ if (clnt_status != NIS_SUCCESS) ++ { ++ /* Prepare for the nis_freeresult call. */ ++ memset (res, '\0', sizeof (*res)); ++ ++ if (clnt_status == NIS_NOMEMORY) ++ NIS_RES_STATUS (allres) = clnt_status; ++ ++done; ++ } ++ } + else + ++done; + break; +@@ -485,6 +539,12 @@ + + nis_free_request (ibreq); + ++ if (allres) ++ { ++ nis_freeresult (res); ++ return allres; ++ } ++ + return res; + } + libnsl_hidden_def (nis_list) +diff -urN --exclude=CVS glibc-2_5/libc/nis/nss_compat/compat-grp.c glibc-2_5-branch/libc/nis/nss_compat/compat-grp.c +--- glibc-2_5/libc/nis/nss_compat/compat-grp.c 2006-08-01 01:33:04.000000000 +0200 ++++ glibc-2_5-branch/libc/nis/nss_compat/compat-grp.c 2007-03-20 14:22:06.000000000 +0100 +@@ -580,13 +580,17 @@ + /* +group */ + if (result->gr_name[0] == '+' && result->gr_name[1] != '\0') + { ++ /* Yes, no +1, see the memcpy call below. */ ++ size_t len = strlen (result->gr_name); ++ char buf[len]; + enum nss_status status; + + /* Store the group in the blacklist for the "+" at the end of + /etc/group */ +- blacklist_store_name (&result->gr_name[1], ent); ++ memcpy (buf, &result->gr_name[1], len); + status = getgrnam_plusgroup (&result->gr_name[1], result, ent, + buffer, buflen, errnop); ++ blacklist_store_name (buf, ent); + if (status == NSS_STATUS_SUCCESS && result->gr_gid == gid) + break; + else +diff -urN --exclude=CVS glibc-2_5/libc/nis/nss_nisplus/nisplus-grp.c glibc-2_5-branch/libc/nis/nss_nisplus/nisplus-grp.c +--- glibc-2_5/libc/nis/nss_nisplus/nisplus-grp.c 2006-05-20 21:20:19.000000000 +0200 ++++ glibc-2_5-branch/libc/nis/nss_nisplus/nisplus-grp.c 2007-03-20 14:22:07.000000000 +0100 +@@ -46,13 +46,13 @@ + static netobj cursor; + + +-static nis_name tablename_val; +-static size_t tablename_len; ++nis_name grp_tablename_val attribute_hidden; ++size_t grp_tablename_len attribute_hidden; + +-static enum nss_status +-_nss_create_tablename (int *errnop) ++enum nss_status ++_nss_grp_create_tablename (int *errnop) + { +- if (tablename_val == NULL) ++ if (grp_tablename_val == NULL) + { + const char *local_dir = nis_local_directory (); + size_t local_dir_len = strlen (local_dir); +@@ -67,11 +67,16 @@ + + memcpy (__stpcpy (p, prefix), local_dir, local_dir_len + 1); + +- tablename_len = sizeof (prefix) - 1 + local_dir_len; ++ grp_tablename_len = sizeof (prefix) - 1 + local_dir_len; + + atomic_write_barrier (); + +- tablename_val = p; ++ if (atomic_compare_and_exchange_bool_acq (&grp_tablename_val, p, NULL)) ++ { ++ /* Another thread already installed the value. */ ++ free (p); ++ grp_tablename_len = strlen (grp_tablename_val); ++ } + } + + return NSS_STATUS_SUCCESS; +@@ -103,19 +108,19 @@ + { + enum nss_status status = NSS_STATUS_SUCCESS; + +- if (tablename_val == NULL) +- status = _nss_create_tablename (errnop); ++ if (grp_tablename_val == NULL) ++ status = _nss_grp_create_tablename (errnop); + + if (status == NSS_STATUS_SUCCESS) + { +- ibreq = __create_ib_request (tablename_val, 0); ++ ibreq = __create_ib_request (grp_tablename_val, 0); + if (ibreq == NULL) + { + *errnop = errno; + return NSS_STATUS_TRYAGAIN; + } + +- nis_error retcode = __prepare_niscall (tablename_val, &dir, &bptr, 0); ++ nis_error retcode = __prepare_niscall (grp_tablename_val, &dir, &bptr, 0); + if (retcode != NIS_SUCCESS) + { + nis_free_request (ibreq); +@@ -285,13 +290,9 @@ + { + int parse_res; + +- if (tablename_val == NULL) ++ if (grp_tablename_val == NULL) + { +- __libc_lock_lock (lock); +- +- enum nss_status status = _nss_create_tablename (errnop); +- +- __libc_lock_unlock (lock); ++ enum nss_status status = _nss_grp_create_tablename (errnop); + + if (status != NSS_STATUS_SUCCESS) + return status; +@@ -304,10 +305,10 @@ + } + + nis_result *result; +- char buf[strlen (name) + 9 + tablename_len]; ++ char buf[strlen (name) + 9 + grp_tablename_len]; + int olderr = errno; + +- snprintf (buf, sizeof (buf), "[name=%s],%s", name, tablename_val); ++ snprintf (buf, sizeof (buf), "[name=%s],%s", name, grp_tablename_val); + + result = nis_list (buf, FOLLOW_LINKS | FOLLOW_PATH, NULL, NULL); + +@@ -348,13 +349,9 @@ + _nss_nisplus_getgrgid_r (const gid_t gid, struct group *gr, + char *buffer, size_t buflen, int *errnop) + { +- if (tablename_val == NULL) ++ if (grp_tablename_val == NULL) + { +- __libc_lock_lock (lock); +- +- enum nss_status status = _nss_create_tablename (errnop); +- +- __libc_lock_unlock (lock); ++ enum nss_status status = _nss_grp_create_tablename (errnop); + + if (status != NSS_STATUS_SUCCESS) + return status; +@@ -362,11 +359,11 @@ + + int parse_res; + nis_result *result; +- char buf[8 + 3 * sizeof (unsigned long int) + tablename_len]; ++ char buf[8 + 3 * sizeof (unsigned long int) + grp_tablename_len]; + int olderr = errno; + + snprintf (buf, sizeof (buf), "[gid=%lu],%s", +- (unsigned long int) gid, tablename_val); ++ (unsigned long int) gid, grp_tablename_val); + + result = nis_list (buf, FOLLOW_PATH | FOLLOW_LINKS, NULL, NULL); + +diff -urN --exclude=CVS glibc-2_5/libc/nis/nss_nisplus/nisplus-initgroups.c glibc-2_5-branch/libc/nis/nss_nisplus/nisplus-initgroups.c +--- glibc-2_5/libc/nis/nss_nisplus/nisplus-initgroups.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/nis/nss_nisplus/nisplus-initgroups.c 2007-01-12 15:37:24.000000000 +0100 +@@ -0,0 +1,150 @@ ++/* Copyright (C) 1997, 2001, 2002, 2003, 2005, 2006 ++ Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include "nss-nisplus.h" ++#include "nisplus-parser.h" ++#include ++#include ++#include ++ ++#define NISOBJVAL(col, obj) \ ++ ((obj)->EN_data.en_cols.en_cols_val[col].ec_value.ec_value_val) ++ ++#define NISOBJLEN(col, obj) \ ++ ((obj)->EN_data.en_cols.en_cols_val[col].ec_value.ec_value_len) ++ ++extern nis_name grp_tablename_val attribute_hidden; ++extern size_t grp_tablename_len attribute_hidden; ++extern enum nss_status _nss_grp_create_tablename (int *errnop); ++ ++ ++enum nss_status ++_nss_nisplus_initgroups_dyn (const char *user, gid_t group, long int *start, ++ long int *size, gid_t **groupsp, long int limit, ++ int *errnop) ++{ ++ if (grp_tablename_val == NULL) ++ { ++ enum nss_status status = _nss_grp_create_tablename (errnop); ++ ++ if (status != NSS_STATUS_SUCCESS) ++ return status; ++ } ++ ++ nis_result *result; ++ char buf[strlen (user) + 12 + grp_tablename_len]; ++ ++ snprintf (buf, sizeof (buf), "[members=%s],%s", user, grp_tablename_val); ++ ++ result = nis_list (buf, FOLLOW_LINKS | FOLLOW_PATH | ALL_RESULTS, NULL, NULL); ++ ++ if (result == NULL) ++ { ++ *errnop = ENOMEM; ++ return NSS_STATUS_TRYAGAIN; ++ } ++ ++ if (__builtin_expect (niserr2nss (result->status) != NSS_STATUS_SUCCESS, 0)) ++ { ++ enum nss_status status = niserr2nss (result->status); ++ ++ nis_freeresult (result); ++ return status; ++ } ++ ++ if (NIS_RES_NUMOBJ (result) == 0) ++ { ++ errout: ++ nis_freeresult (result); ++ return NSS_STATUS_NOTFOUND; ++ } ++ ++ gid_t *groups = *groupsp; ++ nis_object *obj = NIS_RES_OBJECT (result); ++ for (unsigned int cnt = 0; cnt < NIS_RES_NUMOBJ (result); ++cnt, ++obj) ++ { ++ if (__type_of (obj) != NIS_ENTRY_OBJ ++ || strcmp (obj->EN_data.en_type, "group_tbl") != 0 ++ || obj->EN_data.en_cols.en_cols_len < 4) ++ continue; ++ ++ char *numstr = NISOBJVAL (2, obj); ++ size_t len = NISOBJLEN (2, obj); ++ if (len == 0 || numstr[0] == '\0') ++ continue; ++ ++ gid_t gid; ++ char *endp; ++ if (__builtin_expect (numstr[len - 1] != '\0', 0)) ++ { ++ char numstrbuf[len + 1]; ++ memcpy (numstrbuf, numstr, len); ++ numstrbuf[len] = '\0'; ++ gid = strtoul (numstrbuf, &endp, 10); ++ if (*endp) ++ continue; ++ } ++ else ++ { ++ gid = strtoul (numstr, &endp, 10); ++ if (*endp) ++ continue; ++ } ++ ++ if (gid == group) ++ continue; ++ ++ /* Insert this group. */ ++ if (*start == *size) ++ { ++ /* Need a bigger buffer. */ ++ long int newsize; ++ ++ if (limit > 0 && *size == limit) ++ /* We reached the maximum. */ ++ break; ++ ++ if (limit <= 0) ++ newsize = 2 * *size; ++ else ++ newsize = MIN (limit, 2 * *size); ++ ++ gid_t *newgroups = realloc (groups, newsize * sizeof (*groups)); ++ if (newgroups == NULL) ++ goto errout; ++ *groupsp = groups = newgroups; ++ *size = newsize; ++ } ++ ++ groups[*start] = gid; ++ *start += 1; ++ } ++ ++ nis_freeresult (result); ++ return NSS_STATUS_SUCCESS; ++} +diff -urN --exclude=CVS glibc-2_5/libc/nis/Versions glibc-2_5-branch/libc/nis/Versions +--- glibc-2_5/libc/nis/Versions 2006-05-20 21:21:52.000000000 +0200 ++++ glibc-2_5-branch/libc/nis/Versions 2007-03-20 14:22:06.000000000 +0100 +@@ -125,6 +125,6 @@ + _nss_nisplus_setetherent; _nss_nisplus_setgrent; _nss_nisplus_sethostent; + _nss_nisplus_setnetent; _nss_nisplus_setnetgrent; _nss_nisplus_setprotoent; + _nss_nisplus_setpwent; _nss_nisplus_setrpcent; _nss_nisplus_setservent; +- _nss_nisplus_setspent; ++ _nss_nisplus_setspent; _nss_nisplus_initgroups_dyn; + } + } +diff -urN --exclude=CVS glibc-2_5/libc/nptl/ChangeLog glibc-2_5-branch/libc/nptl/ChangeLog +--- glibc-2_5/libc/nptl/ChangeLog 2006-09-24 19:14:11.000000000 +0200 ++++ glibc-2_5-branch/libc/nptl/ChangeLog 2007-03-20 14:22:07.000000000 +0100 +@@ -1,3 +1,12 @@ ++2006-12-28 David S. Miller ++ ++ * shlib-versions: Fix sparc64 linux target specification. ++ ++2006-12-21 Jakub Jelinek ++ ++ * sysdeps/unix/sysv/linux/pthread_kill.c (pthread_kill): Make sure ++ tid isn't reread from pd->tid in between ESRCH test and the syscall. ++ + 2006-09-24 Ulrich Drepper + + [BZ #3251] +diff -urN --exclude=CVS glibc-2_5/libc/nptl/shlib-versions glibc-2_5-branch/libc/nptl/shlib-versions +--- glibc-2_5/libc/nptl/shlib-versions 2004-07-05 19:03:27.000000000 +0200 ++++ glibc-2_5-branch/libc/nptl/shlib-versions 2007-03-20 14:22:08.000000000 +0100 +@@ -1,5 +1,5 @@ + mips.*-.*-linux.* libpthread=0 GLIBC_2.0 GLIBC_2.2 +-sparc64-.*-linux.* libpthread=0 GLIBC_2.2 ++sparc64.*-.*-linux.* libpthread=0 GLIBC_2.2 + sh.*-.*-linux.* libpthread=0 GLIBC_2.2 + ia64.*-.*-linux.* libpthread=0 GLIBC_2.2 + hppa.*-.*-linux.* libpthread=0 GLIBC_2.2 +diff -urN --exclude=CVS glibc-2_5/libc/nptl/sysdeps/unix/sysv/linux/pthread_kill.c glibc-2_5-branch/libc/nptl/sysdeps/unix/sysv/linux/pthread_kill.c +--- glibc-2_5/libc/nptl/sysdeps/unix/sysv/linux/pthread_kill.c 2004-09-29 00:22:37.000000000 +0200 ++++ glibc-2_5-branch/libc/nptl/sysdeps/unix/sysv/linux/pthread_kill.c 2007-03-20 14:22:15.000000000 +0100 +@@ -1,4 +1,4 @@ +-/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. ++/* Copyright (C) 2002, 2003, 2004, 2006 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper , 2002. + +@@ -33,7 +33,15 @@ + struct pthread *pd = (struct pthread *) threadid; + + /* Make sure the descriptor is valid. */ +- if (INVALID_TD_P (pd)) ++ if (DEBUGGING_P && INVALID_TD_P (pd)) ++ /* Not a valid thread handle. */ ++ return ESRCH; ++ ++ /* Force load of pd->tid into local variable or register. Otherwise ++ if a thread exits between ESRCH test and tgkill, we might return ++ EINVAL, because pd->tid would be cleared by the kernel. */ ++ pid_t tid = atomic_forced_read (pd->tid); ++ if (__builtin_expect (tid <= 0, 0)) + /* Not a valid thread handle. */ + return ESRCH; + +@@ -53,15 +61,15 @@ + int val; + #if __ASSUME_TGKILL + val = INTERNAL_SYSCALL (tgkill, err, 3, THREAD_GETMEM (THREAD_SELF, pid), +- pd->tid, signo); ++ tid, signo); + #else + # ifdef __NR_tgkill + val = INTERNAL_SYSCALL (tgkill, err, 3, THREAD_GETMEM (THREAD_SELF, pid), +- pd->tid, signo); ++ tid, signo); + if (INTERNAL_SYSCALL_ERROR_P (val, err) + && INTERNAL_SYSCALL_ERRNO (val, err) == ENOSYS) + # endif +- val = INTERNAL_SYSCALL (tkill, err, 2, pd->tid, signo); ++ val = INTERNAL_SYSCALL (tkill, err, 2, tid, signo); + #endif + + return (INTERNAL_SYSCALL_ERROR_P (val, err) +diff -urN --exclude=CVS glibc-2_5/libc/nptl_db/ChangeLog glibc-2_5-branch/libc/nptl_db/ChangeLog +--- glibc-2_5/libc/nptl_db/ChangeLog 2006-02-04 01:48:40.000000000 +0100 ++++ glibc-2_5-branch/libc/nptl_db/ChangeLog 2007-03-20 14:22:22.000000000 +0100 +@@ -1,3 +1,8 @@ ++2006-10-26 Pete Eberlein ++ ++ * nptl_db/db_info.c [TLS_DTV_AT_TP]: Fixed size init for dtvp ++ to sizeof a pointer, instead of sizeof the union. ++ + 2006-02-03 Roland McGrath + + * structs.def: Add a descriptor for pointer.val field of dtv_t. +diff -urN --exclude=CVS glibc-2_5/libc/nptl_db/db_info.c glibc-2_5-branch/libc/nptl_db/db_info.c +--- glibc-2_5/libc/nptl_db/db_info.c 2004-03-14 04:39:57.000000000 +0100 ++++ glibc-2_5-branch/libc/nptl_db/db_info.c 2007-03-20 14:22:22.000000000 +0100 +@@ -59,7 +59,7 @@ + i.e. at the very end of the area covered by TLS_PRE_TCB_SIZE. */ + DESC (_thread_db_pthread_dtvp, + TLS_PRE_TCB_SIZE + offsetof (tcbhead_t, dtv) +- - (TLS_TCB_SIZE == 0 ? sizeof (tcbhead_t) : 0), union dtv) ++ - (TLS_TCB_SIZE == 0 ? sizeof (tcbhead_t) : 0), union dtv *) + #endif + + +diff -urN --exclude=CVS glibc-2_5/libc/nscd/mem.c glibc-2_5-branch/libc/nscd/mem.c +--- glibc-2_5/libc/nscd/mem.c 2005-12-07 06:47:27.000000000 +0100 ++++ glibc-2_5-branch/libc/nscd/mem.c 2007-03-20 14:22:23.000000000 +0100 +@@ -1,5 +1,5 @@ + /* Cache memory handling. +- Copyright (C) 2004, 2005 Free Software Foundation, Inc. ++ Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper , 2004. + +@@ -480,12 +480,12 @@ + { + /* Try to resize the database. Grow size of 1/8th. */ + size_t oldtotal = (sizeof (struct database_pers_head) +- + db->head->module * sizeof (ref_t) ++ + roundup (db->head->module * sizeof (ref_t), ALIGN) + + db->head->data_size); + size_t new_data_size = (db->head->data_size + + MAX (2 * len, db->head->data_size / 8)); + size_t newtotal = (sizeof (struct database_pers_head) +- + db->head->module * sizeof (ref_t) ++ + roundup (db->head->module * sizeof (ref_t), ALIGN) + + new_data_size); + if (newtotal > db->max_db_size) + { +diff -urN --exclude=CVS glibc-2_5/libc/nscd/nscd.c glibc-2_5-branch/libc/nscd/nscd.c +--- glibc-2_5/libc/nscd/nscd.c 2006-05-30 19:29:36.000000000 +0200 ++++ glibc-2_5-branch/libc/nscd/nscd.c 2007-03-20 14:22:23.000000000 +0100 +@@ -237,7 +237,7 @@ + + if (chdir ("/") != 0) + error (EXIT_FAILURE, errno, +- _("cannot change current working cirectory to \"/\"")); ++ _("cannot change current working directory to \"/\"")); + + openlog ("nscd", LOG_CONS | LOG_ODELAY, LOG_DAEMON); + +diff -urN --exclude=CVS glibc-2_5/libc/nscd/nscd-client.h glibc-2_5-branch/libc/nscd/nscd-client.h +--- glibc-2_5/libc/nscd/nscd-client.h 2006-04-26 01:48:55.000000000 +0200 ++++ glibc-2_5-branch/libc/nscd/nscd-client.h 2007-03-20 14:22:23.000000000 +0100 +@@ -258,6 +258,7 @@ + const char *data; + size_t mapsize; + int counter; /* > 0 indicates it is usable. */ ++ size_t datasize; + }; + #define NO_MAPPING ((struct mapped_database *) -1l) + +diff -urN --exclude=CVS glibc-2_5/libc/nscd/nscd_helper.c glibc-2_5-branch/libc/nscd/nscd_helper.c +--- glibc-2_5/libc/nscd/nscd_helper.c 2006-04-26 01:47:53.000000000 +0200 ++++ glibc-2_5-branch/libc/nscd/nscd_helper.c 2007-03-20 14:22:23.000000000 +0100 +@@ -290,6 +290,7 @@ + newp->data = ((char *) mapping + head.header_size + + roundup (head.module * sizeof (ref_t), ALIGN)); + newp->mapsize = size; ++ newp->datasize = head.data_size; + /* Set counter to 1 to show it is usable. */ + newp->counter = 1; + +@@ -340,7 +341,8 @@ + /* If not mapped or timestamp not updated, request new map. */ + if (cur == NULL + || (cur->head->nscd_certainly_running == 0 +- && cur->head->timestamp + MAPPING_TIMEOUT < time (NULL))) ++ && cur->head->timestamp + MAPPING_TIMEOUT < time (NULL)) ++ || cur->head->data_size > cur->datasize) + cur = get_mapping (type, name, + (struct mapped_database **) &mapptr->mapped); + +@@ -365,14 +367,18 @@ + const struct mapped_database *mapped) + { + unsigned long int hash = __nis_hash (key, keylen) % mapped->head->module; ++ size_t datasize = mapped->datasize; + + ref_t work = mapped->head->array[hash]; +- while (work != ENDREF) ++ while (work != ENDREF && work + sizeof (struct hashentry) <= datasize) + { + struct hashentry *here = (struct hashentry *) (mapped->data + work); + +- if (type == here->type && keylen == here->len +- && memcmp (key, mapped->data + here->key, keylen) == 0) ++ if (type == here->type ++ && keylen == here->len ++ && here->key + here->len <= datasize ++ && memcmp (key, mapped->data + here->key, keylen) == 0 ++ && here->packet + sizeof (struct datahead) <= datasize) + { + /* We found the entry. Increment the appropriate counter. */ + const struct datahead *dh +@@ -380,8 +386,7 @@ + + /* See whether we must ignore the entry or whether something + is wrong because garbage collection is in progress. */ +- if (dh->usable && ((char *) dh + dh->allocsize +- <= (char *) mapped->head + mapped->mapsize)) ++ if (dh->usable && here->packet + dh->allocsize <= datasize) + return dh; + } + +diff -urN --exclude=CVS glibc-2_5/libc/nss/getXXbyYY_r.c glibc-2_5-branch/libc/nss/getXXbyYY_r.c +--- glibc-2_5/libc/nss/getXXbyYY_r.c 2004-09-17 00:24:09.000000000 +0200 ++++ glibc-2_5-branch/libc/nss/getXXbyYY_r.c 2007-03-20 14:22:23.000000000 +0100 +@@ -1,4 +1,4 @@ +-/* Copyright (C) 1996-2002, 2003, 2004 Free Software Foundation, Inc. ++/* Copyright (C) 1996-2002, 2003, 2004, 2006 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper , 1996. + +@@ -18,6 +18,7 @@ + 02111-1307 USA. */ + + #include ++#include + #include + #include + #include "nsswitch.h" +@@ -173,9 +174,6 @@ + startp = (service_user *) -1l; + else + { +- startp = nip; +- start_fct = fct.l; +- + #ifdef NEED__RES + /* The resolver code will really be used so we have to + initialize it. */ +@@ -190,6 +188,11 @@ + if (!_res_hconf.initialized) + _res_hconf_init (); + #endif /* need _res_hconf */ ++ ++ start_fct = fct.l; ++ /* Make sure start_fct is written before startp. */ ++ atomic_write_barrier (); ++ startp = nip; + } + } + else +diff -urN --exclude=CVS glibc-2_5/libc/nss/nss_files/files-alias.c glibc-2_5-branch/libc/nss/nss_files/files-alias.c +--- glibc-2_5/libc/nss/nss_files/files-alias.c 2002-09-01 14:38:05.000000000 +0200 ++++ glibc-2_5-branch/libc/nss/nss_files/files-alias.c 2007-03-20 14:22:23.000000000 +0100 +@@ -1,5 +1,5 @@ + /* Mail alias file parser in nss_files module. +- Copyright (C) 1996,97,98,99,2002 Free Software Foundation, Inc. ++ Copyright (C) 1996,97,98,99,2002,2006 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper , 1996. + +@@ -298,8 +298,8 @@ + first_unused[room_left - 1] = '\0'; + strncpy (first_unused, old_line, room_left); + +- if (old_line != NULL) +- free (old_line); ++ free (old_line); ++ line = first_unused; + + if (first_unused[room_left - 1] != '\0') + goto no_more_room; +diff -urN --exclude=CVS glibc-2_5/libc/po/nl.po glibc-2_5-branch/libc/po/nl.po +--- glibc-2_5/libc/po/nl.po 2006-09-21 06:16:48.000000000 +0200 ++++ glibc-2_5-branch/libc/po/nl.po 2007-03-20 14:22:25.000000000 +0100 +@@ -1,3725 +1,4478 @@ +-# Dutch translation of libc. +-# Copyright (C) 2004 Free Software Foundation, Inc. ++# Translation of libc-2.5 to Dutch. ++# Copyright (C) 2004, 2006 Free Software Foundation, Inc. + # Elros Cyriatan , 2004. +-# +-# ++# Benno Schulenberg , 2006. ++# + msgid "" + msgstr "" +-"Project-Id-Version: libc 2.3.3\n" ++"Project-Id-Version: libc 2.5\n" + "Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2004-08-05 09:16+0200\n" +-"PO-Revision-Date: 2004-08-05 15:52+0200\n" +-"Last-Translator: Elros Cyriatan \n" +-"Language-Team: Dutch \n" ++"POT-Creation-Date: 2006-09-29 11:38-0700\n" ++"PO-Revision-Date: 2006-11-14 19:50+0100\n" ++"Last-Translator: Benno Schulenberg \n" ++"Language-Team: Dutch \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"X-Generator: KBabel 1.11.4\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +-#: sysdeps/generic/siglist.h:29 stdio-common/../sysdeps/unix/siglist.c:27 +-msgid "Hangup" +-msgstr "Ophangen" ++#: argp/argp-help.c:227 ++#, c-format ++msgid "%.*s: ARGP_HELP_FMT parameter requires a value" ++msgstr "%.*s: Parameter van ARGP_HELP_FMT vereist een waarde" + +-#: sysdeps/generic/siglist.h:30 stdio-common/../sysdeps/unix/siglist.c:28 +-msgid "Interrupt" +-msgstr "Onderbreken" ++#: argp/argp-help.c:237 ++#, c-format ++msgid "%.*s: Unknown ARGP_HELP_FMT parameter" ++msgstr "%.*s: Onbekende parameter van ARGP_HELP_FMT" + +-#: sysdeps/generic/siglist.h:31 stdio-common/../sysdeps/unix/siglist.c:29 +-msgid "Quit" +-msgstr "Afsluiten" ++#: argp/argp-help.c:250 ++#, c-format ++msgid "Garbage in ARGP_HELP_FMT: %s" ++msgstr "Rommel in ARGP_HELP_FMT: %s" + +-#: sysdeps/generic/siglist.h:32 stdio-common/../sysdeps/unix/siglist.c:30 +-msgid "Illegal instruction" +-msgstr "Ongeldige instructie" ++#: argp/argp-help.c:1214 ++msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." ++msgstr "" ++"Een argument dat verplicht of optioneel is voor een lange optie, is dat\n" ++"ook voor de overeenkomstige korte optie." + +-#: sysdeps/generic/siglist.h:33 stdio-common/../sysdeps/unix/siglist.c:31 +-msgid "Trace/breakpoint trap" +-msgstr "Traceer/breekpunt val" ++#: argp/argp-help.c:1600 ++msgid "Usage:" ++msgstr "Gebruik: " + +-#: sysdeps/generic/siglist.h:34 +-msgid "Aborted" +-msgstr "Geannuleerd" ++#: argp/argp-help.c:1604 ++msgid " or: " ++msgstr " of: " + +-#: sysdeps/generic/siglist.h:35 stdio-common/../sysdeps/unix/siglist.c:34 +-msgid "Floating point exception" +-msgstr "Zwevende-punt uitzondering" ++#: argp/argp-help.c:1616 ++msgid " [OPTION...]" ++msgstr " [OPTIE...]" + +-#: sysdeps/generic/siglist.h:36 stdio-common/../sysdeps/unix/siglist.c:35 +-msgid "Killed" +-msgstr "Gedood" ++#: argp/argp-help.c:1643 ++#, c-format ++msgid "Try `%s --help' or `%s --usage' for more information.\n" ++msgstr "Probeer '%s --help' of '%s --usage' voor meer informatie.\n" + +-#: sysdeps/generic/siglist.h:37 stdio-common/../sysdeps/unix/siglist.c:36 +-msgid "Bus error" +-msgstr "Bus fout" ++#: argp/argp-help.c:1671 ++#, c-format ++msgid "Report bugs to %s.\n" ++msgstr "" ++"Rapporteer fouten in het programma aan %s,\n" ++"en gebreken in de vertaling aan .\n" + +-#: sysdeps/generic/siglist.h:38 stdio-common/../sysdeps/unix/siglist.c:37 +-msgid "Segmentation fault" +-msgstr "Segmentatie fout" ++#: argp/argp-parse.c:102 ++msgid "Give this help list" ++msgstr "deze hulptekst tonen" + +-#. TRANS Broken pipe; there is no process reading from the other end of a pipe. +-#. TRANS Every library function that returns this error code also generates a +-#. TRANS @code{SIGPIPE} signal; this signal terminates the program if not handled +-#. TRANS or blocked. Thus, your program will never actually see @code{EPIPE} +-#. TRANS unless it has handled or blocked @code{SIGPIPE}. +-#: sysdeps/generic/siglist.h:39 stdio-common/../sysdeps/gnu/errlist.c:351 +-#: stdio-common/../sysdeps/unix/siglist.c:39 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:62 +-msgid "Broken pipe" +-msgstr "Gebroken pijp" ++#: argp/argp-parse.c:103 ++msgid "Give a short usage message" ++msgstr "een kort gebruiksbericht tonen" + +-#: sysdeps/generic/siglist.h:40 stdio-common/../sysdeps/unix/siglist.c:40 +-msgid "Alarm clock" +-msgstr "Alarmklok" ++#: argp/argp-parse.c:104 ++msgid "Set the program name" ++msgstr "de programmanaam instellen" + +-#: sysdeps/generic/siglist.h:41 stdio-common/../sysdeps/unix/siglist.c:41 +-msgid "Terminated" +-msgstr "Afgebroken" ++#: argp/argp-parse.c:106 ++msgid "Hang for SECS seconds (default 3600)" ++msgstr "dit aantal seconden pauzeren (standaard 3600)" + +-#: sysdeps/generic/siglist.h:42 stdio-common/../sysdeps/unix/siglist.c:42 +-msgid "Urgent I/O condition" +-msgstr "Spoedeisende I/O-omstandigheid" ++#: argp/argp-parse.c:167 ++msgid "Print program version" ++msgstr "programmaversie tonen" + +-#: sysdeps/generic/siglist.h:43 stdio-common/../sysdeps/unix/siglist.c:43 +-msgid "Stopped (signal)" +-msgstr "Gestopt (signaal)" ++#: argp/argp-parse.c:183 ++msgid "(PROGRAM ERROR) No version known!?" ++msgstr "**Interne programmafout**: geen versie bekend!?" + +-#: sysdeps/generic/siglist.h:44 stdio-common/../sysdeps/unix/siglist.c:44 +-msgid "Stopped" +-msgstr "Gestopt" ++#: argp/argp-parse.c:623 ++#, c-format ++msgid "%s: Too many arguments\n" ++msgstr "%s: Te veel argumenten\n" + +-#: sysdeps/generic/siglist.h:45 stdio-common/../sysdeps/unix/siglist.c:45 +-msgid "Continued" +-msgstr "Doorgegaan" ++#: argp/argp-parse.c:766 ++msgid "(PROGRAM ERROR) Option should have been recognized!?" ++msgstr "**Interne programmafout**: optie had herkend moeten worden!?" + +-#: sysdeps/generic/siglist.h:46 stdio-common/../sysdeps/unix/siglist.c:46 +-msgid "Child exited" +-msgstr "Kind is afgesloten" ++#: assert/assert-perr.c:57 ++#, c-format ++msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n" ++msgstr "%s%s%s:%u: %s%sOnverwachte fout: %s.\n" + +-#: sysdeps/generic/siglist.h:47 stdio-common/../sysdeps/unix/siglist.c:47 +-msgid "Stopped (tty input)" +-msgstr "Gestopt (tty invoer)" ++#: assert/assert.c:57 ++#, c-format ++msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" ++msgstr "%s%s%s:%u: %s%sControletest '%s' faalt.\n" + +-#: sysdeps/generic/siglist.h:48 stdio-common/../sysdeps/unix/siglist.c:48 +-msgid "Stopped (tty output)" +-msgstr "Gestopt (tty uitvoer)" ++#: catgets/gencat.c:109 catgets/gencat.c:113 nscd/nscd.c:96 nss/makedb.c:61 ++msgid "NAME" ++msgstr "NAAM" + +-#: sysdeps/generic/siglist.h:49 stdio-common/../sysdeps/unix/siglist.c:49 +-msgid "I/O possible" +-msgstr "I/O mogelijk" ++#: catgets/gencat.c:110 ++msgid "Create C header file NAME containing symbol definitions" ++msgstr "headerbestand met symbooldefinities aanmaken" + +-#: sysdeps/generic/siglist.h:50 stdio-common/../sysdeps/unix/siglist.c:50 +-msgid "CPU time limit exceeded" +-msgstr "Grens processortijd overschreden" ++#: catgets/gencat.c:112 ++msgid "Do not use existing catalog, force new output file" ++msgstr "bestaande catalogus niet gebruiken; een nieuw uitvoerbestand afdwingen" + +-#: sysdeps/generic/siglist.h:51 stdio-common/../sysdeps/unix/siglist.c:51 +-msgid "File size limit exceeded" +-msgstr "Grens bestandsgrootte overschreden" ++#: catgets/gencat.c:113 nss/makedb.c:61 ++msgid "Write output to file NAME" ++msgstr "uitvoer naar dit bestand schrijven" + +-#: sysdeps/generic/siglist.h:52 stdio-common/../sysdeps/unix/siglist.c:52 +-msgid "Virtual timer expired" +-msgstr "Virtuele tijdopnemer verlopen" ++#: catgets/gencat.c:118 ++msgid "" ++"Generate message catalog. If INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n" ++"is -, output is written to standard output.\n" ++msgstr "" ++"Een berichtencatalogus genereren.\n" ++"\n" ++"Als INVOERBESTAND '-' is, wordt van standaardinvoer gelezen.\n" ++"Als UITVOERBESTAND '-' is, wordt naar standaarduitvoer geschreven.\n" + +-#: sysdeps/generic/siglist.h:53 stdio-common/../sysdeps/unix/siglist.c:53 +-msgid "Profiling timer expired" +-msgstr "Profilerende tijdopnemer verlopen" ++#: catgets/gencat.c:123 ++msgid "" ++"-o OUTPUT-FILE [INPUT-FILE]...\n" ++"[OUTPUT-FILE [INPUT-FILE]...]" ++msgstr "" ++"-o UITVOERBESTAND [INVOERBESTAND...]\n" ++"[UITVOERBESTAND [INVOERBESTAND...]]" + +-#: sysdeps/generic/siglist.h:54 stdio-common/../sysdeps/unix/siglist.c:54 +-msgid "Window changed" +-msgstr "Venster veranderd" ++#: catgets/gencat.c:231 debug/pcprofiledump.c:199 iconv/iconv_prog.c:410 ++#: iconv/iconvconfig.c:379 locale/programs/localedef.c:370 ++#: login/programs/pt_chown.c:88 malloc/memusagestat.c:525 nss/makedb.c:231 ++msgid "" ++"For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Voor het rapporteren van fouten, zie:\n" ++" .\n" + +-#: sysdeps/generic/siglist.h:55 stdio-common/../sysdeps/unix/siglist.c:56 +-msgid "User defined signal 1" +-msgstr "Door gebruiker gedefinieerd signaal 1" ++#: catgets/gencat.c:245 debug/xtrace.sh:64 elf/ldconfig.c:285 ++#: elf/ldd.bash.in:39 elf/sprof.c:355 iconv/iconv_prog.c:425 ++#: iconv/iconvconfig.c:394 locale/programs/locale.c:274 ++#: locale/programs/localedef.c:386 login/programs/pt_chown.c:59 ++#: malloc/memusage.sh:71 nscd/nscd.c:401 nss/getent.c:83 nss/makedb.c:245 ++#: posix/getconf.c:1007 ++#, c-format ++msgid "" ++"Copyright (C) %s Free Software Foundation, Inc.\n" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"Copyright (C) %s Free Software Foundation, Inc.\n" ++"Dit is vrije software; zie de brontekst voor de kopieervoorwaarden.\n" ++"Er is GEEN garantie; zelfs niet van VERKOOPBAARHEID of GESCHIKTHEID\n" ++"VOOR EEN BEPAALD DOEL.\n" ++ ++#: catgets/gencat.c:250 debug/xtrace.sh:68 elf/ldconfig.c:290 elf/sprof.c:361 ++#: iconv/iconv_prog.c:430 iconv/iconvconfig.c:399 locale/programs/locale.c:279 ++#: locale/programs/localedef.c:391 malloc/memusage.sh:75 nscd/nscd.c:406 ++#: nss/getent.c:88 nss/makedb.c:250 posix/getconf.c:1012 ++#, c-format ++msgid "Written by %s.\n" ++msgstr "Geschreven door %s.\n" + +-#: sysdeps/generic/siglist.h:56 stdio-common/../sysdeps/unix/siglist.c:57 +-msgid "User defined signal 2" +-msgstr "Door gebruiker gedefinieerd signaal 2" ++#: catgets/gencat.c:281 ++msgid "*standard input*" ++msgstr "*standaardinvoer*" + +-#: sysdeps/generic/siglist.h:60 stdio-common/../sysdeps/unix/siglist.c:33 +-msgid "EMT trap" +-msgstr "EMT-val" ++#: catgets/gencat.c:287 iconv/iconv_charmap.c:157 iconv/iconv_prog.c:297 ++#: nss/makedb.c:170 ++#, c-format ++msgid "cannot open input file `%s'" ++msgstr "kan invoerbestand '%s' niet openen" + +-#: sysdeps/generic/siglist.h:63 stdio-common/../sysdeps/unix/siglist.c:38 +-msgid "Bad system call" +-msgstr "Slechte systeemaanroep" ++#: catgets/gencat.c:416 catgets/gencat.c:493 ++msgid "illegal set number" ++msgstr "ongeldig verzamelingsnummer" + +-#: sysdeps/generic/siglist.h:66 +-msgid "Stack fault" +-msgstr "Stack fout" ++#: catgets/gencat.c:443 ++msgid "duplicate set definition" ++msgstr "dubbele verzamelingsdefinitie" + +-#: sysdeps/generic/siglist.h:69 +-msgid "Information request" +-msgstr "Verzoek om informatie" ++#: catgets/gencat.c:445 catgets/gencat.c:622 catgets/gencat.c:676 ++msgid "this is the first definition" ++msgstr "dit is de eerste definitie" + +-#: sysdeps/generic/siglist.h:71 +-msgid "Power failure" +-msgstr "Stroomstoring" ++#: catgets/gencat.c:521 ++#, c-format ++msgid "unknown set `%s'" ++msgstr "onbekende verzameling '%s'" + +-#: sysdeps/generic/siglist.h:74 stdio-common/../sysdeps/unix/siglist.c:55 +-msgid "Resource lost" +-msgstr "Bron verloren" ++#: catgets/gencat.c:562 ++msgid "invalid quote character" ++msgstr "ongeldig aanhalingsteken" + +-#: sysdeps/mach/hurd/mips/dl-machine.c:68 +-#: string/../sysdeps/mach/_strerror.c:57 +-msgid "Error in unknown error system: " +-msgstr "Fout in onbekende-fout systeem: " ++#: catgets/gencat.c:575 ++#, c-format ++msgid "unknown directive `%s': line ignored" ++msgstr "onbekende richting '%s'; regel is genegeerd" + +-#: sysdeps/mach/hurd/mips/dl-machine.c:83 +-#: string/../sysdeps/generic/_strerror.c:44 +-#: string/../sysdeps/mach/_strerror.c:87 +-msgid "Unknown error " +-msgstr "Onbekende fout " ++#: catgets/gencat.c:620 ++msgid "duplicated message number" ++msgstr "dubbel berichtnummer" + +-#: sysdeps/unix/sysv/linux/lddlibc4.c:64 +-#, c-format +-msgid "cannot open `%s'" +-msgstr "kan `%s' niet openen" ++#: catgets/gencat.c:673 ++msgid "duplicated message identifier" ++msgstr "dubbele berichtnaam" + +-#: sysdeps/unix/sysv/linux/lddlibc4.c:68 ++#: catgets/gencat.c:730 ++msgid "invalid character: message ignored" ++msgstr "ongeldig teken; bericht is genegeerd" ++ ++#: catgets/gencat.c:773 ++msgid "invalid line" ++msgstr "ongeldige regel" ++ ++#: catgets/gencat.c:827 ++msgid "malformed line ignored" ++msgstr "ongeldige regel is genegeerd" ++ ++#: catgets/gencat.c:991 catgets/gencat.c:1032 nss/makedb.c:183 + #, c-format +-msgid "cannot read header from `%s'" +-msgstr "kan kop van `%s' niet lezen" ++msgid "cannot open output file `%s'" ++msgstr "kan uitvoerbestand '%s' niet openen" ++ ++#: catgets/gencat.c:1194 locale/programs/linereader.c:559 ++msgid "invalid escape sequence" ++msgstr "ongeldige stuurcode" ++ ++#: catgets/gencat.c:1216 ++msgid "unterminated message" ++msgstr "onafgesloten bericht" + +-#: iconv/iconv_charmap.c:159 iconv/iconv_prog.c:295 catgets/gencat.c:288 ++#: catgets/gencat.c:1240 + #, c-format +-msgid "cannot open input file `%s'" +-msgstr "kan invoerbestand `%s' niet openen" ++msgid "while opening old catalog file" ++msgstr "bij openen van oude catalogusbestand" + +-#: iconv/iconv_charmap.c:177 iconv/iconv_prog.c:313 ++#: catgets/gencat.c:1331 + #, c-format +-msgid "error while closing input `%s'" +-msgstr "fout bij sluiten invoer `%s'" ++msgid "conversion modules not available" ++msgstr "conversiemodules zijn niet beschikbaar" + +-#: iconv/iconv_charmap.c:443 ++#: catgets/gencat.c:1357 + #, c-format +-msgid "illegal input sequence at position %Zd" +-msgstr "ongeldige invoerreeks op positie %Zd" ++msgid "cannot determine escape character" ++msgstr "kan niet bepalen wat het escapeteken is" + +-#: iconv/iconv_charmap.c:462 iconv/iconv_prog.c:506 +-msgid "incomplete character or shift sequence at end of buffer" +-msgstr "onvolledig teken en schuifreeks op einde van buffer" ++#: debug/pcprofiledump.c:52 ++msgid "Don't buffer output" ++msgstr "uitvoer niet bufferen" + +-#: iconv/iconv_charmap.c:507 iconv/iconv_charmap.c:543 iconv/iconv_prog.c:549 +-#: iconv/iconv_prog.c:585 +-msgid "error while reading the input" +-msgstr "fout bij lezen van de invoer" ++#: debug/pcprofiledump.c:57 ++msgid "Dump information generated by PC profiling." ++msgstr "Door prestatie-analyse gegenereerde informatie weergeven." + +-#: iconv/iconv_charmap.c:525 iconv/iconv_prog.c:567 +-msgid "unable to allocate buffer for input" +-msgstr "kan geen buffer toewijzen voor invoer" ++#: debug/pcprofiledump.c:60 ++msgid "[FILE]" ++msgstr "[BESTAND]" + +-#: iconv/iconv_prog.c:61 +-msgid "Input/Output format specification:" +-msgstr "Invoer/Uitvoer formaatopgave:" ++#: debug/pcprofiledump.c:100 ++#, c-format ++msgid "cannot open input file" ++msgstr "kan invoerbestand niet openen" + +-#: iconv/iconv_prog.c:62 +-msgid "encoding of original text" +-msgstr "codering van oorspronkelijke tekst" ++#: debug/pcprofiledump.c:106 ++#, c-format ++msgid "cannot read header" ++msgstr "kan kop van bestand niet lezen" + +-#: iconv/iconv_prog.c:63 +-msgid "encoding for output" +-msgstr "codering van uitvoer" ++#: debug/pcprofiledump.c:170 ++#, c-format ++msgid "invalid pointer size" ++msgstr "ongeldige pointergrootte" + +-#: iconv/iconv_prog.c:64 +-msgid "Information:" +-msgstr "Informatie:" ++#: debug/xtrace.sh:27 debug/xtrace.sh:45 ++msgid "Usage: xtrace [OPTION]... PROGRAM [PROGRAMOPTION]...\\n" ++msgstr "Gebruik: xtrace [OPTIE]... PROGRAMMA [PROGRAMMA-OPTIE]...\\n" ++ ++#: debug/xtrace.sh:33 ++msgid "Try `xtrace --help' for more information.\\n" ++msgstr "Probeer 'xtrace --help' voor meer informatie.\\n" ++ ++#: debug/xtrace.sh:39 ++msgid "xtrace: option `$1' requires an argument.\\n" ++msgstr "xtrace: optie '$1' vereist een argument\\n" + +-#: iconv/iconv_prog.c:65 +-msgid "list all known coded character sets" +-msgstr "alle bekende, gecodeerde tekensets opsommen" ++#: debug/xtrace.sh:46 ++msgid "" ++"Trace execution of program by printing currently executed function.\n" ++"\n" ++" --data=FILE Don't run the program, just print the data from FILE.\n" ++"\n" ++" -?,--help Print this help and exit\n" ++" --usage Give a short usage message\n" ++" -V,--version Print version information and exit\n" ++"\n" ++"Mandatory arguments to long options are also mandatory for any corresponding\n" ++"short options.\n" ++"\n" ++"For bug reporting instructions, please see:\n" ++".\\n" ++msgstr "" ++"De uitvoering van een programma volgen door steeds de naam van\n" ++"de uitgevoerde functie te printen.\n" ++"\n" ++" --data=BESTAND geen programma uitvoeren; gegevens uit BESTAND printen\n" ++"\n" ++" -?,--help deze hulptekst tonen\n" ++" --usage een kort gebruiksbericht tonen\n" ++" -V,--version versie-informatie tonen\n" ++"\n" ++"Voor het rapporteren van fouten in dit programma, zie:\n" ++" .\\n" + +-#: iconv/iconv_prog.c:66 locale/programs/localedef.c:128 +-msgid "Output control:" +-msgstr "Uitvoerbeheer:" ++#: debug/xtrace.sh:125 ++msgid "xtrace: unrecognized option `$1'\\n" ++msgstr "xtrace: onbekende optie '$1'\\n" ++ ++#: debug/xtrace.sh:138 ++msgid "No program name given\\n" ++msgstr "Geen programmanaam gegeven\\n" ++ ++#: debug/xtrace.sh:146 ++#, sh-format ++msgid "executable `$program' not found\\n" ++msgstr "Geen uitvoerbaar bestand '$program' gevonden\\n" ++ ++#: debug/xtrace.sh:150 ++#, sh-format ++msgid "`$program' is no executable\\n" ++msgstr "'$program' is niet uitvoerbaar\\n" + +-#: iconv/iconv_prog.c:67 +-msgid "omit invalid characters from output" +-msgstr "ongeldige tekens overslaan in uitvoer" ++#: dlfcn/dlinfo.c:67 ++msgid "RTLD_SELF used in code not dynamically loaded" ++msgstr "RTLD_SELF is gebruikt in code die niet dynamisch geladen is" + +-#: iconv/iconv_prog.c:68 +-msgid "output file" +-msgstr "uitvoerbestand" ++#: dlfcn/dlinfo.c:76 ++msgid "unsupported dlinfo request" ++msgstr "niet-ondersteund 'dlinfo'-verzoek" + +-#: iconv/iconv_prog.c:69 +-msgid "suppress warnings" +-msgstr "waarschuwingen onderdrukken" ++#: dlfcn/dlmopen.c:64 ++msgid "invalid namespace" ++msgstr "ongeldige naamsruimte" + +-#: iconv/iconv_prog.c:70 +-msgid "print progress information" +-msgstr "voortgangsinformatie weergeven" ++#: dlfcn/dlmopen.c:69 ++msgid "invalid mode" ++msgstr "ongeldige modus" + +-#: iconv/iconv_prog.c:75 +-msgid "Convert encoding of given files from one encoding to another." +-msgstr "Gegeven bestanden converteren van ene codering naar andere." ++#: dlfcn/dlopen.c:64 ++msgid "invalid mode parameter" ++msgstr "ongeldige modusparameter" + +-#: iconv/iconv_prog.c:79 +-msgid "[FILE...]" +-msgstr "[BESTAND...]" ++#: elf/cache.c:67 ++msgid "unknown" ++msgstr "onbekend" + +-#: iconv/iconv_prog.c:201 +-msgid "cannot open output file" +-msgstr "kan uitvoerbestand niet openen" ++#: elf/cache.c:110 ++msgid "Unknown OS" ++msgstr "onbekend besturingssysteem" + +-#: iconv/iconv_prog.c:243 ++#: elf/cache.c:115 + #, c-format +-msgid "conversions from `%s' and to `%s' are not supported" +-msgstr "conversie van `%s' en naar `%s' wordt niet ondersteund" ++msgid ", OS ABI: %s %d.%d.%d" ++msgstr ", OS-ABI: %s %d.%d.%d" + +-#: iconv/iconv_prog.c:248 ++#: elf/cache.c:141 elf/ldconfig.c:1231 + #, c-format +-msgid "conversion from `%s' is not supported" +-msgstr "conversie van `%s' wordt niet ondersteund" ++msgid "Can't open cache file %s\n" ++msgstr "Kan cachebestand %s niet openen\n" + +-#: iconv/iconv_prog.c:255 ++#: elf/cache.c:153 + #, c-format +-msgid "conversion to `%s' is not supported" +-msgstr "conversie naar `%s' wordt niet ondersteund" ++msgid "mmap of cache file failed.\n" ++msgstr "mmap() van cachebestand is mislukt\n" + +-#: iconv/iconv_prog.c:259 ++#: elf/cache.c:157 elf/cache.c:167 + #, c-format +-msgid "conversion from `%s' to `%s' is not supported" +-msgstr "conversie van `%s' naar `%s' wordt niet ondersteund" +- +-#: iconv/iconv_prog.c:265 +-msgid "failed to start conversion processing" +-msgstr "beginnen conversieproces mislukt" +- +-#: iconv/iconv_prog.c:360 +-msgid "error while closing output file" +-msgstr "fout bij sluiten uitvoerbestand" ++msgid "File is not a cache file.\n" ++msgstr "Bestand is geen cachebestand\n" + +-#: iconv/iconv_prog.c:409 iconv/iconvconfig.c:357 locale/programs/locale.c:279 +-#: locale/programs/localedef.c:372 catgets/gencat.c:233 +-#: malloc/memusagestat.c:602 debug/pcprofiledump.c:199 +-msgid "Report bugs using the `glibcbug' script to .\n" +-msgstr "" +-"Rapporteer fouten met het `glibcbug' script aan .\n" +-"Neem voor fouten in de vertaling contact op met .\n" ++#: elf/cache.c:200 elf/cache.c:210 ++#, c-format ++msgid "%d libs found in cache `%s'\n" ++msgstr "%d bibliotheken gevonden in cache '%s'\n" + +-#: iconv/iconv_prog.c:423 iconv/iconvconfig.c:371 locale/programs/locale.c:292 +-#: locale/programs/localedef.c:386 catgets/gencat.c:246 posix/getconf.c:913 +-#: nss/getent.c:74 nscd/nscd.c:355 nscd/nscd_nischeck.c:90 elf/ldconfig.c:274 +-#: elf/sprof.c:349 ++#: elf/cache.c:409 + #, c-format +-msgid "" +-"Copyright (C) %s Free Software Foundation, Inc.\n" +-"This is free software; see the source for copying conditions. There is NO\n" +-"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +-msgstr "" +-"Copyright (C) %s Free Software Foundation, Inc.\n" +-"Dit is vrije software; zie de broncode voor kopieervoorwaarden. Er is GEEN\n" +-"garantie; zelfs niet van VERKOOPBAARHEID of GESCHIKTHEID VOOR EEN BEPAALD\n" +-"DOEL.\n" +- +-#: iconv/iconv_prog.c:428 iconv/iconvconfig.c:376 locale/programs/locale.c:297 +-#: locale/programs/localedef.c:391 catgets/gencat.c:251 posix/getconf.c:918 +-#: nss/getent.c:79 nscd/nscd.c:360 nscd/nscd_nischeck.c:95 elf/ldconfig.c:279 +-#: elf/sprof.c:355 ++msgid "Can't remove old temporary cache file %s" ++msgstr "Kan oud tijdelijk cachebestand %s niet verwijderen" ++ ++#: elf/cache.c:416 + #, c-format +-msgid "Written by %s.\n" +-msgstr "" +-"Geschreven door %s.\n" +-"Vertaald door Elros Cyriatan.\n" ++msgid "Can't create temporary cache file %s" ++msgstr "Kan tijdelijk cachebestand %s niet aanmaken" + +-#: iconv/iconv_prog.c:458 iconv/iconv_prog.c:484 +-msgid "conversion stopped due to problem in writing the output" +-msgstr "conversie gestopt vanwege probleem bij schrijven van uitvoer" ++#: elf/cache.c:424 elf/cache.c:434 elf/cache.c:438 ++#, c-format ++msgid "Writing of cache data failed" ++msgstr "Schrijven van cachegegevens is mislukt" + +-#: iconv/iconv_prog.c:502 ++#: elf/cache.c:442 + #, c-format +-msgid "illegal input sequence at position %ld" +-msgstr "ongeldige invoerreeks op positie %ld" ++msgid "Writing of cache data failed." ++msgstr "Schrijven van cachegegevens is mislukt" + +-#: iconv/iconv_prog.c:510 +-msgid "internal error (illegal descriptor)" +-msgstr "interne fout (ongeldige beschrijver)" ++#: elf/cache.c:449 ++#, c-format ++msgid "Changing access rights of %s to %#o failed" ++msgstr "Wijzigen van toegangsrechten van %s naar %#o is mislukt" + +-#: iconv/iconv_prog.c:513 ++#: elf/cache.c:454 + #, c-format +-msgid "unknown iconv() error %d" +-msgstr "onbekende iconv() fout %d" ++msgid "Renaming of %s to %s failed" ++msgstr "Naamswijziging van %s naar %s is mislukt" + +-#: iconv/iconv_prog.c:756 +-msgid "" +-"The following list contain all the coded character sets known. This does\n" +-"not necessarily mean that all combinations of these names can be used for\n" +-"the FROM and TO command line parameters. One coded character set can be\n" +-"listed with several different names (aliases).\n" +-"\n" +-" " +-msgstr "" +-"De volgende lijst bevat alle bekende, gecodeerde tekensets. Dit betekent\n" +-"niet noodzakelijkerwijs dat alle combinaties van deze namen kunnen worden\n" +-"gebruikt als parameters voor VAN en NAAR. Eén gecodeerde tekenset kan\n" +-"worden genoemd met verschillende namen (aliasen).\n" +-"\n" +-" " ++#: elf/dl-close.c:116 ++msgid "shared object not open" ++msgstr "gedeeld object is niet open" + +-#: iconv/iconvconfig.c:110 +-msgid "Create fastloading iconv module configuration file." +-msgstr "Snelladende iconv-module configuratiebestand maken." ++#: elf/dl-deps.c:112 ++msgid "DST not allowed in SUID/SGID programs" ++msgstr "DST is niet toegestaan in SUID/SGID-programma's" + +-#: iconv/iconvconfig.c:114 +-msgid "[DIR...]" +-msgstr "[MAP...]" ++#: elf/dl-deps.c:125 ++msgid "empty dynamics string token substitution" ++msgstr "lege vervanging van DST" + +-#: iconv/iconvconfig.c:126 +-msgid "Prefix used for all file accesses" +-msgstr "Voorvoegsel gebruikt voor alle bestandstoegang" ++#: elf/dl-deps.c:131 ++#, c-format ++msgid "cannot load auxiliary `%s' because of empty dynamic string token substitution\n" ++msgstr "kan helper '%s' niet laden vanwege lege DST-vervanging\n" + +-#: iconv/iconvconfig.c:327 locale/programs/localedef.c:292 +-msgid "no output file produced because warnings were issued" +-msgstr "geen uitvoerbestand gemaakt omdat waarschuwing is gegeven" ++#: elf/dl-deps.c:472 ++msgid "cannot allocate dependency list" ++msgstr "kan geen geheugen reserveren voor afhankelijkhedenlijst" + +-#: iconv/iconvconfig.c:405 +-msgid "while inserting in search tree" +-msgstr "bij invoegen in zoekboom" ++#: elf/dl-deps.c:505 elf/dl-deps.c:560 ++msgid "cannot allocate symbol search list" ++msgstr "kan geen geheugen reserveren voor symbolenzoeklijst" + +-#: iconv/iconvconfig.c:1204 +-msgid "cannot generate output file" +-msgstr "kan geen uitvoerbestand genereren" ++#: elf/dl-deps.c:545 ++msgid "Filters not supported with LD_TRACE_PRELINKING" ++msgstr "Met LD_TRACE_PRELINKING worden filters niet ondersteund" + +-#: locale/programs/charmap-dir.c:59 +-#, c-format +-msgid "cannot read character map directory `%s'" +-msgstr "kan tekenafbeelding-map `%s' niet lezen" ++#: elf/dl-error.c:77 ++msgid "DYNAMIC LINKER BUG!!!" ++msgstr "FOUT IN DYNAMISCHE LINKER!!!" + +-#: locale/programs/charmap.c:136 +-#, c-format +-msgid "character map file `%s' not found" +-msgstr "tekenafbeelding-bestand `%s' niet gevonden" ++#: elf/dl-error.c:124 ++msgid "error while loading shared libraries" ++msgstr "fout bij laden van gedeelde bibliotheken" + +-#: locale/programs/charmap.c:194 +-#, c-format +-msgid "default character map file `%s' not found" +-msgstr "standaard tekenafbeelding-bestand `%s' niet gevonden" ++#: elf/dl-fptr.c:88 ++msgid "cannot map pages for fdesc table" ++msgstr "kan pagina's voor 'fdesc'-tabel niet in het geheugen plaatsen" + +-#: locale/programs/charmap.c:257 +-#, c-format +-msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n" +-msgstr "tekenafbeelding `%s' is niet ASCII-compatible, locale voldoet niet aan ISO C\n" ++#: elf/dl-fptr.c:192 ++msgid "cannot map pages for fptr table" ++msgstr "kan pagina's voor 'fptr'-tabel niet in het geheugen plaatsen" + +-#: locale/programs/charmap.c:336 +-#, c-format +-msgid "%s: must be greater than \n" +-msgstr "%s: moet groter zijn dan \n" ++#: elf/dl-fptr.c:221 ++msgid "internal error: symidx out of range of fptr table" ++msgstr "**interne fout**: 'symidx' buiten bereik van 'fptr'-tabel" + +-#: locale/programs/charmap.c:356 locale/programs/charmap.c:373 +-#: locale/programs/repertoire.c:175 +-#, c-format +-msgid "syntax error in prolog: %s" +-msgstr "syntaxisfout in proloog: %s" ++#: elf/dl-load.c:372 ++msgid "cannot allocate name record" ++msgstr "kan geen geheugen reserveren voor naamrecord" + +-#: locale/programs/charmap.c:357 +-msgid "invalid definition" +-msgstr "ongeldige definitie" ++#: elf/dl-load.c:474 elf/dl-load.c:553 elf/dl-load.c:673 elf/dl-load.c:786 ++msgid "cannot create cache for search path" ++msgstr "kan cache voor zoekpad niet aanmaken" + +-#: locale/programs/charmap.c:374 locale/programs/locfile.c:126 +-#: locale/programs/locfile.c:153 locale/programs/repertoire.c:176 +-msgid "bad argument" +-msgstr "fout argument" ++#: elf/dl-load.c:576 ++msgid "cannot create RUNPATH/RPATH copy" ++msgstr "kan geen kopie van RUNPATH/RPATH maken" + +-#: locale/programs/charmap.c:402 +-#, c-format +-msgid "duplicate definition of <%s>" +-msgstr "dubbele definitie van <%s>" ++#: elf/dl-load.c:659 ++msgid "cannot create search path array" ++msgstr "kan zoekpad-array niet aanmaken" + +-#: locale/programs/charmap.c:409 +-#, c-format +-msgid "value for <%s> must be 1 or greater" +-msgstr "waarde voor <%s> moet 1 of groter zijn" ++#: elf/dl-load.c:870 ++msgid "cannot stat shared object" ++msgstr "kan gedeeld object niet vinden" + +-#: locale/programs/charmap.c:421 +-#, c-format +-msgid "value of <%s> must be greater or equal than the value of <%s>" +-msgstr "waarde voor <%s> moet groter dan of gelijk zijn aan de waarde van <%s>" ++#: elf/dl-load.c:940 ++msgid "cannot open zero fill device" ++msgstr "kan nullenapparaat niet openen" + +-#: locale/programs/charmap.c:444 locale/programs/repertoire.c:184 +-#, c-format +-msgid "argument to <%s> must be a single character" +-msgstr "argument voor <%s> moet een enkel teken zijn" ++#: elf/dl-load.c:985 elf/dl-load.c:2215 ++msgid "cannot create shared object descriptor" ++msgstr "kan descriptor voor gedeeld object niet aanmaken" + +-#: locale/programs/charmap.c:470 +-msgid "character sets with locking states are not supported" +-msgstr "tekensets met blokkerende toestanden worden niet ondersteund" ++#: elf/dl-load.c:1004 elf/dl-load.c:1663 elf/dl-load.c:1755 ++msgid "cannot read file data" ++msgstr "kan bestandsgegevens niet lezen" + +-#: locale/programs/charmap.c:497 locale/programs/charmap.c:551 +-#: locale/programs/charmap.c:583 locale/programs/charmap.c:677 +-#: locale/programs/charmap.c:732 locale/programs/charmap.c:773 +-#: locale/programs/charmap.c:814 +-#, c-format +-msgid "syntax error in %s definition: %s" +-msgstr "syntaxisfout in definitie %s: %s" ++#: elf/dl-load.c:1048 ++msgid "ELF load command alignment not page-aligned" ++msgstr "uitlijning in ELF-laadopdracht ligt niet op een paginagrens" + +-#: locale/programs/charmap.c:498 locale/programs/charmap.c:678 +-#: locale/programs/charmap.c:774 locale/programs/repertoire.c:231 +-msgid "no symbolic name given" +-msgstr "geen symbolische naam gegeven" ++#: elf/dl-load.c:1055 ++msgid "ELF load command address/offset not properly aligned" ++msgstr "adres/positie in ELF-laadopdracht is niet correct uitgelijnd" + +-#: locale/programs/charmap.c:552 +-msgid "invalid encoding given" +-msgstr "ongeldige codering gegeven" ++#: elf/dl-load.c:1139 ++msgid "cannot allocate TLS data structures for initial thread" ++msgstr "kan geen geheugen reserveren voor TLS-gegevensstructuren van initiële thread" + +-#: locale/programs/charmap.c:561 +-msgid "too few bytes in character encoding" +-msgstr "te weinig bytes in tekencodering" ++#: elf/dl-load.c:1163 ++msgid "cannot handle TLS data" ++msgstr "kan TLS-gegevens niet verwerken" + +-#: locale/programs/charmap.c:563 +-msgid "too many bytes in character encoding" +-msgstr "teveel bytes in tekencodering" ++#: elf/dl-load.c:1182 ++msgid "object file has no loadable segments" ++msgstr "objectbestand heeft geen laadbare segmenten" + +-#: locale/programs/charmap.c:585 locale/programs/charmap.c:733 +-#: locale/programs/charmap.c:816 locale/programs/repertoire.c:297 +-msgid "no symbolic name given for end of range" +-msgstr "geen symbolische naam gegeven voor einde-van-bereik" ++#: elf/dl-load.c:1218 ++msgid "failed to map segment from shared object" ++msgstr "kan segment van gedeeld object niet in het geheugen plaatsen" + +-#: locale/programs/charmap.c:609 locale/programs/locfile.c:818 +-#: locale/programs/repertoire.c:314 +-#, c-format +-msgid "`%1$s' definition does not end with `END %1$s'" +-msgstr "`%1$s' definitie eindigt niet met `END %1$s'" ++#: elf/dl-load.c:1242 ++msgid "cannot dynamically load executable" ++msgstr "kan uitvoerbaar bestand niet dynamisch laden" + +-#: locale/programs/charmap.c:642 +-msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" +-msgstr "slechts WIDTH (breedte) definities zijn toegestaan opvolgend op de CHARMAP (tekenafbeelding) definitie" ++#: elf/dl-load.c:1303 ++msgid "cannot change memory protections" ++msgstr "kan geheugenbeschermingen niet veranderen" + +-#: locale/programs/charmap.c:650 locale/programs/charmap.c:713 +-#, c-format +-msgid "value for %s must be an integer" +-msgstr "waarde voor %s moet een geheel getal zijn" ++#: elf/dl-load.c:1322 ++msgid "cannot map zero-fill pages" ++msgstr "kan nul-gevulde pagina's niet in het geheugen plaatsen" + +-#: locale/programs/charmap.c:841 +-#, c-format +-msgid "%s: error in state machine" +-msgstr "%s: fout in toestandenmachine" ++#: elf/dl-load.c:1336 ++msgid "object file has no dynamic section" ++msgstr "objectbestand heeft geen dynamische sectie" + +-#: locale/programs/charmap.c:849 locale/programs/ld-address.c:605 +-#: locale/programs/ld-collate.c:2650 locale/programs/ld-collate.c:3818 +-#: locale/programs/ld-ctype.c:2225 locale/programs/ld-ctype.c:2994 +-#: locale/programs/ld-identification.c:469 +-#: locale/programs/ld-measurement.c:255 locale/programs/ld-messages.c:349 +-#: locale/programs/ld-monetary.c:958 locale/programs/ld-name.c:324 +-#: locale/programs/ld-numeric.c:392 locale/programs/ld-paper.c:258 +-#: locale/programs/ld-telephone.c:330 locale/programs/ld-time.c:1219 +-#: locale/programs/locfile.c:825 locale/programs/repertoire.c:325 +-#, c-format +-msgid "%s: premature end of file" +-msgstr "%s: vroegtijdig einde-van-bestand" ++#: elf/dl-load.c:1359 ++msgid "shared object cannot be dlopen()ed" ++msgstr "gedeeld object kan niet met dlopen() geopend worden -- heeft DF_1_NOOPEN-vlag" + +-#: locale/programs/charmap.c:868 locale/programs/charmap.c:879 +-#, c-format +-msgid "unknown character `%s'" +-msgstr "onbekend teken `%s'" ++#: elf/dl-load.c:1372 ++msgid "cannot allocate memory for program header" ++msgstr "kan geen geheugen reserveren voor programmakop" + +-#: locale/programs/charmap.c:887 +-#, c-format +-msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d" +-msgstr "aantal bytes voor bytereeks zijn voor begin en einde van bereik niet hetzelfde: %d tegenover %d" ++#: elf/dl-load.c:1389 elf/dl-open.c:174 ++msgid "invalid caller" ++msgstr "ongeldige aanroeper" + +-#: locale/programs/charmap.c:991 locale/programs/ld-collate.c:2930 +-#: locale/programs/repertoire.c:420 +-msgid "invalid names for character range" +-msgstr "ongeldige namen voor tekenbereik" ++#: elf/dl-load.c:1428 ++msgid "cannot enable executable stack as shared object requires" ++msgstr "kan uitvoerbare stack niet aanzetten zoals gedeeld object vereist" + +-#: locale/programs/charmap.c:1003 locale/programs/repertoire.c:432 +-msgid "hexadecimal range format should use only capital characters" +-msgstr "hexadecimaal bereikformaat moet alleen hoofdletters gebruiken" ++#: elf/dl-load.c:1443 ++msgid "cannot close file descriptor" ++msgstr "kan bestandsdescriptor niet sluiten" + +-#: locale/programs/charmap.c:1021 +-#, c-format +-msgid "<%s> and <%s> are illegal names for range" +-msgstr "<%s> en <%s> zijn ongeldige namen voor bereik" ++#: elf/dl-load.c:1485 ++msgid "cannot create searchlist" ++msgstr "kan zoeklijst niet aanmaken" + +-#: locale/programs/charmap.c:1027 +-msgid "upper limit in range is not higher then lower limit" +-msgstr "bovengrens in bereik is niet hoger dan ondergrens" ++#: elf/dl-load.c:1663 ++msgid "file too short" ++msgstr "bestand is te kort" + +-#: locale/programs/charmap.c:1085 +-msgid "resulting bytes for range not representable." +-msgstr "resulterende bytes voor bereik zijn niet te representeren." ++#: elf/dl-load.c:1692 ++msgid "invalid ELF header" ++msgstr "ongeldige ELF-header" + +-#: locale/programs/ld-address.c:134 locale/programs/ld-collate.c:1534 +-#: locale/programs/ld-ctype.c:421 locale/programs/ld-identification.c:134 +-#: locale/programs/ld-measurement.c:95 locale/programs/ld-messages.c:98 +-#: locale/programs/ld-monetary.c:194 locale/programs/ld-name.c:95 +-#: locale/programs/ld-numeric.c:99 locale/programs/ld-paper.c:92 +-#: locale/programs/ld-telephone.c:95 locale/programs/ld-time.c:160 +-#, c-format +-msgid "No definition for %s category found" +-msgstr "Geen definitie gevonden voor categorie %s" ++#: elf/dl-load.c:1704 ++msgid "ELF file data encoding not big-endian" ++msgstr "gegevenscodering van ELF-bestand is niet big-endian" + +-#: locale/programs/ld-address.c:145 locale/programs/ld-address.c:183 +-#: locale/programs/ld-address.c:201 locale/programs/ld-address.c:228 +-#: locale/programs/ld-address.c:290 locale/programs/ld-address.c:309 +-#: locale/programs/ld-address.c:322 locale/programs/ld-identification.c:147 +-#: locale/programs/ld-measurement.c:106 locale/programs/ld-monetary.c:206 +-#: locale/programs/ld-monetary.c:250 locale/programs/ld-monetary.c:266 +-#: locale/programs/ld-monetary.c:278 locale/programs/ld-name.c:106 +-#: locale/programs/ld-name.c:143 locale/programs/ld-numeric.c:113 +-#: locale/programs/ld-numeric.c:127 locale/programs/ld-paper.c:103 +-#: locale/programs/ld-paper.c:112 locale/programs/ld-telephone.c:106 +-#: locale/programs/ld-telephone.c:163 locale/programs/ld-time.c:176 +-#: locale/programs/ld-time.c:197 +-#, c-format +-msgid "%s: field `%s' not defined" +-msgstr "%s: veld `%s' niet gedefinieerd" ++#: elf/dl-load.c:1706 ++msgid "ELF file data encoding not little-endian" ++msgstr "gegevenscodering van ELF-bestand is niet little-endian" + +-#: locale/programs/ld-address.c:157 locale/programs/ld-address.c:209 +-#: locale/programs/ld-address.c:235 locale/programs/ld-address.c:265 +-#: locale/programs/ld-name.c:118 locale/programs/ld-telephone.c:118 +-#, c-format +-msgid "%s: field `%s' must not be empty" +-msgstr "%s: veld `%s' mag niet leeg zijn" ++#: elf/dl-load.c:1710 ++msgid "ELF file version ident does not match current one" ++msgstr "ELF-bestands-identversie komt niet overeen met huidige" + +-#: locale/programs/ld-address.c:169 +-#, c-format +-msgid "%s: invalid escape `%%%c' sequence in field `%s'" +-msgstr "%s: ongeldige stuurcode `%%%c' in veld `%s'" ++#: elf/dl-load.c:1714 ++msgid "ELF file OS ABI invalid" ++msgstr "OS-ABI van ELF-bestand is ongeldig" + +-#: locale/programs/ld-address.c:220 +-#, c-format +-msgid "%s: terminology language code `%s' not defined" +-msgstr "%s: terminologie taalcode `%s' niet gedefinieerd" ++#: elf/dl-load.c:1716 ++msgid "ELF file ABI version invalid" ++msgstr "ABI-versie van ELF-bestand is ongeldig" + +-#: locale/programs/ld-address.c:247 locale/programs/ld-address.c:276 +-#, c-format +-msgid "%s: language abbreviation `%s' not defined" +-msgstr "%s: taal afkorting `%s' niet gedefinieerd" ++#: elf/dl-load.c:1719 ++msgid "internal error" ++msgstr "**interne fout**" + +-#: locale/programs/ld-address.c:254 locale/programs/ld-address.c:282 +-#: locale/programs/ld-address.c:316 locale/programs/ld-address.c:328 +-#, c-format +-msgid "%s: `%s' value does not match `%s' value" +-msgstr "%s: `%s' waarde komt niet overeen met `%s' waarde" ++#: elf/dl-load.c:1726 ++msgid "ELF file version does not match current one" ++msgstr "ELF-bestandsversie komt niet overeen met huidige" + +-#: locale/programs/ld-address.c:301 +-#, c-format +-msgid "%s: numeric country code `%d' not valid" +-msgstr "%s: numerieke landcode `%d' niet geldig" ++#: elf/dl-load.c:1734 ++msgid "only ET_DYN and ET_EXEC can be loaded" ++msgstr "alleen ET_DYN en ET_EXEC kunnen worden geladen" + +-#: locale/programs/ld-address.c:497 locale/programs/ld-address.c:534 +-#: locale/programs/ld-address.c:572 locale/programs/ld-ctype.c:2601 +-#: locale/programs/ld-identification.c:365 +-#: locale/programs/ld-measurement.c:222 locale/programs/ld-messages.c:302 +-#: locale/programs/ld-monetary.c:700 locale/programs/ld-monetary.c:735 +-#: locale/programs/ld-monetary.c:776 locale/programs/ld-name.c:281 +-#: locale/programs/ld-numeric.c:264 locale/programs/ld-paper.c:225 +-#: locale/programs/ld-telephone.c:289 locale/programs/ld-time.c:1108 +-#: locale/programs/ld-time.c:1150 +-#, c-format +-msgid "%s: field `%s' declared more than once" +-msgstr "%s: veld `%s' meerdere keren gedeclareerd" ++#: elf/dl-load.c:1740 ++msgid "ELF file's phentsize not the expected size" ++msgstr "'phentsize' van ELF-bestand heeft niet de verwachte grootte" + +-#: locale/programs/ld-address.c:501 locale/programs/ld-address.c:539 +-#: locale/programs/ld-identification.c:369 locale/programs/ld-messages.c:312 +-#: locale/programs/ld-monetary.c:704 locale/programs/ld-monetary.c:739 +-#: locale/programs/ld-name.c:285 locale/programs/ld-numeric.c:268 +-#: locale/programs/ld-telephone.c:293 locale/programs/ld-time.c:1002 +-#: locale/programs/ld-time.c:1071 locale/programs/ld-time.c:1113 +-#, c-format +-msgid "%s: unknown character in field `%s'" +-msgstr "%s: onbekend teken in veld `%s'" ++#: elf/dl-load.c:2231 ++msgid "wrong ELF class: ELFCLASS64" ++msgstr "verkeerde ELF-klasse: ELFCLASS64" + +-#: locale/programs/ld-address.c:586 locale/programs/ld-collate.c:3800 +-#: locale/programs/ld-ctype.c:2974 locale/programs/ld-identification.c:450 +-#: locale/programs/ld-measurement.c:236 locale/programs/ld-messages.c:331 +-#: locale/programs/ld-monetary.c:940 locale/programs/ld-name.c:306 +-#: locale/programs/ld-numeric.c:374 locale/programs/ld-paper.c:240 +-#: locale/programs/ld-telephone.c:312 locale/programs/ld-time.c:1201 +-#, c-format +-msgid "%s: incomplete `END' line" +-msgstr "%s: onvolledige `END'-regel" ++#: elf/dl-load.c:2232 ++msgid "wrong ELF class: ELFCLASS32" ++msgstr "verkeerde ELF-klasse: ELFCLASS32" + +-#: locale/programs/ld-address.c:589 locale/programs/ld-collate.c:2653 +-#: locale/programs/ld-collate.c:3802 locale/programs/ld-ctype.c:2228 +-#: locale/programs/ld-ctype.c:2977 locale/programs/ld-identification.c:453 +-#: locale/programs/ld-measurement.c:239 locale/programs/ld-messages.c:333 +-#: locale/programs/ld-monetary.c:942 locale/programs/ld-name.c:308 +-#: locale/programs/ld-numeric.c:376 locale/programs/ld-paper.c:242 +-#: locale/programs/ld-telephone.c:314 locale/programs/ld-time.c:1203 +-#, c-format +-msgid "%1$s: definition does not end with `END %1$s'" +-msgstr "%1$s: definitie eindigt niet met `END %1$s'" ++#: elf/dl-load.c:2235 ++msgid "cannot open shared object file" ++msgstr "kan gedeeld objectbestand niet openen" + +-#: locale/programs/ld-address.c:596 locale/programs/ld-collate.c:523 +-#: locale/programs/ld-collate.c:575 locale/programs/ld-collate.c:871 +-#: locale/programs/ld-collate.c:884 locale/programs/ld-collate.c:2640 +-#: locale/programs/ld-collate.c:3809 locale/programs/ld-ctype.c:1956 +-#: locale/programs/ld-ctype.c:2215 locale/programs/ld-ctype.c:2799 +-#: locale/programs/ld-ctype.c:2985 locale/programs/ld-identification.c:460 +-#: locale/programs/ld-measurement.c:246 locale/programs/ld-messages.c:340 +-#: locale/programs/ld-monetary.c:949 locale/programs/ld-name.c:315 +-#: locale/programs/ld-numeric.c:383 locale/programs/ld-paper.c:249 +-#: locale/programs/ld-telephone.c:321 locale/programs/ld-time.c:1210 +-#, c-format +-msgid "%s: syntax error" +-msgstr "%s: syntaxisfout" ++#: elf/dl-lookup.c:261 ++msgid "relocation error" ++msgstr "verplaatsingsfout" + +-#: locale/programs/ld-collate.c:398 +-#, c-format +-msgid "`%.*s' already defined in charmap" +-msgstr "`%.*s' reeds gedefinieerd in tekenafbeelding" ++#: elf/dl-lookup.c:289 ++msgid "symbol lookup error" ++msgstr "opzoekfout voor symbool" + +-#: locale/programs/ld-collate.c:407 +-#, c-format +-msgid "`%.*s' already defined in repertoire" +-msgstr "`%.*s' reeds gedefinieerd in repertoire" ++#: elf/dl-open.c:112 ++msgid "cannot extend global scope" ++msgstr "kan globaal geldigheidsbereik niet uitbreiden" + +-#: locale/programs/ld-collate.c:414 +-#, c-format +-msgid "`%.*s' already defined as collating symbol" +-msgstr "`%.*s' reeds gedefinieerd als sorteersymbool" ++#: elf/dl-open.c:237 ++msgid "empty dynamic string token substitution" ++msgstr "lege vervanging van DST" + +-#: locale/programs/ld-collate.c:421 +-#, c-format +-msgid "`%.*s' already defined as collating element" +-msgstr "`%.*s' reeds gedefinieerd als sorteerelement" ++#: elf/dl-open.c:406 elf/dl-open.c:417 elf/dl-open.c:425 ++msgid "cannot create scope list" ++msgstr "kan lijst voor geldigheidsbereik niet aanmaken" + +-#: locale/programs/ld-collate.c:452 locale/programs/ld-collate.c:478 +-#, c-format +-msgid "%s: `forward' and `backward' are mutually excluding each other" +-msgstr "%s: `forward' (voorwaards) en `backward' (achterwaards) sluiten elkaar uit" ++#: elf/dl-open.c:470 ++msgid "TLS generation counter wrapped! Please report this." ++msgstr "" ++"De TLS-generatieteller is opnieuw bij nul begonnen!\n" ++"Rapporteer deze programmafout met het 'glibcbug' script." + +-#: locale/programs/ld-collate.c:462 locale/programs/ld-collate.c:488 +-#: locale/programs/ld-collate.c:504 +-#, c-format +-msgid "%s: `%s' mentioned more than once in definition of weight %d" +-msgstr "%s: `%s' meerdere keren genoemd in definitie van gewicht %d" ++#: elf/dl-open.c:508 ++msgid "invalid mode for dlopen()" ++msgstr "ongeldige modus voor dlopen()" + +-#: locale/programs/ld-collate.c:560 +-#, c-format +-msgid "%s: too many rules; first entry only had %d" +-msgstr "%s: teveel regels; eerste ingang had slechts %d" ++#: elf/dl-open.c:525 ++msgid "no more namespaces available for dlmopen()" ++msgstr "geen naamsruimten meer beschikbaar voor dlmopen()" ++ ++#: elf/dl-open.c:538 ++msgid "invalid target namespace in dlmopen()" ++msgstr "ongeldige doelnaamsruimte in dlmopen()" + +-#: locale/programs/ld-collate.c:596 +-#, c-format +-msgid "%s: not enough sorting rules" +-msgstr "%s: niet genoeg sorteerregels" ++#: elf/dl-reloc.c:55 ++msgid "cannot allocate memory in static TLS block" ++msgstr "kan geen geheugen reserveren binnen statisch TLS-blok" + +-#: locale/programs/ld-collate.c:761 +-#, c-format +-msgid "%s: empty weight string not allowed" +-msgstr "%s: lege gewichtstekenreeks niet toegestaan" ++#: elf/dl-reloc.c:198 ++msgid "cannot make segment writable for relocation" ++msgstr "kan segment niet schrijfbaar maken voor verplaatsing" + +-#: locale/programs/ld-collate.c:856 ++#: elf/dl-reloc.c:279 + #, c-format +-msgid "%s: weights must use the same ellipsis symbol as the name" +-msgstr "%s: gewichten moeten hetzelfde weglatingssymbool (ellipsis) gebruiken als de naam" ++msgid "%s: no PLTREL found in object %s\n" ++msgstr "%s: geen PLTREL in object %s gevonden\n" + +-#: locale/programs/ld-collate.c:912 ++#: elf/dl-reloc.c:290 + #, c-format +-msgid "%s: too many values" +-msgstr "%s: teveel waarden" ++msgid "%s: out of memory to store relocation results for %s\n" ++msgstr "%s: onvoldoende geheugen om verplaatsingsresultaten van %s op te slaan\n" + +-#: locale/programs/ld-collate.c:1031 locale/programs/ld-collate.c:1206 +-#, c-format +-msgid "order for `%.*s' already defined at %s:%Zu" +-msgstr "volgorde voor `%.*s' reeds gedefinieerd bij %s:%Zu" ++#: elf/dl-reloc.c:306 ++msgid "cannot restore segment prot after reloc" ++msgstr "kan segmentbescherming niet herstellen na verplaatsing" + +-#: locale/programs/ld-collate.c:1081 +-#, c-format +-msgid "%s: the start and the end symbol of a range must stand for characters" +-msgstr "%s: het symbool van begin en einde van reeks moet staan voor tekens" ++#: elf/dl-reloc.c:331 ++msgid "cannot apply additional memory protection after relocation" ++msgstr "kan extra geheugenbescherming niet toepassen na verplaatsing" + +-#: locale/programs/ld-collate.c:1108 +-#, c-format +-msgid "%s: byte sequences of first and last character must have the same length" +-msgstr "%s: bytereeksen van eerste en laatste teken moeten dezelfde lengte hebben" ++#: elf/dl-sym.c:98 ++msgid "RTLD_NEXT used in code not dynamically loaded" ++msgstr "RTLD_NEXT is gebruikt in code die niet dynamisch geladen is" + +-#: locale/programs/ld-collate.c:1150 +-#, c-format +-msgid "%s: byte sequence of first character of sequence is not lower than that of the last character" +-msgstr "%s: bytereeks van eerste teken van reeks is niet lager dan bytereeks van het laatste teken" ++#: elf/dl-sysdep.c:495 ++msgid "cannot create capability list" ++msgstr "kan privilegeslijst niet aanmaken" + +-#: locale/programs/ld-collate.c:1275 +-#, c-format +-msgid "%s: symbolic range ellipsis must not directly follow `order_start'" +-msgstr "%s: weglatingsteken van symbolisch bereik mag niet direct `order_start' (volgorde begin) opvolgen" ++#: elf/dl-tls.c:829 ++msgid "cannot create TLS data structures" ++msgstr "kan TLS-gegevensstructuren niet aanmaken" + +-#: locale/programs/ld-collate.c:1279 +-#, c-format +-msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'" +-msgstr "%s: weglatingsteken van symbolisch bereik mag niet direct gevolgd worden door `order_end' (volgorde einde)" ++#: elf/dl-version.c:303 ++msgid "cannot allocate version reference table" ++msgstr "kan geen geheugen reserveren voor tabel met versieverwijzingen" + +-#: locale/programs/ld-collate.c:1299 locale/programs/ld-ctype.c:1476 +-#, c-format +-msgid "`%s' and `%.*s' are not valid names for symbolic range" +-msgstr "`%s' en `%.*s' zijn geen geldige namen voor een symbolisch bereik" ++#: elf/ldconfig.c:133 ++msgid "Print cache" ++msgstr "inhoud van de cache weergeven" + +-#: locale/programs/ld-collate.c:1348 locale/programs/ld-collate.c:3737 +-#, c-format +-msgid "%s: order for `%.*s' already defined at %s:%Zu" +-msgstr "%s: volgorde voor `%.*s' reeds gedefinieerd bij %s:%Zu" ++#: elf/ldconfig.c:134 ++msgid "Generate verbose messages" ++msgstr "breedsprakige uitvoer" + +-#: locale/programs/ld-collate.c:1357 +-#, c-format +-msgid "%s: `%s' must be a character" +-msgstr "%s: `%s' moet een teken zijn" ++#: elf/ldconfig.c:135 ++msgid "Don't build cache" ++msgstr "geen cache opbouwen" + +-#: locale/programs/ld-collate.c:1550 +-#, c-format +-msgid "%s: `position' must be used for a specific level in all sections or none" +-msgstr "%s: `position' (positie) moet ofwel voor een specifiek niveau in alle secties worden gebruikt ofwel voor geen" ++#: elf/ldconfig.c:136 ++msgid "Don't generate links" ++msgstr "geen koppelingen genereren" + +-#: locale/programs/ld-collate.c:1575 +-#, c-format +-msgid "symbol `%s' not defined" +-msgstr "symbool `%s' niet gedefinieerd" ++#: elf/ldconfig.c:137 ++msgid "Change to and use ROOT as root directory" ++msgstr "naar deze map gaan en als hoofdmap gebruiken" + +-#: locale/programs/ld-collate.c:1651 locale/programs/ld-collate.c:1757 +-#, c-format +-msgid "symbol `%s' has the same encoding as" +-msgstr "symbool `%s' heeft dezelfde codering als" ++#: elf/ldconfig.c:137 ++msgid "ROOT" ++msgstr "BASISMAP" + +-#: locale/programs/ld-collate.c:1655 locale/programs/ld-collate.c:1761 +-#, c-format +-msgid "symbol `%s'" +-msgstr "symbool `%s'" ++#: elf/ldconfig.c:138 ++msgid "CACHE" ++msgstr "CACHE-BESTAND" + +-#: locale/programs/ld-collate.c:1803 +-msgid "no definition of `UNDEFINED'" +-msgstr "geen definitie van `UNDEFINED' (ongedefinieerd)" ++#: elf/ldconfig.c:138 ++msgid "Use CACHE as cache file" ++msgstr "dit cachebestand gebruiken" + +-#: locale/programs/ld-collate.c:1832 +-msgid "too many errors; giving up" +-msgstr "teveel fouten; ik geef het op" ++#: elf/ldconfig.c:139 ++msgid "CONF" ++msgstr "CONFIG-BESTAND" ++ ++#: elf/ldconfig.c:139 ++msgid "Use CONF as configuration file" ++msgstr "dit configuratiebestand gebruiken" ++ ++#: elf/ldconfig.c:140 ++msgid "Only process directories specified on the command line. Don't build cache." ++msgstr "alleen de mappen op de opdrachtregel verwerken; geen cache opbouwen" + +-#: locale/programs/ld-collate.c:2735 ++#: elf/ldconfig.c:141 ++msgid "Manually link individual libraries." ++msgstr "individuele bibliotheken handmatig koppelen" ++ ++#: elf/ldconfig.c:142 ++msgid "FORMAT" ++msgstr "INDELING" ++ ++#: elf/ldconfig.c:142 ++msgid "Format to use: new, old or compat (default)" ++msgstr "te gebruiken indeling: 'compat' (standaard), 'new', of 'old'" ++ ++#: elf/ldconfig.c:150 ++msgid "Configure Dynamic Linker Run Time Bindings." ++msgstr "Configureren van de dynamische linker." ++ ++#: elf/ldconfig.c:308 + #, c-format +-msgid "%s: duplicate definition of `%s'" +-msgstr "%s: dubbele definitie van `%s'" ++msgid "Path `%s' given more than once" ++msgstr "Pad '%s' is meerdere malen opgegeven" + +-#: locale/programs/ld-collate.c:2771 ++#: elf/ldconfig.c:348 + #, c-format +-msgid "%s: duplicate declaration of section `%s'" +-msgstr "%s: dubbele declaratie van sectie `%s'" ++msgid "%s is not a known library type" ++msgstr "%s is geen bekende bibliotheeksoort" + +-#: locale/programs/ld-collate.c:2910 ++#: elf/ldconfig.c:373 + #, c-format +-msgid "%s: unknown character in collating symbol name" +-msgstr "%s: onbekend teken in naam sorteersymbool" ++msgid "Can't stat %s" ++msgstr "Kan status van %s niet opvragen" + +-#: locale/programs/ld-collate.c:3042 ++#: elf/ldconfig.c:447 + #, c-format +-msgid "%s: unknown character in equivalent definition name" +-msgstr "%s: onbekend teken in equivalente definitienaam" ++msgid "Can't stat %s\n" ++msgstr "Kan status van %s niet opvragen\n" + +-#: locale/programs/ld-collate.c:3055 ++#: elf/ldconfig.c:457 + #, c-format +-msgid "%s: unknown character in equivalent definition value" +-msgstr "%s: onbekend teken in equivalente definitiewaarde" ++msgid "%s is not a symbolic link\n" ++msgstr "%s is geen symbolische koppeling\n" + +-#: locale/programs/ld-collate.c:3065 ++#: elf/ldconfig.c:476 + #, c-format +-msgid "%s: unknown symbol `%s' in equivalent definition" +-msgstr "%s: onbekend symbool `%s' in equivalente definitie" ++msgid "Can't unlink %s" ++msgstr "Kan %s niet ontkoppelen" + +-#: locale/programs/ld-collate.c:3074 +-msgid "error while adding equivalent collating symbol" +-msgstr "fout bij toevoegen equivalent sorteersymbool" ++#: elf/ldconfig.c:482 ++#, c-format ++msgid "Can't link %s to %s" ++msgstr "Kan %s niet aan %s koppelen" ++ ++#: elf/ldconfig.c:488 ++msgid " (changed)\n" ++msgstr " (gewijzigd)\n" + +-#: locale/programs/ld-collate.c:3104 ++#: elf/ldconfig.c:490 ++msgid " (SKIPPED)\n" ++msgstr " (OVERGESLAGEN)\n" ++ ++#: elf/ldconfig.c:545 + #, c-format +-msgid "duplicate definition of script `%s'" +-msgstr "dubbele definitie voor schrift `%s'" ++msgid "Can't find %s" ++msgstr "Kan %s niet vinden" + +-#: locale/programs/ld-collate.c:3152 ++#: elf/ldconfig.c:561 + #, c-format +-msgid "%s: unknown section name `%s'" +-msgstr "%s: onbekende sectienaam `%s'" ++msgid "Can't lstat %s" ++msgstr "Kan status van link %s niet opvragen" + +-#: locale/programs/ld-collate.c:3180 ++#: elf/ldconfig.c:568 + #, c-format +-msgid "%s: multiple order definitions for section `%s'" +-msgstr "%s: meerdere sorteerdefinities voor sectie `%s'" ++msgid "Ignored file %s since it is not a regular file." ++msgstr "Bestand %s wordt genegeerd omdat het geen gewoon bestand is." + +-#: locale/programs/ld-collate.c:3205 ++#: elf/ldconfig.c:576 + #, c-format +-msgid "%s: invalid number of sorting rules" +-msgstr "%s: ongeldig aantal sorteerregels" ++msgid "No link created since soname could not be found for %s" ++msgstr "" ++"Geen koppeling aangemaakt, want kan van %s de 'soname'\n" ++"(de naam van het gedeelde object) niet vinden" + +-#: locale/programs/ld-collate.c:3232 ++#: elf/ldconfig.c:667 + #, c-format +-msgid "%s: multiple order definitions for unnamed section" +-msgstr "%s: meerdere sorteerdefinities voor naamloze sectie" ++msgid "Can't open directory %s" ++msgstr "Kan map %s niet openen" + +-#: locale/programs/ld-collate.c:3286 locale/programs/ld-collate.c:3414 +-#: locale/programs/ld-collate.c:3778 ++#: elf/ldconfig.c:735 elf/ldconfig.c:782 + #, c-format +-msgid "%s: missing `order_end' keyword" +-msgstr "%s: ontbrekend `order_end' (volgorde einde) sleutelwoord" ++msgid "Cannot lstat %s" ++msgstr "Kan status van link %s niet opvragen" + +-#: locale/programs/ld-collate.c:3347 ++#: elf/ldconfig.c:747 + #, c-format +-msgid "%s: order for collating symbol %.*s not yet defined" +-msgstr "%s: volgorde voor sorteersymbool %.*s nog niet gedefinieerd" ++msgid "Cannot stat %s" ++msgstr "Kan status van %s niet opvragen" + +-#: locale/programs/ld-collate.c:3365 ++#: elf/ldconfig.c:804 elf/readlib.c:90 + #, c-format +-msgid "%s: order for collating element %.*s not yet defined" +-msgstr "%s: volgorde voor sorteerelement %.*s nog niet gedefinieerd" ++msgid "Input file %s not found.\n" ++msgstr "Kan invoerbestand %s niet vinden\n" + +-#: locale/programs/ld-collate.c:3376 ++#: elf/ldconfig.c:855 + #, c-format +-msgid "%s: cannot reorder after %.*s: symbol not known" +-msgstr "%s: kan niet opnieuw ordenen na %.*s: symbool niet bekend" ++msgid "libc5 library %s in wrong directory" ++msgstr "libc5-bibliotheek %s zit in verkeerde map" + +-#: locale/programs/ld-collate.c:3428 locale/programs/ld-collate.c:3790 ++#: elf/ldconfig.c:858 + #, c-format +-msgid "%s: missing `reorder-end' keyword" +-msgstr "%s: ontbrekend `reorder-end' (opnieuw ordenen einde) sleutelwoord" ++msgid "libc6 library %s in wrong directory" ++msgstr "libc6-bibliotheek %s zit in verkeerde map" + +-#: locale/programs/ld-collate.c:3462 locale/programs/ld-collate.c:3662 ++#: elf/ldconfig.c:861 + #, c-format +-msgid "%s: section `%.*s' not known" +-msgstr "%s: sectie `%.*s' niet bekend" ++msgid "libc4 library %s in wrong directory" ++msgstr "libc4-bibliotheek %s zit in verkeerde map" + +-#: locale/programs/ld-collate.c:3527 ++#: elf/ldconfig.c:888 + #, c-format +-msgid "%s: bad symbol <%.*s>" +-msgstr "%s: fout symbool <%.*s>" ++msgid "libraries %s and %s in directory %s have same soname but different type." ++msgstr "Bibliotheken %s en %s in map %s hebben dezelfde 'soname' maar een verschillende soort" + +-#: locale/programs/ld-collate.c:3725 ++#: elf/ldconfig.c:995 + #, c-format +-msgid "%s: cannot have `%s' as end of ellipsis range" +-msgstr "%s: kan `%s' niet hebben als einde van weglatingsbereik" ++msgid "Can't open configuration file %s" ++msgstr "Kan configuratiebestand %s niet openen" + +-#: locale/programs/ld-collate.c:3774 ++#: elf/ldconfig.c:1059 + #, c-format +-msgid "%s: empty category description not allowed" +-msgstr "%s: lege categoriebeschrijving niet toegestaan" ++msgid "%s:%u: bad syntax in hwcap line" ++msgstr "%s:%u: onjuiste syntax in 'hwcap'-regel" + +-#: locale/programs/ld-collate.c:3793 ++#: elf/ldconfig.c:1065 + #, c-format +-msgid "%s: missing `reorder-sections-end' keyword" +-msgstr "%s: ontbrekend `reorder-sections-end' (opnieuw ordenen secties einde) sleutelwoord" ++msgid "%s:%u: hwcap index %lu above maximum %u" ++msgstr "%s:%u: 'hwcap'-index %lu overschrijdt maximum %u" + +-#: locale/programs/ld-ctype.c:440 +-msgid "No character set name specified in charmap" +-msgstr "Geen tekenset naam aangegeven in tekenafbeelding" ++#: elf/ldconfig.c:1072 elf/ldconfig.c:1080 ++#, c-format ++msgid "%s:%u: hwcap index %lu already defined as %s" ++msgstr "%s:%u: 'hwcap'-index %lu is al gedefinieerd als %s" + +-#: locale/programs/ld-ctype.c:469 ++#: elf/ldconfig.c:1083 + #, c-format +-msgid "character L'\\u%0*x' in class `%s' must be in class `%s'" +-msgstr "teken L'\\u%0*x' in klasse `%s' moet in klasse `%s' zijn" ++msgid "%s:%u: duplicate hwcap %lu %s" ++msgstr "%s:%u: dubbele 'hwcap' %lu %s" + +-#: locale/programs/ld-ctype.c:484 ++#: elf/ldconfig.c:1105 + #, c-format +-msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'" +-msgstr "teken L'\\u%0*x' in klasse `%s' mag niet in klasse `%s' zijn" ++msgid "need absolute file name for configuration file when using -r" ++msgstr "bij gebruik van '-r' is voor het configuratiebestand een absoluut pad vereist" + +-#: locale/programs/ld-ctype.c:498 locale/programs/ld-ctype.c:556 ++#: elf/ldconfig.c:1112 locale/programs/xmalloc.c:69 malloc/obstack.c:434 ++#: malloc/obstack.c:436 posix/getconf.c:980 posix/getconf.c:1158 + #, c-format +-msgid "internal error in %s, line %u" +-msgstr "interne fout in %s, regel %u" ++msgid "memory exhausted" ++msgstr "onvoldoende geheugen" + +-#: locale/programs/ld-ctype.c:527 ++#: elf/ldconfig.c:1142 + #, c-format +-msgid "character '%s' in class `%s' must be in class `%s'" +-msgstr "teken '%s' in klasse `%s' moet in klasse `%s' zijn" ++msgid "%s:%u: cannot read directory %s" ++msgstr "%s:%u: kan map %s niet lezen" + +-#: locale/programs/ld-ctype.c:543 ++#: elf/ldconfig.c:1182 + #, c-format +-msgid "character '%s' in class `%s' must not be in class `%s'" +-msgstr "teken '%s' in klasse `%s' mag niet in klasse `%s' zijn" ++msgid "relative path `%s' used to build cache" ++msgstr "relatief pad '%s' wordt gebruikt bij opbouwen van cache" + +-#: locale/programs/ld-ctype.c:573 locale/programs/ld-ctype.c:611 ++#: elf/ldconfig.c:1210 + #, c-format +-msgid " character not in class `%s'" +-msgstr " teken niet in klasse `%s'" ++msgid "Can't chdir to /" ++msgstr "Kan niet naar hoofdmap ('/') gaan" + +-#: locale/programs/ld-ctype.c:585 locale/programs/ld-ctype.c:622 ++#: elf/ldconfig.c:1252 + #, c-format +-msgid " character must not be in class `%s'" +-msgstr " teken mag niet in klasse `%s' zijn" ++msgid "Can't open cache file directory %s\n" ++msgstr "Kan map %s voor cachebestand niet openen\n" + +-#: locale/programs/ld-ctype.c:600 +-msgid "character not defined in character map" +-msgstr "teken niet gedefinieerd in tekenafbeelding" ++#: elf/ldd.bash.in:43 ++msgid "Written by %s and %s.\n" ++msgstr "Geschreven door %s en %s.\n" + +-#: locale/programs/ld-ctype.c:714 +-msgid "`digit' category has not entries in groups of ten" +-msgstr "`digit' (cijfer) categorie heeft ingangen niet in groepen van 10" ++#: elf/ldd.bash.in:48 ++msgid "" ++"Usage: ldd [OPTION]... FILE...\n" ++" --help print this help and exit\n" ++" --version print version information and exit\n" ++" -d, --data-relocs process data relocations\n" ++" -r, --function-relocs process data and function relocations\n" ++" -u, --unused print unused direct dependencies\n" ++" -v, --verbose print all information\n" ++"For bug reporting instructions, please see:\n" ++"." ++msgstr "" ++"Gebruik: ldd [OPTIE]... BESTAND...\n" ++"\n" ++" -d, --data-relocs dataverplaatsingen verwerken\n" ++" -r, --function-relocs data- en functieverplaatsingen verwerken\n" ++" -u, --unused ongebruikte directe afhankelijkheden tonen\n" ++" -v, --verbose breedsprakige uitvoer\n" ++"\n" ++" --version versie-informatie tonen\n" ++" --help deze hulptekst tonen\n" ++"\n" ++"Voor het rapporteren van fouten, zie:\n" ++" ." + +-#: locale/programs/ld-ctype.c:763 +-msgid "no input digits defined and none of the standard names in the charmap" +-msgstr "geen invoercijfers gedefinieerd en geen van de standaardnamen in de tekenafbeelding" ++#: elf/ldd.bash.in:80 ++msgid "ldd: option `$1' is ambiguous" ++msgstr "ldd: optie '$1' is niet eenduidig" ++ ++#: elf/ldd.bash.in:87 ++msgid "unrecognized option" ++msgstr "onbekende optie" ++ ++#: elf/ldd.bash.in:88 elf/ldd.bash.in:126 ++msgid "Try `ldd --help' for more information." ++msgstr "Probeer 'ldd --help' voor meer informatie." ++ ++#: elf/ldd.bash.in:125 ++msgid "missing file arguments" ++msgstr "ontbrekende bestandsargumenten" + +-#: locale/programs/ld-ctype.c:828 +-msgid "not all characters used in `outdigit' are available in the charmap" +-msgstr "niet alle tekens gebruikt in `outdigit' zijn beschikbaar in de tekenafbeelding" ++#. TRANS No such file or directory. This is a ``file doesn't exist'' error ++#. TRANS for ordinary files that are referenced in contexts where they are ++#. TRANS expected to already exist. ++#: elf/ldd.bash.in:148 sysdeps/gnu/errlist.c:36 ++msgid "No such file or directory" ++msgstr "Bestand of map bestaat niet" + +-#: locale/programs/ld-ctype.c:845 +-msgid "not all characters used in `outdigit' are available in the repertoire" +-msgstr "niet alle tekens gebruikt in `outdigit' zijn beschikbaar in het repertoire" ++#: elf/ldd.bash.in:151 inet/rcmd.c:483 ++msgid "not regular file" ++msgstr "niet een normaal bestand" + +-#: locale/programs/ld-ctype.c:1244 +-#, c-format +-msgid "character class `%s' already defined" +-msgstr "tekenklasse `%s' reeds gedefinieerd" ++#: elf/ldd.bash.in:154 ++msgid "warning: you do not have execution permission for" ++msgstr "waarschuwing: u hebt geen uitvoeringsrechten voor" ++ ++#: elf/ldd.bash.in:183 ++msgid "\tnot a dynamic executable" ++msgstr "\tgeen dynamisch uitvoerbaar bestand" ++ ++#: elf/ldd.bash.in:191 ++msgid "exited with unknown exit code" ++msgstr "eindigde met een onbekende afsluitwaarde" ++ ++#: elf/ldd.bash.in:196 ++msgid "error: you do not have read permission for" ++msgstr "fout: u hebt geen leesrechten voor" + +-#: locale/programs/ld-ctype.c:1250 ++#: elf/readelflib.c:35 + #, c-format +-msgid "implementation limit: no more than %Zd character classes allowed" +-msgstr "implementatie grens: niet meer dan %Zd tekenklasses toegestaan" ++msgid "file %s is truncated\n" ++msgstr "bestand %s is afgekapt\n" + +-#: locale/programs/ld-ctype.c:1276 ++#: elf/readelflib.c:67 + #, c-format +-msgid "character map `%s' already defined" +-msgstr "tekenafbeelding `%s' reeds gedefinieerd" ++msgid "%s is a 32 bit ELF file.\n" ++msgstr "%s is een 32-bits ELF-bestand\n" + +-#: locale/programs/ld-ctype.c:1282 ++#: elf/readelflib.c:69 + #, c-format +-msgid "implementation limit: no more than %d character maps allowed" +-msgstr "implementatie grens: niet meer dan %d tekenafbeeldingen toegestaan" ++msgid "%s is a 64 bit ELF file.\n" ++msgstr "%s is een 64-bits ELF-bestand\n" + +-#: locale/programs/ld-ctype.c:1547 locale/programs/ld-ctype.c:1672 +-#: locale/programs/ld-ctype.c:1778 locale/programs/ld-ctype.c:2464 +-#: locale/programs/ld-ctype.c:3460 ++#: elf/readelflib.c:71 + #, c-format +-msgid "%s: field `%s' does not contain exactly ten entries" +-msgstr "%s: veld `%s' bevat niet precies 10 ingangen" ++msgid "Unknown ELFCLASS in file %s.\n" ++msgstr "Onbekende ELFCLASS in bestand %s\n" + +-#: locale/programs/ld-ctype.c:1575 locale/programs/ld-ctype.c:2146 ++#: elf/readelflib.c:78 + #, c-format +-msgid "to-value of range is smaller than from-value " +-msgstr "tot-waarde van bereik is kleiner dan van-waarde " ++msgid "%s is not a shared object file (Type: %d).\n" ++msgstr "%s is niet een gedeeld objectbestand (type = %d)\n" + +-#: locale/programs/ld-ctype.c:1702 +-msgid "start and end character sequence of range must have the same length" +-msgstr "begin en einde tekenreeks van bereik moeten dezelfde lengte hebben" ++#: elf/readelflib.c:109 ++#, c-format ++msgid "more than one dynamic segment\n" ++msgstr "meer dan één dynamisch segment\n" + +-#: locale/programs/ld-ctype.c:1709 +-msgid "to-value character sequence is smaller than from-value sequence" +-msgstr "tot-waarde tekenreeks is kleiner dan van-waarde reeks" ++#: elf/readlib.c:96 ++#, c-format ++msgid "Cannot fstat file %s.\n" ++msgstr "Kan status van %s niet opvragen\n" + +-#: locale/programs/ld-ctype.c:2066 locale/programs/ld-ctype.c:2117 +-msgid "premature end of `translit_ignore' definition" +-msgstr "vroegtijdig einde van `translit_ignore' (translitereren negeren) definitie" ++#: elf/readlib.c:107 ++#, c-format ++msgid "File %s is empty, not checked." ++msgstr "Bestand %s is leeg; niet gecontroleerd" + +-#: locale/programs/ld-ctype.c:2072 locale/programs/ld-ctype.c:2123 +-#: locale/programs/ld-ctype.c:2165 +-msgid "syntax error" +-msgstr "syntaxisfout" ++#: elf/readlib.c:113 ++#, c-format ++msgid "File %s is too small, not checked." ++msgstr "Bestand %s is te klein; niet gecontroleerd" + +-#: locale/programs/ld-ctype.c:2296 ++#: elf/readlib.c:123 + #, c-format +-msgid "%s: syntax error in definition of new character class" +-msgstr "%s: syntaxisfout in definitie van nieuwe tekenklasse" ++msgid "Cannot mmap file %s.\n" ++msgstr "Kan bestand %s niet geheel in het geheugen plaatsen\n" + +-#: locale/programs/ld-ctype.c:2311 ++#: elf/readlib.c:161 + #, c-format +-msgid "%s: syntax error in definition of new character map" +-msgstr "%s: syntaxisfout in definitie van nieuwe tekenafbeelding" ++msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n" ++msgstr "%s is geen ELF-bestand -- het heeft de verkeerde magische bytes aan het begin\n" + +-#: locale/programs/ld-ctype.c:2486 +-msgid "ellipsis range must be marked by two operands of same type" +-msgstr "weglatingsbereik moet worden gemarkeerd door twee operands van dezelfde soort" ++#: elf/sprof.c:77 ++msgid "Output selection:" ++msgstr "Uitvoerselectie:" + +-#: locale/programs/ld-ctype.c:2495 +-msgid "with symbolic name range values the absolute ellipsis `...' must not be used" +-msgstr "het absolute weglatingsteken `...' moet niet gebruikt worden met symbolische naambereik waarden" ++#: elf/sprof.c:79 ++msgid "print list of count paths and their number of use" ++msgstr "een lijst weergeven met telpaden en hoe vaak ze gebruikt worden" + +-#: locale/programs/ld-ctype.c:2510 +-msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" +-msgstr "met UCS bereikwaarden moet het hexadecimale symbolische weglatingsteken `..' worden gebruikt" ++#: elf/sprof.c:81 ++msgid "generate flat profile with counts and ticks" ++msgstr "een lineaire tabel met aantal aanroepen en tikken genereren" + +-#: locale/programs/ld-ctype.c:2524 +-msgid "with character code range values one must use the absolute ellipsis `...'" +-msgstr "met tekencode bereikwaarden moet het absolute weglatingsteken `...' worden gebruikt" ++#: elf/sprof.c:82 ++msgid "generate call graph" ++msgstr "een aanroepengrafiek genereren" + +-#: locale/programs/ld-ctype.c:2675 +-#, c-format +-msgid "duplicated definition for mapping `%s'" +-msgstr "dubbele definitie voor afbeelding `%s'" ++#: elf/sprof.c:89 ++msgid "" ++"Read and display shared object profiling data. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Gegevens van prestatie-analyse inlezen en afbeelden. Voor het rapporteren van fouten, zie:\n" ++" .\n" + +-#: locale/programs/ld-ctype.c:2761 locale/programs/ld-ctype.c:2905 +-#, c-format +-msgid "%s: `translit_start' section does not end with `translit_end'" +-msgstr "%s: `translit_start' (translitereren begin) sectie eindigt niet met `translit_end' (translitereren einde)" ++#: elf/sprof.c:94 ++msgid "SHOBJ [PROFDATA]" ++msgstr "GEDEELD_OBJECT [ANALYSEGEGEVENS]" + +-#: locale/programs/ld-ctype.c:2856 ++#: elf/sprof.c:400 + #, c-format +-msgid "%s: duplicate `default_missing' definition" +-msgstr "%s: dubbele `default_missing' (standaard ontbrekend) definitie" +- +-#: locale/programs/ld-ctype.c:2861 +-msgid "previous definition was here" +-msgstr "vorige definitie was hier" ++msgid "failed to load shared object `%s'" ++msgstr "laden van gedeeld object '%s' is mislukt" + +-#: locale/programs/ld-ctype.c:2883 ++# ###dubbel ++#: elf/sprof.c:409 + #, c-format +-msgid "%s: no representable `default_missing' definition found" +-msgstr "%s: niet representeerbare `default_missing' (standaard ontbrekend) definitie gevonden" ++msgid "cannot create internal descriptors" ++msgstr "kan interne descriptor niet aanmaken" + +-#: locale/programs/ld-ctype.c:3036 ++#: elf/sprof.c:528 + #, c-format +-msgid "%s: character `%s' not defined in charmap while needed as default value" +-msgstr "%s: teken `%s' niet gedefinieerd in tekenafbeelding maar nodig als standaardwaarde" ++msgid "Reopening shared object `%s' failed" ++msgstr "heropenen van gedeeld object '%s' is mislukt" + +-#: locale/programs/ld-ctype.c:3041 locale/programs/ld-ctype.c:3125 +-#: locale/programs/ld-ctype.c:3145 locale/programs/ld-ctype.c:3166 +-#: locale/programs/ld-ctype.c:3187 locale/programs/ld-ctype.c:3208 +-#: locale/programs/ld-ctype.c:3229 locale/programs/ld-ctype.c:3269 +-#: locale/programs/ld-ctype.c:3290 locale/programs/ld-ctype.c:3357 ++#: elf/sprof.c:535 elf/sprof.c:629 + #, c-format +-msgid "%s: character `%s' in charmap not representable with one byte" +-msgstr "%s: teken `%s' in tekenafbeelding niet te representeren met één byte" ++msgid "reading of section headers failed" ++msgstr "lezen van sectiekoppen is mislukt" + +-#: locale/programs/ld-ctype.c:3120 locale/programs/ld-ctype.c:3140 +-#: locale/programs/ld-ctype.c:3182 locale/programs/ld-ctype.c:3203 +-#: locale/programs/ld-ctype.c:3224 locale/programs/ld-ctype.c:3264 +-#: locale/programs/ld-ctype.c:3285 locale/programs/ld-ctype.c:3352 +-#: locale/programs/ld-ctype.c:3394 locale/programs/ld-ctype.c:3419 ++#: elf/sprof.c:543 elf/sprof.c:637 + #, c-format +-msgid "%s: character `%s' not defined while needed as default value" +-msgstr "%s: teken `%s' niet gedefinieerd maar nodig als standaardwaarde" ++msgid "reading of section header string table failed" ++msgstr "lezen van tekenreekstabel in sectiekop is mislukt" + +-#: locale/programs/ld-ctype.c:3161 ++#: elf/sprof.c:569 + #, c-format +-msgid "character `%s' not defined while needed as default value" +-msgstr "teken `%s' niet gedefinieerd maar nodig als standaardwaarde" ++msgid "*** Cannot read debuginfo file name: %m\n" ++msgstr "*** Kan naam van debuginfobestand niet lezen: %m\n" + +-#: locale/programs/ld-ctype.c:3401 locale/programs/ld-ctype.c:3426 ++#: elf/sprof.c:589 + #, c-format +-msgid "%s: character `%s' needed as default value not representable with one byte" +-msgstr "%s: teken `%s', nodig als standaardwaarde, niet te representeren met één byte" +- +-#: locale/programs/ld-ctype.c:3481 +-msgid "no output digits defined and none of the standard names in the charmap" +-msgstr "geen uitvoercijfers gedefinieerd en geen van de standaardnamen in tekenafbeelding" ++msgid "cannot determine file name" ++msgstr "kan bestandsnaam niet bepalen" + +-#: locale/programs/ld-ctype.c:3772 ++#: elf/sprof.c:622 + #, c-format +-msgid "%s: transliteration data from locale `%s' not available" +-msgstr "%s: transliteratie gegevens van locale `%s' niet beschikbaar" ++msgid "reading of ELF header failed" ++msgstr "lezen van ELF-header is mislukt" + +-#: locale/programs/ld-ctype.c:3868 ++#: elf/sprof.c:658 + #, c-format +-msgid "%s: table for class \"%s\": %lu bytes\n" +-msgstr "%s: tabel voor klasse \"%s\": %lu bytes\n" ++msgid "*** The file `%s' is stripped: no detailed analysis possible\n" ++msgstr "*** Het bestand '%s' is gestript: gedetailleerde analyse is niet mogelijk\n" + +-#: locale/programs/ld-ctype.c:3937 ++#: elf/sprof.c:688 + #, c-format +-msgid "%s: table for map \"%s\": %lu bytes\n" +-msgstr "%s: tabel voor afbeelding \"%s\": %lu bytes\n" ++msgid "failed to load symbol data" ++msgstr "laden van symboolgegevens is mislukt" + +-#: locale/programs/ld-ctype.c:4070 ++#: elf/sprof.c:755 + #, c-format +-msgid "%s: table for width: %lu bytes\n" +-msgstr "%s: tabel voor breedte: %lu bytes\n" ++msgid "cannot load profiling data" ++msgstr "kan analysegegevens niet laden" + +-#: locale/programs/ld-identification.c:171 ++#: elf/sprof.c:764 + #, c-format +-msgid "%s: no identification for category `%s'" +-msgstr "%s: geen identificatie voor categorie `%s'" ++msgid "while stat'ing profiling data file" ++msgstr "bij opvragen van status van analysegegevensbestand" + +-#: locale/programs/ld-identification.c:436 ++#: elf/sprof.c:772 + #, c-format +-msgid "%s: duplicate category version definition" +-msgstr "%s: dubbele definitie categorieversie" ++msgid "profiling data file `%s' does not match shared object `%s'" ++msgstr "analysegegevensbestand '%s' komt niet overeen met gedeeld object '%s'" + +-#: locale/programs/ld-measurement.c:114 ++#: elf/sprof.c:783 + #, c-format +-msgid "%s: invalid value for field `%s'" +-msgstr "%s: ongeldige waarde voor veld `%s'" ++msgid "failed to mmap the profiling data file" ++msgstr "kan analysegegevensbestand niet geheel in het geheugen plaatsen" + +-#: locale/programs/ld-messages.c:115 locale/programs/ld-messages.c:149 ++#: elf/sprof.c:791 + #, c-format +-msgid "%s: field `%s' undefined" +-msgstr "%s: veld `%s' ongedefinieerd" ++msgid "error while closing the profiling data file" ++msgstr "fout bij sluiten van analysegegevensbestand" + +-#: locale/programs/ld-messages.c:122 locale/programs/ld-messages.c:156 ++# ###dubbel ++#: elf/sprof.c:800 elf/sprof.c:870 + #, c-format +-msgid "%s: value for field `%s' must not be an empty string" +-msgstr "%s: waarde voor veld `%s' mag geen lege tekenreeks zijn" ++msgid "cannot create internal descriptor" ++msgstr "kan interne descriptor niet aanmaken" + +-#: locale/programs/ld-messages.c:138 locale/programs/ld-messages.c:172 ++#: elf/sprof.c:846 + #, c-format +-msgid "%s: no correct regular expression for field `%s': %s" +-msgstr "%s: geen juiste reguliere uitdrukking voor veld `%s': %s" ++msgid "`%s' is no correct profile data file for `%s'" ++msgstr "'%s' is geen correct bestand met analysegegevens voor '%s'" + +-#: locale/programs/ld-monetary.c:224 ++#: elf/sprof.c:1027 elf/sprof.c:1085 + #, c-format +-msgid "%s: value of field `int_curr_symbol' has wrong length" +-msgstr "%s: waarde van veld `int_curr_symbol' heeft verkeerde lengte" ++msgid "cannot allocate symbol data" ++msgstr "kan geen geheugen reserveren voor symboolgegevens" + +-#: locale/programs/ld-monetary.c:237 ++#: iconv/iconv_charmap.c:175 iconv/iconv_prog.c:315 + #, c-format +-msgid "%s: value of field `int_curr_symbol' does not correspond to a valid name in ISO 4217" +-msgstr "%s: waarde van veld `int_curr_symbol' komt niet overeen met een geldige naam in ISO 4217" ++msgid "error while closing input `%s'" ++msgstr "fout bij sluiten van invoer '%s'" + +-#: locale/programs/ld-monetary.c:256 locale/programs/ld-numeric.c:119 ++#: iconv/iconv_charmap.c:449 + #, c-format +-msgid "%s: value for field `%s' must not be the empty string" +-msgstr "%s: waarde voor veld `%s' mag geen lege tekenreeks zijn" ++msgid "illegal input sequence at position %Zd" ++msgstr "ongeldige invoerreeks op positie %Zd" + +-#: locale/programs/ld-monetary.c:284 locale/programs/ld-monetary.c:314 ++#: iconv/iconv_charmap.c:468 iconv/iconv_prog.c:525 + #, c-format +-msgid "%s: value for field `%s' must be in range %d...%d" +-msgstr "%s: waarde voor veld `%s' moet binnen bereik %d...%d liggen" ++msgid "incomplete character or shift sequence at end of buffer" ++msgstr "onvolledige teken- of schuifreeks aan einde van buffer" + +-#: locale/programs/ld-monetary.c:746 locale/programs/ld-numeric.c:275 ++#: iconv/iconv_charmap.c:513 iconv/iconv_charmap.c:549 iconv/iconv_prog.c:568 ++#: iconv/iconv_prog.c:604 + #, c-format +-msgid "%s: value for field `%s' must be a single character" +-msgstr "%s: waarde voor veld `%s' moet een enkel teken zijn" ++msgid "error while reading the input" ++msgstr "fout bij lezen van de invoer" + +-#: locale/programs/ld-monetary.c:843 locale/programs/ld-numeric.c:319 ++#: iconv/iconv_charmap.c:531 iconv/iconv_prog.c:586 + #, c-format +-msgid "%s: `-1' must be last entry in `%s' field" +-msgstr "%s: `-1' moet de laatste ingang in veld `%s' zijn" ++msgid "unable to allocate buffer for input" ++msgstr "kan geen geheugen reserveren voor invoerbuffer" + +-#: locale/programs/ld-monetary.c:865 locale/programs/ld-numeric.c:340 +-#, c-format +-msgid "%s: values for field `%s' must be smaller than 127" +-msgstr "%s: waarden voor veld `%s' moeten kleiner zijn dan 127" ++#: iconv/iconv_prog.c:59 ++msgid "Input/Output format specification:" ++msgstr "Specificatie van in- en uitvoercodering:" + +-#: locale/programs/ld-monetary.c:908 +-msgid "conversion rate value cannot be zero" +-msgstr "conversiekoers waarde kan niet nul zijn" ++#: iconv/iconv_prog.c:60 ++msgid "encoding of original text" ++msgstr "codering van oorspronkelijke tekst" + +-#: locale/programs/ld-name.c:130 locale/programs/ld-telephone.c:127 +-#: locale/programs/ld-telephone.c:150 +-#, c-format +-msgid "%s: invalid escape sequence in field `%s'" +-msgstr "%s: ongeldige stuurcode in veld `%s'" ++#: iconv/iconv_prog.c:61 ++msgid "encoding for output" ++msgstr "codering van uitvoer" + +-#: locale/programs/ld-time.c:248 +-#, c-format +-msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'" +-msgstr "%s: richtingsaanduiding in tekenreeks %Zd in `era' veld is niet '+' of '-'" ++#: iconv/iconv_prog.c:62 ++msgid "Information:" ++msgstr "Informatie:" + +-#: locale/programs/ld-time.c:259 +-#, c-format +-msgid "%s: direction flag in string %Zd in `era' field is not a single character" +-msgstr "%s: richtingsaanduiding in tekenreeks %Zd in `era' veld is niet een enkel teken" ++#: iconv/iconv_prog.c:63 ++msgid "list all known coded character sets" ++msgstr "alle bekende gecodeerde tekensets opsommen" + +-#: locale/programs/ld-time.c:272 +-#, c-format +-msgid "%s: invalid number for offset in string %Zd in `era' field" +-msgstr "%s: ongeldig getal voor verplaatsing in tekenreeks %Zd in `era' veld" ++#: iconv/iconv_prog.c:64 locale/programs/localedef.c:126 ++msgid "Output control:" ++msgstr "Uitvoerbeheer:" + +-#: locale/programs/ld-time.c:280 +-#, c-format +-msgid "%s: garbage at end of offset value in string %Zd in `era' field" +-msgstr "%s: troep aan einde van verplaatsingswaarde in tekenreeks %Zd in `era' veld" ++#: iconv/iconv_prog.c:65 ++msgid "omit invalid characters from output" ++msgstr "ongeldige tekens in uitvoer overslaan" + +-#: locale/programs/ld-time.c:331 +-#, c-format +-msgid "%s: invalid starting date in string %Zd in `era' field" +-msgstr "%s: ongeldige begindatum in tekenreeks %Zd in `era' veld" ++#: iconv/iconv_prog.c:66 ++msgid "output file" ++msgstr "uitvoerbestand" + +-#: locale/programs/ld-time.c:340 +-#, c-format +-msgid "%s: garbage at end of starting date in string %Zd in `era' field " +-msgstr "%s: troep aan einde van begindatum in tekenreeks %Zd in `era' veld" ++#: iconv/iconv_prog.c:67 ++msgid "suppress warnings" ++msgstr "waarschuwingen onderdrukken" + +-#: locale/programs/ld-time.c:359 +-#, c-format +-msgid "%s: starting date is invalid in string %Zd in `era' field" +-msgstr "%s: begindatum is ongeldig in tekenreeks %Zd in `era' veld" ++#: iconv/iconv_prog.c:68 ++msgid "print progress information" ++msgstr "voortgangsinformatie tonen" + +-#: locale/programs/ld-time.c:408 +-#, c-format +-msgid "%s: invalid stopping date in string %Zd in `era' field" +-msgstr "%s: ongeldige einddatum in tekenreeks %Zd in `era' veld" ++#: iconv/iconv_prog.c:73 ++msgid "Convert encoding of given files from one encoding to another." ++msgstr "Bestanden converteren van ene codering naar andere." + +-#: locale/programs/ld-time.c:417 ++#: iconv/iconv_prog.c:77 ++msgid "[FILE...]" ++msgstr "[BESTAND...]" ++ ++#: iconv/iconv_prog.c:199 + #, c-format +-msgid "%s: garbage at end of stopping date in string %Zd in `era' field" +-msgstr "%s: troep aan einde van einddatum in tekenreeks %Zd in `era' veld" ++msgid "cannot open output file" ++msgstr "kan uitvoerbestand niet openen" + +-#: locale/programs/ld-time.c:436 ++#: iconv/iconv_prog.c:241 + #, c-format +-msgid "%s: stopping date is invalid in string %Zd in `era' field" +-msgstr "%s: einddatum is ongeldig in tekenreeks %Zd in `era' veld" ++msgid "conversions from `%s' and to `%s' are not supported" ++msgstr "conversie vanuit '%s' en conversie naar '%s' worden niet ondersteund" + +-#: locale/programs/ld-time.c:445 ++#: iconv/iconv_prog.c:246 + #, c-format +-msgid "%s: missing era name in string %Zd in `era' field" +-msgstr "%s: ontbrekende tijdperknaam in tekenreeks %Zd in `era' veld" ++msgid "conversion from `%s' is not supported" ++msgstr "conversie vanuit '%s' wordt niet ondersteund" + +-#: locale/programs/ld-time.c:457 ++#: iconv/iconv_prog.c:253 + #, c-format +-msgid "%s: missing era format in string %Zd in `era' field" +-msgstr "%s: ontbrekend tijdperkformaat in tekenreeks %Zd in `era' veld" ++msgid "conversion to `%s' is not supported" ++msgstr "conversie naar '%s' wordt niet ondersteund" + +-#: locale/programs/ld-time.c:486 ++#: iconv/iconv_prog.c:257 + #, c-format +-msgid "%s: third operand for value of field `%s' must not be larger than %d" +-msgstr "%s: derde operand voor waarde van veld `%s' mag niet groter zijn dan %d" ++msgid "conversion from `%s' to `%s' is not supported" ++msgstr "conversie van '%s' naar '%s' wordt niet ondersteund" + +-#: locale/programs/ld-time.c:494 locale/programs/ld-time.c:502 ++#: iconv/iconv_prog.c:267 + #, c-format +-msgid "%s: values of field `%s' must not be larger than %d" +-msgstr "%s: waarden voor veld `%s' mogen niet groter zijn dan %d" ++msgid "failed to start conversion processing" ++msgstr "beginnen van conversieproces is mislukt" + +-#: locale/programs/ld-time.c:510 ++#: iconv/iconv_prog.c:361 + #, c-format +-msgid "%s: values for field `%s' must not be larger than %d" +-msgstr "%s: waarden voor veld `%s' mogen niet groter zijn dan %d" ++msgid "error while closing output file" ++msgstr "fout bij sluiten van uitvoerbestand" + +-#: locale/programs/ld-time.c:986 ++#: iconv/iconv_prog.c:470 iconv/iconv_prog.c:496 + #, c-format +-msgid "%s: too few values for field `%s'" +-msgstr "%s: te weinig waarden voor veld `%s'" +- +-#: locale/programs/ld-time.c:1031 +-msgid "extra trailing semicolon" +-msgstr "extra punt-komma aan einde" ++msgid "conversion stopped due to problem in writing the output" ++msgstr "conversie is gestopt vanwege probleem bij schrijven van de uitvoer" + +-#: locale/programs/ld-time.c:1034 ++#: iconv/iconv_prog.c:521 + #, c-format +-msgid "%s: too many values for field `%s'" +-msgstr "%s: teveel waarden voor veld `%s'" ++msgid "illegal input sequence at position %ld" ++msgstr "ongeldige invoerreeks op positie %ld" + +-#: locale/programs/linereader.c:130 +-msgid "trailing garbage at end of line" +-msgstr "troep aan einde van regel" ++#: iconv/iconv_prog.c:529 ++#, c-format ++msgid "internal error (illegal descriptor)" ++msgstr "**interne fout**: ongeldige descriptor" + +-#: locale/programs/linereader.c:304 +-msgid "garbage at end of number" +-msgstr "troep aan einde van getal" ++#: iconv/iconv_prog.c:532 ++#, c-format ++msgid "unknown iconv() error %d" ++msgstr "onbekende iconv()-fout %d" + +-#: locale/programs/linereader.c:416 +-msgid "garbage at end of character code specification" +-msgstr "troep aan einde van tekencode specificatie" ++# ###XXX ->contains ++#: iconv/iconv_prog.c:778 ++msgid "" ++"The following list contain all the coded character sets known. This does\n" ++"not necessarily mean that all combinations of these names can be used for\n" ++"the FROM and TO command line parameters. One coded character set can be\n" ++"listed with several different names (aliases).\n" ++"\n" ++" " ++msgstr "" ++"De volgende lijst bevat alle bekende gecodeerde tekensets. Dit betekent\n" ++"niet noodzakelijkerwijs dat alle combinaties van deze namen kunnen worden\n" ++"gebruikt als parameters van VAN en NAAR. Eén enkele gecodeerde tekenset\n" ++"kan met verschillende namen (aliassen) vermeld staan.\n" ++"\n" ++" " + +-#: locale/programs/linereader.c:502 +-msgid "unterminated symbolic name" +-msgstr "onafgesloten symbolische naam" ++#: iconv/iconvconfig.c:109 ++msgid "Create fastloading iconv module configuration file." ++msgstr "Een snelladend configuratiebestand voor een iconv-module maken." + +-#: locale/programs/linereader.c:566 catgets/gencat.c:1195 +-msgid "invalid escape sequence" +-msgstr "ongeldige stuurcode" ++#: iconv/iconvconfig.c:113 ++msgid "[DIR...]" ++msgstr "[MAP...]" + +-#: locale/programs/linereader.c:629 +-msgid "illegal escape sequence at end of string" +-msgstr "ongeldige stuurcode aan einde van tekenreeks" ++#: iconv/iconvconfig.c:126 ++msgid "Prefix used for all file accesses" ++msgstr "te gebruiken voorvoegsel voor alle bestandstoegangen" + +-#: locale/programs/linereader.c:633 locale/programs/linereader.c:861 +-msgid "unterminated string" +-msgstr "onafgesloten tekenreeks" ++#: iconv/iconvconfig.c:127 ++msgid "Put output in FILE instead of installed location (--prefix does not apply to FILE)" ++msgstr "uitvoer in BESTAND opslaan in plaats van op eigen locatie (--prefix geldt niet voor BESTAND)" + +-#: locale/programs/linereader.c:675 +-msgid "non-symbolic character value should not be used" +-msgstr "niet-symbolische tekenwaarde mag niet worden gebruikt" ++#: iconv/iconvconfig.c:131 ++msgid "Do not search standard directories, only those on the command line" ++msgstr "standaardmappen niet doorzoeken, alleen die op de opdrachtregel" + +-#: locale/programs/linereader.c:822 ++#: iconv/iconvconfig.c:300 + #, c-format +-msgid "symbol `%.*s' not in charmap" +-msgstr "symbool `%.*s' niet in tekenafbeelding" ++msgid "Directory arguments required when using --nostdlib" ++msgstr "Mapargumenten zijn vereist bij gebruik van '--nostdlib'" + +-#: locale/programs/linereader.c:843 ++#: iconv/iconvconfig.c:342 locale/programs/localedef.c:290 + #, c-format +-msgid "symbol `%.*s' not in repertoire map" +-msgstr "symbool `%.*s' niet in repertoire-afbeelding" +- +-#: locale/programs/locale.c:75 +-msgid "System information:" +-msgstr "Systeeminformatie:" +- +-#: locale/programs/locale.c:77 +-msgid "Write names of available locales" +-msgstr "Namen van beschikbare locales schrijven" +- +-#: locale/programs/locale.c:79 +-msgid "Write names of available charmaps" +-msgstr "Namen van beschikbare tekenafbeeldingen schrijven" +- +-#: locale/programs/locale.c:80 +-msgid "Modify output format:" +-msgstr "Uitvoerformaat aanpassen:" +- +-#: locale/programs/locale.c:81 +-msgid "Write names of selected categories" +-msgstr "Namen van geselecteerde categorieen schrijven" ++msgid "no output file produced because warnings were issued" ++msgstr "geen uitvoerbestand aangemaakt omdat er waarschuwingen werden gegeven" + +-#: locale/programs/locale.c:82 +-msgid "Write names of selected keywords" +-msgstr "Namen van geselecteerde sleutelwoorden schrijven" ++#: iconv/iconvconfig.c:428 ++#, c-format ++msgid "while inserting in search tree" ++msgstr "bij invoegen in zoekboom" + +-#: locale/programs/locale.c:83 +-msgid "Print more information" +-msgstr "Meer informatie weergeven" ++#: iconv/iconvconfig.c:1236 ++#, c-format ++msgid "cannot generate output file" ++msgstr "kan geen uitvoerbestand genereren" + +-#: locale/programs/locale.c:88 +-msgid "Get locale-specific information." +-msgstr "Locale-specifieke informatie opvragen." ++#: inet/rcmd.c:157 ++msgid "rcmd: Cannot allocate memory\n" ++msgstr "rcmd: Kan geen geheugen reserveren\n" + +-#: locale/programs/locale.c:91 +-msgid "" +-"NAME\n" +-"[-a|-m]" +-msgstr "" +-"NAAM\n" +-"[-a|-m]" ++#: inet/rcmd.c:172 ++msgid "rcmd: socket: All ports in use\n" ++msgstr "rcmd: socket: Alle poorten zijn in gebruik\n" + +-#: locale/programs/locale.c:195 +-msgid "Cannot set LC_CTYPE to default locale" +-msgstr "Kan LC_TYPE niet instellen op standaard locale" ++#: inet/rcmd.c:200 ++#, c-format ++msgid "connect to address %s: " ++msgstr "verbinden met adres %s: " + +-#: locale/programs/locale.c:197 +-msgid "Cannot set LC_MESSAGES to default locale" +-msgstr "Kan LC_MESSAGES niet instellen op standaard locale" ++#: inet/rcmd.c:213 ++#, c-format ++msgid "Trying %s...\n" ++msgstr "Proberen van %s...\n" + +-#: locale/programs/locale.c:210 +-msgid "Cannot set LC_COLLATE to default locale" +-msgstr "Kan LC_COLLATE niet instellen op standaard locale" ++#: inet/rcmd.c:249 ++#, c-format ++msgid "rcmd: write (setting up stderr): %m\n" ++msgstr "rcmd: schrijven (instellen van standaardfoutuitvoer): %m\n" + +-#: locale/programs/locale.c:226 +-msgid "Cannot set LC_ALL to default locale" +-msgstr "Kan LC_ALL niet instellen op standaard locale" ++#: inet/rcmd.c:265 ++#, c-format ++msgid "rcmd: poll (setting up stderr): %m\n" ++msgstr "rcmd: polsen (instellen van standaardfoutuitvoer): %m\n" + +-#: locale/programs/locale.c:517 +-msgid "while preparing output" +-msgstr "tijdens voorbereiden van uitvoer" ++#: inet/rcmd.c:268 ++msgid "poll: protocol failure in circuit setup\n" ++msgstr "polsen: protocolfout bij opzetten van circuit\n" + +-#: locale/programs/localedef.c:121 +-msgid "Input Files:" +-msgstr "Invoerbestanden:" ++#: inet/rcmd.c:301 ++msgid "socket: protocol failure in circuit setup\n" ++msgstr "socket: protocolfout bij opzetten van circuit\n" + +-#: locale/programs/localedef.c:123 +-msgid "Symbolic character names defined in FILE" +-msgstr "Symbolische tekennamen gedefinieerd in BESTAND" ++#: inet/rcmd.c:325 ++#, c-format ++msgid "rcmd: %s: short read" ++msgstr "rcmd: %s: te weinig gelezen" + +-#: locale/programs/localedef.c:124 +-msgid "Source definitions are found in FILE" +-msgstr "Brondefinities zijn gevonden in BESTAND" ++#: inet/rcmd.c:481 ++msgid "lstat failed" ++msgstr "lstat() is mislukt" + +-#: locale/programs/localedef.c:126 +-msgid "FILE contains mapping from symbolic names to UCS4 values" +-msgstr "BESTAND bevat afbeelding van symbolische namen naar UCS4 waarden" ++#: inet/rcmd.c:488 ++msgid "cannot open" ++msgstr "kan niet openen" + +-#: locale/programs/localedef.c:130 +-msgid "Create output even if warning messages were issued" +-msgstr "Zelfs uitvoer geven als waarschuwingen zijn uitgegeven" ++#: inet/rcmd.c:490 ++msgid "fstat failed" ++msgstr "fstat() is mislukt" + +-#: locale/programs/localedef.c:131 +-msgid "Create old-style tables" +-msgstr "Oude-stijl tabellen maken" ++#: inet/rcmd.c:492 ++msgid "bad owner" ++msgstr "verkeerde eigenaar" + +-#: locale/programs/localedef.c:132 +-msgid "Optional output file prefix" +-msgstr "Optioneel voorvoegsel uitvoerbestand" ++#: inet/rcmd.c:494 ++msgid "writeable by other than owner" ++msgstr "schrijfbaar door anderen dan eigenaar" + +-#: locale/programs/localedef.c:133 +-msgid "Be strictly POSIX conform" +-msgstr "Strict gedragen volgens POSIX" ++#: inet/rcmd.c:496 ++msgid "hard linked somewhere" ++msgstr "ergens hard gekoppeld" + +-#: locale/programs/localedef.c:135 +-msgid "Suppress warnings and information messages" +-msgstr "Waarschuwingen en informatieve berichten onderdrukken" ++#: inet/ruserpass.c:170 inet/ruserpass.c:193 ++msgid "out of memory" ++msgstr "onvoldoende geheugen" + +-#: locale/programs/localedef.c:136 +-msgid "Print more messages" +-msgstr "Meer berichten weergeven" ++#: inet/ruserpass.c:184 ++msgid "Error: .netrc file is readable by others." ++msgstr "Fout: .netrc-bestand is leesbaar voor anderen." + +-#: locale/programs/localedef.c:137 +-msgid "Archive control:" +-msgstr "Archiefbeheer:" ++#: inet/ruserpass.c:185 ++msgid "Remove password or make file unreadable by others." ++msgstr "Verwijder het wachtwoord of maak het bestand onleesbaar voor anderen." + +-#: locale/programs/localedef.c:139 +-msgid "Don't add new data to archive" +-msgstr "Geen nieuwe gegevens aan archief toevoegen" ++#: inet/ruserpass.c:277 ++#, c-format ++msgid "Unknown .netrc keyword %s" ++msgstr "Onbekend .netrc-sleutelwoord %s" + +-#: locale/programs/localedef.c:141 +-msgid "Add locales named by parameters to archive" +-msgstr "Locales genoemd door parameters aan archief toevoegen" ++#: libidn/nfkc.c:464 ++msgid "Character out of range for UTF-8" ++msgstr "Teken ligt buiten bereik voor UTF-8" + +-#: locale/programs/localedef.c:142 +-msgid "Replace existing archive content" +-msgstr "Bestaande inhoud van archief vervangen" ++#: locale/programs/charmap-dir.c:57 ++#, c-format ++msgid "cannot read character map directory `%s'" ++msgstr "kan tekenskaartmap '%s' niet lezen" + +-#: locale/programs/localedef.c:144 +-msgid "Remove locales named by parameters from archive" +-msgstr "Locales genoemd door parameters verwijderen uit archief" ++#: locale/programs/charmap.c:137 ++#, c-format ++msgid "character map file `%s' not found" ++msgstr "kan tekenskaartbestand '%s' niet vinden" + +-#: locale/programs/localedef.c:145 +-msgid "List content of archive" +-msgstr "Inhoud van archief opsommen" ++#: locale/programs/charmap.c:194 ++#, c-format ++msgid "default character map file `%s' not found" ++msgstr "kan standaard-tekenskaartbestand '%s' niet vinden" + +-#: locale/programs/localedef.c:147 +-msgid "locale.alias file to consult when making archive" +-msgstr "locale.alias bestand om te raadplegen bij het maken van een archief" ++#: locale/programs/charmap.c:257 ++#, c-format ++msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n" ++msgstr "" ++"tekenskaart '%s' is niet ASCII-compatibel;\n" ++"de locale voldoet niet aan ISO C\n" + +-#: locale/programs/localedef.c:152 +-msgid "Compile locale specification" +-msgstr "Locale specificatie compileren" ++#: locale/programs/charmap.c:336 ++#, c-format ++msgid "%s: must be greater than \n" ++msgstr "%s: moet groter zijn dan \n" + +-#: locale/programs/localedef.c:155 +-msgid "" +-"NAME\n" +-"[--add-to-archive|--delete-from-archive] FILE...\n" +-"--list-archive [FILE]" +-msgstr "" +-"NAAM\n" +-"[--add-to-archive|--delete-from-archive] BESTAND...\n" +-"--list-archive [BESTAND]" ++#: locale/programs/charmap.c:356 locale/programs/charmap.c:373 ++#: locale/programs/repertoire.c:174 ++#, c-format ++msgid "syntax error in prolog: %s" ++msgstr "syntaxfout in proloog: %s" + +-#: locale/programs/localedef.c:233 +-msgid "cannot create directory for output files" +-msgstr "kan map voor uitvoerbestanden niet aanmaken" ++#: locale/programs/charmap.c:357 ++msgid "invalid definition" ++msgstr "ongeldige definitie" + +-#: locale/programs/localedef.c:244 +-msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" +-msgstr "FATAAL: systeem definieert `_POSIX2_LOCALEDEF' niet" ++#: locale/programs/charmap.c:374 locale/programs/locfile.c:125 ++#: locale/programs/locfile.c:152 locale/programs/repertoire.c:175 ++msgid "bad argument" ++msgstr "onjuist argument" + +-#: locale/programs/localedef.c:258 locale/programs/localedef.c:274 +-#: locale/programs/localedef.c:599 locale/programs/localedef.c:619 ++#: locale/programs/charmap.c:402 + #, c-format +-msgid "cannot open locale definition file `%s'" +-msgstr "kan locale definitiebestand `%s' niet openen" ++msgid "duplicate definition of <%s>" ++msgstr "dubbele definitie van <%s>" + +-#: locale/programs/localedef.c:286 ++#: locale/programs/charmap.c:409 + #, c-format +-msgid "cannot write output files to `%s'" +-msgstr "kan uitvoerbestanden niet schrijven naar `%s'" ++msgid "value for <%s> must be 1 or greater" ++msgstr "waarde van <%s> moet groter of gelijk aan 1 zijn" + +-#: locale/programs/localedef.c:367 ++#: locale/programs/charmap.c:421 + #, c-format +-msgid "" +-"System's directory for character maps : %s\n" +-" repertoire maps: %s\n" +-" locale path : %s\n" +-"%s" +-msgstr "" +-"Systeemmap voor tekenafbeeldingen : %s\n" +-" repertoire afbeeldingen: %s\n" +-" locale pad : %s\n" +-"%s" +- +-#: locale/programs/localedef.c:567 +-msgid "circular dependencies between locale definitions" +-msgstr "circulaire afhankelijkheid tussen locale definities" ++msgid "value of <%s> must be greater or equal than the value of <%s>" ++msgstr "waarde van <%s> moet groter of gelijk aan de waarde van <%s> zijn" + +-#: locale/programs/localedef.c:573 ++#: locale/programs/charmap.c:444 locale/programs/repertoire.c:183 + #, c-format +-msgid "cannot add already read locale `%s' a second time" +-msgstr "kan al gelezen locale `%s' niet nogmaals toevoegen" +- +-#: locale/programs/locarchive.c:89 locale/programs/locarchive.c:259 +-msgid "cannot create temporary file" +-msgstr "kan tijdelijk bestand niet aanmaken" ++msgid "argument to <%s> must be a single character" ++msgstr "argument van <%s> moet een enkel teken zijn" + +-#: locale/programs/locarchive.c:118 locale/programs/locarchive.c:305 +-msgid "cannot initialize archive file" +-msgstr "kan archiefbestand niet initialiseren" ++#: locale/programs/charmap.c:470 ++msgid "character sets with locking states are not supported" ++msgstr "tekensets met blokkerende toestanden worden niet ondersteund" + +-#: locale/programs/locarchive.c:125 locale/programs/locarchive.c:312 +-msgid "cannot resize archive file" +-msgstr "kan grootte van archiefbestand niet aanpassen" ++#: locale/programs/charmap.c:497 locale/programs/charmap.c:551 ++#: locale/programs/charmap.c:583 locale/programs/charmap.c:677 ++#: locale/programs/charmap.c:732 locale/programs/charmap.c:773 ++#: locale/programs/charmap.c:814 ++#, c-format ++msgid "syntax error in %s definition: %s" ++msgstr "syntaxfout in definitie van %s: %s" + +-#: locale/programs/locarchive.c:134 locale/programs/locarchive.c:321 +-#: locale/programs/locarchive.c:511 +-msgid "cannot map archive header" +-msgstr "kan archiekop niet afbeelden" ++#: locale/programs/charmap.c:498 locale/programs/charmap.c:678 ++#: locale/programs/charmap.c:774 locale/programs/repertoire.c:230 ++msgid "no symbolic name given" ++msgstr "geen symbolische naam gegeven" + +-#: locale/programs/locarchive.c:156 +-msgid "failed to create new locale archive" +-msgstr "maken nieuw locale-archief mislukt" ++#: locale/programs/charmap.c:552 ++msgid "invalid encoding given" ++msgstr "ongeldige codering gegeven" + +-#: locale/programs/locarchive.c:168 +-msgid "cannot change mode of new locale archive" +-msgstr "kan modus van nieuwe locale-archief niet wijzigen" ++#: locale/programs/charmap.c:561 ++msgid "too few bytes in character encoding" ++msgstr "te weinig bytes in tekencodering" + +-#: locale/programs/locarchive.c:253 +-msgid "cannot map locale archive file" +-msgstr "kan lokaal archiefbestand niet afbeelden" ++#: locale/programs/charmap.c:563 ++msgid "too many bytes in character encoding" ++msgstr "te veel bytes in tekencodering" + +-#: locale/programs/locarchive.c:329 +-msgid "cannot lock new archive" +-msgstr "kan nieuw archief niet blokkeren" ++#: locale/programs/charmap.c:585 locale/programs/charmap.c:733 ++#: locale/programs/charmap.c:816 locale/programs/repertoire.c:296 ++msgid "no symbolic name given for end of range" ++msgstr "geen symbolische naam gegeven voor einde-van-bereik" + +-#: locale/programs/locarchive.c:380 +-msgid "cannot extend locale archive file" +-msgstr "kan locale-archiefbestand niet uitbreiden" ++#: locale/programs/charmap.c:609 locale/programs/locfile.c:818 ++#: locale/programs/repertoire.c:313 ++#, c-format ++msgid "`%1$s' definition does not end with `END %1$s'" ++msgstr "%1$s: definitie eindigt niet met 'END %1$s'" + +-#: locale/programs/locarchive.c:389 +-msgid "cannot change mode of resized locale archive" +-msgstr "kan modus van van grootte aangepast locale-archief niet wijzigen" ++#: locale/programs/charmap.c:642 ++msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" ++msgstr "na de definitie van CHARMAP zijn alleen definities van WIDTH toegestaan" + +-#: locale/programs/locarchive.c:397 +-msgid "cannot rename new archive" +-msgstr "kan nieuwe archief niet hernoemen" ++#: locale/programs/charmap.c:650 locale/programs/charmap.c:713 ++#, c-format ++msgid "value for %s must be an integer" ++msgstr "de waarde van %s moet een geheel getal zijn" + +-#: locale/programs/locarchive.c:450 ++#: locale/programs/charmap.c:841 + #, c-format +-msgid "cannot open locale archive \"%s\"" +-msgstr "kan locale-archief \"%s\" niet openen" ++msgid "%s: error in state machine" ++msgstr "%s: **interne fout** in toestandsmachine" + +-#: locale/programs/locarchive.c:455 ++#: locale/programs/charmap.c:849 locale/programs/ld-address.c:615 ++#: locale/programs/ld-collate.c:2650 locale/programs/ld-collate.c:3820 ++#: locale/programs/ld-ctype.c:2224 locale/programs/ld-ctype.c:2996 ++#: locale/programs/ld-identification.c:467 ++#: locale/programs/ld-measurement.c:253 locale/programs/ld-messages.c:347 ++#: locale/programs/ld-monetary.c:956 locale/programs/ld-name.c:322 ++#: locale/programs/ld-numeric.c:383 locale/programs/ld-paper.c:256 ++#: locale/programs/ld-telephone.c:328 locale/programs/ld-time.c:1236 ++#: locale/programs/locfile.c:825 locale/programs/repertoire.c:324 + #, c-format +-msgid "cannot stat locale archive \"%s\"" +-msgstr "kan lokale archief \"%s\" niet vinden" ++msgid "%s: premature end of file" ++msgstr "%s: voortijdig einde van bestand" + +-#: locale/programs/locarchive.c:474 ++#: locale/programs/charmap.c:868 locale/programs/charmap.c:879 + #, c-format +-msgid "cannot lock locale archive \"%s\"" +-msgstr "kan locale-archief \"%s\" niet blokkeren" ++msgid "unknown character `%s'" ++msgstr "onbekend teken '%s'" + +-#: locale/programs/locarchive.c:497 +-msgid "cannot read archive header" +-msgstr "kan archiefkop niet lezen" +- +-#: locale/programs/locarchive.c:557 ++#: locale/programs/charmap.c:887 + #, c-format +-msgid "locale '%s' already exists" +-msgstr "locale '%s' bestaat al" ++msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d" ++msgstr "het aantal bytes in de bytereeks is voor begin en einde van het bereik niet hetzelfde: %d tegenover %d" + +-#: locale/programs/locarchive.c:788 locale/programs/locarchive.c:803 +-#: locale/programs/locarchive.c:815 locale/programs/locarchive.c:827 +-#: locale/programs/locfile.c:343 +-msgid "cannot add to locale archive" +-msgstr "kan niet toevoegen aan locale-archief" ++#: locale/programs/charmap.c:992 locale/programs/ld-collate.c:2933 ++#: locale/programs/repertoire.c:419 ++msgid "invalid names for character range" ++msgstr "ongeldige namen voor tekenbereik" ++ ++#: locale/programs/charmap.c:1004 locale/programs/repertoire.c:431 ++msgid "hexadecimal range format should use only capital characters" ++msgstr "hexadecimale bereikopgave mag alleen hoofdletters bevatten" + +-#: locale/programs/locarchive.c:982 ++#: locale/programs/charmap.c:1022 + #, c-format +-msgid "locale alias file `%s' not found" +-msgstr "locale alias bestand `%s' niet gevonden" ++msgid "<%s> and <%s> are illegal names for range" ++msgstr "<%s> en <%s> zijn ongeldige namen voor een bereik" ++ ++#: locale/programs/charmap.c:1028 ++msgid "upper limit in range is not higher then lower limit" ++msgstr "bovengrens in bereik is kleiner dan ondergrens" ++ ++#: locale/programs/charmap.c:1086 ++msgid "resulting bytes for range not representable." ++msgstr "resulterende bytes voor bereik zijn niet te representeren" + +-#: locale/programs/locarchive.c:1126 ++#: locale/programs/ld-address.c:132 locale/programs/ld-collate.c:1532 ++#: locale/programs/ld-ctype.c:419 locale/programs/ld-identification.c:132 ++#: locale/programs/ld-measurement.c:93 locale/programs/ld-messages.c:96 ++#: locale/programs/ld-monetary.c:192 locale/programs/ld-name.c:93 ++#: locale/programs/ld-numeric.c:97 locale/programs/ld-paper.c:90 ++#: locale/programs/ld-telephone.c:93 locale/programs/ld-time.c:158 + #, c-format +-msgid "Adding %s\n" +-msgstr "Bezig met toevoegen %s\n" ++msgid "No definition for %s category found" ++msgstr "Geen definitie gevonden voor %s-categorie" + +-#: locale/programs/locarchive.c:1132 ++#: locale/programs/ld-address.c:143 locale/programs/ld-address.c:181 ++#: locale/programs/ld-address.c:199 locale/programs/ld-address.c:228 ++#: locale/programs/ld-address.c:300 locale/programs/ld-address.c:319 ++#: locale/programs/ld-address.c:332 locale/programs/ld-identification.c:145 ++#: locale/programs/ld-measurement.c:104 locale/programs/ld-monetary.c:204 ++#: locale/programs/ld-monetary.c:248 locale/programs/ld-monetary.c:264 ++#: locale/programs/ld-monetary.c:276 locale/programs/ld-name.c:104 ++#: locale/programs/ld-name.c:141 locale/programs/ld-numeric.c:111 ++#: locale/programs/ld-numeric.c:125 locale/programs/ld-paper.c:101 ++#: locale/programs/ld-paper.c:110 locale/programs/ld-telephone.c:104 ++#: locale/programs/ld-telephone.c:161 locale/programs/ld-time.c:174 ++#: locale/programs/ld-time.c:195 + #, c-format +-msgid "stat of \"%s\" failed: %s: ignored" +-msgstr "vinden van \"%s\" mislukt: %s: genegeerd" ++msgid "%s: field `%s' not defined" ++msgstr "%s: het veld '%s' is niet gedefinieerd" + +-#: locale/programs/locarchive.c:1138 ++#: locale/programs/ld-address.c:155 locale/programs/ld-address.c:207 ++#: locale/programs/ld-address.c:237 locale/programs/ld-address.c:275 ++#: locale/programs/ld-name.c:116 locale/programs/ld-telephone.c:116 + #, c-format +-msgid "\"%s\" is no directory; ignored" +-msgstr "\"%s\" is geen map; genegeerd" ++msgid "%s: field `%s' must not be empty" ++msgstr "%s: het veld '%s' mag niet leeg zijn" + +-#: locale/programs/locarchive.c:1145 ++#: locale/programs/ld-address.c:167 + #, c-format +-msgid "cannot open directory \"%s\": %s: ignored" +-msgstr "kan map \"%s\" niet openen; %s: genegeerd" ++msgid "%s: invalid escape `%%%c' sequence in field `%s'" ++msgstr "%s: ongeldige stuurcode '%%%c' in het veld '%s'" + +-#: locale/programs/locarchive.c:1217 ++#: locale/programs/ld-address.c:218 + #, c-format +-msgid "incomplete set of locale files in \"%s\"" +-msgstr "onvolledige verzameling van localebestanden in \"%s\"" ++msgid "%s: terminology language code `%s' not defined" ++msgstr "%s: terminologiecode '%s' is niet gedefinieerd" + +-#: locale/programs/locarchive.c:1281 ++#: locale/programs/ld-address.c:243 + #, c-format +-msgid "cannot read all files in \"%s\": ignored" +-msgstr "kan niet alle bestanden in \"%s\" lezen; genegeerd" ++msgid "%s: field `%s' must not be defined" ++msgstr "%s: het veld '%s' mag niet gedefinieerd zijn" + +-#: locale/programs/locarchive.c:1351 ++#: locale/programs/ld-address.c:257 locale/programs/ld-address.c:286 + #, c-format +-msgid "locale \"%s\" not in archive" +-msgstr "locale \"%s\" niet in archief" ++msgid "%s: language abbreviation `%s' not defined" ++msgstr "%s: taalafkorting '%s' is niet gedefinieerd" + +-#: locale/programs/locfile.c:132 ++#: locale/programs/ld-address.c:264 locale/programs/ld-address.c:292 ++#: locale/programs/ld-address.c:326 locale/programs/ld-address.c:338 + #, c-format +-msgid "argument to `%s' must be a single character" +-msgstr "argument aan `%s' moet een enkel teken zijn" ++msgid "%s: `%s' value does not match `%s' value" ++msgstr "%s: waarde van '%s' komt niet overeen met waarde van '%s'" + +-#: locale/programs/locfile.c:251 +-msgid "syntax error: not inside a locale definition section" +-msgstr "syntaxisfout: niet in localedefinitie-sectie" ++#: locale/programs/ld-address.c:311 ++#, c-format ++msgid "%s: numeric country code `%d' not valid" ++msgstr "%s: numerieke landcode '%d' is ongeldig" + +-#: locale/programs/locfile.c:625 ++#: locale/programs/ld-address.c:507 locale/programs/ld-address.c:544 ++#: locale/programs/ld-address.c:582 locale/programs/ld-ctype.c:2603 ++#: locale/programs/ld-identification.c:363 ++#: locale/programs/ld-measurement.c:220 locale/programs/ld-messages.c:300 ++#: locale/programs/ld-monetary.c:698 locale/programs/ld-monetary.c:733 ++#: locale/programs/ld-monetary.c:774 locale/programs/ld-name.c:279 ++#: locale/programs/ld-numeric.c:262 locale/programs/ld-paper.c:223 ++#: locale/programs/ld-telephone.c:287 locale/programs/ld-time.c:1125 ++#: locale/programs/ld-time.c:1167 + #, c-format +-msgid "cannot open output file `%s' for category `%s'" +-msgstr "kan uitvoerbestand `%s' niet openen voor categorie `%s'" ++msgid "%s: field `%s' declared more than once" ++msgstr "%s: het veld '%s' is meerdere keren gedeclareerd" + +-#: locale/programs/locfile.c:649 ++#: locale/programs/ld-address.c:511 locale/programs/ld-address.c:549 ++#: locale/programs/ld-identification.c:367 locale/programs/ld-messages.c:310 ++#: locale/programs/ld-monetary.c:702 locale/programs/ld-monetary.c:737 ++#: locale/programs/ld-name.c:283 locale/programs/ld-numeric.c:266 ++#: locale/programs/ld-telephone.c:291 locale/programs/ld-time.c:1019 ++#: locale/programs/ld-time.c:1088 locale/programs/ld-time.c:1130 + #, c-format +-msgid "failure while writing data for category `%s'" +-msgstr "fout bij schrijven gegevens voor categorie `%s'" ++msgid "%s: unknown character in field `%s'" ++msgstr "%s: onbekend teken in het veld '%s'" + +-#: locale/programs/locfile.c:745 ++#: locale/programs/ld-address.c:596 locale/programs/ld-collate.c:3802 ++#: locale/programs/ld-ctype.c:2976 locale/programs/ld-identification.c:448 ++#: locale/programs/ld-measurement.c:234 locale/programs/ld-messages.c:329 ++#: locale/programs/ld-monetary.c:938 locale/programs/ld-name.c:304 ++#: locale/programs/ld-numeric.c:365 locale/programs/ld-paper.c:238 ++#: locale/programs/ld-telephone.c:310 locale/programs/ld-time.c:1218 + #, c-format +-msgid "cannot create output file `%s' for category `%s'" +-msgstr "kan uitvoerbestand `%s' niet maken voor categorie `%s'" ++msgid "%s: incomplete `END' line" ++msgstr "%s: onvolledige 'END'-regel" + +-#: locale/programs/locfile.c:781 +-msgid "expect string argument for `copy'" +-msgstr "verwacht tekenreeks-argument voor `copy'" ++#: locale/programs/ld-address.c:599 locale/programs/ld-collate.c:2653 ++#: locale/programs/ld-collate.c:3804 locale/programs/ld-ctype.c:2227 ++#: locale/programs/ld-ctype.c:2979 locale/programs/ld-identification.c:451 ++#: locale/programs/ld-measurement.c:237 locale/programs/ld-messages.c:331 ++#: locale/programs/ld-monetary.c:940 locale/programs/ld-name.c:306 ++#: locale/programs/ld-numeric.c:367 locale/programs/ld-paper.c:240 ++#: locale/programs/ld-telephone.c:312 locale/programs/ld-time.c:1220 ++#, c-format ++msgid "%1$s: definition does not end with `END %1$s'" ++msgstr "%1$s: definitie eindigt niet met 'END %1$s'" + +-#: locale/programs/locfile.c:785 +-msgid "locale name should consist only of portable characters" +-msgstr "localenaam moet slechts bestaan uit portable tekens" ++#: locale/programs/ld-address.c:606 locale/programs/ld-collate.c:521 ++#: locale/programs/ld-collate.c:573 locale/programs/ld-collate.c:869 ++#: locale/programs/ld-collate.c:882 locale/programs/ld-collate.c:2640 ++#: locale/programs/ld-collate.c:3811 locale/programs/ld-ctype.c:1955 ++#: locale/programs/ld-ctype.c:2214 locale/programs/ld-ctype.c:2801 ++#: locale/programs/ld-ctype.c:2987 locale/programs/ld-identification.c:458 ++#: locale/programs/ld-measurement.c:244 locale/programs/ld-messages.c:338 ++#: locale/programs/ld-monetary.c:947 locale/programs/ld-name.c:313 ++#: locale/programs/ld-numeric.c:374 locale/programs/ld-paper.c:247 ++#: locale/programs/ld-telephone.c:319 locale/programs/ld-time.c:1227 ++#, c-format ++msgid "%s: syntax error" ++msgstr "%s: syntaxfout" + +-#: locale/programs/locfile.c:804 +-msgid "no other keyword shall be specified when `copy' is used" +-msgstr "geen ander sleutelwoord zal worden opgegeven als `copy' wordt gebruikt" ++#: locale/programs/ld-collate.c:396 ++#, c-format ++msgid "`%.*s' already defined in charmap" ++msgstr "'%.*s' is al gedefinieerd in tekenskaart" + +-#: locale/programs/repertoire.c:230 locale/programs/repertoire.c:271 +-#: locale/programs/repertoire.c:296 ++#: locale/programs/ld-collate.c:405 + #, c-format +-msgid "syntax error in repertoire map definition: %s" +-msgstr "syntaxisfout in repertoire afbeeldingsdefinitie: %s" ++msgid "`%.*s' already defined in repertoire" ++msgstr "`%.*s' is al gedefinieerd in repertoire" + +-#: locale/programs/repertoire.c:272 +-msgid "no or value given" +-msgstr "geen of waarde gegeven" ++#: locale/programs/ld-collate.c:412 ++#, c-format ++msgid "`%.*s' already defined as collating symbol" ++msgstr "'%.*s' is al gedefinieerd als sorteringssymbool" + +-#: locale/programs/repertoire.c:332 +-msgid "cannot save new repertoire map" +-msgstr "kan nieuwe repertoire afbeelding niet opslaan" ++#: locale/programs/ld-collate.c:419 ++#, c-format ++msgid "`%.*s' already defined as collating element" ++msgstr "'%.*s' is al gedefinieerd als sorteringselement" + +-#: locale/programs/repertoire.c:343 ++#: locale/programs/ld-collate.c:450 locale/programs/ld-collate.c:476 + #, c-format +-msgid "repertoire map file `%s' not found" +-msgstr "repertoire afbeeldingsbestand `%s' niet gevonden" ++msgid "%s: `forward' and `backward' are mutually excluding each other" ++msgstr "%s: 'forward' en 'backward' sluiten elkaar uit" + +-#: locale/programs/repertoire.c:450 ++#: locale/programs/ld-collate.c:460 locale/programs/ld-collate.c:486 ++#: locale/programs/ld-collate.c:502 + #, c-format +-msgid "<%s> and <%s> are invalid names for range" +-msgstr "<%s> en <%s> zijn ongeldige namen voor bereik" ++msgid "%s: `%s' mentioned more than once in definition of weight %d" ++msgstr "%s: '%s' wordt meerdere keren genoemd in definitie van gewicht %d" + +-#: locale/programs/repertoire.c:457 +-msgid "upper limit in range is not smaller then lower limit" +-msgstr "bovengrens in bereik is niet kleiner dan ondergrens" ++#: locale/programs/ld-collate.c:558 ++#, c-format ++msgid "%s: too many rules; first entry only had %d" ++msgstr "%s: te veel voorschriften; het eerste item had er slechts %d" + +-#: locale/programs/xmalloc.c:70 malloc/obstack.c:505 malloc/obstack.c:508 +-#: posix/getconf.c:1007 +-msgid "memory exhausted" +-msgstr "geheugen uitgeput" ++#: locale/programs/ld-collate.c:594 ++#, c-format ++msgid "%s: not enough sorting rules" ++msgstr "%s: niet genoeg sorteervoorschriften" + +-#: assert/assert-perr.c:57 ++#: locale/programs/ld-collate.c:759 + #, c-format +-msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n" +-msgstr "%s%s%s:%u: %s%sOnverwachte fout: %s.\n" ++msgid "%s: empty weight string not allowed" ++msgstr "%s: lege gewichtstekenreeks is niet toegestaan" + +-#: assert/assert.c:56 ++#: locale/programs/ld-collate.c:854 + #, c-format +-msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" +-msgstr "%s%s%s:%u: %s%sBewering `%s' mislukt.\n" ++msgid "%s: weights must use the same ellipsis symbol as the name" ++msgstr "%s: gewichten moeten hetzelfde beletselteken gebruiken als de naam" + +-#: intl/tst-codeset.c:40 intl/tst-codeset.c:50 +-msgid "cheese" +-msgstr "kaas" ++#: locale/programs/ld-collate.c:910 ++#, c-format ++msgid "%s: too many values" ++msgstr "%s: te veel waarden" + +-#: intl/tst-gettext2.c:37 +-msgid "First string for testing." +-msgstr "Eerste tekenreeks om te testen." ++#: locale/programs/ld-collate.c:1029 locale/programs/ld-collate.c:1204 ++#, c-format ++msgid "order for `%.*s' already defined at %s:%Zu" ++msgstr "sorteervolgorde voor '%.*s' is al gedefinieerd in %s:%Zu" + +-#: intl/tst-gettext2.c:38 +-msgid "Another string for testing." +-msgstr "Een andere tekenreeks om te testen." ++#: locale/programs/ld-collate.c:1079 ++#, c-format ++msgid "%s: the start and the end symbol of a range must stand for characters" ++msgstr "%s: het begin- en eindsymbool van een bereik moeten enkele tekens aanduiden" + +-#: catgets/gencat.c:111 catgets/gencat.c:115 nscd/nscd.c:88 +-msgid "NAME" +-msgstr "NAAM" ++#: locale/programs/ld-collate.c:1106 ++#, c-format ++msgid "%s: byte sequences of first and last character must have the same length" ++msgstr "%s: de bytereeksen van het eerste en laatste bereikteken moeten dezelfde lengte hebben" + +-#: catgets/gencat.c:112 +-msgid "Create C header file NAME containing symbol definitions" +-msgstr "C-headerbestand NAAM maken met daarin symbooldefinities" ++#: locale/programs/ld-collate.c:1148 ++#, c-format ++msgid "%s: byte sequence of first character of sequence is not lower than that of the last character" ++msgstr "%s: de bytereeks van het eerste bereikteken is niet kleiner dan de bytereeks van het laatste bereikteken" + +-#: catgets/gencat.c:114 +-msgid "Do not use existing catalog, force new output file" +-msgstr "Niet bestaande catalogus gebruiken, maar een nieuw uitvoerbestand forceren" ++#: locale/programs/ld-collate.c:1273 ++#, c-format ++msgid "%s: symbolic range ellipsis must not directly follow `order_start'" ++msgstr "%s: beletselteken van symbolenbereik mag niet direct na 'order_start' staan" + +-#: catgets/gencat.c:115 +-msgid "Write output to file NAME" +-msgstr "Uitvoer naar bestand NAAM schrijven" ++#: locale/programs/ld-collate.c:1277 ++#, c-format ++msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'" ++msgstr "%s: beletselteken van symbolenbereik mag niet direct voor 'order_end' staan" + +-#: catgets/gencat.c:120 +-msgid "" +-"Generate message catalog. If INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n" +-"is -, output is written to standard output.\n" +-msgstr "" +-"Berichtencatalogus genereren. Als INVOERBESTAND - is, wordt invoer gelezen van standaard invoer.\n" +-"Als UITVOERBESTAND - is wordt uitvoer geschreven naar standaard uitvoer.\n" ++#: locale/programs/ld-collate.c:1297 locale/programs/ld-ctype.c:1475 ++#, c-format ++msgid "`%s' and `%.*s' are not valid names for symbolic range" ++msgstr "'%s' en '%.*s' zijn geen geldige namen voor een symbolenbereik" + +-#: catgets/gencat.c:125 +-msgid "" +-"-o OUTPUT-FILE [INPUT-FILE]...\n" +-"[OUTPUT-FILE [INPUT-FILE]...]" +-msgstr "" +-"-o UITVOERBESTAND [INVOERBESTAND]...\n" +-"[UITVOERBESTAND [INVOERBESTAND]...]" ++#: locale/programs/ld-collate.c:1346 locale/programs/ld-collate.c:3739 ++#, c-format ++msgid "%s: order for `%.*s' already defined at %s:%Zu" ++msgstr "%s: sorteervolgorde van '%.*s' is al gedefinieerd in %s:%Zu" + +-#: catgets/gencat.c:282 +-msgid "*standard input*" +-msgstr "*standaard invoer*" ++#: locale/programs/ld-collate.c:1355 ++#, c-format ++msgid "%s: `%s' must be a character" ++msgstr "%s: '%s' moet een teken zijn" + +-#: catgets/gencat.c:417 catgets/gencat.c:494 +-msgid "illegal set number" +-msgstr "ongeldig verzamelingsgetal" ++#: locale/programs/ld-collate.c:1548 ++#, c-format ++msgid "%s: `position' must be used for a specific level in all sections or none" ++msgstr "%s: 'position' moet voor een specifiek niveau gebruikt worden ofwel in alle secties ofwel in geen" + +-#: catgets/gencat.c:444 +-msgid "duplicate set definition" +-msgstr "dubbele verzamelingsdefinitie" ++#: locale/programs/ld-collate.c:1573 ++#, c-format ++msgid "symbol `%s' not defined" ++msgstr "symbool '%s' is niet gedefinieerd" + +-#: catgets/gencat.c:446 catgets/gencat.c:623 catgets/gencat.c:677 +-msgid "this is the first definition" +-msgstr "dit is de eerste definitie" ++#: locale/programs/ld-collate.c:1649 locale/programs/ld-collate.c:1755 ++#, c-format ++msgid "symbol `%s' has the same encoding as" ++msgstr "symbool '%s' heeft dezelfde codering als" + +-#: catgets/gencat.c:522 ++#: locale/programs/ld-collate.c:1653 locale/programs/ld-collate.c:1759 + #, c-format +-msgid "unknown set `%s'" +-msgstr "onbekende verzameling `%s'" ++msgid "symbol `%s'" ++msgstr "symbool '%s'" + +-#: catgets/gencat.c:563 +-msgid "invalid quote character" +-msgstr "ongeldig aanhaalteken" ++#: locale/programs/ld-collate.c:1801 ++#, c-format ++msgid "no definition of `UNDEFINED'" ++msgstr "geen definitie van 'UNDEFINED'" + +-#: catgets/gencat.c:576 ++#: locale/programs/ld-collate.c:1830 + #, c-format +-msgid "unknown directive `%s': line ignored" +-msgstr "onbekende richting `%s': regel genegeerd" ++msgid "too many errors; giving up" ++msgstr "te veel fouten -- gestopt" + +-#: catgets/gencat.c:621 +-msgid "duplicated message number" +-msgstr "dubbel berichtgetal" ++#: locale/programs/ld-collate.c:2738 ++#, c-format ++msgid "%s: duplicate definition of `%s'" ++msgstr "%s: dubbele definitie van '%s'" + +-#: catgets/gencat.c:674 +-msgid "duplicated message identifier" +-msgstr "dubbele berichtidentificeerder" ++#: locale/programs/ld-collate.c:2774 ++#, c-format ++msgid "%s: duplicate declaration of section `%s'" ++msgstr "%s: dubbele declaratie van sectie '%s'" + +-#: catgets/gencat.c:731 +-msgid "invalid character: message ignored" +-msgstr "ongeldig teken: bericht genegeerd" ++#: locale/programs/ld-collate.c:2913 ++#, c-format ++msgid "%s: unknown character in collating symbol name" ++msgstr "%s: onbekend teken in naam van sorteringssymbool" + +-#: catgets/gencat.c:774 +-msgid "invalid line" +-msgstr "ongeldige regel" ++#: locale/programs/ld-collate.c:3045 ++#, c-format ++msgid "%s: unknown character in equivalent definition name" ++msgstr "%s: onbekend teken in naam van equivalentiedefinitie" + +-#: catgets/gencat.c:828 +-msgid "malformed line ignored" +-msgstr "misvormde regel genegeerd" ++#: locale/programs/ld-collate.c:3058 ++#, c-format ++msgid "%s: unknown character in equivalent definition value" ++msgstr "%s: onbekend teken in waarde van equivalentiedefinitie" + +-#: catgets/gencat.c:992 catgets/gencat.c:1033 ++#: locale/programs/ld-collate.c:3068 + #, c-format +-msgid "cannot open output file `%s'" +-msgstr "kan uitvoerbestand `%s' niet openen" ++msgid "%s: unknown symbol `%s' in equivalent definition" ++msgstr "%s: onbekend symbool '%s' in equivalentiedefinitie" + +-#: catgets/gencat.c:1217 +-msgid "unterminated message" +-msgstr "onafgesloten bericht" ++#: locale/programs/ld-collate.c:3077 ++msgid "error while adding equivalent collating symbol" ++msgstr "fout bij toevoegen van equivalent sorteringssymbool" + +-#: catgets/gencat.c:1241 +-msgid "while opening old catalog file" +-msgstr "bij openen oude catalogusbestand" ++#: locale/programs/ld-collate.c:3107 ++#, c-format ++msgid "duplicate definition of script `%s'" ++msgstr "dubbele definitie van script '%s'" + +-#: catgets/gencat.c:1332 +-msgid "conversion modules not available" +-msgstr "conversiemodules niet beschikbaar" ++#: locale/programs/ld-collate.c:3155 ++#, c-format ++msgid "%s: unknown section name `%s'" ++msgstr "%s: onbekende sectienaam '%s'" + +-#: catgets/gencat.c:1358 +-msgid "cannot determine escape character" +-msgstr "kan stuurcode niet bepalen" ++#: locale/programs/ld-collate.c:3183 ++#, c-format ++msgid "%s: multiple order definitions for section `%s'" ++msgstr "%s: meerdere sorteervolgorde-definities voor sectie '%s'" + +-#: stdlib/../sysdeps/unix/sysv/linux/ia64/makecontext.c:63 ++#: locale/programs/ld-collate.c:3208 + #, c-format +-msgid "makecontext: does not know how to handle more than 8 arguments\n" +-msgstr "makecontext: weet niet hoe om te gaan met meer dan 8 argumenten\n" ++msgid "%s: invalid number of sorting rules" ++msgstr "%s: ongeldig aantal sorteervoorschriften" + +-#: stdio-common/../sysdeps/gnu/errlist.c:12 posix/regcomp.c:147 +-#: nis/nis_error.c:29 nis/ypclnt.c:778 nis/ypclnt.c:852 +-msgid "Success" +-msgstr "Gelukt" ++#: locale/programs/ld-collate.c:3235 ++#, c-format ++msgid "%s: multiple order definitions for unnamed section" ++msgstr "%s: meerdere sorteervolgorde-definities voor naamloze sectie" + +-#. TRANS Operation not permitted; only the owner of the file (or other resource) +-#. TRANS or processes with special privileges can perform the operation. +-#: stdio-common/../sysdeps/gnu/errlist.c:17 +-msgid "Operation not permitted" +-msgstr "Bewerking niet toegestaan" ++#: locale/programs/ld-collate.c:3289 locale/programs/ld-collate.c:3417 ++#: locale/programs/ld-collate.c:3780 ++#, c-format ++msgid "%s: missing `order_end' keyword" ++msgstr "%s: ontbrekend sleutelwoord 'order_end'" + +-#. TRANS No such file or directory. This is a ``file doesn't exist'' error +-#. TRANS for ordinary files that are referenced in contexts where they are +-#. TRANS expected to already exist. +-#: stdio-common/../sysdeps/gnu/errlist.c:28 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:32 +-msgid "No such file or directory" +-msgstr "Onbekend bestand of map" ++#: locale/programs/ld-collate.c:3350 ++#, c-format ++msgid "%s: order for collating symbol %.*s not yet defined" ++msgstr "%s: sorteervolgorde voor symbool '%.*s' is nog niet gedefinieerd" + +-#. TRANS No process matches the specified process ID. +-#: stdio-common/../sysdeps/gnu/errlist.c:37 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:33 +-msgid "No such process" +-msgstr "Onbekend proces" ++#: locale/programs/ld-collate.c:3368 ++#, c-format ++msgid "%s: order for collating element %.*s not yet defined" ++msgstr "%s: sorteervolgorde voor element '%.*s' is nog niet gedefinieerd" + +-#. TRANS Interrupted function call; an asynchronous signal occurred and prevented +-#. TRANS completion of the call. When this happens, you should try the call +-#. TRANS again. +-#. TRANS +-#. TRANS You can choose to have functions resume after a signal that is handled, +-#. TRANS rather than failing with @code{EINTR}; see @ref{Interrupted +-#. TRANS Primitives}. +-#: stdio-common/../sysdeps/gnu/errlist.c:52 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:34 +-msgid "Interrupted system call" +-msgstr "Onderbroken systeemaanroep" ++#: locale/programs/ld-collate.c:3379 ++#, c-format ++msgid "%s: cannot reorder after %.*s: symbol not known" ++msgstr "%s: kan niet herordenen na '%.*s': dit symbool is onbekend" + +-#. TRANS Input/output error; usually used for physical read or write errors. +-#: stdio-common/../sysdeps/gnu/errlist.c:61 +-msgid "Input/output error" +-msgstr "Invoer/uitvoer fout" ++#: locale/programs/ld-collate.c:3431 locale/programs/ld-collate.c:3792 ++#, c-format ++msgid "%s: missing `reorder-end' keyword" ++msgstr "%s: ontbrekend sleutelwoord 'reorder-end'" + +-#. TRANS No such device or address. The system tried to use the device +-#. TRANS represented by a file you specified, and it couldn't find the device. +-#. TRANS This can mean that the device file was installed incorrectly, or that +-#. TRANS the physical device is missing or not correctly attached to the +-#. TRANS computer. +-#: stdio-common/../sysdeps/gnu/errlist.c:74 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:36 +-msgid "No such device or address" +-msgstr "Onbekend apparaat of adres" ++#: locale/programs/ld-collate.c:3465 locale/programs/ld-collate.c:3664 ++#, c-format ++msgid "%s: section `%.*s' not known" ++msgstr "%s: sectie '%.*s' is onbekend" + +-#. TRANS Argument list too long; used when the arguments passed to a new program +-#. TRANS being executed with one of the @code{exec} functions (@pxref{Executing a +-#. TRANS File}) occupy too much memory space. This condition never arises in the +-#. TRANS GNU system. +-#: stdio-common/../sysdeps/gnu/errlist.c:86 +-msgid "Argument list too long" +-msgstr "Argumentlijst te lang" ++#: locale/programs/ld-collate.c:3530 ++#, c-format ++msgid "%s: bad symbol <%.*s>" ++msgstr "%s: onjuist symbool <%.*s>" + +-#. TRANS Invalid executable file format. This condition is detected by the +-#. TRANS @code{exec} functions; see @ref{Executing a File}. +-#: stdio-common/../sysdeps/gnu/errlist.c:96 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:38 +-msgid "Exec format error" +-msgstr "Uitvoerbaar formaat fout" ++#: locale/programs/ld-collate.c:3727 ++#, c-format ++msgid "%s: cannot have `%s' as end of ellipsis range" ++msgstr "%s: '%s' kan geen einde van bereik zijn" + +-#. TRANS Bad file descriptor; for example, I/O on a descriptor that has been +-#. TRANS closed or reading from a descriptor open only for writing (or vice +-#. TRANS versa). +-#: stdio-common/../sysdeps/gnu/errlist.c:107 +-msgid "Bad file descriptor" +-msgstr "Slechte bestandsbeschrijver" ++#: locale/programs/ld-collate.c:3776 ++#, c-format ++msgid "%s: empty category description not allowed" ++msgstr "%s: lege categoriebeschrijving is niet toegestaan" + +-#. TRANS There are no child processes. This error happens on operations that are +-#. TRANS supposed to manipulate child processes, when there aren't any processes +-#. TRANS to manipulate. +-#: stdio-common/../sysdeps/gnu/errlist.c:118 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:40 +-msgid "No child processes" +-msgstr "Geen kindprocessen" ++#: locale/programs/ld-collate.c:3795 ++#, c-format ++msgid "%s: missing `reorder-sections-end' keyword" ++msgstr "%s: ontbrekend sleutelwoord 'reorder-sections-end'" + +-#. TRANS Deadlock avoided; allocating a system resource would have resulted in a +-#. TRANS deadlock situation. The system does not guarantee that it will notice +-#. TRANS all such situations. This error means you got lucky and the system +-#. TRANS noticed; it might just hang. @xref{File Locks}, for an example. +-#: stdio-common/../sysdeps/gnu/errlist.c:130 +-msgid "Resource deadlock avoided" +-msgstr "Volledige blokkering van bron omzeild" ++#: locale/programs/ld-ctype.c:438 ++#, c-format ++msgid "No character set name specified in charmap" ++msgstr "Geen tekensetnaam aangegeven in tekenskaart" + +-#. TRANS No memory available. The system cannot allocate more virtual memory +-#. TRANS because its capacity is full. +-#: stdio-common/../sysdeps/gnu/errlist.c:140 +-msgid "Cannot allocate memory" +-msgstr "Kan geen geheugen toewijzen" ++#: locale/programs/ld-ctype.c:467 ++#, c-format ++msgid "character L'\\u%0*x' in class `%s' must be in class `%s'" ++msgstr "teken L'\\u%0*x' in klasse '%s' moet in klasse '%s' zitten" + +-#. TRANS Permission denied; the file permissions do not allow the attempted operation. +-#: stdio-common/../sysdeps/gnu/errlist.c:149 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:43 +-#: nis/nis_error.c:39 nis/ypclnt.c:808 +-msgid "Permission denied" +-msgstr "Toegang geweigerd" ++#: locale/programs/ld-ctype.c:482 ++#, c-format ++msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'" ++msgstr "teken L'\\u%0*x' in klasse '%s' mag niet in klasse '%s' zitten" + +-#. TRANS Bad address; an invalid pointer was detected. +-#. TRANS In the GNU system, this error never happens; you get a signal instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:159 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:44 +-msgid "Bad address" +-msgstr "Slecht adres" ++#: locale/programs/ld-ctype.c:496 locale/programs/ld-ctype.c:554 ++#, c-format ++msgid "internal error in %s, line %u" ++msgstr "**interne fout** in %s, regel %u" ++ ++#: locale/programs/ld-ctype.c:525 ++#, c-format ++msgid "character '%s' in class `%s' must be in class `%s'" ++msgstr "teken '%s' in klasse '%s' moet in klasse '%s' zitten" ++ ++#: locale/programs/ld-ctype.c:541 ++#, c-format ++msgid "character '%s' in class `%s' must not be in class `%s'" ++msgstr "teken '%s' in klasse '%s' mag niet in klasse '%s' zitten" ++ ++#: locale/programs/ld-ctype.c:571 locale/programs/ld-ctype.c:609 ++#, c-format ++msgid " character not in class `%s'" ++msgstr "-teken zit niet in klasse '%s'" ++ ++#: locale/programs/ld-ctype.c:583 locale/programs/ld-ctype.c:620 ++#, c-format ++msgid " character must not be in class `%s'" ++msgstr "-teken mag niet in klasse '%s' zitten" ++ ++#: locale/programs/ld-ctype.c:598 ++#, c-format ++msgid "character not defined in character map" ++msgstr "-teken is niet gedefinieerd in tekenskaart" ++ ++#: locale/programs/ld-ctype.c:712 ++#, c-format ++msgid "`digit' category has not entries in groups of ten" ++msgstr "het aantal items in de cijferscategorie is geen veelvoud van tien" ++ ++#: locale/programs/ld-ctype.c:761 ++#, c-format ++msgid "no input digits defined and none of the standard names in the charmap" ++msgstr "er zijn geen invoercijfers gedefinieerd en geen van de standaardnamen zit in de tekenskaart" ++ ++#: locale/programs/ld-ctype.c:826 ++#, c-format ++msgid "not all characters used in `outdigit' are available in the charmap" ++msgstr "niet alle tekens gebruikt in 'outdigit' zijn beschikbaar in de tekenskaart" ++ ++#: locale/programs/ld-ctype.c:843 ++#, c-format ++msgid "not all characters used in `outdigit' are available in the repertoire" ++msgstr "niet alle tekens gebruikt in 'outdigit' zijn beschikbaar in het repertoire" ++ ++#: locale/programs/ld-ctype.c:1243 ++#, c-format ++msgid "character class `%s' already defined" ++msgstr "tekenklasse '%s' is al gedefinieerd" ++ ++#: locale/programs/ld-ctype.c:1249 ++#, c-format ++msgid "implementation limit: no more than %Zd character classes allowed" ++msgstr "implementatiegrens: er zijn niet meer dan %Zd tekenklasses toegestaan" ++ ++#: locale/programs/ld-ctype.c:1275 ++#, c-format ++msgid "character map `%s' already defined" ++msgstr "tekenskaart '%s' is al gedefinieerd" ++ ++#: locale/programs/ld-ctype.c:1281 ++#, c-format ++msgid "implementation limit: no more than %d character maps allowed" ++msgstr "implementatiegrens: er zijn niet meer dan %d tekenskaarten toegestaan" ++ ++#: locale/programs/ld-ctype.c:1546 locale/programs/ld-ctype.c:1671 ++#: locale/programs/ld-ctype.c:1777 locale/programs/ld-ctype.c:2466 ++#: locale/programs/ld-ctype.c:3462 ++#, c-format ++msgid "%s: field `%s' does not contain exactly ten entries" ++msgstr "%s: het veld '%s' bevat niet precies tien items" ++ ++#: locale/programs/ld-ctype.c:1574 locale/programs/ld-ctype.c:2145 ++#, c-format ++msgid "to-value of range is smaller than from-value " ++msgstr "eindwaarde van bereik is kleiner dan beginwaarde " ++ ++#: locale/programs/ld-ctype.c:1701 ++msgid "start and end character sequence of range must have the same length" ++msgstr "begin- en eindbytereeks van bereik moeten dezelfde lengte hebben" ++ ++#: locale/programs/ld-ctype.c:1708 ++msgid "to-value character sequence is smaller than from-value sequence" ++msgstr "eindwaarde is kleiner dan beginwaarde" ++ ++#: locale/programs/ld-ctype.c:2065 locale/programs/ld-ctype.c:2116 ++msgid "premature end of `translit_ignore' definition" ++msgstr "voortijdig einde van definitie van 'translit_ignore'" ++ ++#: locale/programs/ld-ctype.c:2071 locale/programs/ld-ctype.c:2122 ++#: locale/programs/ld-ctype.c:2164 ++msgid "syntax error" ++msgstr "syntaxfout" ++ ++#: locale/programs/ld-ctype.c:2298 ++#, c-format ++msgid "%s: syntax error in definition of new character class" ++msgstr "%s: syntaxfout in definitie van nieuwe tekenklasse" ++ ++#: locale/programs/ld-ctype.c:2313 ++#, c-format ++msgid "%s: syntax error in definition of new character map" ++msgstr "%s: syntaxfout in definitie van nieuwe tekenskaart" ++ ++#: locale/programs/ld-ctype.c:2488 ++msgid "ellipsis range must be marked by two operands of same type" ++msgstr "een bereik met een beletselteken moet twee parameters van dezelfde soort bevatten" ++ ++#: locale/programs/ld-ctype.c:2497 ++msgid "with symbolic name range values the absolute ellipsis `...' must not be used" ++msgstr "in een bereik met symbolische namen mag het absolute beletselteken '...' niet gebruikt worden" ++ ++#: locale/programs/ld-ctype.c:2512 ++msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" ++msgstr "in een bereik met UCS-waarden moet het hexadecimale symbolische beletselsteken '..' gebruikt worden" ++ ++#: locale/programs/ld-ctype.c:2526 ++msgid "with character code range values one must use the absolute ellipsis `...'" ++msgstr "in een bereik met tekencodes moet het absolute beletselteken '...' gebruikt worden" ++ ++#: locale/programs/ld-ctype.c:2677 ++#, c-format ++msgid "duplicated definition for mapping `%s'" ++msgstr "dubbele definitie van afbeelding '%s'" ++ ++#: locale/programs/ld-ctype.c:2763 locale/programs/ld-ctype.c:2907 ++#, c-format ++msgid "%s: `translit_start' section does not end with `translit_end'" ++msgstr "%s: sectie 'translit_start' eindigt niet met 'translit_end'" ++ ++#: locale/programs/ld-ctype.c:2858 ++#, c-format ++msgid "%s: duplicate `default_missing' definition" ++msgstr "%s: dubbele definitie van 'default_missing'" ++ ++#: locale/programs/ld-ctype.c:2863 ++msgid "previous definition was here" ++msgstr "de vorige definitie was hier" ++ ++#: locale/programs/ld-ctype.c:2885 ++#, c-format ++msgid "%s: no representable `default_missing' definition found" ++msgstr "%s: geen representeerbare definitie van 'default_missing' gevonden" ++ ++#: locale/programs/ld-ctype.c:3038 ++#, c-format ++msgid "%s: character `%s' not defined in charmap while needed as default value" ++msgstr "%s: teken '%s' is niet gedefinieerd maar is nodig als standaardwaarde" ++ ++#: locale/programs/ld-ctype.c:3043 locale/programs/ld-ctype.c:3127 ++#: locale/programs/ld-ctype.c:3147 locale/programs/ld-ctype.c:3168 ++#: locale/programs/ld-ctype.c:3189 locale/programs/ld-ctype.c:3210 ++#: locale/programs/ld-ctype.c:3231 locale/programs/ld-ctype.c:3271 ++#: locale/programs/ld-ctype.c:3292 locale/programs/ld-ctype.c:3359 ++#, c-format ++msgid "%s: character `%s' in charmap not representable with one byte" ++msgstr "%s: teken '%s' in de tekenskaart is niet te representeren met één byte" ++ ++#: locale/programs/ld-ctype.c:3122 locale/programs/ld-ctype.c:3142 ++#: locale/programs/ld-ctype.c:3184 locale/programs/ld-ctype.c:3205 ++#: locale/programs/ld-ctype.c:3226 locale/programs/ld-ctype.c:3266 ++#: locale/programs/ld-ctype.c:3287 locale/programs/ld-ctype.c:3354 ++#: locale/programs/ld-ctype.c:3396 locale/programs/ld-ctype.c:3421 ++#, c-format ++msgid "%s: character `%s' not defined while needed as default value" ++msgstr "%s: teken '%s' is niet gedefinieerd maar is nodig als standaardwaarde" ++ ++#: locale/programs/ld-ctype.c:3163 ++#, c-format ++msgid "character `%s' not defined while needed as default value" ++msgstr "teken '%s' is niet gedefinieerd maar is nodig als standaardwaarde" ++ ++#: locale/programs/ld-ctype.c:3403 locale/programs/ld-ctype.c:3428 ++#, c-format ++msgid "%s: character `%s' needed as default value not representable with one byte" ++msgstr "%s: teken '%s' is nodig als standaardwaarde maar niet te representeren met één byte" ++ ++#: locale/programs/ld-ctype.c:3483 ++#, c-format ++msgid "no output digits defined and none of the standard names in the charmap" ++msgstr "er zijn geen uitvoercijfers gedefinieerd en geen van de standaardnamen zit in de tekenskaart" ++ ++#: locale/programs/ld-ctype.c:3774 ++#, c-format ++msgid "%s: transliteration data from locale `%s' not available" ++msgstr "%s: transliteratiegegevens van locale '%s' zijn niet beschikbaar" ++ ++#: locale/programs/ld-ctype.c:3875 ++#, c-format ++msgid "%s: table for class \"%s\": %lu bytes\n" ++msgstr "%s: tabel voor klasse \"%s\": %lu bytes\n" ++ ++#: locale/programs/ld-ctype.c:3944 ++#, c-format ++msgid "%s: table for map \"%s\": %lu bytes\n" ++msgstr "%s: tabel voor kaart \"%s\": %lu bytes\n" ++ ++#: locale/programs/ld-ctype.c:4077 ++#, c-format ++msgid "%s: table for width: %lu bytes\n" ++msgstr "%s: tabel voor breedte: %lu bytes\n" ++ ++#: locale/programs/ld-identification.c:169 ++#, c-format ++msgid "%s: no identification for category `%s'" ++msgstr "%s: geen identificatie voor categorie '%s'" ++ ++#: locale/programs/ld-identification.c:434 ++#, c-format ++msgid "%s: duplicate category version definition" ++msgstr "%s: dubbele definitie van categorieversie" ++ ++#: locale/programs/ld-measurement.c:112 ++#, c-format ++msgid "%s: invalid value for field `%s'" ++msgstr "%s: ongeldige waarde voor het veld '%s'" ++ ++#: locale/programs/ld-messages.c:113 locale/programs/ld-messages.c:147 ++#, c-format ++msgid "%s: field `%s' undefined" ++msgstr "%s: het veld '%s' is ongedefinieerd" ++ ++#: locale/programs/ld-messages.c:120 locale/programs/ld-messages.c:154 ++#, c-format ++msgid "%s: value for field `%s' must not be an empty string" ++msgstr "%s: de waarde voor het veld '%s' mag geen lege tekenreeks zijn" ++ ++#: locale/programs/ld-messages.c:136 locale/programs/ld-messages.c:170 ++#, c-format ++msgid "%s: no correct regular expression for field `%s': %s" ++msgstr "%s: geen juiste reguliere expressie voor het veld '%s': %s" ++ ++#: locale/programs/ld-monetary.c:222 ++#, c-format ++msgid "%s: value of field `int_curr_symbol' has wrong length" ++msgstr "%s: de waarde van het veld 'int_curr_symbol' heeft een verkeerde lengte" ++ ++#: locale/programs/ld-monetary.c:235 ++#, c-format ++msgid "%s: value of field `int_curr_symbol' does not correspond to a valid name in ISO 4217" ++msgstr "%s: de waarde van het veld 'int_curr_symbol' is geen geldige naam uit ISO 4217" ++ ++#: locale/programs/ld-monetary.c:254 locale/programs/ld-numeric.c:117 ++#, c-format ++msgid "%s: value for field `%s' must not be the empty string" ++msgstr "%s: de waarde voor het veld '%s' mag geen lege tekenreeks zijn" ++ ++#: locale/programs/ld-monetary.c:282 locale/programs/ld-monetary.c:312 ++#, c-format ++msgid "%s: value for field `%s' must be in range %d...%d" ++msgstr "%s: de waarde voor het veld '%s' moet binnen het bereik %d...%d liggen" ++ ++#: locale/programs/ld-monetary.c:744 locale/programs/ld-numeric.c:273 ++#, c-format ++msgid "%s: value for field `%s' must be a single character" ++msgstr "%s: de waarde voor het veld '%s' moet een enkel teken zijn" ++ ++#: locale/programs/ld-monetary.c:841 locale/programs/ld-numeric.c:317 ++#, c-format ++msgid "%s: `-1' must be last entry in `%s' field" ++msgstr "%s: '-1' moet het laatste item in het veld '%s' zijn" ++ ++#: locale/programs/ld-monetary.c:863 locale/programs/ld-numeric.c:334 ++#, c-format ++msgid "%s: values for field `%s' must be smaller than 127" ++msgstr "%s: de waarden in het veld '%s' moeten kleiner zijn dan 127" ++ ++#: locale/programs/ld-monetary.c:906 ++msgid "conversion rate value cannot be zero" ++msgstr "waarde van conversiekoers kan niet nul zijn" ++ ++#: locale/programs/ld-name.c:128 locale/programs/ld-telephone.c:125 ++#: locale/programs/ld-telephone.c:148 ++#, c-format ++msgid "%s: invalid escape sequence in field `%s'" ++msgstr "%s: ongeldige stuurcode in het veld '%s'" ++ ++#: locale/programs/ld-time.c:246 ++#, c-format ++msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'" ++msgstr "%s: de richtingsaanduiding in tekenreeks %Zd in het veld 'era' is niet '+' of '-'" ++ ++#: locale/programs/ld-time.c:257 ++#, c-format ++msgid "%s: direction flag in string %Zd in `era' field is not a single character" ++msgstr "%s: de richtingsaanduiding in tekenreeks %Zd in het veld 'era' is niet een enkel teken" ++ ++#: locale/programs/ld-time.c:270 ++#, c-format ++msgid "%s: invalid number for offset in string %Zd in `era' field" ++msgstr "%s: ongeldig getal voor verplaatsing in tekenreeks %Zd in het veld 'era'" ++ ++#: locale/programs/ld-time.c:278 ++#, c-format ++msgid "%s: garbage at end of offset value in string %Zd in `era' field" ++msgstr "%s: rommel aan het einde van verplaatsingswaarde in tekenreeks %Zd in het veld 'era'" ++ ++#: locale/programs/ld-time.c:329 ++#, c-format ++msgid "%s: invalid starting date in string %Zd in `era' field" ++msgstr "%s: ongeldige begindatum in tekenreeks %Zd in het veld 'era'" ++ ++#: locale/programs/ld-time.c:338 ++#, c-format ++msgid "%s: garbage at end of starting date in string %Zd in `era' field " ++msgstr "%s: rommel aan het einde van de begindatum in tekenreeks %Zd in het veld 'era'" ++ ++#: locale/programs/ld-time.c:357 ++#, c-format ++msgid "%s: starting date is invalid in string %Zd in `era' field" ++msgstr "%s: begindatum is ongeldig in tekenreeks %Zd in het veld 'era'" ++ ++#: locale/programs/ld-time.c:406 ++#, c-format ++msgid "%s: invalid stopping date in string %Zd in `era' field" ++msgstr "%s: ongeldige einddatum in tekenreeks %Zd in het veld 'era'" ++ ++#: locale/programs/ld-time.c:415 ++#, c-format ++msgid "%s: garbage at end of stopping date in string %Zd in `era' field" ++msgstr "%s: rommel aan het einde van de einddatum in tekenreeks %Zd in het veld 'era'" ++ ++#: locale/programs/ld-time.c:434 ++#, c-format ++msgid "%s: stopping date is invalid in string %Zd in `era' field" ++msgstr "%s: einddatum is ongeldig in tekenreeks %Zd in het veld 'era'" ++ ++#: locale/programs/ld-time.c:443 ++#, c-format ++msgid "%s: missing era name in string %Zd in `era' field" ++msgstr "%s: ontbrekende tijdperknaam in tekenreeks %Zd in het veld 'era'" ++ ++#: locale/programs/ld-time.c:455 ++#, c-format ++msgid "%s: missing era format in string %Zd in `era' field" ++msgstr "%s: ontbrekende tijdperk-opmaak in tekenreeks %Zd in het veld 'era'" ++ ++#: locale/programs/ld-time.c:496 ++#, c-format ++msgid "%s: third operand for value of field `%s' must not be larger than %d" ++msgstr "%s: derde parameter voor de waarde van het veld '%s' mag niet groter zijn dan %d" ++ ++#: locale/programs/ld-time.c:504 locale/programs/ld-time.c:512 ++#, c-format ++msgid "%s: values of field `%s' must not be larger than %d" ++msgstr "%s: waarden in het veld '%s' mogen niet groter zijn dan %d" ++ ++#: locale/programs/ld-time.c:520 ++#, c-format ++msgid "%s: values for field `%s' must not be larger than %d" ++msgstr "%s: waarden in het veld '%s' mogen niet groter zijn dan %d" ++ ++#: locale/programs/ld-time.c:1003 ++#, c-format ++msgid "%s: too few values for field `%s'" ++msgstr "%s: te weinig waarden voor het veld '%s'" ++ ++#: locale/programs/ld-time.c:1048 ++msgid "extra trailing semicolon" ++msgstr "een extra puntkomma aan het einde" ++ ++#: locale/programs/ld-time.c:1051 ++#, c-format ++msgid "%s: too many values for field `%s'" ++msgstr "%s: te veel waarden voor het veld '%s'" ++ ++#: locale/programs/linereader.c:129 ++msgid "trailing garbage at end of line" ++msgstr "rommel aan het einde van de regel" ++ ++#: locale/programs/linereader.c:297 ++msgid "garbage at end of number" ++msgstr "rommel aan het einde van getal" ++ ++#: locale/programs/linereader.c:409 ++msgid "garbage at end of character code specification" ++msgstr "rommel aan het einde van tekencode-specificatie" ++ ++#: locale/programs/linereader.c:495 ++msgid "unterminated symbolic name" ++msgstr "onafgesloten symbolische naam" ++ ++#: locale/programs/linereader.c:622 ++msgid "illegal escape sequence at end of string" ++msgstr "ongeldige stuurcode aan het einde van tekenreeks" ++ ++#: locale/programs/linereader.c:626 locale/programs/linereader.c:854 ++msgid "unterminated string" ++msgstr "onafgesloten tekenreeks" ++ ++#: locale/programs/linereader.c:668 ++msgid "non-symbolic character value should not be used" ++msgstr "niet-symbolische tekenwaarden zouden niet gebruikt moeten worden" ++ ++#: locale/programs/linereader.c:815 ++#, c-format ++msgid "symbol `%.*s' not in charmap" ++msgstr "symbool '%.*s' zit niet in de tekenskaart" ++ ++#: locale/programs/linereader.c:836 ++#, c-format ++msgid "symbol `%.*s' not in repertoire map" ++msgstr "symbool '%.*s' zit niet in de repertoire-kaart" ++ ++#: locale/programs/locale.c:73 ++msgid "System information:" ++msgstr "Systeeminformatie:" ++ ++#: locale/programs/locale.c:75 ++msgid "Write names of available locales" ++msgstr "namen van beschikbare locales tonen" ++ ++#: locale/programs/locale.c:77 ++msgid "Write names of available charmaps" ++msgstr "namen van beschikbare tekenskaarten tonen" ++ ++#: locale/programs/locale.c:78 ++msgid "Modify output format:" ++msgstr "Aanpassing van uitvoer:" ++ ++#: locale/programs/locale.c:79 ++msgid "Write names of selected categories" ++msgstr "namen van geselecteerde categorieën tonen" ++ ++#: locale/programs/locale.c:80 ++msgid "Write names of selected keywords" ++msgstr "namen van geselecteerde sleutelwoorden tonen" ++ ++#: locale/programs/locale.c:81 ++msgid "Print more information" ++msgstr "breedsprakige uitvoer" ++ ++#: locale/programs/locale.c:86 ++msgid "" ++"Get locale-specific information. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Informatie over locales weergeven. Voor het rapporteren van fouten, zie:\n" ++" .\n" ++ ++#: locale/programs/locale.c:91 ++msgid "" ++"NAME\n" ++"[-a|-m]" ++msgstr "" ++"NAAM\n" ++"[-a|-m]" ++ ++#: locale/programs/locale.c:192 ++#, c-format ++msgid "Cannot set LC_CTYPE to default locale" ++msgstr "Kan LC_TYPE niet op de standaard-locale instellen" ++ ++#: locale/programs/locale.c:194 ++#, c-format ++msgid "Cannot set LC_MESSAGES to default locale" ++msgstr "Kan LC_MESSAGES niet op de standaard-locale instellen" ++ ++#: locale/programs/locale.c:207 ++#, c-format ++msgid "Cannot set LC_COLLATE to default locale" ++msgstr "Kan LC_COLLATE niet op de standaard-locale instellen" ++ ++#: locale/programs/locale.c:223 ++#, c-format ++msgid "Cannot set LC_ALL to default locale" ++msgstr "Kan LC_ALL niet op de standaard-locale instellen" ++ ++#: locale/programs/locale.c:499 ++#, c-format ++msgid "while preparing output" ++msgstr "tijdens voorbereiden van uitvoer" ++ ++#: locale/programs/localedef.c:119 ++msgid "Input Files:" ++msgstr "Invoerbestanden:" ++ ++#: locale/programs/localedef.c:121 ++msgid "Symbolic character names defined in FILE" ++msgstr "bestand dat tekennamen op codes afbeeldt" ++ ++#: locale/programs/localedef.c:122 ++msgid "Source definitions are found in FILE" ++msgstr "bestand met brondefinities" ++ ++#: locale/programs/localedef.c:124 ++msgid "FILE contains mapping from symbolic names to UCS4 values" ++msgstr "bestand dat tekennamen op UCS4-waarden afbeeldt" ++ ++#: locale/programs/localedef.c:128 ++msgid "Create output even if warning messages were issued" ++msgstr "ook uitvoer genereren na waarschuwingen" ++ ++#: locale/programs/localedef.c:129 ++msgid "Create old-style tables" ++msgstr "tabellen in oude stijl maken" ++ ++#: locale/programs/localedef.c:130 ++msgid "Optional output file prefix" ++msgstr "optioneel voorvoegsel voor uitvoerbestand" ++ ++#: locale/programs/localedef.c:131 ++msgid "Be strictly POSIX conform" ++msgstr "strict de POSIX-voorschriften volgen" ++ ++#: locale/programs/localedef.c:133 ++msgid "Suppress warnings and information messages" ++msgstr "waarschuwingen en meldingen onderdrukken" ++ ++#: locale/programs/localedef.c:134 ++msgid "Print more messages" ++msgstr "breedsprakige uitvoer" ++ ++#: locale/programs/localedef.c:135 ++msgid "Archive control:" ++msgstr "Archiefbeheer:" ++ ++#: locale/programs/localedef.c:137 ++msgid "Don't add new data to archive" ++msgstr "geen nieuwe gegevens aan archief toevoegen" ++ ++#: locale/programs/localedef.c:139 ++msgid "Add locales named by parameters to archive" ++msgstr "genoemde locales aan archief toevoegen" ++ ++#: locale/programs/localedef.c:140 ++msgid "Replace existing archive content" ++msgstr "bestaande inhoud van archief vervangen" ++ ++#: locale/programs/localedef.c:142 ++msgid "Remove locales named by parameters from archive" ++msgstr "genoemde locales uit archief verwijderen" ++ ++#: locale/programs/localedef.c:143 ++msgid "List content of archive" ++msgstr "inhoud van archief weergeven" ++ ++#: locale/programs/localedef.c:145 ++msgid "locale.alias file to consult when making archive" ++msgstr "te raadplegen aliassenbestand" ++ ++#: locale/programs/localedef.c:150 ++msgid "Compile locale specification" ++msgstr "Een locale-specificatie compileren." ++ ++#: locale/programs/localedef.c:153 ++msgid "" ++"NAME\n" ++"[--add-to-archive|--delete-from-archive] FILE...\n" ++"--list-archive [FILE]" ++msgstr "" ++"NAAM\n" ++"[--add-to-archive|--delete-from-archive] BESTAND...\n" ++"--list-archive [BESTAND]" ++ ++#: locale/programs/localedef.c:231 ++#, c-format ++msgid "cannot create directory for output files" ++msgstr "kan map voor uitvoerbestanden niet aanmaken" ++ ++#: locale/programs/localedef.c:242 ++#, c-format ++msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" ++msgstr "FATAAL: systeem definieert '_POSIX2_LOCALEDEF' niet" ++ ++#: locale/programs/localedef.c:256 locale/programs/localedef.c:272 ++#: locale/programs/localedef.c:598 locale/programs/localedef.c:618 ++#, c-format ++msgid "cannot open locale definition file `%s'" ++msgstr "kan locale-definitiebestand '%s' niet openen" ++ ++#: locale/programs/localedef.c:284 ++#, c-format ++msgid "cannot write output files to `%s'" ++msgstr "kan uitvoerbestanden niet naar '%s' schrijven" ++ ++#: locale/programs/localedef.c:365 ++#, c-format ++msgid "" ++"System's directory for character maps : %s\n" ++" repertoire maps: %s\n" ++" locale path : %s\n" ++"%s" ++msgstr "" ++"Systeemmap voor tekenskaarten : %s\n" ++" repertoire-kaarten : %s\n" ++" locale-pad : %s\n" ++"\n" ++"%s" ++ ++#: locale/programs/localedef.c:566 ++#, c-format ++msgid "circular dependencies between locale definitions" ++msgstr "circulaire afhankelijkheid tussen locale-definities" ++ ++#: locale/programs/localedef.c:572 ++#, c-format ++msgid "cannot add already read locale `%s' a second time" ++msgstr "kan de reeds gelezen locale '%s' niet nogmaals toevoegen" ++ ++#: locale/programs/locarchive.c:87 locale/programs/locarchive.c:256 ++#, c-format ++msgid "cannot create temporary file" ++msgstr "kan tijdelijk bestand niet aanmaken" ++ ++#: locale/programs/locarchive.c:116 locale/programs/locarchive.c:302 ++#, c-format ++msgid "cannot initialize archive file" ++msgstr "kan archiefbestand niet initialiseren" ++ ++#: locale/programs/locarchive.c:123 locale/programs/locarchive.c:309 ++#, c-format ++msgid "cannot resize archive file" ++msgstr "kan grootte van archiefbestand niet aanpassen" ++ ++#: locale/programs/locarchive.c:132 locale/programs/locarchive.c:318 ++#: locale/programs/locarchive.c:506 ++#, c-format ++msgid "cannot map archive header" ++msgstr "kan archiefkop niet in het geheugen plaatsen" ++ ++#: locale/programs/locarchive.c:154 ++#, c-format ++msgid "failed to create new locale archive" ++msgstr "aanmaken van een nieuw locale-archief is mislukt" ++ ++#: locale/programs/locarchive.c:166 ++#, c-format ++msgid "cannot change mode of new locale archive" ++msgstr "kan modus van het nieuwe locale-archief niet wijzigen" ++ ++#: locale/programs/locarchive.c:250 ++#, c-format ++msgid "cannot map locale archive file" ++msgstr "kan locale-archief niet in het geheugen plaatsen" ++ ++#: locale/programs/locarchive.c:326 ++#, c-format ++msgid "cannot lock new archive" ++msgstr "kan nieuwe archief niet vergrendelen" ++ ++#: locale/programs/locarchive.c:375 ++#, c-format ++msgid "cannot extend locale archive file" ++msgstr "kan locale-archiefbestand niet uitbreiden" ++ ++#: locale/programs/locarchive.c:384 ++#, c-format ++msgid "cannot change mode of resized locale archive" ++msgstr "kan modus van aangepast locale-archief niet wijzigen" ++ ++#: locale/programs/locarchive.c:392 ++#, c-format ++msgid "cannot rename new archive" ++msgstr "kan nieuwe archief niet hernoemen" ++ ++#: locale/programs/locarchive.c:445 ++#, c-format ++msgid "cannot open locale archive \"%s\"" ++msgstr "kan locale-archief '%s' niet openen" ++ ++#: locale/programs/locarchive.c:450 ++#, c-format ++msgid "cannot stat locale archive \"%s\"" ++msgstr "kan status van locale-archief '%s' niet opvragen" ++ ++#: locale/programs/locarchive.c:469 ++#, c-format ++msgid "cannot lock locale archive \"%s\"" ++msgstr "kan locale-archief '%s' niet vergrendelen" ++ ++#: locale/programs/locarchive.c:492 ++#, c-format ++msgid "cannot read archive header" ++msgstr "kan archiefkop niet lezen" ++ ++#: locale/programs/locarchive.c:552 ++#, c-format ++msgid "locale '%s' already exists" ++msgstr "locale '%s' bestaat al" ++ ++#: locale/programs/locarchive.c:783 locale/programs/locarchive.c:798 ++#: locale/programs/locarchive.c:810 locale/programs/locarchive.c:822 ++#: locale/programs/locfile.c:343 ++#, c-format ++msgid "cannot add to locale archive" ++msgstr "kan niet aan locale-archief toevoegen" + +-#. TRANS A file that isn't a block special file was given in a situation that +-#. TRANS requires one. For example, trying to mount an ordinary file as a file +-#. TRANS system in Unix gives this error. +-#: stdio-common/../sysdeps/gnu/errlist.c:170 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:45 +-msgid "Block device required" +-msgstr "Blokapparaat vereist" ++#: locale/programs/locarchive.c:977 ++#, c-format ++msgid "locale alias file `%s' not found" ++msgstr "kan locale-aliassenbestand '%s' niet vinden" + +-#. TRANS Resource busy; a system resource that can't be shared is already in use. +-#. TRANS For example, if you try to delete a file that is the root of a currently +-#. TRANS mounted filesystem, you get this error. +-#: stdio-common/../sysdeps/gnu/errlist.c:181 +-msgid "Device or resource busy" +-msgstr "Apparaat of bron bezig" ++#: locale/programs/locarchive.c:1121 ++#, c-format ++msgid "Adding %s\n" ++msgstr "Toevoegen van %s\n" + +-#. TRANS File exists; an existing file was specified in a context where it only +-#. TRANS makes sense to specify a new file. +-#: stdio-common/../sysdeps/gnu/errlist.c:191 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:47 +-msgid "File exists" +-msgstr "Bestand bestaat" ++#: locale/programs/locarchive.c:1127 ++#, c-format ++msgid "stat of \"%s\" failed: %s: ignored" ++msgstr "kan status van '%s' niet opvragen: %s -- genegeerd" + +-#. TRANS An attempt to make an improper link across file systems was detected. +-#. TRANS This happens not only when you use @code{link} (@pxref{Hard Links}) but +-#. TRANS also when you rename a file with @code{rename} (@pxref{Renaming Files}). +-#: stdio-common/../sysdeps/gnu/errlist.c:202 +-msgid "Invalid cross-device link" +-msgstr "Ongeldige koppeling tussen apparaten" ++#: locale/programs/locarchive.c:1133 ++#, c-format ++msgid "\"%s\" is no directory; ignored" ++msgstr "'%s' is geen map -- genegeerd" + +-#. TRANS The wrong type of device was given to a function that expects a +-#. TRANS particular sort of device. +-#: stdio-common/../sysdeps/gnu/errlist.c:212 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:49 +-msgid "No such device" +-msgstr "Onbekend apparaat" ++#: locale/programs/locarchive.c:1140 ++#, c-format ++msgid "cannot open directory \"%s\": %s: ignored" ++msgstr "kan map '%s' niet openen: %s -- genegeerd" + +-#. TRANS A file that isn't a directory was specified when a directory is required. +-#: stdio-common/../sysdeps/gnu/errlist.c:221 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:50 +-msgid "Not a directory" +-msgstr "Niet een map" ++#: locale/programs/locarchive.c:1212 ++#, c-format ++msgid "incomplete set of locale files in \"%s\"" ++msgstr "onvolledige verzameling van locale-bestanden in '%s'" + +-#. TRANS File is a directory; you cannot open a directory for writing, +-#. TRANS or create or remove hard links to it. +-#: stdio-common/../sysdeps/gnu/errlist.c:231 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:51 +-msgid "Is a directory" +-msgstr "Is een map" ++#: locale/programs/locarchive.c:1276 ++#, c-format ++msgid "cannot read all files in \"%s\": ignored" ++msgstr "kan niet alle bestanden in '%s' lezen -- genegeerd" + +-#. TRANS Invalid argument. This is used to indicate various kinds of problems +-#. TRANS with passing the wrong argument to a library function. +-#: stdio-common/../sysdeps/gnu/errlist.c:241 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:52 +-msgid "Invalid argument" +-msgstr "Ongeldig argument" ++#: locale/programs/locarchive.c:1346 ++#, c-format ++msgid "locale \"%s\" not in archive" ++msgstr "locale '%s' zit niet in archief" + +-#. TRANS The current process has too many files open and can't open any more. +-#. TRANS Duplicate descriptors do count toward this limit. +-#. TRANS +-#. TRANS In BSD and GNU, the number of open files is controlled by a resource +-#. TRANS limit that can usually be increased. If you get this error, you might +-#. TRANS want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited; +-#. TRANS @pxref{Limits on Resources}. +-#: stdio-common/../sysdeps/gnu/errlist.c:256 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:54 +-msgid "Too many open files" +-msgstr "Teveel open bestanden" ++#: locale/programs/locfile.c:131 ++#, c-format ++msgid "argument to `%s' must be a single character" ++msgstr "argument van '%s' moet een enkel teken zijn" + +-#. TRANS There are too many distinct file openings in the entire system. Note +-#. TRANS that any number of linked channels count as just one file opening; see +-#. TRANS @ref{Linked Channels}. This error never occurs in the GNU system. +-#: stdio-common/../sysdeps/gnu/errlist.c:267 +-msgid "Too many open files in system" +-msgstr "Teveel open bestanden in systeem" ++#: locale/programs/locfile.c:251 ++msgid "syntax error: not inside a locale definition section" ++msgstr "syntaxfout: niet binnen een locale-definitie-sectie" + +-#. TRANS Inappropriate I/O control operation, such as trying to set terminal +-#. TRANS modes on an ordinary file. +-#: stdio-common/../sysdeps/gnu/errlist.c:277 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:55 +-msgid "Inappropriate ioctl for device" +-msgstr "Ongepaste ioctl voor apparaat" ++#: locale/programs/locfile.c:625 ++#, c-format ++msgid "cannot open output file `%s' for category `%s'" ++msgstr "kan uitvoerbestand '%s' niet openen voor categorie '%s'" + +-#. TRANS An attempt to execute a file that is currently open for writing, or +-#. TRANS write to a file that is currently being executed. Often using a +-#. TRANS debugger to run a program is considered having it open for writing and +-#. TRANS will cause this error. (The name stands for ``text file busy''.) This +-#. TRANS is not an error in the GNU system; the text is copied as necessary. +-#: stdio-common/../sysdeps/gnu/errlist.c:290 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:56 +-msgid "Text file busy" +-msgstr "Tekstbestand bezig" ++#: locale/programs/locfile.c:649 ++#, c-format ++msgid "failure while writing data for category `%s'" ++msgstr "fout bij schrijven van gegevens voor categorie '%s'" + +-#. TRANS File too big; the size of a file would be larger than allowed by the system. +-#: stdio-common/../sysdeps/gnu/errlist.c:299 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:57 +-msgid "File too large" +-msgstr "Bestand te groot" ++#: locale/programs/locfile.c:745 ++#, c-format ++msgid "cannot create output file `%s' for category `%s'" ++msgstr "kan uitvoerbestand '%s' niet aanmaken voor categorie '%s'" + +-#. TRANS No space left on device; write operation on a file failed because the +-#. TRANS disk is full. +-#: stdio-common/../sysdeps/gnu/errlist.c:309 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:58 +-msgid "No space left on device" +-msgstr "Geen ruimte over op apparaat" ++#: locale/programs/locfile.c:781 ++msgid "expect string argument for `copy'" ++msgstr "argument van 'copy' dient een tekenreeks te zijn" + +-#. TRANS Invalid seek operation (such as on a pipe). +-#: stdio-common/../sysdeps/gnu/errlist.c:318 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:59 +-msgid "Illegal seek" +-msgstr "Ongeldige zoekopdracht" ++#: locale/programs/locfile.c:785 ++msgid "locale name should consist only of portable characters" ++msgstr "een locale-naam mag alleen uit overdraagbare tekens bestaan" + +-#. TRANS An attempt was made to modify something on a read-only file system. +-#: stdio-common/../sysdeps/gnu/errlist.c:327 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:60 +-msgid "Read-only file system" +-msgstr "Alleen-lezen bestandssysteem" ++#: locale/programs/locfile.c:804 ++msgid "no other keyword shall be specified when `copy' is used" ++msgstr "als 'copy' gebruikt wordt, zijn geen andere sleutelwoorden toegestaan" + +-#. TRANS Too many links; the link count of a single file would become too large. +-#. TRANS @code{rename} can cause this error if the file being renamed already has +-#. TRANS as many links as it can take (@pxref{Renaming Files}). +-#: stdio-common/../sysdeps/gnu/errlist.c:338 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:61 +-msgid "Too many links" +-msgstr "Teveel koppelingen" ++#: locale/programs/repertoire.c:229 locale/programs/repertoire.c:270 ++#: locale/programs/repertoire.c:295 ++#, c-format ++msgid "syntax error in repertoire map definition: %s" ++msgstr "syntaxfout in repertoire-kaart-definitie: %s" ++ ++#: locale/programs/repertoire.c:271 ++msgid "no or value given" ++msgstr "geen waarde of gegeven" ++ ++#: locale/programs/repertoire.c:331 ++#, c-format ++msgid "cannot save new repertoire map" ++msgstr "kan nieuwe repertoire-kaart niet opslaan" ++ ++#: locale/programs/repertoire.c:342 ++#, c-format ++msgid "repertoire map file `%s' not found" ++msgstr "kan repertoire-kaart '%s' niet vinden" ++ ++#: locale/programs/repertoire.c:449 ++#, c-format ++msgid "<%s> and <%s> are invalid names for range" ++msgstr "<%s> en <%s> zijn ongeldige namen voor een bereik" ++ ++#: locale/programs/repertoire.c:456 ++msgid "upper limit in range is not smaller then lower limit" ++msgstr "bovengrens in bereik is kleiner dan ondergrens" ++ ++# ###XXX slaaf/meester? ++#: login/programs/pt_chown.c:74 ++#, c-format ++msgid "Set the owner, group and access permission of the slave pseudo terminal corresponding to the master pseudo terminal passed on file descriptor `%d'. This is the helper program for the `grantpt' function. It is not intended to be run directly from the command line.\n" ++msgstr "" ++"De eigenaar, groep en toegangsrechten van een pseudoterminal-slaaf instellen\n" ++"overeenkomstig de pseudoterminal-meester gegeven in bestandsdescriptor '%d'.\n" ++"Dit is een hulpprogramma voor de grantpt()-functie, niet bedoeld om direct\n" ++"vanaf de opdrachtregel uitgevoerd te worden.\n" ++ ++#: login/programs/pt_chown.c:84 ++#, c-format ++msgid "" ++"The owner is set to the current user, the group is set to `%s', and the access permission is set to `%o'.\n" ++"\n" ++"%s" ++msgstr "" ++"De eigenaar is ingesteld op de huidige gebruiker,\n" ++"de groep is ingesteld op '%s',\n" ++"en de toegangsrechten zijn ingesteld op '%o'.\n" ++"\n" ++"%s" ++ ++#: login/programs/pt_chown.c:161 ++#, c-format ++msgid "too many arguments" ++msgstr "te veel argumenten" ++ ++#: login/programs/pt_chown.c:169 ++#, c-format ++msgid "needs to be installed setuid `root'" ++msgstr "moet als setuid(root) geïnstalleerd zijn" ++ ++#: malloc/mcheck.c:324 ++msgid "memory is consistent, library is buggy\n" ++msgstr "geheugentoestand is wel consistent -- **programmafout** in de bibliotheek\n" ++ ++#: malloc/mcheck.c:327 ++msgid "memory clobbered before allocated block\n" ++msgstr "geheugen vóór toegewezen blok is overschreven\n" ++ ++#: malloc/mcheck.c:330 ++msgid "memory clobbered past end of allocated block\n" ++msgstr "geheugen na toegewezen blok is overschreven\n" ++ ++#: malloc/mcheck.c:333 ++msgid "block freed twice\n" ++msgstr "blok is tweemaal vrijgegeven\n" ++ ++#: malloc/mcheck.c:336 ++msgid "bogus mcheck_status, library is buggy\n" ++msgstr "onjuiste 'mcheck_status' -- **programmafout** in de bibliotheek\n" ++ ++#: malloc/memusage.sh:27 ++msgid "Try `memusage --help' for more information." ++msgstr "Probeer 'memusage --help' voor meer informatie." ++ ++#: malloc/memusage.sh:33 ++msgid "memusage: option `$1' requires an argument" ++msgstr "memusage: optie '$1' vereist een argument" ++ ++#: malloc/memusage.sh:39 ++msgid "" ++"Usage: memusage [OPTION]... PROGRAM [PROGRAMOPTION]...\n" ++"Profile memory usage of PROGRAM.\n" ++"\n" ++" -n,--progname=NAME Name of the program file to profile\n" ++" -p,--png=FILE Generate PNG graphic and store it in FILE\n" ++" -d,--data=FILE Generate binary data file and store it in FILE\n" ++" -u,--unbuffered Don't buffer output\n" ++" -b,--buffer=SIZE Collect SIZE entries before writing them out\n" ++" --no-timer Don't collect additional information though timer\n" ++" -m,--mmap Also trace mmap & friends\n" ++"\n" ++" -?,--help Print this help and exit\n" ++" --usage Give a short usage message\n" ++" -V,--version Print version information and exit\n" ++"\n" ++" The following options only apply when generating graphical output:\n" ++" -t,--time-based Make graph linear in time\n" ++" -T,--total Also draw graph of total memory use\n" ++" --title=STRING Use STRING as title of the graph\n" ++" -x,--x-size=SIZE Make graphic SIZE pixels wide\n" ++" -y,--y-size=SIZE Make graphic SIZE pixels high\n" ++"\n" ++"Mandatory arguments to long options are also mandatory for any corresponding\n" ++"short options.\n" ++"\n" ++"For bug reporting instructions, please see:\n" ++"." ++msgstr "" ++"Gebruik: memusage [OPTIE]... PROGRAMMA [PROGRAMMA-OPTIE]...\n" ++"\n" ++"Het geheugengebruik van PROGRAMMA bijhouden.\n" ++"\n" ++" -n,--progname=NAAM te observeren programma\n" ++" -p,--png=BESTAND een PNG-plaatje maken en opslaan in BESTAND\n" ++" -d,--data=BESTAND de verzamelde binaire gegevens opslaan in BESTAND\n" ++" -u,--unbuffered de uitvoer niet bufferen\n" ++" -b,--buffer=GROOTTE hoeveelheid te bufferen uitvoergegevens\n" ++" --no-timer geen extra tijdsinformatie verzamelen\n" ++" -m,--mmap ook mmap() en dergelijke observeren\n" ++"\n" ++" -?,--help deze hulptekst tonen\n" ++" --usage een kort gebruiksbericht tonen\n" ++" -V,--version versie-informatie tonen\n" ++"\n" ++" De volgende opties zijn alleen bij grafische uitvoer van toepassing:\n" ++" -t,--time-based de grafiek lineair in de tijd maken\n" ++" -T,--total ook een grafiek van totale geheugengebruik maken\n" ++" --title=TEKST titel van de grafiek\n" ++" -x,--x-size=GETAL breedte van de grafiek in pixels\n" ++" -y,--y-size=GETAL hoogte van de grafiek in pixels\n" ++"\n" ++"Een argument dat verplicht of optioneel is voor een lange optie, is dat\n" ++"ook voor de overeenkomstige korte optie.\n" ++"\n" ++"Voor het rapporteren van fouten in dit programma, zie:\n" ++" ." ++ ++#: malloc/memusage.sh:90 ++msgid "" ++"Syntax: memusage [--data=FILE] [--progname=NAME] [--png=FILE] [--unbuffered]\n" ++" [--buffer=SIZE] [--no-timer] [--time-based] [--total]\n" ++" [--title=STRING] [--x-size=SIZE] [--y-size=SIZE]\n" ++" PROGRAM [PROGRAMOPTION]..." ++msgstr "" ++"Gebruik: memusage [--data=BESTAND] [--progname=NAAM] [--png=BESTAND]\n" ++" [--unbuffered] [--buffer=GROOTTE] [--no-timer] [--time-based]\n" ++" [--total] [--title=TEKST] [--x-size=GETAL] [--y-size=GETAL]\n" ++" PROGRAMMA [PROGRAMMA-OPTIE]..." ++ ++#: malloc/memusage.sh:182 ++msgid "memusage: option `${1##*=}' is ambiguous" ++msgstr "memusage: optie '${1##*=}' is niet eenduidig" ++ ++#: malloc/memusage.sh:191 ++msgid "memusage: unrecognized option `$1'" ++msgstr "memusage: onbekende optie '$1'" ++ ++#: malloc/memusage.sh:204 ++msgid "No program name given" ++msgstr "Geen programmanaam gegeven" ++ ++#: malloc/memusagestat.c:53 ++msgid "Name output file" ++msgstr "naam van uitvoerbestand" ++ ++#: malloc/memusagestat.c:54 ++msgid "Title string used in output graphic" ++msgstr "tekenreeks gebruikt als titel van uitvoergrafiek" ++ ++#: malloc/memusagestat.c:55 ++msgid "Generate output linear to time (default is linear to number of function calls)" ++msgstr "de uitvoer lineair in de tijd maken (standaard is lineair in het aantal functie-aanroepen)" ++ ++#: malloc/memusagestat.c:57 ++msgid "Also draw graph for total memory consumption" ++msgstr "ook een grafiek maken van totale geheugengebruik" ++ ++#: malloc/memusagestat.c:58 ++msgid "make output graphic VALUE pixel wide" ++msgstr "uitvoergrafiek dit aantal beeldpunten breed maken" ++ ++#: malloc/memusagestat.c:59 ++msgid "make output graphic VALUE pixel high" ++msgstr "uitvoergrafiek dit aantal beeldpunten hoog maken" ++ ++#: malloc/memusagestat.c:64 ++msgid "Generate graphic from memory profiling data" ++msgstr "Een grafiek maken van geheugenanalyse-gegevens." ++ ++#: malloc/memusagestat.c:67 ++msgid "DATAFILE [OUTFILE]" ++msgstr "GEGEVENSBESTAND [UITVOERBESTAND]" ++ ++#: misc/error.c:118 timezone/zic.c:396 ++msgid "Unknown system error" ++msgstr "Onbekende systeemfout" ++ ++#: nis/nis_callback.c:189 ++msgid "unable to free arguments" ++msgstr "kan geheugen van argumenten niet vrijgeven" ++ ++#: nis/nis_error.h:1 nis/ypclnt.c:822 nis/ypclnt.c:910 posix/regcomp.c:132 ++#: sysdeps/gnu/errlist.c:20 ++msgid "Success" ++msgstr "Gelukt" ++ ++#: nis/nis_error.h:2 ++msgid "Probable success" ++msgstr "Waarschijnlijk gelukt" ++ ++#: nis/nis_error.h:3 ++msgid "Not found" ++msgstr "Niet gevonden" ++ ++#: nis/nis_error.h:4 ++msgid "Probably not found" ++msgstr "Waarschijnlijk niet gevonden" ++ ++#: nis/nis_error.h:5 ++msgid "Cache expired" ++msgstr "Cache is verlopen" ++ ++#: nis/nis_error.h:6 ++msgid "NIS+ servers unreachable" ++msgstr "NIS+-servers zijn onbereikbaar" ++ ++#: nis/nis_error.h:7 ++msgid "Unknown object" ++msgstr "Onbekend object" ++ ++#: nis/nis_error.h:8 ++msgid "Server busy, try again" ++msgstr "Server is bezig; probeer het nog eens" ++ ++#: nis/nis_error.h:9 ++msgid "Generic system error" ++msgstr "Algemene systeemfout" ++ ++#: nis/nis_error.h:10 ++msgid "First/next chain broken" ++msgstr "De 'eerste/volgende'-ketting is gebroken" ++ ++#. TRANS Permission denied; the file permissions do not allow the attempted operation. ++#: nis/nis_error.h:11 nis/ypclnt.c:867 sysdeps/gnu/errlist.c:157 ++msgid "Permission denied" ++msgstr "Toegang geweigerd" ++ ++#: nis/nis_error.h:12 ++msgid "Not owner" ++msgstr "Niet de eigenaar" ++ ++#: nis/nis_error.h:13 ++msgid "Name not served by this server" ++msgstr "Naam wordt door deze server niet aangeboden" ++ ++#: nis/nis_error.h:14 ++msgid "Server out of memory" ++msgstr "Server heeft onvoldoende geheugen" ++ ++#: nis/nis_error.h:15 ++msgid "Object with same name exists" ++msgstr "Een object met dezelfde naam bestaat al" ++ ++#: nis/nis_error.h:16 ++msgid "Not master server for this domain" ++msgstr "Is niet de hoofdserver voor dit domein" ++ ++#: nis/nis_error.h:17 ++msgid "Invalid object for operation" ++msgstr "Ongeldig object voor bewerking" ++ ++#: nis/nis_error.h:18 ++msgid "Malformed name, or illegal name" ++msgstr "Naam bevat verkeerde tekens of is ongeldig" ++ ++#: nis/nis_error.h:19 ++msgid "Unable to create callback" ++msgstr "Kan geen terugaanroep aanmaken" ++ ++#: nis/nis_error.h:20 ++msgid "Results sent to callback proc" ++msgstr "Resultaten verzonden aan terugaanroep-proces" ++ ++#: nis/nis_error.h:21 ++msgid "Not found, no such name" ++msgstr "Niet gevonden; naam bestaat niet" ++ ++#: nis/nis_error.h:22 ++msgid "Name/entry isn't unique" ++msgstr "Naam of item is niet uniek" ++ ++#: nis/nis_error.h:23 ++msgid "Modification failed" ++msgstr "Wijziging is mislukt" ++ ++#: nis/nis_error.h:24 ++msgid "Database for table does not exist" ++msgstr "Gegevensbank voor tabel bestaat niet" ++ ++#: nis/nis_error.h:25 ++msgid "Entry/table type mismatch" ++msgstr "Item- en tabelsoort passen niet bij elkaar" ++ ++#: nis/nis_error.h:26 ++msgid "Link points to illegal name" ++msgstr "Koppeling wijst naar ongeldige naam" ++ ++#: nis/nis_error.h:27 ++msgid "Partial success" ++msgstr "Gedeeltelijk gelukt" ++ ++#: nis/nis_error.h:28 ++msgid "Too many attributes" ++msgstr "Te veel kenmerken" + +-#. TRANS Domain error; used by mathematical functions when an argument value does +-#. TRANS not fall into the domain over which the function is defined. +-#: stdio-common/../sysdeps/gnu/errlist.c:361 +-msgid "Numerical argument out of domain" +-msgstr "Numeriek argument buiten domein" ++#: nis/nis_error.h:29 ++msgid "Error in RPC subsystem" ++msgstr "Fout in RPC-subsysteem" + +-#. TRANS Range error; used by mathematical functions when the result value is +-#. TRANS not representable because of overflow or underflow. +-#: stdio-common/../sysdeps/gnu/errlist.c:371 +-msgid "Numerical result out of range" +-msgstr "Numeriek resultaat buiten bereik" ++#: nis/nis_error.h:30 ++msgid "Missing or malformed attribute" ++msgstr "Ontbrekend of ongeldig kenmerk" + +-#. TRANS Resource temporarily unavailable; the call might work if you try again +-#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN}; +-#. TRANS they are always the same in the GNU C library. +-#. TRANS +-#. TRANS This error can happen in a few different situations: +-#. TRANS +-#. TRANS @itemize @bullet +-#. TRANS @item +-#. TRANS An operation that would block was attempted on an object that has +-#. TRANS non-blocking mode selected. Trying the same operation again will block +-#. TRANS until some external condition makes it possible to read, write, or +-#. TRANS connect (whatever the operation). You can use @code{select} to find out +-#. TRANS when the operation will be possible; @pxref{Waiting for I/O}. +-#. TRANS +-#. TRANS @strong{Portability Note:} In many older Unix systems, this condition +-#. TRANS was indicated by @code{EWOULDBLOCK}, which was a distinct error code +-#. TRANS different from @code{EAGAIN}. To make your program portable, you should +-#. TRANS check for both codes and treat them the same. +-#. TRANS +-#. TRANS @item +-#. TRANS A temporary resource shortage made an operation impossible. @code{fork} +-#. TRANS can return this error. It indicates that the shortage is expected to +-#. TRANS pass, so your program can try the call again later and it may succeed. +-#. TRANS It is probably a good idea to delay for a few seconds before trying it +-#. TRANS again, to allow time for other processes to release scarce resources. +-#. TRANS Such shortages are usually fairly serious and affect the whole system, +-#. TRANS so usually an interactive program should report the error to the user +-#. TRANS and return to its command loop. +-#. TRANS @end itemize +-#: stdio-common/../sysdeps/gnu/errlist.c:408 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:41 +-msgid "Resource temporarily unavailable" +-msgstr "Bron tijdelijk onbeschikbaar" ++#: nis/nis_error.h:31 ++msgid "Named object is not searchable" ++msgstr "Genoemd object is niet doorzoekbaar" + +-#. TRANS In the GNU C library, this is another name for @code{EAGAIN} (above). +-#. TRANS The values are always the same, on every operating system. +-#. TRANS +-#. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a +-#. TRANS separate error code. +-#: stdio-common/../sysdeps/gnu/errlist.c:421 +-msgid "Operation would block" +-msgstr "Bewerking zou blokkeren" ++#: nis/nis_error.h:32 ++msgid "Error while talking to callback proc" ++msgstr "Fout bij communicatie met terugaanroep-proces" + +-#. TRANS An operation that cannot complete immediately was initiated on an object +-#. TRANS that has non-blocking mode selected. Some functions that must always +-#. TRANS block (such as @code{connect}; @pxref{Connecting}) never return +-#. TRANS @code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that +-#. TRANS the operation has begun and will take some time. Attempts to manipulate +-#. TRANS the object before the call completes return @code{EALREADY}. You can +-#. TRANS use the @code{select} function to find out when the pending operation +-#. TRANS has completed; @pxref{Waiting for I/O}. +-#: stdio-common/../sysdeps/gnu/errlist.c:437 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:180 +-msgid "Operation now in progress" +-msgstr "Bewerking is nu bezig" ++#: nis/nis_error.h:33 ++msgid "Non NIS+ namespace encountered" ++msgstr "Een naamsruimte anders NIS+ tegengekomen" + +-#. TRANS An operation is already in progress on an object that has non-blocking +-#. TRANS mode selected. +-#: stdio-common/../sysdeps/gnu/errlist.c:447 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:179 +-msgid "Operation already in progress" +-msgstr "Bewerking reeds bezig" ++#: nis/nis_error.h:34 ++msgid "Illegal object type for operation" ++msgstr "Ongeldige objectsoort voor bewerking" + +-#. TRANS A file that isn't a socket was specified when a socket is required. +-#: stdio-common/../sysdeps/gnu/errlist.c:456 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:125 +-msgid "Socket operation on non-socket" +-msgstr "Socketbewerking op niet-socket" ++#: nis/nis_error.h:35 ++msgid "Passed object is not the same object on server" ++msgstr "Meegegeven object is niet hetzelfde object als op de server" + +-#. TRANS The size of a message sent on a socket was larger than the supported +-#. TRANS maximum size. +-#: stdio-common/../sysdeps/gnu/errlist.c:466 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:127 +-msgid "Message too long" +-msgstr "Bericht te lang" ++#: nis/nis_error.h:36 ++msgid "Modify operation failed" ++msgstr "Wijzigingsbewerking is mislukt" + +-#. TRANS The socket type does not support the requested communications protocol. +-#: stdio-common/../sysdeps/gnu/errlist.c:475 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:128 +-msgid "Protocol wrong type for socket" +-msgstr "Protocol van verkeerde soort voor socket" ++#: nis/nis_error.h:37 ++msgid "Query illegal for named table" ++msgstr "Zoekopdracht is ongeldig voor genoemde tabel" + +-#. TRANS You specified a socket option that doesn't make sense for the +-#. TRANS particular protocol being used by the socket. @xref{Socket Options}. +-#: stdio-common/../sysdeps/gnu/errlist.c:485 +-msgid "Protocol not available" +-msgstr "Protocol niet beschikbaar" ++#: nis/nis_error.h:38 ++msgid "Attempt to remove a non-empty table" ++msgstr "Poging tot verwijderen van een niet-lege tabel" + +-#. TRANS The socket domain does not support the requested communications protocol +-#. TRANS (perhaps because the requested protocol is completely invalid). +-#. TRANS @xref{Creating a Socket}. +-#: stdio-common/../sysdeps/gnu/errlist.c:496 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:150 +-msgid "Protocol not supported" +-msgstr "Protocol niet ondersteund" ++#: nis/nis_error.h:39 ++msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" ++msgstr "Fout bij toegang tot NIS+-koude-startbestand. Is NIS+ wel geïnstalleerd?" + +-#. TRANS The socket type is not supported. +-#: stdio-common/../sysdeps/gnu/errlist.c:505 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:151 +-msgid "Socket type not supported" +-msgstr "Socketsoort niet ondersteund" ++#: nis/nis_error.h:40 ++msgid "Full resync required for directory" ++msgstr "Volledige hersynchronisatie is nodig voor map" + +-#. TRANS The operation you requested is not supported. Some socket functions +-#. TRANS don't make sense for all types of sockets, and others may not be +-#. TRANS implemented for all communications protocols. In the GNU system, this +-#. TRANS error can happen for many calls when the object does not support the +-#. TRANS particular operation; it is a generic indication that the server knows +-#. TRANS nothing to do for that call. +-#: stdio-common/../sysdeps/gnu/errlist.c:519 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:78 +-msgid "Operation not supported" +-msgstr "Bewerking niet ondersteund" ++#: nis/nis_error.h:41 ++msgid "NIS+ operation failed" ++msgstr "NIS+-bewerking is mislukt" + +-#. TRANS The socket communications protocol family you requested is not supported. +-#: stdio-common/../sysdeps/gnu/errlist.c:528 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:153 +-msgid "Protocol family not supported" +-msgstr "Protocolfamilie niet ondersteund" ++#: nis/nis_error.h:42 ++msgid "NIS+ service is unavailable or not installed" ++msgstr "NIS+-dienst is onbeschikbaar of niet geïnstalleerd" + +-#. TRANS The address family specified for a socket is not supported; it is +-#. TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}. +-#: stdio-common/../sysdeps/gnu/errlist.c:538 +-msgid "Address family not supported by protocol" +-msgstr "Adresfamilie niet ondersteund door protocol" ++#: nis/nis_error.h:43 ++msgid "Yes, 42 is the meaning of life" ++msgstr "Dat is waar, 42 is de zin van het leven..." + +-#. TRANS The requested socket address is already in use. @xref{Socket Addresses}. +-#: stdio-common/../sysdeps/gnu/errlist.c:547 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:155 +-msgid "Address already in use" +-msgstr "Adres reeds in gebruik" ++#: nis/nis_error.h:44 ++msgid "Unable to authenticate NIS+ server" ++msgstr "Kan de NIS+-server niet authentificeren" + +-#. TRANS The requested socket address is not available; for example, you tried +-#. TRANS to give a socket a name that doesn't match the local host name. +-#. TRANS @xref{Socket Addresses}. +-#: stdio-common/../sysdeps/gnu/errlist.c:558 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:156 +-msgid "Cannot assign requested address" +-msgstr "Kan verzochte adres niet toewijzen" ++#: nis/nis_error.h:45 ++msgid "Unable to authenticate NIS+ client" ++msgstr "Kan de NIS+-client niet authentificeren" + +-#. TRANS A socket operation failed because the network was down. +-#: stdio-common/../sysdeps/gnu/errlist.c:567 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:157 +-msgid "Network is down" +-msgstr "Network is down" ++#: nis/nis_error.h:46 ++msgid "No file space on server" ++msgstr "Geen schijfruimte meer op server" + +-#. TRANS A socket operation failed because the subnet containing the remote host +-#. TRANS was unreachable. +-#: stdio-common/../sysdeps/gnu/errlist.c:577 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:158 +-msgid "Network is unreachable" +-msgstr "Netwerk is onbereikbaar" ++#: nis/nis_error.h:47 ++msgid "Unable to create process on server" ++msgstr "Kan geen nieuw proces starten op server" + +-#. TRANS A network connection was reset because the remote host crashed. +-#: stdio-common/../sysdeps/gnu/errlist.c:586 +-msgid "Network dropped connection on reset" +-msgstr "Netwerk liet verbinding vallen bij opnieuw instellen" ++#: nis/nis_error.h:48 ++msgid "Master server busy, full dump rescheduled." ++msgstr "Hoofdserver is bezig; volledig ophalen is uitgesteld" + +-#. TRANS A network connection was aborted locally. +-#: stdio-common/../sysdeps/gnu/errlist.c:595 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:160 +-msgid "Software caused connection abort" +-msgstr "Software zorgde voor onderbreken verbinding" ++#: nis/nis_local_names.c:122 ++#, c-format ++msgid "LOCAL entry for UID %d in directory %s not unique\n" ++msgstr "LOCAL-item voor UID %d in map %s is niet uniek\n" + +-#. TRANS A network connection was closed for reasons outside the control of the +-#. TRANS local host, such as by the remote machine rebooting or an unrecoverable +-#. TRANS protocol violation. +-#: stdio-common/../sysdeps/gnu/errlist.c:606 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:161 +-msgid "Connection reset by peer" +-msgstr "Verbinding door partner opnieuw ingesteld" ++#: nis/nis_print.c:51 ++msgid "UNKNOWN" ++msgstr "ONBEKEND" + +-#. TRANS The kernel's buffers for I/O operations are all in use. In GNU, this +-#. TRANS error is always synonymous with @code{ENOMEM}; you may get one or the +-#. TRANS other from network operations. +-#: stdio-common/../sysdeps/gnu/errlist.c:617 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:162 +-msgid "No buffer space available" +-msgstr "Geen bufferruimte beschikbaar" ++#: nis/nis_print.c:109 ++msgid "BOGUS OBJECT\n" ++msgstr "ONGELDIG OBJECT\n" + +-#. TRANS You tried to connect a socket that is already connected. +-#. TRANS @xref{Connecting}. +-#: stdio-common/../sysdeps/gnu/errlist.c:627 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:163 +-msgid "Transport endpoint is already connected" +-msgstr "Overdrachtseindpunt is al verbonden" ++#: nis/nis_print.c:112 ++msgid "NO OBJECT\n" ++msgstr "GEEN OBJECT\n" + +-#. TRANS The socket is not connected to anything. You get this error when you +-#. TRANS try to transmit data over a socket, without first specifying a +-#. TRANS destination for the data. For a connectionless socket (for datagram +-#. TRANS protocols, such as UDP), you get @code{EDESTADDRREQ} instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:639 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:164 +-msgid "Transport endpoint is not connected" +-msgstr "Overdrachtseindpunt is niet verbonden" ++#: nis/nis_print.c:115 ++msgid "DIRECTORY\n" ++msgstr "MAP\n" + +-#. TRANS No default destination address was set for the socket. You get this +-#. TRANS error when you try to transmit data over a connectionless socket, +-#. TRANS without first specifying a destination for the data with @code{connect}. +-#: stdio-common/../sysdeps/gnu/errlist.c:650 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:126 +-msgid "Destination address required" +-msgstr "Doeladres vereist" ++#: nis/nis_print.c:118 ++msgid "GROUP\n" ++msgstr "GROEP\n" + +-#. TRANS The socket has already been shut down. +-#: stdio-common/../sysdeps/gnu/errlist.c:659 +-msgid "Cannot send after transport endpoint shutdown" +-msgstr "Kan niet verzenden na afsluiten overdrachtseindpunt" ++#: nis/nis_print.c:121 ++msgid "TABLE\n" ++msgstr "TABEL\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:668 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:174 +-msgid "Too many references: cannot splice" +-msgstr "Teveel verwijzingen: kan niet splitsen" ++#: nis/nis_print.c:124 ++msgid "ENTRY\n" ++msgstr "ITEM\n" + +-#. TRANS A socket operation with a specified timeout received no response during +-#. TRANS the timeout period. +-#: stdio-common/../sysdeps/gnu/errlist.c:678 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:175 +-msgid "Connection timed out" +-msgstr "Verbinding time-out" ++#: nis/nis_print.c:127 ++msgid "LINK\n" ++msgstr "KOPPELING\n" + +-#. TRANS A remote host refused to allow the network connection (typically because +-#. TRANS it is not running the requested service). +-#: stdio-common/../sysdeps/gnu/errlist.c:688 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:176 +-msgid "Connection refused" +-msgstr "Verbinding geweigerd" ++#: nis/nis_print.c:130 ++msgid "PRIVATE\n" ++msgstr "PRIVÉ\n" + +-#. TRANS Too many levels of symbolic links were encountered in looking up a file name. +-#. TRANS This often indicates a cycle of symbolic links. +-#: stdio-common/../sysdeps/gnu/errlist.c:698 +-msgid "Too many levels of symbolic links" +-msgstr "Teveel niveaus van symbolische koppelingen" ++#: nis/nis_print.c:133 ++msgid "(Unknown object)\n" ++msgstr "(Onbekend object)\n" + +-#. TRANS Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for +-#. TRANS Files}) or host name too long (in @code{gethostname} or +-#. TRANS @code{sethostname}; @pxref{Host Identification}). +-#: stdio-common/../sysdeps/gnu/errlist.c:709 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:108 +-msgid "File name too long" +-msgstr "Bestandsnaam te lang" ++#: nis/nis_print.c:167 ++#, c-format ++msgid "Name : `%s'\n" ++msgstr "Naam : '%s'\n" + +-#. TRANS The remote host for a requested network connection is down. +-#: stdio-common/../sysdeps/gnu/errlist.c:718 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:177 +-msgid "Host is down" +-msgstr "Host is onbereikbaar" ++#: nis/nis_print.c:168 ++#, c-format ++msgid "Type : %s\n" ++msgstr "Soort : %s\n" + +-#. TRANS The remote host for a requested network connection is not reachable. +-#: stdio-common/../sysdeps/gnu/errlist.c:727 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:178 +-msgid "No route to host" +-msgstr "Geen route naar host" ++#: nis/nis_print.c:173 ++msgid "Master Server :\n" ++msgstr "Hoofdserver :\n" + +-#. TRANS Directory not empty, where an empty directory was expected. Typically, +-#. TRANS this error occurs when you are trying to delete a directory. +-#: stdio-common/../sysdeps/gnu/errlist.c:737 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:123 +-msgid "Directory not empty" +-msgstr "Map niet leeg" ++#: nis/nis_print.c:175 ++msgid "Replicate :\n" ++msgstr "Replicaserver :\n" + +-#. TRANS This means that the per-user limit on new process would be exceeded by +-#. TRANS an attempted @code{fork}. @xref{Limits on Resources}, for details on +-#. TRANS the @code{RLIMIT_NPROC} limit. +-#: stdio-common/../sysdeps/gnu/errlist.c:748 +-msgid "Too many processes" +-msgstr "Teveel processen" ++#: nis/nis_print.c:176 ++#, c-format ++msgid "\tName : %s\n" ++msgstr "\tNaam : %s\n" + +-#. TRANS The file quota system is confused because there are too many users. +-#. TRANS @c This can probably happen in a GNU system when using NFS. +-#: stdio-common/../sysdeps/gnu/errlist.c:758 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:124 +-msgid "Too many users" +-msgstr "Teveel gebruikers" ++#: nis/nis_print.c:177 ++msgid "\tPublic Key : " ++msgstr "\tOpenbare sleutel : " + +-#. TRANS The user's disk quota was exceeded. +-#: stdio-common/../sysdeps/gnu/errlist.c:767 +-msgid "Disk quota exceeded" +-msgstr "Schijfquota overschreden" ++#: nis/nis_print.c:181 ++msgid "None.\n" ++msgstr "Geen\n" + +-#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS +-#. TRANS system which is due to file system rearrangements on the server host. +-#. TRANS Repairing this condition usually requires unmounting and remounting +-#. TRANS the NFS file system on the local host. +-#: stdio-common/../sysdeps/gnu/errlist.c:779 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:181 +-msgid "Stale NFS file handle" +-msgstr "Achterhaald NFS-bestandshandvat" ++#: nis/nis_print.c:184 ++#, c-format ++msgid "Diffie-Hellmann (%d bits)\n" ++msgstr "Diffie-Hellmann (%d bits)\n" + +-#. TRANS An attempt was made to NFS-mount a remote file system with a file name that +-#. TRANS already specifies an NFS-mounted file. +-#. TRANS (This is an error on some operating systems, but we expect it to work +-#. TRANS properly on the GNU system, making this error code impossible.) +-#: stdio-common/../sysdeps/gnu/errlist.c:791 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:96 +-msgid "Object is remote" +-msgstr "Object is op afstand" ++#: nis/nis_print.c:189 ++#, c-format ++msgid "RSA (%d bits)\n" ++msgstr "RSA (%d bits)\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:800 +-msgid "RPC struct is bad" +-msgstr "RPC struct is slecht" ++#: nis/nis_print.c:192 ++msgid "Kerberos.\n" ++msgstr "Kerberos\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:809 +-msgid "RPC version wrong" +-msgstr "RPC versie verkeerd" ++#: nis/nis_print.c:195 ++#, c-format ++msgid "Unknown (type = %d, bits = %d)\n" ++msgstr "Onbekend (soort = %d, bits = %d)\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:818 +-msgid "RPC program not available" +-msgstr "RPC programma niet beschikbaar" ++#: nis/nis_print.c:206 ++#, c-format ++msgid "\tUniversal addresses (%u)\n" ++msgstr "\tUniversele adressen (%u)\n" ++ ++#: nis/nis_print.c:228 ++msgid "Time to live : " ++msgstr "Levensduur : " + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:827 +-msgid "RPC program version wrong" +-msgstr "RPC programma versie verkeerd" ++#: nis/nis_print.c:230 ++msgid "Default Access rights :\n" ++msgstr "Standaard-toegangsrechten :\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:836 +-msgid "RPC bad procedure for program" +-msgstr "RPC slechte procedure voor programma" ++#: nis/nis_print.c:239 ++#, c-format ++msgid "\tType : %s\n" ++msgstr "\tSoort : %s\n" + +-#. TRANS No locks available. This is used by the file locking facilities; see +-#. TRANS @ref{File Locks}. This error is never generated by the GNU system, but +-#. TRANS it can result from an operation to an NFS server running another +-#. TRANS operating system. +-#: stdio-common/../sysdeps/gnu/errlist.c:848 +-msgid "No locks available" +-msgstr "Geen blokkeringen beschikbaar" ++#: nis/nis_print.c:240 ++msgid "\tAccess rights: " ++msgstr "\tToegangsrechten : " + +-#. TRANS Inappropriate file type or format. The file was the wrong type for the +-#. TRANS operation, or a data file had the wrong format. +-#. TRANS +-#. TRANS On some systems @code{chmod} returns this error if you try to set the +-#. TRANS sticky bit on a non-directory file; @pxref{Setting Permissions}. +-#: stdio-common/../sysdeps/gnu/errlist.c:861 +-msgid "Inappropriate file type or format" +-msgstr "Ongepaste bestandssoort of formaat" ++#: nis/nis_print.c:254 ++msgid "Group Flags :" ++msgstr "Groepsvlaggen :" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:870 +-msgid "Authentication error" +-msgstr "Authentificatie fout" ++#: nis/nis_print.c:257 ++msgid "" ++"\n" ++"Group Members :\n" ++msgstr "" ++"\n" ++"Groepsleden :\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:879 +-msgid "Need authenticator" +-msgstr "Authentificator vereist" ++#: nis/nis_print.c:269 ++#, c-format ++msgid "Table Type : %s\n" ++msgstr "Tabelsoort : %s\n" + +-#. TRANS Function not implemented. This indicates that the function called is +-#. TRANS not implemented at all, either in the C library itself or in the +-#. TRANS operating system. When you get this error, you can be sure that this +-#. TRANS particular function will always fail with @code{ENOSYS} unless you +-#. TRANS install a new version of the C library or the operating system. +-#: stdio-common/../sysdeps/gnu/errlist.c:892 +-msgid "Function not implemented" +-msgstr "Functie niet geschreven" ++#: nis/nis_print.c:270 ++#, c-format ++msgid "Number of Columns : %d\n" ++msgstr "Aantal kolommen : %d\n" + +-#. TRANS Not supported. A function returns this error when certain parameter +-#. TRANS values are valid, but the functionality they request is not available. +-#. TRANS This can mean that the function does not implement a particular command +-#. TRANS or option value or flag bit at all. For functions that operate on some +-#. TRANS object given in a parameter, such as a file descriptor or a port, it +-#. TRANS might instead mean that only @emph{that specific object} (file +-#. TRANS descriptor, port, etc.) is unable to support the other parameters given; +-#. TRANS different file descriptors might support different ranges of parameter +-#. TRANS values. +-#. TRANS +-#. TRANS If the entire function is not available at all in the implementation, +-#. TRANS it returns @code{ENOSYS} instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:912 +-msgid "Not supported" +-msgstr "Niet ondersteund" ++#: nis/nis_print.c:271 ++#, c-format ++msgid "Character Separator : %c\n" ++msgstr "Scheidingsteken : %c\n" + +-#. TRANS While decoding a multibyte character the function came along an invalid +-#. TRANS or an incomplete sequence of bytes or the given wide character is invalid. +-#: stdio-common/../sysdeps/gnu/errlist.c:922 +-msgid "Invalid or incomplete multibyte or wide character" +-msgstr "Ongeldig of onvolledig multibyte- of breed teken" ++#: nis/nis_print.c:272 ++#, c-format ++msgid "Search Path : %s\n" ++msgstr "Zoekpad : %s\n" + +-#. TRANS In the GNU system, servers supporting the @code{term} protocol return +-#. TRANS this error for certain operations when the caller is not in the +-#. TRANS foreground process group of the terminal. Users do not usually see this +-#. TRANS error because functions such as @code{read} and @code{write} translate +-#. TRANS it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control}, +-#. TRANS for information on process groups and these signals. +-#: stdio-common/../sysdeps/gnu/errlist.c:936 +-msgid "Inappropriate operation for background process" +-msgstr "Ongepaste bewerking voor achtergrondproces" ++#: nis/nis_print.c:273 ++msgid "Columns :\n" ++msgstr "Kolommen :\n" + +-#. TRANS In the GNU system, opening a file returns this error when the file is +-#. TRANS translated by a program and the translator program dies while starting +-#. TRANS up, before it has connected to the file. +-#: stdio-common/../sysdeps/gnu/errlist.c:947 +-msgid "Translator died" +-msgstr "Vertaler is overleden" ++#: nis/nis_print.c:276 ++#, c-format ++msgid "\t[%d]\tName : %s\n" ++msgstr "\t[%d]\tNaam : %s\n" + +-#. TRANS The experienced user will know what is wrong. +-#. TRANS @c This error code is a joke. Its perror text is part of the joke. +-#. TRANS @c Don't change it. +-#: stdio-common/../sysdeps/gnu/errlist.c:958 +-msgid "?" +-msgstr "?" ++#: nis/nis_print.c:278 ++msgid "\t\tAttributes : " ++msgstr "\t\tKenmerken : " + +-#. TRANS You did @strong{what}? +-#: stdio-common/../sysdeps/gnu/errlist.c:967 +-msgid "You really blew it this time" +-msgstr "Nu heeft u het echt gedaan" ++#: nis/nis_print.c:280 ++msgid "\t\tAccess Rights : " ++msgstr "\t\tToegangsrechten : " + +-#. TRANS Go home and have a glass of warm, dairy-fresh milk. +-#: stdio-common/../sysdeps/gnu/errlist.c:976 +-msgid "Computer bought the farm" +-msgstr "Ga er even rustig bij zitten" ++#: nis/nis_print.c:290 ++msgid "Linked Object Type : " ++msgstr "Soort gekoppeld object: " + +-#. TRANS This error code has no purpose. +-#: stdio-common/../sysdeps/gnu/errlist.c:985 +-msgid "Gratuitous error" +-msgstr "Zinloze fout" ++#: nis/nis_print.c:292 ++#, c-format ++msgid "Linked to : %s\n" ++msgstr "Gekoppeld aan : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:993 +-msgid "Bad message" +-msgstr "Fout bericht" ++#: nis/nis_print.c:302 ++#, c-format ++msgid "\tEntry data of type %s\n" ++msgstr "\tItemgegevens van soort %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1001 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:66 +-msgid "Identifier removed" +-msgstr "Identificeerder verwijderd" ++#: nis/nis_print.c:305 ++#, c-format ++msgid "\t[%u] - [%u bytes] " ++msgstr "\t[%u] - [%u bytes] " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1009 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:104 +-msgid "Multihop attempted" +-msgstr "Multihop geprobeerd" ++#: nis/nis_print.c:308 ++msgid "Encrypted data\n" ++msgstr "Gecodeerde gegevens\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1017 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:91 +-msgid "No data available" +-msgstr "Geen gegevens beschikbaar" ++#: nis/nis_print.c:310 ++msgid "Binary data\n" ++msgstr "Binaire gegevens\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1025 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:97 +-msgid "Link has been severed" +-msgstr "Koppeling bevindt zich in zwaar weer" ++#: nis/nis_print.c:326 ++#, c-format ++msgid "Object Name : %s\n" ++msgstr "Objectnaam : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1033 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:65 +-msgid "No message of desired type" +-msgstr "Geen bericht van de gewenste soort" ++#: nis/nis_print.c:327 ++#, c-format ++msgid "Directory : %s\n" ++msgstr "Map : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1041 +-msgid "Out of streams resources" +-msgstr "Aantal bronnen voor stromen is uitgeput" ++#: nis/nis_print.c:328 ++#, c-format ++msgid "Owner : %s\n" ++msgstr "Eigenaar : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1049 +-msgid "Device not a stream" +-msgstr "Apparaat is geen stroom" ++#: nis/nis_print.c:329 ++#, c-format ++msgid "Group : %s\n" ++msgstr "Groep : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1057 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:109 +-msgid "Value too large for defined data type" +-msgstr "Waarde te groot voor gedefinieerde gegevenssoort" ++#: nis/nis_print.c:330 ++msgid "Access Rights : " ++msgstr "Toegangsrechten : " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1065 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:101 +-msgid "Protocol error" +-msgstr "Protocolfout" ++#: nis/nis_print.c:332 ++#, c-format ++msgid "" ++"\n" ++"Time to Live : " ++msgstr "" ++"\n" ++"Levensduur : " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1073 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:92 +-msgid "Timer expired" +-msgstr "Tijdopnemer overschreden" ++#: nis/nis_print.c:335 ++#, c-format ++msgid "Creation Time : %s" ++msgstr "Aanmaaktijd : %s" + +-#. TRANS Operation canceled; an asynchronous operation was canceled before it +-#. TRANS completed. @xref{Asynchronous I/O}. When you call @code{aio_cancel}, +-#. TRANS the normal result is for the operations affected to complete with this +-#. TRANS error; @pxref{Cancel AIO Operations}. +-#: stdio-common/../sysdeps/gnu/errlist.c:1085 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:77 +-msgid "Operation canceled" +-msgstr "Bewerking geannuleerd" ++#: nis/nis_print.c:337 ++#, c-format ++msgid "Mod. Time : %s" ++msgstr "Wijzigingstijd : %s" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1093 +-msgid "Interrupted system call should be restarted" +-msgstr "Onderbroken systeemaanroep moet worden herstart" ++#: nis/nis_print.c:338 ++msgid "Object Type : " ++msgstr "Objectsoort : " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1101 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:67 +-msgid "Channel number out of range" +-msgstr "Kanaalgetal buiten bereik" ++#: nis/nis_print.c:358 ++#, c-format ++msgid " Data Length = %u\n" ++msgstr " Gegevenslengte = %u\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1109 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:68 +-msgid "Level 2 not synchronized" +-msgstr "Niveau 2 niet gesynchroniseerd" ++#: nis/nis_print.c:372 ++#, c-format ++msgid "Status : %s\n" ++msgstr "Status : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1117 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:69 +-msgid "Level 3 halted" +-msgstr "Niveau 3 tot stilstand gekomen" ++#: nis/nis_print.c:373 ++#, c-format ++msgid "Number of objects : %u\n" ++msgstr "Aantal objecten : %u\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1125 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:70 +-msgid "Level 3 reset" +-msgstr "Niveau 3 opnieuw instellen" ++#: nis/nis_print.c:377 ++#, c-format ++msgid "Object #%d:\n" ++msgstr "Object #%d:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1133 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:71 +-msgid "Link number out of range" +-msgstr "Koppelingsgetal buiten bereik" ++#: nis/nis_print_group_entry.c:117 ++#, c-format ++msgid "Group entry for \"%s.%s\" group:\n" ++msgstr "Groepsitem voor \"%s.%s\"-groep:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1141 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:72 +-msgid "Protocol driver not attached" +-msgstr "Protocolstuurprogramma niet verbonden" ++#: nis/nis_print_group_entry.c:125 ++msgid " Explicit members:\n" ++msgstr " Expliciete leden:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1149 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:73 +-msgid "No CSI structure available" +-msgstr "Geen CSI-structure beschikbaar" ++#: nis/nis_print_group_entry.c:130 ++msgid " No explicit members\n" ++msgstr " Geen expliciete leden\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1157 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:74 +-msgid "Level 2 halted" +-msgstr "Niveau 2 tot stilstand gekomen" ++#: nis/nis_print_group_entry.c:133 ++msgid " Implicit members:\n" ++msgstr " Impliciete leden:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1165 +-msgid "Invalid exchange" +-msgstr "Ongeldige uitwisseling" ++#: nis/nis_print_group_entry.c:138 ++msgid " No implicit members\n" ++msgstr " Geen impliciete leden\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1173 +-msgid "Invalid request descriptor" +-msgstr "Ongeldige verzoekbeschrijver" ++#: nis/nis_print_group_entry.c:141 ++msgid " Recursive members:\n" ++msgstr " Recursieve leden:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1181 +-msgid "Exchange full" +-msgstr "Uitwisseling vol" ++#: nis/nis_print_group_entry.c:146 ++msgid " No recursive members\n" ++msgstr " Geen recursieve leden\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1189 +-msgid "No anode" +-msgstr "Geen anode" ++#: nis/nis_print_group_entry.c:149 nis/nis_print_group_entry.c:165 ++msgid " Explicit nonmembers:\n" ++msgstr " Expliciete niet-leden:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1197 +-msgid "Invalid request code" +-msgstr "Ongeldige verzoekcode" ++#: nis/nis_print_group_entry.c:154 ++msgid " No explicit nonmembers\n" ++msgstr " Geen expliciete niet-leden\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1205 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:85 +-msgid "Invalid slot" +-msgstr "Ongeldig slot" ++#: nis/nis_print_group_entry.c:157 ++msgid " Implicit nonmembers:\n" ++msgstr " Impliciete niet-leden:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1213 +-msgid "File locking deadlock error" +-msgstr "Bestandsblokkering fout totale blokkering" ++#: nis/nis_print_group_entry.c:162 ++msgid " No implicit nonmembers\n" ++msgstr " Geen impliciete niet-leden\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1221 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:87 +-msgid "Bad font file format" +-msgstr "Slecht lettertype bestandsformaat" ++#: nis/nis_print_group_entry.c:170 ++msgid " No recursive nonmembers\n" ++msgstr " Geen recursieve niet-leden\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1229 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:94 +-msgid "Machine is not on the network" +-msgstr "Machine is niet op het netwerk" ++#: nis/nss_nisplus/nisplus-publickey.c:101 ++#: nis/nss_nisplus/nisplus-publickey.c:183 ++#, c-format ++msgid "DES entry for netname %s not unique\n" ++msgstr "DES-item voor netnaam %s is niet uniek\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1237 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:95 +-msgid "Package not installed" +-msgstr "Pakket niet geïnstalleerd" ++#: nis/nss_nisplus/nisplus-publickey.c:220 ++#, c-format ++msgid "netname2user: missing group id list in `%s'." ++msgstr "netname2user: ontbrekende groeps-ID-lijst in '%s'" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1245 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:98 +-msgid "Advertise error" +-msgstr "Adverteerfout" ++#: nis/nss_nisplus/nisplus-publickey.c:302 ++#: nis/nss_nisplus/nisplus-publickey.c:308 ++#: nis/nss_nisplus/nisplus-publickey.c:373 ++#: nis/nss_nisplus/nisplus-publickey.c:382 ++#, c-format ++msgid "netname2user: (nis+ lookup): %s\n" ++msgstr "netname2user: (opzoeken in NIS+): %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1253 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:99 +-msgid "Srmount error" +-msgstr "Srmount fout" ++#: nis/nss_nisplus/nisplus-publickey.c:321 ++#, c-format ++msgid "netname2user: DES entry for %s in directory %s not unique" ++msgstr "netname2user: DES-item voor %s in map %s is niet uniek" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1261 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:100 +-msgid "Communication error on send" +-msgstr "Communicatiefout bij verzenden" ++#: nis/nss_nisplus/nisplus-publickey.c:339 ++#, c-format ++msgid "netname2user: principal name `%s' too long" ++msgstr "netname2user: hoofdnaam '%s' is te lang" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1269 +-msgid "RFS specific error" +-msgstr "RFS-specifieke fout" ++#: nis/nss_nisplus/nisplus-publickey.c:395 ++#, c-format ++msgid "netname2user: LOCAL entry for %s in directory %s not unique" ++msgstr "netname2user: LOCAL-item voor %s in map %s is niet uniek" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1277 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:110 +-msgid "Name not unique on network" +-msgstr "Naam niet uniek op netwerk" ++#: nis/nss_nisplus/nisplus-publickey.c:402 ++msgid "netname2user: should not have uid 0" ++msgstr "netname2user: UID mag niet 0 zijn" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1285 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:111 +-msgid "File descriptor in bad state" +-msgstr "Bestandsbeschrijver in slechte status" ++#: nis/ypclnt.c:825 ++msgid "Request arguments bad" ++msgstr "Verzoeksargumenten zijn ongeldig" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1293 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:112 +-msgid "Remote address changed" +-msgstr "Adres op afstand is veranderd" ++#: nis/ypclnt.c:828 ++msgid "RPC failure on NIS operation" ++msgstr "RPC-aanroep is mislukt bij NIS-bewerking" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1301 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:113 +-msgid "Can not access a needed shared library" +-msgstr "Kan geen toegang krijgen tot benodigde gedeelde bibliotheek" ++#: nis/ypclnt.c:831 ++msgid "Can't bind to server which serves this domain" ++msgstr "Kan niet binden aan de server die dit domein aanbiedt" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1309 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:114 +-msgid "Accessing a corrupted shared library" +-msgstr "Er wordt toegang gezocht tot een beschadigde gedeelde bibliotheek" ++#: nis/ypclnt.c:834 ++msgid "No such map in server's domain" ++msgstr "Afbeelding bestaat niet in domein van server" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1317 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:115 +-msgid ".lib section in a.out corrupted" +-msgstr ".lib sectie in a.out beschadigd" ++#: nis/ypclnt.c:837 ++msgid "No such key in map" ++msgstr "Sleutel bestaat niet in afbeelding" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1325 +-msgid "Attempting to link in too many shared libraries" +-msgstr "Er wordt geprobeerd teveel gedeelde bibliotheken in te koppelen" ++#: nis/ypclnt.c:840 ++msgid "Internal NIS error" ++msgstr "**Interne NIS-fout**" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1333 +-msgid "Cannot exec a shared library directly" +-msgstr "Kan een gedeelde bibliotheek niet direct uitvoeren" ++#: nis/ypclnt.c:843 ++msgid "Local resource allocation failure" ++msgstr "Fout bij reserveren van lokale hulpbron" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1341 +-msgid "Streams pipe error" +-msgstr "Pijpfout bij stromen" ++#: nis/ypclnt.c:846 ++msgid "No more records in map database" ++msgstr "Geen records meer in afbeeldingengegevensbank" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1349 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:165 +-msgid "Structure needs cleaning" +-msgstr "Structure moet worden opgeschoond" ++#: nis/ypclnt.c:849 ++msgid "Can't communicate with portmapper" ++msgstr "Kan niet communiceren met poortvertaler" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1357 +-msgid "Not a XENIX named type file" +-msgstr "Niet een XENIX bestand met naam" ++#: nis/ypclnt.c:852 ++msgid "Can't communicate with ypbind" ++msgstr "Kan niet communiceren met ypbind()" ++ ++#: nis/ypclnt.c:855 ++msgid "Can't communicate with ypserv" ++msgstr "Kan niet communiceren met ypserv()" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1365 +-msgid "No XENIX semaphores available" +-msgstr "Geen XENIX-semaforen beschikbaar" ++#: nis/ypclnt.c:858 ++msgid "Local domain name not set" ++msgstr "Lokale domeinnaam is niet ingesteld" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1373 +-msgid "Is a named type file" +-msgstr "Is een bestand met naam" ++#: nis/ypclnt.c:861 ++msgid "NIS map database is bad" ++msgstr "NIS-afbeeldingengegevensbank is beschadigd" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1381 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:170 +-msgid "Remote I/O error" +-msgstr "Invoer/uitvoer fout op afstand" ++#: nis/ypclnt.c:864 ++msgid "NIS client/server version mismatch - can't supply service" ++msgstr "versies van NIS-client en -server passen niet bij elkaar -- kan dienst niet aanbieden" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1389 +-msgid "No medium found" +-msgstr "Geen medium gevonden" ++#: nis/ypclnt.c:870 ++msgid "Database is busy" ++msgstr "Gegevensbank is bezig" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1397 +-msgid "Wrong medium type" +-msgstr "Verkeerde mediumsoort" ++#: nis/ypclnt.c:873 ++msgid "Unknown NIS error code" ++msgstr "Onbekende NIS-foutcode" + +-#: stdio-common/../sysdeps/unix/siglist.c:26 +-msgid "Signal 0" +-msgstr "Signaal 0" ++#: nis/ypclnt.c:913 ++msgid "Internal ypbind error" ++msgstr "**Interne ypbind()-fout**" + +-#: stdio-common/../sysdeps/unix/siglist.c:32 +-msgid "IOT trap" +-msgstr "IOT-val" ++#: nis/ypclnt.c:916 ++msgid "Domain not bound" ++msgstr "Domein is niet gebonden" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:30 +-msgid "Error 0" +-msgstr "Fout 0" ++#: nis/ypclnt.c:919 ++msgid "System resource allocation failure" ++msgstr "Fout bij reserveren van systeemhulpbron" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:31 +-#: nis/nis_error.c:40 +-msgid "Not owner" +-msgstr "Niet eigenaar" ++#: nis/ypclnt.c:922 ++msgid "Unknown ypbind error" ++msgstr "Onbekende ypbind()-fout" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:35 +-msgid "I/O error" +-msgstr "Invoer/Uitvoer fout" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:37 +-msgid "Arg list too long" +-msgstr "Argumentenlijst te lang" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:39 +-msgid "Bad file number" +-msgstr "Slecht bestandsgetal" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:42 +-msgid "Not enough space" +-msgstr "Onvoldoende ruimte" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:46 +-msgid "Device busy" +-msgstr "Apparaat bezig" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:48 +-msgid "Cross-device link" +-msgstr "Koppeling over verschillende apparaten" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:53 +-msgid "File table overflow" +-msgstr "Bestandstabel overloop" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:63 +-msgid "Argument out of domain" +-msgstr "Argument buiten domein" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:64 +-msgid "Result too large" +-msgstr "Resultaat te groot" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:75 +-msgid "Deadlock situation detected/avoided" +-msgstr "Situatie van totale blokkering gedetecteerd/omzeild" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:76 +-msgid "No record locks available" +-msgstr "Geen recordblokkeringen beschikbaar" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:79 +-msgid "Disc quota exceeded" +-msgstr "Schijfquota overschreden" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:80 +-msgid "Bad exchange descriptor" +-msgstr "Slechte uitwisselingsbeschrijver" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:81 +-msgid "Bad request descriptor" +-msgstr "Slechte verzoekbeschrijver" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:82 +-msgid "Message tables full" +-msgstr "Berichttabellen vol" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:83 +-msgid "Anode table overflow" +-msgstr "Anode-tabel overloop" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:84 +-msgid "Bad request code" +-msgstr "Slechte verzoekcode" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:86 +-msgid "File locking deadlock" +-msgstr "Bestandsblokkering totale blokkering" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:88 +-msgid "Error 58" +-msgstr "Fout 58" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:89 +-msgid "Error 59" +-msgstr "Fout 59" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:90 +-msgid "Not a stream device" +-msgstr "Niet een stroomapparaat" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:93 +-msgid "Out of stream resources" +-msgstr "Bronnen voor stromen uitgeput" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:102 +-msgid "Error 72" +-msgstr "Fout 72" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:103 +-msgid "Error 73" +-msgstr "Fout 73" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:105 +-msgid "Error 75" +-msgstr "Fout 75" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:106 +-msgid "Error 76" +-msgstr "Fout 76" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:107 +-msgid "Not a data message" +-msgstr "Niet een gegevensbericht" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:116 +-msgid "Attempting to link in more shared libraries than system limit" +-msgstr "Er wordt geprobeerd meer gedeelde bibliotheken in te koppelen dan de systeemgrens" ++#: nis/ypclnt.c:963 ++msgid "yp_update: cannot convert host to netname\n" ++msgstr "yp_update: kan host niet converteren naar netnaam\n" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:117 +-msgid "Can not exec a shared library directly" +-msgstr "Kan een gedeelde bibliotheek niet direct uitvoeren" ++#: nis/ypclnt.c:981 ++msgid "yp_update: cannot get server address\n" ++msgstr "yp_update: kan server-adres niet opvragen\n" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:118 +-msgid "Illegal byte sequence" +-msgstr "Ongeldige bytereeks" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:119 +-msgid "Operation not applicable" +-msgstr "Bewerking niet van toepassing" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:120 +-msgid "Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS" +-msgstr "Het aantal symbolische koppelingen dat tijdens het doorlopen van de padnaam is tegengekomen overschrijdt het maximum MAXSYMLINKS" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:121 +-msgid "Error 91" +-msgstr "Fout 91" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:122 +-msgid "Error 92" +-msgstr "Fout 92" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:129 +-msgid "Option not supported by protocol" +-msgstr "Optie niet ondersteund door protocol" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:130 +-msgid "Error 100" +-msgstr "Fout 100" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:131 +-msgid "Error 101" +-msgstr "Fout 101" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:132 +-msgid "Error 102" +-msgstr "Fout 102" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:133 +-msgid "Error 103" +-msgstr "Fout 103" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:134 +-msgid "Error 104" +-msgstr "Fout 104" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:135 +-msgid "Error 105" +-msgstr "Fout 105" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:136 +-msgid "Error 106" +-msgstr "Fout 106" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:137 +-msgid "Error 107" +-msgstr "Fout 107" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:138 +-msgid "Error 108" +-msgstr "Fout 108" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:139 +-msgid "Error 109" +-msgstr "Fout 109" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:140 +-msgid "Error 110" +-msgstr "Fout 110" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:141 +-msgid "Error 111" +-msgstr "Fout 111" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:142 +-msgid "Error 112" +-msgstr "Fout 112" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:143 +-msgid "Error 113" +-msgstr "Fout 113" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:144 +-msgid "Error 114" +-msgstr "Fout 114" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:145 +-msgid "Error 115" +-msgstr "Fout 115" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:146 +-msgid "Error 116" +-msgstr "Fout 116" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:147 +-msgid "Error 117" +-msgstr "Fout 117" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:148 +-msgid "Error 118" +-msgstr "Fout 118" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:149 +-msgid "Error 119" +-msgstr "Fout 119" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:152 +-msgid "Operation not supported on transport endpoint" +-msgstr "Bewerking niet ondersteund op overdrachtseindpunt" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:154 +-msgid "Address family not supported by protocol family" +-msgstr "Adresfamilie niet ondersteund door protocolfamilie" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:159 +-msgid "Network dropped connection because of reset" +-msgstr "Netwerk liet verbinding vallen vanwege opnieuw instellen" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:166 +-msgid "Error 136" +-msgstr "Fout 136" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:167 +-msgid "Not a name file" +-msgstr "Niet een naambestand" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:168 +-msgid "Not available" +-msgstr "Niet beschikbaar" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:169 +-msgid "Is a name file" +-msgstr "Is een naambestand" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:171 +-msgid "Reserved for future use" +-msgstr "Gereserveerd voor toekomstig gebruik" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:172 +-msgid "Error 142" +-msgstr "Fout 142" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:173 +-msgid "Cannot send after socket shutdown" +-msgstr "Kan niet verzenden na afsluiten socket" ++#: nscd/aicache.c:76 nscd/hstcache.c:461 ++#, c-format ++msgid "Haven't found \"%s\" in hosts cache!" ++msgstr "Item \"%s\" niet gevonden in hosts-cache!" + +-#: stdio-common/psignal.c:63 ++#: nscd/aicache.c:78 nscd/hstcache.c:463 + #, c-format +-msgid "%s%sUnknown signal %d\n" +-msgstr "%s%sOnbekend signaal %d\n" ++msgid "Reloading \"%s\" in hosts cache!" ++msgstr "Herladen van \"%s\" in hosts-cache!" + +-#: dlfcn/dlinfo.c:51 +-msgid "RTLD_SELF used in code not dynamically loaded" +-msgstr "RTLD_SELF gebruikt in code niet dynamisch geladen" ++#: nscd/cache.c:126 ++#, c-format ++msgid "add new entry \"%s\" of type %s for %s to cache%s" ++msgstr "toevoegen van nieuw item \"%s\" van type %s voor %s aan cache%s" + +-#: dlfcn/dlinfo.c:61 +-msgid "unsupported dlinfo request" +-msgstr "niet-ondersteund dlinfo-verzoek" ++#: nscd/cache.c:233 nscd/connections.c:750 ++#, c-format ++msgid "cannot stat() file `%s': %s" ++msgstr "kan status van bestand '%s' niet opvragen: %s" + +-#: malloc/mcheck.c:346 +-msgid "memory is consistent, library is buggy\n" +-msgstr "geheugen is consistent, er zitten fouten in de bibliotheek\n" ++#: nscd/cache.c:262 ++#, c-format ++msgid "pruning %s cache; time %ld" ++msgstr "snoeien van cache %s; tijd %ld" + +-#: malloc/mcheck.c:349 +-msgid "memory clobbered before allocated block\n" +-msgstr "geheugen rommelig voor toegewezen blok\n" ++#: nscd/cache.c:289 ++#, c-format ++msgid "considering %s entry \"%s\", timeout %" ++msgstr "overwegen van %s-item \"%s\", tijdslimiet %" + +-#: malloc/mcheck.c:352 +-msgid "memory clobbered past end of allocated block\n" +-msgstr "geheugen rommelig na einde van toegewezen blok\n" ++#: nscd/connections.c:469 nscd/connections.c:481 nscd/connections.c:493 ++#: nscd/connections.c:512 ++#, c-format ++msgid "invalid persistent database file \"%s\": %s" ++msgstr "ongeldig persistent gegevensbestand '%s': %s" + +-#: malloc/mcheck.c:355 +-msgid "block freed twice\n" +-msgstr "blok tweemaal vrij gegeven\n" ++#: nscd/connections.c:483 ++msgid "header size does not match" ++msgstr "grootte van de kop klopt niet" + +-#: malloc/mcheck.c:358 +-msgid "bogus mcheck_status, library is buggy\n" +-msgstr "slechte mcheck_status, er zit een fout in de bibliotheek\n" ++#: nscd/connections.c:495 ++msgid "file size does not match" ++msgstr "bestandsgrootte klopt niet" + +-#: malloc/memusagestat.c:53 +-msgid "Name output file" +-msgstr "Naam uitvoerbestand" ++#: nscd/connections.c:514 ++msgid "verification failed" ++msgstr "gegevenscontrole is mislukt" + +-#: malloc/memusagestat.c:54 +-msgid "Title string used in output graphic" +-msgstr "Titeltekenreeks gebruikt in grafische uitvoer" ++#: nscd/connections.c:528 ++#, c-format ++msgid "suggested size of table for database %s larger than the persistent database's table" ++msgstr "de aangeraden tabelgrootte voor gegevensbestand '%s' is groter dan de tabelgrootte van het persistente gegevensbestand" + +-#: malloc/memusagestat.c:55 +-msgid "Generate output linear to time (default is linear to number of function calls)" +-msgstr "Uitvoer lineair in de tijd genereren (standaard is lineair in het aantal functie-aanroepen)" ++#: nscd/connections.c:538 nscd/connections.c:619 ++#, c-format ++msgid "cannot create read-only descriptor for \"%s\"; no mmap" ++msgstr "kan geen alleen-lezen-descriptor voor '%s' aanmaken; geen mmap()" + +-#: malloc/memusagestat.c:57 +-msgid "Also draw graph for total memory consumption" +-msgstr "Ook een grafiek tekenen voor totaal geheugengebruik" ++#: nscd/connections.c:598 ++#, c-format ++msgid "database for %s corrupted or simultaneously used; remove %s manually if necessary and restart" ++msgstr "gegevensbestand voor %s is beschadigd of wordt al gebruikt; verwijder %s zo nodig handmatig en herstart" + +-#: malloc/memusagestat.c:58 +-msgid "make output graphic VALUE pixel wide" +-msgstr "uitvoergrafiek WAARDE beeldpunten breed maken" ++#: nscd/connections.c:605 ++#, c-format ++msgid "cannot create %s; no persistent database used" ++msgstr "kan %s niet aanmaken; geen persistent gegevensbestand gebruikt" + +-#: malloc/memusagestat.c:59 +-msgid "make output graphic VALUE pixel high" +-msgstr "uitvoergrafiek WAARDE beeldpunten hoog maken" ++#: nscd/connections.c:608 ++#, c-format ++msgid "cannot create %s; no sharing possible" ++msgstr "kan %s niet aanmaken; bestandsdeling is niet mogelijk" + +-#: malloc/memusagestat.c:64 +-msgid "Generate graphic from memory profiling data" +-msgstr "Grafiek genereren van geheugenprofileringsgegevens" ++#: nscd/connections.c:679 ++#, c-format ++msgid "cannot write to database file %s: %s" ++msgstr "kan niet naar gegevensbestand %s schrijven: %s" + +-#: malloc/memusagestat.c:67 +-msgid "DATAFILE [OUTFILE]" +-msgstr "GEGEVENSBESTAND [UITVOERBESTAND]" ++#: nscd/connections.c:713 ++#, c-format ++msgid "cannot set socket to close on exec: %s; disabling paranoia mode" ++msgstr "kan socket niet op sluiten-bij-exec instellen: %s -- paranoia-modus is uitgeschakeld" + +-#: string/strerror.c:43 posix/../sysdeps/posix/gai_strerror.c:57 +-msgid "Unknown error" +-msgstr "Onbekende fout" ++#: nscd/connections.c:763 ++#, c-format ++msgid "cannot open socket: %s" ++msgstr "kan socket niet openen: %s" + +-#: string/strsignal.c:69 ++#: nscd/connections.c:780 + #, c-format +-msgid "Real-time signal %d" +-msgstr "Real-time signaal %d" ++msgid "cannot change socket to nonblocking mode: %s" ++msgstr "kan socket niet omschakelen naar niet-blokkerende modus: %s" + +-#: string/strsignal.c:73 ++#: nscd/connections.c:788 + #, c-format +-msgid "Unknown signal %d" +-msgstr "Onbekend signaal %d" ++msgid "cannot set socket to close on exec: %s" ++msgstr "kan socket niet op sluiten-bij-exec instellen: %s" + +-#: timezone/zdump.c:176 ++#: nscd/connections.c:799 + #, c-format +-msgid "%s: usage is %s [ --version ] [ -v ] [ -c cutoff ] zonename ...\n" +-msgstr "%s: gebruik is %s [ --version ] [ -v ] [ -c afkapwaarde ] zonenaam ...\n" ++msgid "cannot enable socket to accept connections: %s" ++msgstr "kan socket geen verbindingen laten accepteren: %s" + +-#: timezone/zdump.c:269 +-msgid "Error writing to standard output" +-msgstr "Fout bij schrijven naar standaard uitvoer" ++#: nscd/connections.c:892 ++#, c-format ++msgid "provide access to FD %d, for %s" ++msgstr "toegang verleend aan bestandsdescriptor %d, voor %s" + +-#: timezone/zic.c:361 ++#: nscd/connections.c:904 + #, c-format +-msgid "%s: Memory exhausted: %s\n" +-msgstr "%s: Geheugen uitgeput: %s\n" ++msgid "cannot handle old request version %d; current version is %d" ++msgstr "kan verzoek voor oude versie %d niet behandelen; huidige versie is %d" + +-#: timezone/zic.c:386 misc/error.c:129 misc/error.c:157 +-msgid "Unknown system error" +-msgstr "Onbekende systeemfout" ++#: nscd/connections.c:954 nscd/connections.c:1007 ++#, c-format ++msgid "cannot write result: %s" ++msgstr "kan resultaat niet schrijven: %s" + +-#: timezone/zic.c:420 ++#: nscd/connections.c:1082 + #, c-format +-msgid "\"%s\", line %d: %s" +-msgstr "\"%s\", regel %d: %s" ++msgid "error getting caller's id: %s" ++msgstr "fout bij opvragen van ID van aanroeper: %s" + +-#: timezone/zic.c:423 ++#: nscd/connections.c:1140 nscd/connections.c:1154 + #, c-format +-msgid " (rule from \"%s\", line %d)" +-msgstr " (regel van \"%s\", regel %d)" ++msgid "cannot open /proc/self/cmdline: %s; disabling paranoia mode" ++msgstr "kan '/proc/self/cmdline' niet openen: %s -- paranoia-modus is uitgeschakeld" + +-#: timezone/zic.c:435 +-msgid "warning: " +-msgstr "waarschuwing: " ++#: nscd/connections.c:1194 ++#, c-format ++msgid "cannot change to old UID: %s; disabling paranoia mode" ++msgstr "kan niet overschakelen naar oude UID: %s -- paranoia-modus is uitgeschakeld" + +-#: timezone/zic.c:445 ++#: nscd/connections.c:1204 + #, c-format +-msgid "" +-"%s: usage is %s [ --version ] [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n" +-"\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" +-msgstr "" +-"%s: gebruik is %s [ --version ] [ -s ] [ -v ] [ -l lokale-tijd ] [ -p posix-regels ] \\\n" +-"\t[ -d map ] [ -L schrikkelseconden ] [ -y jaar-is-soort ] [ bestandsnaam ... ]\n" ++msgid "cannot change to old GID: %s; disabling paranoia mode" ++msgstr "kan niet overschakelen naar oude GID: %s -- paranoia-modus is uitgeschakeld" + +-#: timezone/zic.c:492 ++#: nscd/connections.c:1217 + #, c-format +-msgid "%s: More than one -d option specified\n" +-msgstr "%s: Meerdere -d opties opgegeven\n" ++msgid "cannot change to old working directory: %s; disabling paranoia mode" ++msgstr "kan niet overschakelen naar oude werkmap: %s -- paranoia-modus is uitgeschakeld" + +-#: timezone/zic.c:502 ++#: nscd/connections.c:1245 + #, c-format +-msgid "%s: More than one -l option specified\n" +-msgstr "%s: Meerdere -l opties opgegeven\n" ++msgid "re-exec failed: %s; disabling paranoia mode" ++msgstr "her-exec() is mislukt: %s -- paranoia-modus is uitgeschakeld" + +-#: timezone/zic.c:512 ++#: nscd/connections.c:1254 + #, c-format +-msgid "%s: More than one -p option specified\n" +-msgstr "%s: Meerdere -p opties opgegeven\n" ++msgid "cannot change current working directory to \"/\": %s" ++msgstr "kan huidige werkmap niet overschakelen naar '/': %s" + +-#: timezone/zic.c:522 ++#: nscd/connections.c:1372 + #, c-format +-msgid "%s: More than one -y option specified\n" +-msgstr "%s: Meerdere -y opties opgegeven\n" ++msgid "short read while reading request: %s" ++msgstr "te weinig gelezen bij lezen van verzoek: %s" + +-#: timezone/zic.c:532 ++#: nscd/connections.c:1404 + #, c-format +-msgid "%s: More than one -L option specified\n" +-msgstr "%s: Meerdere -L opties opgegeven\n" ++msgid "key length in request too long: %d" ++msgstr "sleutellengte in verzoek is te lang: %d" + +-#: timezone/zic.c:639 ++#: nscd/connections.c:1417 + #, c-format +-msgid "%s: Can't unlink %s: %s\n" +-msgstr "%s: Kan %s niet ontkoppelen: %s\n" ++msgid "short read while reading request key: %s" ++msgstr "te weinig gelezen bij lezen van verzoeksleutel: %s" + +-#: timezone/zic.c:646 +-msgid "hard link failed, symbolic link used" +-msgstr "harde koppeling mislukt, symbolische wordt gebruikt" ++#: nscd/connections.c:1426 ++#, c-format ++msgid "handle_request: request received (Version = %d) from PID %ld" ++msgstr "handle_request(): verzoek ontvangen (versie = %d) van PID %ld" + +-#: timezone/zic.c:654 ++#: nscd/connections.c:1431 + #, c-format +-msgid "%s: Can't link from %s to %s: %s\n" +-msgstr "%s: Kan niet koppelen van %s naar %s: %s\n" ++msgid "handle_request: request received (Version = %d)" ++msgstr "handle_request(): verzoek ontvangen (versie = %d)" + +-#: timezone/zic.c:752 timezone/zic.c:754 +-msgid "same rule name in multiple files" +-msgstr "dezelfde regelnaam in meerdere bestanden" ++#: nscd/connections.c:1792 ++#, c-format ++msgid "could only start %d threads; terminating" ++msgstr "kan slechts %d threads starten -- gestopt" + +-#: timezone/zic.c:795 +-msgid "unruly zone" +-msgstr "onhandelbare zone" ++#: nscd/connections.c:1840 nscd/connections.c:1841 nscd/connections.c:1858 ++#: nscd/connections.c:1867 nscd/connections.c:1885 nscd/connections.c:1896 ++#: nscd/connections.c:1907 ++#, c-format ++msgid "Failed to run nscd as user '%s'" ++msgstr "uitvoeren van nscd als gebruiker '%s' is mislukt" + +-#: timezone/zic.c:802 ++#: nscd/connections.c:1859 + #, c-format +-msgid "%s in ruleless zone" +-msgstr "%s in regelloze zone" ++msgid "initial getgrouplist failed" ++msgstr "eerste getgrouplist() is mislukt" + +-#: timezone/zic.c:823 +-msgid "standard input" +-msgstr "standaard invoer" ++#: nscd/connections.c:1868 ++#, c-format ++msgid "getgrouplist failed" ++msgstr "getgrouplist() is mislukt" + +-#: timezone/zic.c:828 ++#: nscd/connections.c:1886 + #, c-format +-msgid "%s: Can't open %s: %s\n" +-msgstr "%s: Kan %s niet openen: %s\n" ++msgid "setgroups failed" ++msgstr "setgroups() is mislukt" + +-#: timezone/zic.c:839 +-msgid "line too long" +-msgstr "regel te lang" ++#: nscd/grpcache.c:400 nscd/hstcache.c:411 nscd/initgrcache.c:411 ++#: nscd/pwdcache.c:395 ++#, c-format ++msgid "short write in %s: %s" ++msgstr "te weinig geschreven in %s: %s" + +-#: timezone/zic.c:859 +-msgid "input line of unknown type" +-msgstr "invoerregel van onbekende soort" ++#: nscd/grpcache.c:443 nscd/initgrcache.c:77 ++#, c-format ++msgid "Haven't found \"%s\" in group cache!" ++msgstr "Item \"%s\" niet gevonden in groeps-cache!" + +-#: timezone/zic.c:875 ++#: nscd/grpcache.c:445 nscd/initgrcache.c:79 + #, c-format +-msgid "%s: Leap line in non leap seconds file %s\n" +-msgstr "%s: Schrikkelregel in niet-schrikkelseconden bestand %s\n" ++msgid "Reloading \"%s\" in group cache!" ++msgstr "Herladen van \"%s\" in groeps-cache!" + +-#: timezone/zic.c:882 timezone/zic.c:1297 timezone/zic.c:1322 ++#: nscd/grpcache.c:536 + #, c-format +-msgid "%s: panic: Invalid l_value %d\n" +-msgstr "%s: paniek: Ongeldige l_value %d\n" ++msgid "Invalid numeric gid \"%s\"!" ++msgstr "Ongeldig numeriek GID '%s'!" + +-#: timezone/zic.c:890 ++#: nscd/mem.c:382 + #, c-format +-msgid "%s: Error reading %s\n" +-msgstr "%s: Fout bij lezen %s\n" ++msgid "freed %zu bytes in %s cache" ++msgstr "%zu bytes in cache %s vrijgegeven" + +-#: timezone/zic.c:897 ++#: nscd/mem.c:511 + #, c-format +-msgid "%s: Error closing %s: %s\n" +-msgstr "%s: Fout bij sluiten %s: %s\n" ++msgid "no more memory for database '%s'" ++msgstr "onvoldoende geheugen voor gegevensbank '%s'" + +-#: timezone/zic.c:902 +-msgid "expected continuation line not found" +-msgstr "verwachte continuering regel niet gevonden" ++#: nscd/nscd.c:97 ++msgid "Read configuration data from NAME" ++msgstr "configuratiegegevens lezen uit dit bestand" + +-#: timezone/zic.c:958 +-msgid "wrong number of fields on Rule line" +-msgstr "verkeerd aantal velden op Rule (regel) regel" ++#: nscd/nscd.c:99 ++msgid "Do not fork and display messages on the current tty" ++msgstr "niet naar de achtergrond gaan; berichten op huidige TTY weergeven" + +-#: timezone/zic.c:962 +-msgid "nameless rule" +-msgstr "naamloze regel" ++#: nscd/nscd.c:100 ++msgid "NUMBER" ++msgstr "GETAL" + +-#: timezone/zic.c:967 +-msgid "invalid saved time" +-msgstr "ongeldige opgeslagen tijd" ++#: nscd/nscd.c:100 ++msgid "Start NUMBER threads" ++msgstr "dit aantal threads starten" + +-#: timezone/zic.c:986 +-msgid "wrong number of fields on Zone line" +-msgstr "verkeerd aantal velden in Zone regel" ++#: nscd/nscd.c:101 ++msgid "Shut the server down" ++msgstr "de server afsluiten" ++ ++#: nscd/nscd.c:102 ++msgid "Print current configuration statistic" ++msgstr "huidige configuratiestatistieken weergeven" + +-#: timezone/zic.c:992 ++#: nscd/nscd.c:103 ++msgid "TABLE" ++msgstr "TABEL" ++ ++#: nscd/nscd.c:104 ++msgid "Invalidate the specified cache" ++msgstr "genoemde cache ongeldig maken" ++ ++#: nscd/nscd.c:105 ++msgid "TABLE,yes" ++msgstr "TABEL,ja" ++ ++#: nscd/nscd.c:106 ++msgid "Use separate cache for each user" ++msgstr "aparte cache gebruiken voor elke gebruiker" ++ ++#: nscd/nscd.c:111 ++msgid "Name Service Cache Daemon." ++msgstr "Daemon voor namen-cache." ++ ++#: nscd/nscd.c:143 nss/getent.c:858 nss/makedb.c:123 + #, c-format +-msgid "\"Zone %s\" line and -l option are mutually exclusive" +-msgstr "\"Zone %s\" regel en -l optie sluiten elkaar uit" ++msgid "wrong number of arguments" ++msgstr "Verkeerd aantal argumenten" + +-#: timezone/zic.c:1000 ++#: nscd/nscd.c:153 + #, c-format +-msgid "\"Zone %s\" line and -p option are mutually exclusive" +-msgstr "\"Zone %s\" regel en -p optie sluiten elkaar uit" ++msgid "failure while reading configuration file; this is fatal" ++msgstr "kan configuratiebestand niet lezen -- server wordt niet gestart" + +-#: timezone/zic.c:1012 ++#: nscd/nscd.c:162 + #, c-format +-msgid "duplicate zone name %s (file \"%s\", line %d)" +-msgstr "dubbele zonenaam %s (bestand \"%s\", regel %d)" ++msgid "already running" ++msgstr "wordt al uitgevoerd" + +-#: timezone/zic.c:1028 +-msgid "wrong number of fields on Zone continuation line" +-msgstr "verkeerd aantal velden in Zone continueringsregel" ++#: nscd/nscd.c:177 nscd/nscd.c:232 ++#, c-format ++msgid "cannot fork" ++msgstr "kan geen nieuw proces starten" + +-#: timezone/zic.c:1068 +-msgid "invalid UTC offset" +-msgstr "ongeldige positie ten opzichte van UTC" ++#: nscd/nscd.c:240 ++#, c-format ++msgid "cannot change current working directory to \"/\"" ++msgstr "kan huidige werkmap niet overschakelen naar '/'" + +-#: timezone/zic.c:1071 +-msgid "invalid abbreviation format" +-msgstr "ongeldig afgekort formaat" ++#: nscd/nscd.c:248 ++msgid "Could not create log file" ++msgstr "Kan geen logbestand aanmaken" + +-#: timezone/zic.c:1097 +-msgid "Zone continuation line end time is not after end time of previous line" +-msgstr "Einde tijd bij zone continueringsregel is niet na einde tijd van vorige regel" ++#: nscd/nscd.c:301 nscd/nscd.c:326 nscd/nscd_stat.c:172 ++#, c-format ++msgid "Only root is allowed to use this option!" ++msgstr "Alleen root mag deze optie gebruiken!" + +-#: timezone/zic.c:1124 +-msgid "wrong number of fields on Leap line" +-msgstr "verkeerd aantal velden op Leap (schrikkel) regel" ++#: nscd/nscd.c:359 nscd/nscd_stat.c:191 ++#, c-format ++msgid "write incomplete" ++msgstr "ongeldigmakingsopdracht is onvolledig geschreven" + +-#: timezone/zic.c:1133 +-msgid "invalid leaping year" +-msgstr "ongeldig schrikkeljaar" ++#: nscd/nscd.c:370 ++#, c-format ++msgid "cannot read invalidate ACK" ++msgstr "geen ongeldigheidsbevestiging ontvangen" + +-#: timezone/zic.c:1148 timezone/zic.c:1252 +-msgid "invalid month name" +-msgstr "ongeldige naam maand" ++#: nscd/nscd.c:376 ++#, c-format ++msgid "invalidation failed" ++msgstr "het ongeldigmaken is mislukt" + +-#: timezone/zic.c:1161 timezone/zic.c:1374 timezone/zic.c:1388 +-msgid "invalid day of month" +-msgstr "ongeldig dag van maand" ++#: nscd/nscd.c:386 ++#, c-format ++msgid "secure services not implemented anymore" ++msgstr "beveiligde services worden niet langer ondersteund" + +-#: timezone/zic.c:1166 +-msgid "time before zero" +-msgstr "tijd voor nul" ++#: nscd/nscd_conf.c:55 ++#, c-format ++msgid "database %s is not supported\n" ++msgstr "gegevensbank '%s' wordt niet ondersteund\n" + +-#: timezone/zic.c:1170 +-msgid "time too small" +-msgstr "tijd te klein" ++#: nscd/nscd_conf.c:106 ++#, c-format ++msgid "Parse error: %s" ++msgstr "Ontledingsfout: %s" + +-#: timezone/zic.c:1174 +-msgid "time too large" +-msgstr "tijd te groot" ++#: nscd/nscd_conf.c:191 ++#, c-format ++msgid "Must specify user name for server-user option" ++msgstr "De optie 'server-user' vereist een gebruikersnaam als argument" + +-#: timezone/zic.c:1178 timezone/zic.c:1281 +-msgid "invalid time of day" +-msgstr "ongeldig tijd van dag" ++#: nscd/nscd_conf.c:198 ++#, c-format ++msgid "Must specify user name for stat-user option" ++msgstr "De optie 'stat-user' vereist een gebruikersnaam als argument" + +-#: timezone/zic.c:1197 +-msgid "illegal CORRECTION field on Leap line" +-msgstr "ongeldig CORRECTION (correctie) veld op Leap (schrikkel) regel" ++#: nscd/nscd_conf.c:242 ++#, c-format ++msgid "invalid value for 'reload-count': %u" ++msgstr "Ongeldige waarde voor 'reload-count': %u" + +-#: timezone/zic.c:1201 +-msgid "illegal Rolling/Stationary field on Leap line" +-msgstr "ongeldig Rolling/Stationary (Rollend/Stationair) veld op Leap (schrikkel) regel" ++#: nscd/nscd_conf.c:257 ++#, c-format ++msgid "Must specify value for restart-interval option" ++msgstr "De optie 'restart-interval' vereist een waarde als argument" + +-#: timezone/zic.c:1216 +-msgid "wrong number of fields on Link line" +-msgstr "verkeerd aantal velden op Link regel" ++#: nscd/nscd_conf.c:271 ++#, c-format ++msgid "Unknown option: %s %s %s" ++msgstr "Onbekende optie: %s %s %s" + +-#: timezone/zic.c:1220 +-msgid "blank FROM field on Link line" +-msgstr "leeg FROM-veld op Link-regel" ++#: nscd/nscd_conf.c:284 ++#, c-format ++msgid "cannot get current working directory: %s; disabling paranoia mode" ++msgstr "Kan huidige werkmap niet bepalen: %s -- paranoia-modus is uitgeschakeld" + +-#: timezone/zic.c:1224 +-msgid "blank TO field on Link line" +-msgstr "leeg TO-veld op Link-regel" ++#: nscd/nscd_conf.c:304 ++#, c-format ++msgid "maximum file size for %s database too small" ++msgstr "Maximum bestandsgrootte voor %s-gegevensbank is te klein" + +-#: timezone/zic.c:1301 +-msgid "invalid starting year" +-msgstr "ongeldig beginjaar" ++#: nscd/nscd_stat.c:141 ++#, c-format ++msgid "cannot write statistics: %s" ++msgstr "Kan statistieken niet schrijven: %s" + +-#: timezone/zic.c:1305 +-msgid "starting year too low to be represented" +-msgstr "beginjaar te laag om te representeren" ++#: nscd/nscd_stat.c:156 ++msgid "yes" ++msgstr "ja" + +-#: timezone/zic.c:1307 +-msgid "starting year too high to be represented" +-msgstr "beginjaar te hoog om te representeren" ++#: nscd/nscd_stat.c:157 ++msgid "no" ++msgstr "nee" + +-#: timezone/zic.c:1326 +-msgid "invalid ending year" +-msgstr "ongeldig afsluitend jaar" ++#: nscd/nscd_stat.c:168 ++#, c-format ++msgid "Only root or %s is allowed to use this option!" ++msgstr "Alleen root of %s mag deze optie gebruiken!" + +-#: timezone/zic.c:1330 +-msgid "ending year too low to be represented" +-msgstr "eindjaar te laag om te representeren" ++#: nscd/nscd_stat.c:179 ++#, c-format ++msgid "nscd not running!\n" ++msgstr "Er is geen nscd-proces actief!\n" + +-#: timezone/zic.c:1332 +-msgid "ending year too high to be represented" +-msgstr "eindjaar te hoog om te representeren" ++#: nscd/nscd_stat.c:203 ++#, c-format ++msgid "cannot read statistics data" ++msgstr "Kan statistieken niet lezen" ++ ++#: nscd/nscd_stat.c:206 ++#, c-format ++msgid "" ++"nscd configuration:\n" ++"\n" ++"%15d server debug level\n" ++msgstr "" ++"Configuratie van nscd:\n" ++"\n" ++"%15d debugniveau van server\n" ++ ++#: nscd/nscd_stat.c:230 ++#, c-format ++msgid "%3ud %2uh %2um %2lus server runtime\n" ++msgstr "%3ud %2uh %2um %2lus looptijd van server\n" ++ ++#: nscd/nscd_stat.c:233 ++#, c-format ++msgid " %2uh %2um %2lus server runtime\n" ++msgstr " %2uh %2um %2lus looptijd van server\n" ++ ++#: nscd/nscd_stat.c:235 ++#, c-format ++msgid " %2um %2lus server runtime\n" ++msgstr " %2um %2lus looptijd van server\n" ++ ++#: nscd/nscd_stat.c:237 ++#, c-format ++msgid " %2lus server runtime\n" ++msgstr " %2lus looptijd van server\n" + +-#: timezone/zic.c:1335 +-msgid "starting year greater than ending year" +-msgstr "beginjaar groter dan afsluitend jaar" ++#: nscd/nscd_stat.c:239 ++#, c-format ++msgid "" ++"%15d current number of threads\n" ++"%15d maximum number of threads\n" ++"%15lu number of times clients had to wait\n" ++"%15s paranoia mode enabled\n" ++"%15lu restart internal\n" ++msgstr "" ++"%15d huidig aantal threads\n" ++"%15d maximum aantal threads\n" ++"%15lu aantal keren dat aanroepers moesten wachten\n" ++"%15s paranoia-modus ingeschakeld\n" ++"%15lu interne herstarts\n" + +-#: timezone/zic.c:1342 +-msgid "typed single year" ++#: nscd/nscd_stat.c:273 ++#, c-format ++msgid "" ++"\n" ++"%s cache:\n" ++"\n" ++"%15s cache is enabled\n" ++"%15s cache is persistent\n" ++"%15s cache is shared\n" ++"%15zu suggested size\n" ++"%15zu total data pool size\n" ++"%15zu used data pool size\n" ++"%15lu seconds time to live for positive entries\n" ++"%15lu seconds time to live for negative entries\n" ++"%15 cache hits on positive entries\n" ++"%15 cache hits on negative entries\n" ++"%15 cache misses on positive entries\n" ++"%15 cache misses on negative entries\n" ++"%15lu%% cache hit rate\n" ++"%15zu current number of cached values\n" ++"%15zu maximum number of cached values\n" ++"%15zu maximum chain length searched\n" ++"%15 number of delays on rdlock\n" ++"%15 number of delays on wrlock\n" ++"%15 memory allocations failed\n" ++"%15s check /etc/%s for changes\n" + msgstr "" ++"\n" ++"%s-cache:\n" ++"\n" ++"%15s cache is ingeschakeld\n" ++"%15s cache is persistent\n" ++"%15s cache wordt gedeeld\n" ++"%15zu voorgestelde grootte\n" ++"%15zu totale beschikbare ruimte\n" ++"%15zu gebruikte ruimte\n" ++"%15lu seconden levensduur voor positieve items\n" ++"%15lu seconden levensduur voor negatieve items\n" ++"%15 cachetreffers op positieve items\n" ++"%15 cachetreffers op negatieve items\n" ++"%15 cachemissers op positieve items\n" ++"%15 cachemissers op negatieve items\n" ++"%15lu%% treffers\n" ++"%15zu huidig aantal waarden in cache\n" ++"%15zu maximum aantal waarden in cache\n" ++"%15zu maximale doorzochte kettinglengte\n" ++"%15 aantal vertragingen op leesblokkering\n" ++"%15 aantal vertragingen op schrijfblokkering\n" ++"%15 aantal mislukte geheugenreserveringen\n" ++"%15s /etc/%s controleren op wijzigingen\n" + +-#: timezone/zic.c:1379 +-msgid "invalid weekday name" +-msgstr "ongeldige naam weekdag" ++#: nscd/pwdcache.c:438 ++#, c-format ++msgid "Haven't found \"%s\" in password cache!" ++msgstr "Item \"%s\" niet gevonden in wachtwoorden-cache!" + +-#: timezone/zic.c:1494 ++#: nscd/pwdcache.c:440 + #, c-format +-msgid "%s: Can't remove %s: %s\n" +-msgstr "%s: Kan %s niet verwijderen: %s\n" ++msgid "Reloading \"%s\" in password cache!" ++msgstr "Herladen van \"%s\" in wachtwoorden-cache!" + +-#: timezone/zic.c:1504 ++#: nscd/pwdcache.c:532 + #, c-format +-msgid "%s: Can't create %s: %s\n" +-msgstr "%s: Kan %s niet aanmaken: %s\n" ++msgid "Invalid numeric uid \"%s\"!" ++msgstr "Ongeldig numeriek UID '%s'!" + +-#: timezone/zic.c:1570 ++#: nscd/selinux.c:151 + #, c-format +-msgid "%s: Error writing %s\n" +-msgstr "%s: Fout bij schrijven %s\n" ++msgid "Failed opening connection to the audit subsystem: %m" ++msgstr "Kan geen verbinding maken met audit-subsysteem: %m" + +-#: timezone/zic.c:1760 +-msgid "can't determine time zone abbreviation to use just after until time" +-msgstr "kan tijdzone afkorting niet bepalen voor gebruik net na tot-tijd" ++#: nscd/selinux.c:172 ++msgid "Failed to set keep-capabilities" ++msgstr "Kan 'keep-capabilities' (privilegesbehoud) niet inschakelen" + +-#: timezone/zic.c:1803 +-msgid "too many transitions?!" +-msgstr "teveel overgangen?!" ++#: nscd/selinux.c:173 nscd/selinux.c:232 ++#, c-format ++msgid "prctl(KEEPCAPS) failed" ++msgstr "prctl(KEEPCAPS) is mislukt" + +-#: timezone/zic.c:1822 +-msgid "internal error - addtype called with bad isdst" +-msgstr "interne fout - addtype aangeroepen met slechte isdst" ++#: nscd/selinux.c:187 ++msgid "Failed to initialize drop of capabilities" ++msgstr "Privilegesvermindering werkt niet" + +-#: timezone/zic.c:1826 +-msgid "internal error - addtype called with bad ttisstd" +-msgstr "interne fout - addtype aangeroepen met slechte ttisstd" ++#: nscd/selinux.c:188 ++#, c-format ++msgid "cap_init failed" ++msgstr "cap_init() is mislukt" + +-#: timezone/zic.c:1830 +-msgid "internal error - addtype called with bad ttisgmt" +-msgstr "interne fout - addtype aangeroepen met slechte ttisgmt" ++#: nscd/selinux.c:205 ++msgid "Failed to drop capabilities\n" ++msgstr "Verminderen van privileges is mislukt\n" + +-#: timezone/zic.c:1849 +-msgid "too many local time types" +-msgstr "teveel soorten lokale tijd" ++#: nscd/selinux.c:206 nscd/selinux.c:223 ++#, c-format ++msgid "cap_set_proc failed" ++msgstr "cap_set_proc() is mislukt" + +-#: timezone/zic.c:1877 +-msgid "too many leap seconds" +-msgstr "teveel schrikkelseconden" ++#: nscd/selinux.c:222 ++msgid "Failed to drop capabilities" ++msgstr "Verminderen van privileges is mislukt" + +-#: timezone/zic.c:1883 +-msgid "repeated leap second moment" +-msgstr "herhaald schrikkelseconde ogenblik" ++#: nscd/selinux.c:231 ++msgid "Failed to unset keep-capabilities" ++msgstr "Kan 'keep-capabilities' (privilegesbehoud) niet uitschakelen" + +-#: timezone/zic.c:1935 +-msgid "Wild result from command execution" +-msgstr "Wild resultaat van uitvoeren opdracht" ++#: nscd/selinux.c:247 ++msgid "Failed to determine if kernel supports SELinux" ++msgstr "Kan niet bepalen of de kernel SELinux ondersteunt" + +-#: timezone/zic.c:1936 ++#: nscd/selinux.c:262 + #, c-format +-msgid "%s: command was '%s', result was %d\n" +-msgstr "%s: opdracht was '%s', resultaat was %d\n" ++msgid "Failed to start AVC thread" ++msgstr "Kan geen AVC-thread starten" + +-#: timezone/zic.c:2031 +-msgid "Odd number of quotation marks" +-msgstr "Oneven aantal aanhalingstekens" ++#: nscd/selinux.c:284 ++#, c-format ++msgid "Failed to create AVC lock" ++msgstr "Kan geen AVC-grendel aanmaken" + +-#: timezone/zic.c:2051 timezone/zic.c:2070 +-msgid "time overflow" +-msgstr "tijdoverloop" ++#: nscd/selinux.c:324 ++#, c-format ++msgid "Failed to start AVC" ++msgstr "Kan AVC niet starten" + +-#: timezone/zic.c:2117 +-msgid "use of 2/29 in non leap-year" +-msgstr "gebruik van 2/29 in een niet-schrikkeljaar" ++#: nscd/selinux.c:326 ++msgid "Access Vector Cache (AVC) started" ++msgstr "AVC (Access Vector Cache) is gestart" + +-#: timezone/zic.c:2151 +-msgid "no day in month matches rule" +-msgstr "geen dag in de maand komt overeen met de regel" ++#: nscd/selinux.c:347 ++msgid "Error getting context of socket peer" ++msgstr "Kan geen context voor partnersocket verkrijgen" + +-#: timezone/zic.c:2175 +-msgid "too many, or too long, time zone abbreviations" +-msgstr "teveel of te lange tijdzone afkortingen" ++#: nscd/selinux.c:352 ++msgid "Error getting context of nscd" ++msgstr "Kan geen context voor nscd verkrijgen" + +-#: timezone/zic.c:2216 +-#, c-format +-msgid "%s: Can't create directory %s: %s\n" +-msgstr "%s: Kan map %s niet aanmaken: %s\n" ++#: nscd/selinux.c:358 ++msgid "Error getting sid from context" ++msgstr "Kan uit de context geen SID verkrijgen" + +-#: timezone/zic.c:2238 ++#: nscd/selinux.c:390 + #, c-format +-msgid "%s: %d did not sign extend correctly\n" +-msgstr "%s: %d (min/plus)teken-uitbreiding niet juist gedaan\n" +- +-#: posix/../sysdeps/generic/wordexp.c:1797 +-msgid "parameter null or not set" +-msgstr "parameter null of niet ingesteld" ++msgid "" ++"\n" ++"SELinux AVC Statistics:\n" ++"\n" ++"%15u entry lookups\n" ++"%15u entry hits\n" ++"%15u entry misses\n" ++"%15u entry discards\n" ++"%15u CAV lookups\n" ++"%15u CAV hits\n" ++"%15u CAV probes\n" ++"%15u CAV misses\n" ++msgstr "" ++"\n" ++"SELinux AVC-statistieken:\n" ++"\n" ++"%15u items opgezocht\n" ++"%15u item-treffers\n" ++"%15u item-missers\n" ++"%15u items verworpen\n" ++"%15u CAV-opzoekingen\n" ++"%15u CAV-treffers\n" ++"%15u CAV-peilingen\n" ++"%15u CAV-missers\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:31 +-msgid "Address family for hostname not supported" +-msgstr "Adresfamilie voor hostnaam niet ondersteund" ++#: nss/getent.c:52 ++msgid "database [key ...]" ++msgstr "gegevensbank [sleutel...]" + +-#: posix/../sysdeps/posix/gai_strerror.c:32 +-msgid "Temporary failure in name resolution" +-msgstr "Tijdelijke mislukking bij naamoplossing" ++#: nss/getent.c:57 ++msgid "Service configuration to be used" ++msgstr "te gebruiken configuratie" + +-#: posix/../sysdeps/posix/gai_strerror.c:33 +-msgid "Bad value for ai_flags" +-msgstr "Slechte waarde voor ai_flags" ++#: nss/getent.c:62 ++msgid "" ++"Get entries from administrative database. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Items uit een gegevensbank weergeven. Voor het rapporteren van fouten, zie:\n" ++" .\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:34 +-msgid "Non-recoverable failure in name resolution" +-msgstr "Niet-herstelbare mislukking in naamoplossing" ++#: nss/getent.c:145 nss/getent.c:394 ++#, c-format ++msgid "Enumeration not supported on %s\n" ++msgstr "Opsomming wordt niet ondersteund op %s\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:35 +-msgid "ai_family not supported" +-msgstr "ai_family niet ondersteund" ++#: nss/getent.c:782 ++#, c-format ++msgid "Unknown database name" ++msgstr "Onbekende gegevensbanknaam" + +-#: posix/../sysdeps/posix/gai_strerror.c:36 +-msgid "Memory allocation failure" +-msgstr "Geheugentoewijzingsfout" ++#: nss/getent.c:808 ++msgid "Supported databases:\n" ++msgstr "Ondersteunde gegevensbanken:\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:37 +-msgid "No address associated with hostname" +-msgstr "Geen adres geassocieerd met hostnaam" ++#: nss/getent.c:868 ++#, c-format ++msgid "Unknown database: %s\n" ++msgstr "Onbekende gegevensbank: %s\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:38 +-msgid "Name or service not known" +-msgstr "Naam of dienst niet bekend" ++#: nss/makedb.c:60 ++msgid "Convert key to lower case" ++msgstr "sleutel converteren naar kleine letters" ++ ++#: nss/makedb.c:63 ++msgid "Do not print messages while building database" ++msgstr "geen meldingen doen tijdens opbouwen van gegevensbanken" ++ ++#: nss/makedb.c:65 ++msgid "Print content of database file, one entry a line" ++msgstr "inhoud van gegevensbank weergeven, één item per regel" ++ ++#: nss/makedb.c:70 ++msgid "Create simple DB database from textual input." ++msgstr "Uit tekstinvoer een eenvoudige DB-gegevensbank genereren." + +-#: posix/../sysdeps/posix/gai_strerror.c:39 +-msgid "Servname not supported for ai_socktype" +-msgstr "Servnaam niet ondersteund voor ai_socktype" ++#: nss/makedb.c:73 ++msgid "" ++"INPUT-FILE OUTPUT-FILE\n" ++"-o OUTPUT-FILE INPUT-FILE\n" ++"-u INPUT-FILE" ++msgstr "" ++"INVOERBESTAND UITVOERBESTAND\n" ++"-o UITVOERBESTAND INVOERBESTAND\n" ++"-u INVOERBESTAND" + +-#: posix/../sysdeps/posix/gai_strerror.c:40 +-msgid "ai_socktype not supported" +-msgstr "ai_socktype niet ondersteund" ++#: nss/makedb.c:142 ++#, c-format ++msgid "No usable database library found." ++msgstr "Geen bruikbare gegevensbankbibliotheek gevonden" + +-#: posix/../sysdeps/posix/gai_strerror.c:41 +-msgid "System error" +-msgstr "Systeemfout" ++#: nss/makedb.c:149 ++#, c-format ++msgid "cannot open database file `%s': %s" ++msgstr "kan gegevensbestand '%s' niet openen: %s" + +-#: posix/../sysdeps/posix/gai_strerror.c:42 +-msgid "Processing request in progress" +-msgstr "Bezig met verwerken verzoek" ++#: nss/makedb.c:151 ++msgid "incorrectly formatted file" ++msgstr "onjuist ingedeeld bestand" + +-#: posix/../sysdeps/posix/gai_strerror.c:43 +-msgid "Request canceled" +-msgstr "Verzoek geannuleerd" ++#: nss/makedb.c:331 ++msgid "duplicate key" ++msgstr "dubbele sleutel" + +-#: posix/../sysdeps/posix/gai_strerror.c:44 +-msgid "Request not canceled" +-msgstr "Verzoek niet geannuleerd" ++#: nss/makedb.c:337 ++#, c-format ++msgid "while writing database file" ++msgstr "tijdens schrijven van gegevensbestand" + +-#: posix/../sysdeps/posix/gai_strerror.c:45 +-msgid "All requests done" +-msgstr "Alle verzoeken gedaan" ++#: nss/makedb.c:348 ++#, c-format ++msgid "problems while reading `%s'" ++msgstr "problemen tijdens lezen van '%s'" + +-#: posix/../sysdeps/posix/gai_strerror.c:46 +-msgid "Interrupted by a signal" +-msgstr "Onderbroken door een signaal" ++#: nss/makedb.c:368 nss/makedb.c:385 ++#, c-format ++msgid "while reading database" ++msgstr "tijdens lezen van gegevensbestand" + +-#: posix/getconf.c:892 ++#: posix/getconf.c:940 + #, c-format + msgid "Usage: %s [-v specification] variable_name [pathname]\n" +-msgstr "Gebruik: %s [-v specificatie] variabele_naam [padnaam]\n" ++msgstr "Gebruik: %s [-v specificatie] naam_van_variabele [padnaam]\n" ++ ++#: posix/getconf.c:943 ++#, c-format ++msgid " %s -a [pathname]\n" ++msgstr " %s -a [padnaam]\n" + +-#: posix/getconf.c:950 ++#: posix/getconf.c:1062 + #, c-format + msgid "unknown specification \"%s\"" +-msgstr "onbekende specificatie \"%s\"" ++msgstr "onbekende specificatie '%s'" ++ ++#: posix/getconf.c:1090 ++#, c-format ++msgid "Couldn't execute %s" ++msgstr "Kan %s niet uitvoeren" + +-#: posix/getconf.c:979 posix/getconf.c:995 ++#: posix/getconf.c:1130 posix/getconf.c:1146 + msgid "undefined" + msgstr "ongedefinieerd" + +-#: posix/getconf.c:1017 ++#: posix/getconf.c:1168 + #, c-format + msgid "Unrecognized variable `%s'" +-msgstr "Variabele `%s' niet herkend" ++msgstr "Onbekende variabele '%s'" + +-#: posix/getopt.c:692 posix/getopt.c:711 ++#: posix/getopt.c:571 posix/getopt.c:587 + #, c-format + msgid "%s: option `%s' is ambiguous\n" +-msgstr "%s: optie `%s' is dubbelzinnig\n" ++msgstr "%s: optie '%s' is niet eenduidig\n" + +-#: posix/getopt.c:744 posix/getopt.c:748 ++#: posix/getopt.c:620 posix/getopt.c:624 + #, c-format + msgid "%s: option `--%s' doesn't allow an argument\n" +-msgstr "%s: optie `--%s' staat geen argument toe\n" ++msgstr "%s: optie '--%s' staat geen argument toe\n" + +-#: posix/getopt.c:757 posix/getopt.c:762 ++#: posix/getopt.c:633 posix/getopt.c:638 + #, c-format + msgid "%s: option `%c%s' doesn't allow an argument\n" +-msgstr "%s: optie `%c%s' staat geen argument toe\n" ++msgstr "%s: optie '%c%s' staat geen argument toe\n" + +-#: posix/getopt.c:807 posix/getopt.c:829 posix/getopt.c:1159 +-#: posix/getopt.c:1181 ++#: posix/getopt.c:681 posix/getopt.c:700 posix/getopt.c:1016 ++#: posix/getopt.c:1035 + #, c-format + msgid "%s: option `%s' requires an argument\n" +-msgstr "%s: optie `%s' vereist een argument\n" ++msgstr "%s: optie '%s' vereist een argument\n" + +-#: posix/getopt.c:867 posix/getopt.c:870 ++#: posix/getopt.c:738 posix/getopt.c:741 + #, c-format + msgid "%s: unrecognized option `--%s'\n" +-msgstr "%s: optie niet herkend `--%s'\n" ++msgstr "%s: onbekende optie '--%s'\n" + +-#: posix/getopt.c:878 posix/getopt.c:881 ++#: posix/getopt.c:749 posix/getopt.c:752 + #, c-format + msgid "%s: unrecognized option `%c%s'\n" +-msgstr "%s: optie `%c%s' niet herkend\n" ++msgstr "%s: onbekende optie '%c%s'\n" + +-#: posix/getopt.c:936 posix/getopt.c:939 ++#: posix/getopt.c:804 posix/getopt.c:807 + #, c-format + msgid "%s: illegal option -- %c\n" + msgstr "%s: ongeldige optie -- %c\n" + +-#: posix/getopt.c:945 posix/getopt.c:948 ++#: posix/getopt.c:813 posix/getopt.c:816 + #, c-format + msgid "%s: invalid option -- %c\n" + msgstr "%s: ongeldige optie -- %c\n" + +-#: posix/getopt.c:1003 posix/getopt.c:1022 posix/getopt.c:1234 +-#: posix/getopt.c:1255 ++#: posix/getopt.c:868 posix/getopt.c:884 posix/getopt.c:1088 ++#: posix/getopt.c:1106 + #, c-format + msgid "%s: option requires an argument -- %c\n" + msgstr "%s: optie vereist een argument -- %c\n" + +-#: posix/getopt.c:1074 posix/getopt.c:1093 ++#: posix/getopt.c:937 posix/getopt.c:953 + #, c-format + msgid "%s: option `-W %s' is ambiguous\n" +-msgstr "%s: optie`-W %s' is dubbelzinnig\n" ++msgstr "%s: optie '-W %s' is niet eenduidig\n" + +-#: posix/getopt.c:1117 posix/getopt.c:1138 ++#: posix/getopt.c:977 posix/getopt.c:995 + #, c-format + msgid "%s: option `-W %s' doesn't allow an argument\n" +-msgstr "%s: optie`-W %s' staat geen argument toe\n" ++msgstr "%s: optie '-W %s' staat geen argument toe\n" + +-#: posix/regcomp.c:150 ++#: posix/regcomp.c:135 + msgid "No match" +-msgstr "Geen overeenkomst" ++msgstr "Geen overeenkomsten" + +-#: posix/regcomp.c:153 ++#: posix/regcomp.c:138 + msgid "Invalid regular expression" +-msgstr "Ongeldige reguliere uitdrukking" ++msgstr "Ongeldige reguliere expressie" + +-#: posix/regcomp.c:156 ++#: posix/regcomp.c:141 + msgid "Invalid collation character" +-msgstr "Ongeldig sorteerteken" ++msgstr "Ongeldig samengesteld teken" + +-#: posix/regcomp.c:159 ++#: posix/regcomp.c:144 + msgid "Invalid character class name" +-msgstr "Ongeldige tekenklasse naam" ++msgstr "Ongeldige tekenklassenaam" + +-#: posix/regcomp.c:162 ++#: posix/regcomp.c:147 + msgid "Trailing backslash" + msgstr "Backslash aan einde" + +-#: posix/regcomp.c:165 ++#: posix/regcomp.c:150 + msgid "Invalid back reference" +-msgstr "Ongeldig terugverwijzing" ++msgstr "Ongeldige terugverwijzing" + +-#: posix/regcomp.c:168 ++#: posix/regcomp.c:153 + msgid "Unmatched [ or [^" +-msgstr "Niet overeenkomende [ of [^" ++msgstr "Ongepaarde [ of [^" + +-#: posix/regcomp.c:171 ++#: posix/regcomp.c:156 + msgid "Unmatched ( or \\(" +-msgstr "Niet overeenkomende ( of \\(" ++msgstr "Ongepaarde ( of \\(" + +-#: posix/regcomp.c:174 ++#: posix/regcomp.c:159 + msgid "Unmatched \\{" +-msgstr "Niet overeenkomende \\{" ++msgstr "Ongepaarde \\{" + +-#: posix/regcomp.c:177 ++#: posix/regcomp.c:162 + msgid "Invalid content of \\{\\}" + msgstr "Ongeldige inhoud van \\{\\}" + +-#: posix/regcomp.c:180 ++#: posix/regcomp.c:165 + msgid "Invalid range end" + msgstr "Ongeldig bereikeinde" + +-#: posix/regcomp.c:183 ++#: posix/regcomp.c:168 + msgid "Memory exhausted" +-msgstr "Geheugen uitgeput" ++msgstr "Onvoldoende geheugen" + +-#: posix/regcomp.c:186 ++#: posix/regcomp.c:171 + msgid "Invalid preceding regular expression" +-msgstr "Ongeldige voorafgaande reguliere uitdrukking" ++msgstr "Ongeldige voorafgaande reguliere expressie" + +-#: posix/regcomp.c:189 ++#: posix/regcomp.c:174 + msgid "Premature end of regular expression" +-msgstr "Vroegtijdig einde van reguliere uitdrukking" ++msgstr "Voortijdig einde van reguliere expressie" + +-#: posix/regcomp.c:192 ++#: posix/regcomp.c:177 + msgid "Regular expression too big" +-msgstr "Reguliere uitdrukking te groot" ++msgstr "Reguliere expressie is te groot" + +-#: posix/regcomp.c:195 ++#: posix/regcomp.c:180 + msgid "Unmatched ) or \\)" +-msgstr "Niet overeenkomende ) of \\)" ++msgstr "Ongepaarde ) of \\)" + +-#: posix/regcomp.c:661 ++#: posix/regcomp.c:660 + msgid "No previous regular expression" +-msgstr "Geen eerdere reguliere uitdrukking" +- +-#: argp/argp-help.c:224 +-#, c-format +-msgid "%.*s: ARGP_HELP_FMT parameter requires a value" +-msgstr "%.*s: ARGP_HELP_FMT parameter vereist een waarde" +- +-#: argp/argp-help.c:233 +-#, c-format +-msgid "%.*s: Unknown ARGP_HELP_FMT parameter" +-msgstr "%.*s: Onbekende ARGP_HELP_FMT parameter" +- +-#: argp/argp-help.c:245 +-#, c-format +-msgid "Garbage in ARGP_HELP_FMT: %s" +-msgstr "Troep in ARGP_HELP_FMT: %s" +- +-#: argp/argp-help.c:1205 +-msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." +-msgstr "Verplichte of optionele argumenten voor lange opties zijn ook verplicht of optioneel voor overeenkomende korte opties." +- +-#: argp/argp-help.c:1592 +-msgid "Usage:" +-msgstr "Gebruik:" +- +-#: argp/argp-help.c:1596 +-msgid " or: " +-msgstr " of: " +- +-#: argp/argp-help.c:1608 +-msgid " [OPTION...]" +-msgstr " [OPTIE...]" +- +-#: argp/argp-help.c:1635 +-#, c-format +-msgid "Try `%s --help' or `%s --usage' for more information.\n" +-msgstr "Probeer `%s --help' of `%s --usage' voor meer informatie.\n" +- +-#: argp/argp-help.c:1663 +-#, c-format +-msgid "Report bugs to %s.\n" +-msgstr "" +-"Rapporteer fouten in het programma aan %s,\n" +-"en in de vertaling aan vertaling@nl.linux.org.\n" +- +-#: argp/argp-parse.c:115 +-msgid "Give this help list" +-msgstr "Deze hulplijst geven" +- +-#: argp/argp-parse.c:116 +-msgid "Give a short usage message" +-msgstr "Een kort gebruiksbericht geven" +- +-#: argp/argp-parse.c:117 +-msgid "Set the program name" +-msgstr "De programmanaam instellen" +- +-#: argp/argp-parse.c:119 +-msgid "Hang for SECS seconds (default 3600)" +-msgstr "SECS seconden hangen (standaard 3600)" +- +-#: argp/argp-parse.c:180 +-msgid "Print program version" +-msgstr "Programmaversie weergeven" +- +-#: argp/argp-parse.c:196 +-msgid "(PROGRAM ERROR) No version known!?" +-msgstr "(PROGRAMMAFOUT) Geen versie bekend!?" +- +-#: argp/argp-parse.c:672 +-#, c-format +-msgid "%s: Too many arguments\n" +-msgstr "%s: Teveel argumenten\n" ++msgstr "Geen eerdere reguliere expressie" + +-#: argp/argp-parse.c:813 +-msgid "(PROGRAM ERROR) Option should have been recognized!?" +-msgstr "(PROGRAMMAFOUT) Optie had herkend moeten worden!?" ++#: posix/wordexp.c:1798 ++msgid "parameter null or not set" ++msgstr "parameter is null of niet ingesteld" + + #: resolv/herror.c:68 + msgid "Resolver Error 0 (no error)" +-msgstr "Oplosfout 0 (geen fout)" ++msgstr "Geen fout -- (herleidingsfoutnummer 0)" + + #: resolv/herror.c:69 + msgid "Unknown host" +@@ -3727,7 +4480,7 @@ + + #: resolv/herror.c:70 + msgid "Host name lookup failure" +-msgstr "Opzoeken hostnaam mislukt" ++msgstr "Opzoeken van hostnaam is mislukt" + + #: resolv/herror.c:71 + msgid "Unknown server error" +@@ -3737,201 +4490,73 @@ + msgid "No address associated with name" + msgstr "Geen adres geassocieerd met naam" + +-#: resolv/herror.c:108 ++#: resolv/herror.c:107 + msgid "Resolver internal error" +-msgstr "Interne fout oplosser" ++msgstr "**Interne fout** in naamsherleider" + +-#: resolv/herror.c:111 ++#: resolv/herror.c:110 + msgid "Unknown resolver error" +-msgstr "Onbekende fout oplosser" +- +-#: resolv/res_hconf.c:147 +-#, c-format +-msgid "%s: line %d: expected service, found `%s'\n" +-msgstr "%s: regel %d: dienst verwacht, `%s' gevonden\n" ++msgstr "Onbekende fout in naamsherleider" + +-#: resolv/res_hconf.c:165 ++#: resolv/res_hconf.c:124 + #, c-format +-msgid "%s: line %d: cannot specify more than %d services" +-msgstr "%s: regel %d: kan niet meer dan %d diensten opgeven" +- +-#: resolv/res_hconf.c:191 +-#, c-format +-msgid "%s: line %d: list delimiter not followed by keyword" +-msgstr "%s: regel %d: lijstscheidingsteken niet gevolgd door sleutelwoord" +- +-#: resolv/res_hconf.c:231 +-#, fuzzy, c-format + msgid "%s: line %d: cannot specify more than %d trim domains" +-msgstr "%s: regel %d: kan niet meer dan %d trim domeinen opgeven" ++msgstr "%s: regel %d: meer dan %d trimdomeinen zijn niet mogelijk" + +-#: resolv/res_hconf.c:256 ++#: resolv/res_hconf.c:145 + #, c-format + msgid "%s: line %d: list delimiter not followed by domain" +-msgstr "%s: regel %d: lijstscheidingsteken niet gevolgd door domein" ++msgstr "%s: regel %d: lijstscheidingsteken wordt niet gevolgd door domeinnaam" + +-#: resolv/res_hconf.c:319 ++#: resolv/res_hconf.c:204 + #, c-format + msgid "%s: line %d: expected `on' or `off', found `%s'\n" +-msgstr "%s: regel %d: verwacht `on' of `off' (aan of uit), gevonden `%s'\n" ++msgstr "%s: regel %d: 'on' (aan) of 'off' (uit) verwacht, '%s' gevonden\n" + +-#: resolv/res_hconf.c:366 ++#: resolv/res_hconf.c:247 + #, c-format + msgid "%s: line %d: bad command `%s'\n" +-msgstr "%s: regel %d: slechte opdracht `%s'\n" ++msgstr "%s: regel %d: ongeldige opdracht '%s'\n" + +-#: resolv/res_hconf.c:395 ++#: resolv/res_hconf.c:282 + #, c-format + msgid "%s: line %d: ignoring trailing garbage `%s'\n" +-msgstr "%s: regel %d: troep aan einde genegeerd `%s'\n" +- +-#: nss/getent.c:51 +-msgid "database [key ...]" +-msgstr "gegevensbank [sleutel ...]" +- +-#: nss/getent.c:56 +-msgid "Service configuration to be used" +-msgstr "Dienstconfiguratie om te gebruiken" +- +-#: nss/getent.c:136 nss/getent.c:375 +-#, c-format +-msgid "Enumeration not supported on %s\n" +-msgstr "Opsomming niet ondersteund op %s\n" +- +-#: nss/getent.c:800 +-msgid "getent - get entries from administrative database." +-msgstr "getent - ingangen uit administratieve gegevensbank opvragen." +- +-#: nss/getent.c:801 +-msgid "Supported databases:" +-msgstr "Ondersteunde gegevensbanken:" +- +-#: nss/getent.c:858 nscd/nscd.c:131 nscd/nscd_nischeck.c:64 +-msgid "wrong number of arguments" +-msgstr "verkeerd aantal argumenten" +- +-#: nss/getent.c:868 +-#, c-format +-msgid "Unknown database: %s\n" +-msgstr "Onbekende gegevensbank: %s\n" +- +-#: debug/pcprofiledump.c:52 +-msgid "Don't buffer output" +-msgstr "Uitvoer niet bufferen" +- +-#: debug/pcprofiledump.c:57 +-msgid "Dump information generated by PC profiling." +-msgstr "Door PC-profilering gegenereerde informatie weergeven." +- +-#: debug/pcprofiledump.c:60 +-msgid "[FILE]" +-msgstr "[BESTAND]" +- +-#: debug/pcprofiledump.c:100 +-msgid "cannot open input file" +-msgstr "kan invoerbestand niet openen" +- +-#: debug/pcprofiledump.c:106 +-msgid "cannot read header" +-msgstr "kan kop niet lezen" +- +-#: debug/pcprofiledump.c:170 +-msgid "invalid pointer size" +-msgstr "ongeldige pointergrootte" +- +-#: inet/rcmd.c:163 inet/rcmd.c:166 +-msgid "rcmd: Cannot allocate memory\n" +-msgstr "rcmd: Kan geheugen niet toewijzen\n" +- +-#: inet/rcmd.c:185 inet/rcmd.c:188 +-msgid "rcmd: socket: All ports in use\n" +-msgstr "rcmd: socket: Alle poorten in gebruik\n" +- +-#: inet/rcmd.c:222 +-#, c-format +-msgid "connect to address %s: " +-msgstr "verbinden met adres %s:" +- +-#: inet/rcmd.c:240 +-#, c-format +-msgid "Trying %s...\n" +-msgstr "Bezig met proberen %s...\n" +- +-#: inet/rcmd.c:289 +-#, c-format +-msgid "rcmd: write (setting up stderr): %m\n" +-msgstr "rcmd: schrijven (bezig met opzetten stderr): %m\n" +- +-#: inet/rcmd.c:310 +-#, c-format +-msgid "rcmd: poll (setting up stderr): %m\n" +-msgstr "rcmd: polsen (bezig met opzetten stderr): %m\n" ++msgstr "%s: regel %d: rommel '%s' aan einde wordt genegeerd\n" + +-#: inet/rcmd.c:313 +-msgid "poll: protocol failure in circuit setup\n" +-msgstr "polsen: protocolmislukking bij opzetten schakeling\n" +- +-#: inet/rcmd.c:358 +-msgid "socket: protocol failure in circuit setup\n" +-msgstr "socket: protocolmislukking bij opzetten schakeling\n" +- +-#: inet/rcmd.c:387 ++#: stdio-common/psignal.c:51 + #, c-format +-msgid "rcmd: %s: short read" +-msgstr "rcmd: %s: te weinig gelezen" +- +-#: inet/rcmd.c:549 +-msgid "lstat failed" +-msgstr "lstat mislukt" +- +-#: inet/rcmd.c:551 +-msgid "not regular file" +-msgstr "niet een normaal bestand" +- +-#: inet/rcmd.c:556 +-msgid "cannot open" +-msgstr "kan niet openen" +- +-#: inet/rcmd.c:558 +-msgid "fstat failed" +-msgstr "fstat mislukt" +- +-#: inet/rcmd.c:560 +-msgid "bad owner" +-msgstr "slechte eigenaar" +- +-#: inet/rcmd.c:562 +-msgid "writeable by other than owner" +-msgstr "schrijfbaar door anderen dan eigenaar" +- +-#: inet/rcmd.c:564 +-msgid "hard linked somewhere" +-msgstr "ergens hard gekoppeld" ++msgid "%s%sUnknown signal %d\n" ++msgstr "%s%sOnbekend signaal %d\n" + +-#: inet/ruserpass.c:170 inet/ruserpass.c:193 +-msgid "out of memory" +-msgstr "geheugen uitgeput" ++#: stdio-common/psignal.c:52 ++msgid "Unknown signal" ++msgstr "Onbekend signaal" + +-#: inet/ruserpass.c:184 +-msgid "Error: .netrc file is readable by others." +-msgstr "Fout: .netrc-bestand is leesbaar voor anderen." ++#: string/_strerror.c:45 sysdeps/mach/_strerror.c:87 ++msgid "Unknown error " ++msgstr "Onbekende fout " + +-#: inet/ruserpass.c:185 +-msgid "Remove password or make file unreadable by others." +-msgstr "Verwijder het wachtwoord of maak het bestand onleesbaar voor anderen." ++#: string/strerror.c:43 ++msgid "Unknown error" ++msgstr "Onbekende fout" + +-#: inet/ruserpass.c:277 ++#: string/strsignal.c:65 + #, c-format +-msgid "Unknown .netrc keyword %s" +-msgstr "Onbekend .netrc-sleutelwoord %s" ++msgid "Real-time signal %d" ++msgstr "Realtime-signaal %d" ++ ++#: string/strsignal.c:69 ++#, c-format ++msgid "Unknown signal %d" ++msgstr "Onbekend signaal %d" + +-#: sunrpc/auth_unix.c:115 sunrpc/auth_unix.c:118 ++#: sunrpc/auth_unix.c:114 + msgid "authunix_create: out of memory\n" +-msgstr "authunix_create: geheugentekort\n" ++msgstr "authunix_create(): onvoldoende geheugen\n" + +-#: sunrpc/auth_unix.c:318 ++#: sunrpc/auth_unix.c:350 + msgid "auth_none.c - Fatal marshalling problem" +-msgstr "" ++msgstr "Fataal marshallingprobleem (in auth_unix.c)" + + #: sunrpc/clnt_perr.c:118 sunrpc/clnt_perr.c:139 + #, c-format +@@ -3940,2064 +4565,1978 @@ + + #: sunrpc/clnt_perr.c:125 + msgid "; why = " +-msgstr "; waarom = " ++msgstr "; reden = " + + #: sunrpc/clnt_perr.c:132 + #, c-format + msgid "(unknown authentication error - %d)" +-msgstr "(onbekende authentificatiefout - %d)" ++msgstr "(onbekende authentificatiefout -- %d)" + +-#: sunrpc/clnt_perr.c:177 ++#: sunrpc/clnt_perr.c:172 + msgid "RPC: Success" +-msgstr "RPC: Succes" ++msgstr "RPC: Gelukt" + +-#: sunrpc/clnt_perr.c:180 ++#: sunrpc/clnt_perr.c:175 + msgid "RPC: Can't encode arguments" + msgstr "RPC: Kan argumenten niet coderen" + +-#: sunrpc/clnt_perr.c:184 ++#: sunrpc/clnt_perr.c:179 + msgid "RPC: Can't decode result" + msgstr "RPC: Kan resultaat niet decoderen" + +-#: sunrpc/clnt_perr.c:188 ++#: sunrpc/clnt_perr.c:183 + msgid "RPC: Unable to send" + msgstr "RPC: Kan niet verzenden" + +-#: sunrpc/clnt_perr.c:192 ++#: sunrpc/clnt_perr.c:187 + msgid "RPC: Unable to receive" + msgstr "RPC: Kan niet ontvangen" + +-#: sunrpc/clnt_perr.c:196 ++#: sunrpc/clnt_perr.c:191 + msgid "RPC: Timed out" +-msgstr "RPC: Time-out" ++msgstr "RPC: Duurde te lang" + +-#: sunrpc/clnt_perr.c:200 ++#: sunrpc/clnt_perr.c:195 + msgid "RPC: Incompatible versions of RPC" + msgstr "RPC: Incompatibele versies van RPC" + +-#: sunrpc/clnt_perr.c:204 ++#: sunrpc/clnt_perr.c:199 + msgid "RPC: Authentication error" + msgstr "RPC: Authentificatiefout" + +-#: sunrpc/clnt_perr.c:208 ++#: sunrpc/clnt_perr.c:203 + msgid "RPC: Program unavailable" +-msgstr "RPC: Programma onbeschikbaar" ++msgstr "RPC: Programma is onbeschikbaar" + +-#: sunrpc/clnt_perr.c:212 ++#: sunrpc/clnt_perr.c:207 + msgid "RPC: Program/version mismatch" +-msgstr "RPC: Programma/versie komt niet overeen" ++msgstr "RPC: Programma's of versies passen niet bij elkaar" + +-#: sunrpc/clnt_perr.c:216 ++#: sunrpc/clnt_perr.c:211 + msgid "RPC: Procedure unavailable" +-msgstr "RPC: Procedure onbeschikbaar" ++msgstr "RPC: Procedure is onbeschikbaar" + +-#: sunrpc/clnt_perr.c:220 ++#: sunrpc/clnt_perr.c:215 + msgid "RPC: Server can't decode arguments" + msgstr "RPC: Server kan argumenten niet decoderen" + +-#: sunrpc/clnt_perr.c:224 ++#: sunrpc/clnt_perr.c:219 + msgid "RPC: Remote system error" +-msgstr "RPC: Systeemfout op afstand" ++msgstr "RPC: Fout in ginds systeem" + +-#: sunrpc/clnt_perr.c:228 ++#: sunrpc/clnt_perr.c:223 + msgid "RPC: Unknown host" + msgstr "RPC: Onbekende host" + +-#: sunrpc/clnt_perr.c:232 ++#: sunrpc/clnt_perr.c:227 + msgid "RPC: Unknown protocol" + msgstr "RPC: Onbekend protocol" + +-#: sunrpc/clnt_perr.c:236 ++#: sunrpc/clnt_perr.c:231 + msgid "RPC: Port mapper failure" +-msgstr "RPC: Portvertaler (portmapper) mislukking" ++msgstr "RPC: Mislukking in poortvertaler" + +-#: sunrpc/clnt_perr.c:240 ++#: sunrpc/clnt_perr.c:235 + msgid "RPC: Program not registered" +-msgstr "RPC: Programma niet geregistreerd" ++msgstr "RPC: Programma is niet geregistreerd" + +-#: sunrpc/clnt_perr.c:244 ++#: sunrpc/clnt_perr.c:239 + msgid "RPC: Failed (unspecified error)" +-msgstr "RPC: Mislukt (fout niet aangegeven)" ++msgstr "RPC: Mislukt (ongespecificeerde fout)" + +-#: sunrpc/clnt_perr.c:285 ++#: sunrpc/clnt_perr.c:280 + msgid "RPC: (unknown error code)" + msgstr "RPC: (onbekende foutcode)" + +-#: sunrpc/clnt_perr.c:357 ++#: sunrpc/clnt_perr.c:342 + msgid "Authentication OK" +-msgstr "Authentificatie gelukt" ++msgstr "Authentificatie is gelukt" + +-#: sunrpc/clnt_perr.c:360 ++#: sunrpc/clnt_perr.c:345 + msgid "Invalid client credential" + msgstr "Ongeldige client-identificatiegegevens" + +-#: sunrpc/clnt_perr.c:364 ++#: sunrpc/clnt_perr.c:349 + msgid "Server rejected credential" + msgstr "Server verwierp identificatiegegevens" + +-#: sunrpc/clnt_perr.c:368 ++#: sunrpc/clnt_perr.c:353 + msgid "Invalid client verifier" +-msgstr "Ongeldige client-verifieerder" ++msgstr "Ongeldige client-verificatie" + +-#: sunrpc/clnt_perr.c:372 ++#: sunrpc/clnt_perr.c:357 + msgid "Server rejected verifier" +-msgstr "Server verwierp verifieerder" ++msgstr "Server verwierp verificatie" + +-#: sunrpc/clnt_perr.c:376 ++#: sunrpc/clnt_perr.c:361 + msgid "Client credential too weak" +-msgstr "Client-identificatiegegevens te zwak" ++msgstr "Client-identificatiegegevens zijn te zwak" + +-#: sunrpc/clnt_perr.c:380 ++#: sunrpc/clnt_perr.c:365 + msgid "Invalid server verifier" +-msgstr "Ongeldige server-verifieerder" ++msgstr "Ongeldige server-verificatie" + +-#: sunrpc/clnt_perr.c:384 ++#: sunrpc/clnt_perr.c:369 + msgid "Failed (unspecified error)" +-msgstr "Mislukt (fout niet aangegeven)" ++msgstr "Mislukt (ongespecificeerde fout)" + + #: sunrpc/clnt_raw.c:117 + msgid "clnt_raw.c - Fatal header serialization error." +-msgstr "clnt_raw.c - Fatale kopserialisatiefout." ++msgstr "clnt_raw.c: fatale serialisatiefout van de kop" + +-#: sunrpc/clnt_tcp.c:134 sunrpc/clnt_tcp.c:137 ++#: sunrpc/clnt_tcp.c:131 + msgid "clnttcp_create: out of memory\n" +-msgstr "clnttcp_create: geheugentekort\n" ++msgstr "clnttcp_create(): onvoldoende geheugen\n" + +-#: sunrpc/clnt_udp.c:141 sunrpc/clnt_udp.c:144 ++#: sunrpc/clnt_udp.c:139 + msgid "clntudp_create: out of memory\n" +-msgstr "clntudp_create: geheugentekort\n" ++msgstr "clntudp_create(): onvoldoende geheugen\n" + +-#: sunrpc/clnt_unix.c:131 sunrpc/clnt_unix.c:134 ++#: sunrpc/clnt_unix.c:128 + msgid "clntunix_create: out of memory\n" +-msgstr "clntunix_create: geheugentekort\n" ++msgstr "clntunix_create(): onvoldoende geheugen\n" + +-#: sunrpc/get_myaddr.c:78 +-msgid "get_myaddress: ioctl (get interface configuration)" +-msgstr "get_myaddress: ioctl (interface-configuratie opvragen)" +- +-#: sunrpc/pm_getmaps.c:74 ++#: sunrpc/pm_getmaps.c:83 + msgid "pmap_getmaps rpc problem" +-msgstr "pmap_getmaps rpc probleem" +- +-#: sunrpc/pmap_clnt.c:72 +-msgid "__get_myaddress: ioctl (get interface configuration)" +-msgstr "__get_myaddress: ioctl (interface-configuratie opvragen)" ++msgstr "pmap_getmaps.c: RPC-probleem" + +-#: sunrpc/pmap_clnt.c:137 ++#: sunrpc/pmap_clnt.c:129 + msgid "Cannot register service" + msgstr "Kan dienst niet registreren" + +-#: sunrpc/pmap_rmt.c:190 +-msgid "broadcast: ioctl (get interface configuration)" +-msgstr "broadcast: ioctl (interface-configuratie opvragen)" +- +-#: sunrpc/pmap_rmt.c:199 +-msgid "broadcast: ioctl (get interface flags)" +-msgstr "broadcast: ioctl (interface opties opvragen)" +- +-#: sunrpc/pmap_rmt.c:269 ++#: sunrpc/pmap_rmt.c:248 + msgid "Cannot create socket for broadcast rpc" +-msgstr "Kan socket voor uitzend-rpc niet aanmaken" ++msgstr "Kan socket voor broadcast-RPC niet aanmaken" + +-#: sunrpc/pmap_rmt.c:276 ++#: sunrpc/pmap_rmt.c:255 + msgid "Cannot set socket option SO_BROADCAST" +-msgstr "Kan socket-optie SO_BROADCAST niet instellen" ++msgstr "Kan socket-optie 'SO_BROADCAST' niet instellen" + +-#: sunrpc/pmap_rmt.c:328 ++#: sunrpc/pmap_rmt.c:307 + msgid "Cannot send broadcast packet" +-msgstr "Kan broadcasting pakket niet verzenden" ++msgstr "Kan broadcast-pakket niet verzenden" + +-#: sunrpc/pmap_rmt.c:353 ++#: sunrpc/pmap_rmt.c:332 + msgid "Broadcast poll problem" +-msgstr "Uitzend-polsen probleem" ++msgstr "Probleem bij polsen na broadcast" + +-#: sunrpc/pmap_rmt.c:366 ++#: sunrpc/pmap_rmt.c:345 + msgid "Cannot receive reply to broadcast" +-msgstr "Kan antwoord op broadcast niet ontvangen" ++msgstr "Kan geen antwoord op broadcast ontvangen" + +-#: sunrpc/rpc_main.c:288 ++#: sunrpc/rpc_main.c:286 + #, c-format + msgid "%s: output would overwrite %s\n" + msgstr "%s: uitvoer zou %s overschrijven\n" + +-#: sunrpc/rpc_main.c:295 ++#: sunrpc/rpc_main.c:293 + #, c-format + msgid "%s: unable to open %s: %m\n" + msgstr "%s: kan %s niet openen: %m\n" + +-#: sunrpc/rpc_main.c:307 ++#: sunrpc/rpc_main.c:305 + #, c-format + msgid "%s: while writing output %s: %m" +-msgstr "%s: tijdens schrijven uitvoer naar %s: %m" ++msgstr "%s: tijdens schrijven van uitvoer naar %s: %m" + +-#: sunrpc/rpc_main.c:342 ++#: sunrpc/rpc_main.c:340 + #, c-format + msgid "cannot find C preprocessor: %s \n" + msgstr "kan C-voorverwerker niet vinden: %s \n" + +-#: sunrpc/rpc_main.c:350 ++#: sunrpc/rpc_main.c:348 + msgid "cannot find any C preprocessor (cpp)\n" +-msgstr "kan geen enkele C-voorverwerker (cpp) vinden\n" ++msgstr "kan geen enkele C-voorverwerker (CPP) vinden\n" + +-#: sunrpc/rpc_main.c:419 ++#: sunrpc/rpc_main.c:417 + #, c-format + msgid "%s: C preprocessor failed with signal %d\n" +-msgstr "%s: C-voorverwerker mislukt met signaal %d\n" ++msgstr "%s: C-voorverwerking is mislukt met signaal %d\n" + +-#: sunrpc/rpc_main.c:422 ++#: sunrpc/rpc_main.c:420 + #, c-format + msgid "%s: C preprocessor failed with exit code %d\n" +-msgstr "%s: C-voorverwerker mislukt met afsluitcode %d\n" ++msgstr "%s: C-voorverwerking is mislukt met afsluitwaarde %d\n" + +-#: sunrpc/rpc_main.c:462 ++#: sunrpc/rpc_main.c:460 + #, c-format + msgid "illegal nettype :`%s'\n" +-msgstr "ongeldige netsoort :`%s'\n" ++msgstr "ongeldige netsoort: '%s'\n" + +-#: sunrpc/rpc_main.c:1104 ++#: sunrpc/rpc_main.c:1122 + #, c-format + msgid "rpcgen: too many defines\n" +-msgstr "rpcgen: teveel definities\n" ++msgstr "rpcgen: te veel definities\n" + +-#: sunrpc/rpc_main.c:1116 ++#: sunrpc/rpc_main.c:1134 + #, c-format + msgid "rpcgen: arglist coding error\n" +-msgstr "rpcgen: fout codering argumentenlijst\n" ++msgstr "rpcgen: fout in codering van argumentenlijst\n" + + #. TRANS: the file will not be removed; this is an + #. TRANS: informative message. +-#: sunrpc/rpc_main.c:1149 ++#: sunrpc/rpc_main.c:1167 + #, c-format + msgid "file `%s' already exists and may be overwritten\n" +-msgstr "bestand `%s' bestaat al en wordt mogelijk overschreven\n" ++msgstr "Bestand '%s' bestaat al en wordt mogelijk overschreven.\n" + +-#: sunrpc/rpc_main.c:1194 ++#: sunrpc/rpc_main.c:1212 + #, c-format + msgid "Cannot specify more than one input file!\n" +-msgstr "Kan niet meer dan één invoerbestand opgeven!\n" ++msgstr "Meer dan één invoerbestand is niet mogelijk\n" + +-#: sunrpc/rpc_main.c:1364 ++#: sunrpc/rpc_main.c:1382 + msgid "This implementation doesn't support newstyle or MT-safe code!\n" +-msgstr "Deze implementatie ondersteund geen newstyle of MT veilige code!\n" ++msgstr "Deze implementatie ondersteunt geen 'newstyle'- of 'MT-safe'-code\n" + +-#: sunrpc/rpc_main.c:1373 ++#: sunrpc/rpc_main.c:1391 + #, c-format + msgid "Cannot use netid flag with inetd flag!\n" +-msgstr "Kan netid optie niet met inetd optie gebruiken!\n" ++msgstr "Optie 'netid' gaat niet samen met standaardoptie 'inetd'\n" + +-#: sunrpc/rpc_main.c:1385 ++#: sunrpc/rpc_main.c:1403 + msgid "Cannot use netid flag without TIRPC!\n" +-msgstr "Kan netid optie niet zonder TIRPC gebruiken!\n" ++msgstr "Optie 'netid' is niet mogelijk zonder TIRPC\n" + +-#: sunrpc/rpc_main.c:1392 ++#: sunrpc/rpc_main.c:1410 + msgid "Cannot use table flags with newstyle!\n" +-msgstr "Kan tabelopties niet gebruiken met newstyle!\n" ++msgstr "Tabelopties gaan niet samen met 'newstyle'\n" + +-#: sunrpc/rpc_main.c:1411 ++#: sunrpc/rpc_main.c:1429 + #, c-format + msgid "\"infile\" is required for template generation flags.\n" +-msgstr "\"invoerbestand\" is vereist voor sjabloonaanmaakopties.\n" ++msgstr "Bij sjabloonaanmaakopties is een invoerbestand vereist\n" + +-#: sunrpc/rpc_main.c:1416 ++#: sunrpc/rpc_main.c:1434 + #, c-format + msgid "Cannot have more than one file generation flag!\n" +-msgstr "Kan niet meer dan één bestandsgenereeroptie hebben!\n" +- +-#: sunrpc/rpc_main.c:1425 +-#, c-format +-msgid "usage: %s infile\n" +-msgstr "gebruik: %s invoerbestand\n" +- +-#: sunrpc/rpc_main.c:1426 +-#, c-format +-msgid "\t%s [-abkCLNTM][-Dname[=value]] [-i size] [-I [-K seconds]] [-Y path] infile\n" +-msgstr "\t%s [-abkCLNTM][-Dnaam[=waarde]] [-i grootte] [-I [-K seconden]] [-Y pad] invoerbestand\n" +- +-#: sunrpc/rpc_main.c:1428 +-#, c-format +-msgid "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o outfile] [infile]\n" +-msgstr "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o uitvoerbestand] [invoerbestand]\n" +- +-#: sunrpc/rpc_main.c:1430 +-#, c-format +-msgid "\t%s [-s nettype]* [-o outfile] [infile]\n" +-msgstr "\t%s [-s netsoort]* [-o uitvoerbestand] [invoerbestand]\n" +- +-#: sunrpc/rpc_main.c:1431 +-#, c-format +-msgid "\t%s [-n netid]* [-o outfile] [infile]\n" +-msgstr "\t%s [-n netid]* [-o uitvoerbestand] [invoerbestand]\n" +- +-#: sunrpc/rpc_scan.c:116 +-msgid "constant or identifier expected" +-msgstr "constante of identificeerder verwacht" +- +-#: sunrpc/rpc_scan.c:312 +-msgid "illegal character in file: " +-msgstr "ongeldig teken in bestand: " +- +-#: sunrpc/rpc_scan.c:351 sunrpc/rpc_scan.c:377 +-msgid "unterminated string constant" +-msgstr "onbepaalde tekenreeksconstante" +- +-#: sunrpc/rpc_scan.c:383 +-msgid "empty char string" +-msgstr "lege tekenreeks" +- +-#: sunrpc/rpc_scan.c:525 sunrpc/rpc_scan.c:535 +-msgid "preprocessor error" +-msgstr "voorverwerker fout" +- +-#: sunrpc/rpcinfo.c:237 sunrpc/rpcinfo.c:383 +-#, c-format +-msgid "program %lu is not available\n" +-msgstr "programma %lu is niet beschikbaar\n" +- +-#: sunrpc/rpcinfo.c:264 sunrpc/rpcinfo.c:310 sunrpc/rpcinfo.c:333 +-#: sunrpc/rpcinfo.c:407 sunrpc/rpcinfo.c:453 sunrpc/rpcinfo.c:476 +-#: sunrpc/rpcinfo.c:510 +-#, c-format +-msgid "program %lu version %lu is not available\n" +-msgstr "programma %lu versie %lu is niet beschikbaar\n" +- +-#: sunrpc/rpcinfo.c:515 +-#, c-format +-msgid "program %lu version %lu ready and waiting\n" +-msgstr "programma %lu versie %lu is gereed en wacht\n" +- +-#: sunrpc/rpcinfo.c:556 sunrpc/rpcinfo.c:563 +-msgid "rpcinfo: can't contact portmapper" +-msgstr "rpcinfo: kan geen contact maken met poortvertaler (portmapper)" +- +-#: sunrpc/rpcinfo.c:570 +-msgid "No remote programs registered.\n" +-msgstr "Geen programma's-op-afstand geregistreerd.\n" +- +-#: sunrpc/rpcinfo.c:574 +-msgid " program vers proto port\n" +-msgstr " programma versie protocol poort\n" +- +-#: sunrpc/rpcinfo.c:613 +-msgid "(unknown)" +-msgstr "(onbekend)" +- +-#: sunrpc/rpcinfo.c:637 +-#, c-format +-msgid "rpcinfo: broadcast failed: %s\n" +-msgstr "rpcinfo: uitzenden mislukt: %s\n" +- +-#: sunrpc/rpcinfo.c:658 +-msgid "Sorry. You are not root\n" +-msgstr "Sorry, u bent niet root\n" +- +-#: sunrpc/rpcinfo.c:665 +-#, c-format +-msgid "rpcinfo: Could not delete registration for prog %s version %s\n" +-msgstr "rpcinfo: Kon registratie voor programma %s versie %s niet verwijderen\n" +- +-#: sunrpc/rpcinfo.c:674 +-msgid "Usage: rpcinfo [ -n portnum ] -u host prognum [ versnum ]\n" +-msgstr "Gebruik: rpcinfo [ -n poortnummer ] -u host programmanummer [ versienummer ]\n" +- +-#: sunrpc/rpcinfo.c:676 +-msgid " rpcinfo [ -n portnum ] -t host prognum [ versnum ]\n" +-msgstr " rpcinfo [ -n poortnummer ] -t host programmanummer [ versienummer ]\n" +- +-#: sunrpc/rpcinfo.c:678 +-msgid " rpcinfo -p [ host ]\n" +-msgstr " rpcinfo -p [ host ]\n" +- +-#: sunrpc/rpcinfo.c:679 +-msgid " rpcinfo -b prognum versnum\n" +-msgstr " rpcinfo -b programmanummer versienummer\n" +- +-#: sunrpc/rpcinfo.c:680 +-msgid " rpcinfo -d prognum versnum\n" +-msgstr " rpcinfo -d programmanummer versienummer\n" +- +-#: sunrpc/rpcinfo.c:695 +-#, c-format +-msgid "rpcinfo: %s is unknown service\n" +-msgstr "rpcinfo: %s is onbekende dienst\n" +- +-#: sunrpc/rpcinfo.c:732 +-#, c-format +-msgid "rpcinfo: %s is unknown host\n" +-msgstr "rpcinfo: %s is onbekende host\n" +- +-#: sunrpc/svc_run.c:76 +-msgid "svc_run: - poll failed" +-msgstr "svc_run: - polsen mislukt" +- +-#: sunrpc/svc_simple.c:87 +-#, c-format +-msgid "can't reassign procedure number %ld\n" +-msgstr "kan procedurenummer %ld niet opnieuw toewijzen\n" +- +-#: sunrpc/svc_simple.c:96 +-msgid "couldn't create an rpc server\n" +-msgstr "kon geen rpc-server aanmaken\n" +- +-#: sunrpc/svc_simple.c:104 +-#, c-format +-msgid "couldn't register prog %ld vers %ld\n" +-msgstr "kon programma %ld versie %ld niet registreren\n" +- +-#: sunrpc/svc_simple.c:111 +-msgid "registerrpc: out of memory\n" +-msgstr "registerrpc: geheugentekort\n" +- +-#: sunrpc/svc_simple.c:175 +-#, c-format +-msgid "trouble replying to prog %d\n" +-msgstr "problemen bij antwoorden aan programma %d\n" +- +-#: sunrpc/svc_simple.c:183 +-#, c-format +-msgid "never registered prog %d\n" +-msgstr "programma %d nooit geregistreerd\n" +- +-#: sunrpc/svc_tcp.c:155 +-msgid "svc_tcp.c - tcp socket creation problem" +-msgstr "svc_tcp.c - probleem bij aanmaken TCP socket" +- +-#: sunrpc/svc_tcp.c:170 +-msgid "svc_tcp.c - cannot getsockname or listen" +-msgstr "svc_tcp.c - kan niet getsockname() of listen()" +- +-#: sunrpc/svc_tcp.c:181 sunrpc/svc_tcp.c:184 +-msgid "svctcp_create: out of memory\n" +-msgstr "svctcp_create: geheugentekort\n" +- +-#: sunrpc/svc_tcp.c:225 sunrpc/svc_tcp.c:228 +-msgid "svc_tcp: makefd_xprt: out of memory\n" +-msgstr "svc_tcp: makefd_xprt: geheugentekort\n" +- +-#: sunrpc/svc_udp.c:128 +-msgid "svcudp_create: socket creation problem" +-msgstr "svcudp_create: probleem bij aanmaken socket" +- +-#: sunrpc/svc_udp.c:142 +-msgid "svcudp_create - cannot getsockname" +-msgstr "svcudp_create - getsockname aanroep mislukt" +- +-#: sunrpc/svc_udp.c:154 sunrpc/svc_udp.c:157 +-msgid "svcudp_create: out of memory\n" +-msgstr "svcudp_create: geheugentekort\n" +- +-#: sunrpc/svc_udp.c:182 sunrpc/svc_udp.c:185 +-msgid "svcudp_create: xp_pad is too small for IP_PKTINFO\n" +-msgstr "svcudp_create: xp_pad is te klein voor IP_PKTINFO\n" +- +-#: sunrpc/svc_udp.c:493 +-msgid "enablecache: cache already enabled" +-msgstr "enablecache: buffering staat al aan" +- +-#: sunrpc/svc_udp.c:499 +-msgid "enablecache: could not allocate cache" +-msgstr "enablecache: kon buffer niet toewijzen" +- +-#: sunrpc/svc_udp.c:507 +-msgid "enablecache: could not allocate cache data" +-msgstr "enablecache: kon buffergegevens niet toewijzen" +- +-#: sunrpc/svc_udp.c:514 +-msgid "enablecache: could not allocate cache fifo" +-msgstr "enablecache: kon buffer fifo niet toewijzen" +- +-#: sunrpc/svc_udp.c:550 +-msgid "cache_set: victim not found" +-msgstr "cache_set: slachtoffer niet gevonden" +- +-#: sunrpc/svc_udp.c:561 +-msgid "cache_set: victim alloc failed" +-msgstr "cache_set: toewijzen slachtoffer mislukt" +- +-#: sunrpc/svc_udp.c:567 +-msgid "cache_set: could not allocate new rpc_buffer" +-msgstr "cache_set: kon nieuwe rpc_buffer niet toewijzen" +- +-#: sunrpc/svc_unix.c:150 +-msgid "svc_unix.c - AF_UNIX socket creation problem" +-msgstr "svc_unix.c - probleem bij aanmaken AF_UNIX socket" +- +-#: sunrpc/svc_unix.c:166 +-msgid "svc_unix.c - cannot getsockname or listen" +-msgstr "svc_unix.c - kan niet getsockname() of listen()" +- +-#: sunrpc/svc_unix.c:178 sunrpc/svc_unix.c:181 +-msgid "svcunix_create: out of memory\n" +-msgstr "svcunix_create: geheugentekort\n" +- +-#: sunrpc/svc_unix.c:222 sunrpc/svc_unix.c:225 +-msgid "svc_unix: makefd_xprt: out of memory\n" +-msgstr "svc_unix: makefd_xprt: geheugentekort\n" +- +-#: sunrpc/xdr.c:570 sunrpc/xdr.c:573 +-msgid "xdr_bytes: out of memory\n" +-msgstr "xdr_bytes: geheugentekort\n" +- +-#: sunrpc/xdr.c:728 sunrpc/xdr.c:731 +-msgid "xdr_string: out of memory\n" +-msgstr "xdr_string: geheugentekort\n" +- +-#: sunrpc/xdr_array.c:111 sunrpc/xdr_array.c:114 +-msgid "xdr_array: out of memory\n" +-msgstr "xdr_array: geheugentekort\n" +- +-#: sunrpc/xdr_rec.c:158 sunrpc/xdr_rec.c:161 +-msgid "xdrrec_create: out of memory\n" +-msgstr "xdrrec_create: geheugentekort\n" +- +-#: sunrpc/xdr_ref.c:88 sunrpc/xdr_ref.c:91 +-msgid "xdr_reference: out of memory\n" +-msgstr "xdr_reference: geheugentekort\n" +- +-#: nis/nis_callback.c:189 +-msgid "unable to free arguments" +-msgstr "kan argumenten niet vrijgeven" ++msgstr "Meer dan één bestandsaanmaakoptie is niet mogelijk\n" + +-#: nis/nis_error.c:30 +-msgid "Probable success" +-msgstr "Waarschijnlijk succes" +- +-#: nis/nis_error.c:31 +-msgid "Not found" +-msgstr "Niet gevonden" +- +-#: nis/nis_error.c:32 +-msgid "Probably not found" +-msgstr "Waarschijnlijk niet gevonden" +- +-#: nis/nis_error.c:33 +-msgid "Cache expired" +-msgstr "Buffer verlopen" +- +-#: nis/nis_error.c:34 +-msgid "NIS+ servers unreachable" +-msgstr "NIS+ servers onbereikbaar" +- +-#: nis/nis_error.c:35 +-msgid "Unknown object" +-msgstr "Onbekend objekt" +- +-#: nis/nis_error.c:36 +-msgid "Server busy, try again" +-msgstr "Server bezig, probeer nogmaals" +- +-#: nis/nis_error.c:37 +-msgid "Generic system error" +-msgstr "Algemene systeemfout" +- +-#: nis/nis_error.c:38 +-msgid "First/next chain broken" +-msgstr "Eerst/volgende ketting gebroken" +- +-#: nis/nis_error.c:41 +-msgid "Name not served by this server" +-msgstr "Naam wordt door deze server niet aangeboden" +- +-#: nis/nis_error.c:42 +-msgid "Server out of memory" +-msgstr "Server heeft geheugentekort" +- +-#: nis/nis_error.c:43 +-msgid "Object with same name exists" +-msgstr "Objekt met dezelfde naam bestaat" +- +-#: nis/nis_error.c:44 +-msgid "Not master server for this domain" +-msgstr "Niet hoofdserver voor dit domein" +- +-#: nis/nis_error.c:45 +-msgid "Invalid object for operation" +-msgstr "Ongeldig objekt voor bewerking" +- +-#: nis/nis_error.c:46 +-msgid "Malformed name, or illegal name" +-msgstr "Misvormde of ongeldige naam" +- +-#: nis/nis_error.c:47 +-msgid "Unable to create callback" +-msgstr "Kan geen terugaanroep aanmaken" +- +-#: nis/nis_error.c:48 +-msgid "Results sent to callback proc" +-msgstr "Resultaten verzonden aan terugaanroep proces" +- +-#: nis/nis_error.c:49 +-msgid "Not found, no such name" +-msgstr "Niet gevonden, onbekende naam" +- +-#: nis/nis_error.c:50 +-msgid "Name/entry isn't unique" +-msgstr "Naam/ingang is niet uniek" +- +-#: nis/nis_error.c:51 +-msgid "Modification failed" +-msgstr "Wijziging mislukt" +- +-#: nis/nis_error.c:52 +-msgid "Database for table does not exist" +-msgstr "Gegevensbank voor tabel bestaat niet" +- +-#: nis/nis_error.c:53 +-msgid "Entry/table type mismatch" +-msgstr "Ingang/tabelsoort komt niet overeen" +- +-#: nis/nis_error.c:54 +-msgid "Link points to illegal name" +-msgstr "Koppeling wijst naar ongeldige naam" +- +-#: nis/nis_error.c:55 +-msgid "Partial success" +-msgstr "Gedeeltelijk succes" +- +-#: nis/nis_error.c:56 +-msgid "Too many attributes" +-msgstr "Teveel kenmerken" +- +-#: nis/nis_error.c:57 +-msgid "Error in RPC subsystem" +-msgstr "Fout in RPC-deelsysteem" +- +-#: nis/nis_error.c:58 +-msgid "Missing or malformed attribute" +-msgstr "Ontbrekend of misvormd kenmerk" +- +-#: nis/nis_error.c:59 +-msgid "Named object is not searchable" +-msgstr "Genaamd objekt is niet doorzoekbaar" +- +-#: nis/nis_error.c:60 +-msgid "Error while talking to callback proc" +-msgstr "Fout bij praten met terugaanroep proces" ++#: sunrpc/rpc_main.c:1443 ++#, c-format ++msgid "usage: %s infile\n" ++msgstr "Gebruik: %s invoerbestand\n" + +-#: nis/nis_error.c:61 +-msgid "Non NIS+ namespace encountered" +-msgstr "Niet-NIS+ naamruimte tegengekomen" ++#: sunrpc/rpc_main.c:1444 ++#, c-format ++msgid "\t%s [-abkCLNTM][-Dname[=value]] [-i size] [-I [-K seconds]] [-Y path] infile\n" ++msgstr "" ++" %s [-abkCLNTM] [-Dnaam[=waarde]] [-i grootte]\n" ++" [-I [-K seconden]] [-Y pad] invoerbestand\n" + +-#: nis/nis_error.c:62 +-msgid "Illegal object type for operation" +-msgstr "Ongeldige objektsoort voor bewerking" ++#: sunrpc/rpc_main.c:1446 ++#, c-format ++msgid "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o outfile] [infile]\n" ++msgstr "" ++" %s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm]\n" ++" [-o uitvoerbestand] [invoerbestand]\n" + +-#: nis/nis_error.c:63 +-msgid "Passed object is not the same object on server" +-msgstr "Meegegeven objekt is niet hetzelfde objekt op de server" ++#: sunrpc/rpc_main.c:1448 ++#, c-format ++msgid "\t%s [-s nettype]* [-o outfile] [infile]\n" ++msgstr " %s [-s netsoort]* [-o uitvoerbestand] [invoerbestand]\n" + +-#: nis/nis_error.c:64 +-msgid "Modify operation failed" +-msgstr "Wijzigingsbewerking mislukt" ++#: sunrpc/rpc_main.c:1449 ++#, c-format ++msgid "\t%s [-n netid]* [-o outfile] [infile]\n" ++msgstr " %s [-n netid]* [-o uitvoerbestand] [invoerbestand]\n" + +-#: nis/nis_error.c:65 +-msgid "Query illegal for named table" +-msgstr "Zoekopdracht ongeldig voor genoemde tabel" ++#: sunrpc/rpc_scan.c:114 ++msgid "constant or identifier expected" ++msgstr "een constante of een naam werd verwacht" + +-#: nis/nis_error.c:66 +-msgid "Attempt to remove a non-empty table" +-msgstr "Poging een niet-lege tabel te verwijderen" ++#: sunrpc/rpc_scan.c:310 ++msgid "illegal character in file: " ++msgstr "ongeldig teken in bestand: " + +-#: nis/nis_error.c:67 +-msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" +-msgstr "Fout bij toegang tot NIS+ koude-start bestand. Is NIS+ wel geïnstalleerd?" ++#: sunrpc/rpc_scan.c:349 sunrpc/rpc_scan.c:375 ++msgid "unterminated string constant" ++msgstr "onafgesloten tekenreeksconstante" + +-#: nis/nis_error.c:68 +-msgid "Full resync required for directory" +-msgstr "Volledige hersynchronisatie vereist voor map" ++#: sunrpc/rpc_scan.c:381 ++msgid "empty char string" ++msgstr "lege tekenreeks" + +-#: nis/nis_error.c:69 +-msgid "NIS+ operation failed" +-msgstr "NIS+ bewerking mislukt" ++#: sunrpc/rpc_scan.c:523 sunrpc/rpc_scan.c:533 ++msgid "preprocessor error" ++msgstr "voorverwerkingsfout" + +-#: nis/nis_error.c:70 +-msgid "NIS+ service is unavailable or not installed" +-msgstr "NIS+ dienst is onbeschikbaar of niet geïnstalleerd" ++#: sunrpc/rpcinfo.c:237 sunrpc/rpcinfo.c:383 ++#, c-format ++msgid "program %lu is not available\n" ++msgstr "programma %lu is niet beschikbaar\n" + +-#: nis/nis_error.c:71 +-msgid "Yes, 42 is the meaning of life" +-msgstr "Dat is zeker waar, 42 is de betekenis van het leven" ++#: sunrpc/rpcinfo.c:264 sunrpc/rpcinfo.c:310 sunrpc/rpcinfo.c:333 ++#: sunrpc/rpcinfo.c:407 sunrpc/rpcinfo.c:453 sunrpc/rpcinfo.c:476 ++#: sunrpc/rpcinfo.c:510 ++#, c-format ++msgid "program %lu version %lu is not available\n" ++msgstr "programma %lu versie %lu is niet beschikbaar\n" + +-#: nis/nis_error.c:72 +-msgid "Unable to authenticate NIS+ server" +-msgstr "Kan niet authentificeren met NIS+-server" ++#: sunrpc/rpcinfo.c:515 ++#, c-format ++msgid "program %lu version %lu ready and waiting\n" ++msgstr "programma %lu versie %lu is gereed en wacht\n" + +-#: nis/nis_error.c:73 +-msgid "Unable to authenticate NIS+ client" +-msgstr "Kan niet authentificeren met NIS+-client" ++#: sunrpc/rpcinfo.c:556 sunrpc/rpcinfo.c:563 ++msgid "rpcinfo: can't contact portmapper" ++msgstr "rpcinfo: kan geen contact maken met poortvertaler" + +-#: nis/nis_error.c:74 +-msgid "No file space on server" +-msgstr "Geen schijfruimte op server" ++#: sunrpc/rpcinfo.c:570 ++msgid "No remote programs registered.\n" ++msgstr "Er zijn geen programma's van elders geregistreerd.\n" + +-#: nis/nis_error.c:75 +-msgid "Unable to create process on server" +-msgstr "Kan niet proces aanmaken op server" ++#: sunrpc/rpcinfo.c:574 ++msgid " program vers proto port\n" ++msgstr " program.vers.protocl.poort\n" + +-#: nis/nis_error.c:76 +-msgid "Master server busy, full dump rescheduled." +-msgstr "Hoofdserver bezig, volledig ophalen uitgesteld." ++#: sunrpc/rpcinfo.c:613 ++msgid "(unknown)" ++msgstr "(onbekend)" + +-#: nis/nis_local_names.c:126 ++#: sunrpc/rpcinfo.c:637 + #, c-format +-msgid "LOCAL entry for UID %d in directory %s not unique\n" +-msgstr "LOCAL-ingang voor UID %d in map %s is niet uniek\n" ++msgid "rpcinfo: broadcast failed: %s\n" ++msgstr "rpcinfo: broadcast is mislukt: %s\n" + +-#: nis/nis_print.c:51 +-msgid "UNKNOWN" +-msgstr "ONBEKEND" ++#: sunrpc/rpcinfo.c:658 ++msgid "Sorry. You are not root\n" ++msgstr "Sorry, u bent niet root.\n" + +-#: nis/nis_print.c:109 +-msgid "BOGUS OBJECT\n" +-msgstr "SLECHT OBJEKT\n" ++#: sunrpc/rpcinfo.c:665 ++#, c-format ++msgid "rpcinfo: Could not delete registration for prog %s version %s\n" ++msgstr "rpcinfo: Kan registratie voor programma %s versie %s niet verwijderen\n" + +-#: nis/nis_print.c:112 +-msgid "NO OBJECT\n" +-msgstr "GEEN OBJEKT\n" ++#: sunrpc/rpcinfo.c:674 ++msgid "Usage: rpcinfo [ -n portnum ] -u host prognum [ versnum ]\n" ++msgstr "Gebruik: rpcinfo [-n poortnummer] -u host programmanummer [versienummer]\n" + +-#: nis/nis_print.c:115 +-msgid "DIRECTORY\n" +-msgstr "MAP\n" ++#: sunrpc/rpcinfo.c:676 ++msgid " rpcinfo [ -n portnum ] -t host prognum [ versnum ]\n" ++msgstr " rpcinfo [-n poortnummer] -t host programmanummer [versienummer]\n" + +-#: nis/nis_print.c:118 +-msgid "GROUP\n" +-msgstr "GROEP\n" ++#: sunrpc/rpcinfo.c:678 ++msgid " rpcinfo -p [ host ]\n" ++msgstr " rpcinfo -p [ host ]\n" + +-#: nis/nis_print.c:121 +-msgid "TABLE\n" +-msgstr "TABEL\n" ++#: sunrpc/rpcinfo.c:679 ++msgid " rpcinfo -b prognum versnum\n" ++msgstr " rpcinfo -b programmanummer versienummer\n" + +-#: nis/nis_print.c:124 +-msgid "ENTRY\n" +-msgstr "INGANG\n" ++#: sunrpc/rpcinfo.c:680 ++msgid " rpcinfo -d prognum versnum\n" ++msgstr " rpcinfo -d programmanummer versienummer\n" + +-#: nis/nis_print.c:127 +-msgid "LINK\n" +-msgstr "KOPPELING\n" ++#: sunrpc/rpcinfo.c:695 ++#, c-format ++msgid "rpcinfo: %s is unknown service\n" ++msgstr "rpcinfo: %s is een onbekende dienst\n" + +-#: nis/nis_print.c:130 +-msgid "PRIVATE\n" +-msgstr "PRIVÉ\n" ++#: sunrpc/rpcinfo.c:732 ++#, c-format ++msgid "rpcinfo: %s is unknown host\n" ++msgstr "rpcinfo: %s is een onbekende host\n" + +-#: nis/nis_print.c:133 +-msgid "(Unknown object)\n" +-msgstr "(Onbekend objekt)\n" ++#: sunrpc/svc_run.c:76 ++msgid "svc_run: - poll failed" ++msgstr "svc_run.c: polsen is mislukt" + +-#: nis/nis_print.c:166 ++#: sunrpc/svc_simple.c:87 + #, c-format +-msgid "Name : `%s'\n" +-msgstr "Naam : `%s'\n" ++msgid "can't reassign procedure number %ld\n" ++msgstr "kan procedurenummer %ld niet opnieuw toewijzen\n" + +-#: nis/nis_print.c:167 ++#: sunrpc/svc_simple.c:97 ++msgid "couldn't create an rpc server\n" ++msgstr "kan geen RPC-server aanmaken\n" ++ ++#: sunrpc/svc_simple.c:105 + #, c-format +-msgid "Type : %s\n" +-msgstr "Soort : %s\n" ++msgid "couldn't register prog %ld vers %ld\n" ++msgstr "kan programma %ld (versie %ld) niet registreren\n" + +-#: nis/nis_print.c:172 +-msgid "Master Server :\n" +-msgstr "Hoofdserver :\n" ++#: sunrpc/svc_simple.c:113 ++msgid "registerrpc: out of memory\n" ++msgstr "registerrpc(): onvoldoende geheugen\n" + +-#: nis/nis_print.c:174 +-msgid "Replicate :\n" +-msgstr "" ++#: sunrpc/svc_simple.c:173 ++#, c-format ++msgid "trouble replying to prog %d\n" ++msgstr "problemen bij antwoorden aan programma %d\n" + +-#: nis/nis_print.c:175 ++#: sunrpc/svc_simple.c:182 + #, c-format +-msgid "\tName : %s\n" +-msgstr "\tNaam : %s\n" ++msgid "never registered prog %d\n" ++msgstr "programma %d is nooit geregistreerd\n" + +-#: nis/nis_print.c:176 +-msgid "\tPublic Key : " +-msgstr "\tOpenbare sleutel : " ++#: sunrpc/svc_tcp.c:155 ++msgid "svc_tcp.c - tcp socket creation problem" ++msgstr "svc_tcp.c: probleem bij aanmaken van TCP-socket" + +-#: nis/nis_print.c:180 +-msgid "None.\n" +-msgstr "Geen.\n" ++#: sunrpc/svc_tcp.c:170 ++msgid "svc_tcp.c - cannot getsockname or listen" ++msgstr "svc_tcp.c: getsockname() en listen() zijn mislukt" + +-#: nis/nis_print.c:183 +-#, c-format +-msgid "Diffie-Hellmann (%d bits)\n" +-msgstr "Diffie-Hellmann (%d bits)\n" ++#: sunrpc/svc_tcp.c:179 ++msgid "svctcp_create: out of memory\n" ++msgstr "svctcp_create(): onvoldoende geheugen\n" + +-#: nis/nis_print.c:188 +-#, c-format +-msgid "RSA (%d bits)\n" +-msgstr "RSA (%d bits)\n" ++#: sunrpc/svc_tcp.c:218 ++msgid "svc_tcp: makefd_xprt: out of memory\n" ++msgstr "svc_tcp.c: makefd_xprt(): onvoldoende geheugen\n" + +-#: nis/nis_print.c:191 +-msgid "Kerberos.\n" +-msgstr "Kerberos.\n" ++#: sunrpc/svc_udp.c:128 ++msgid "svcudp_create: socket creation problem" ++msgstr "svcudp_create(): probleem bij aanmaken van socket" + +-#: nis/nis_print.c:194 +-#, c-format +-msgid "Unknown (type = %d, bits = %d)\n" +-msgstr "Onbekend (soort = %d, bits = %d)\n" ++#: sunrpc/svc_udp.c:142 ++msgid "svcudp_create - cannot getsockname" ++msgstr "svcudp_create(): getsockname() is mislukt" + +-#: nis/nis_print.c:205 +-#, c-format +-msgid "\tUniversal addresses (%u)\n" +-msgstr "\tUniversele adressen (%u)\n" ++#: sunrpc/svc_udp.c:152 ++msgid "svcudp_create: out of memory\n" ++msgstr "svcudp_create(): onvoldoende geheugen\n" + +-#: nis/nis_print.c:227 +-msgid "Time to live : " +-msgstr "Levenstijd : " ++#: sunrpc/svc_udp.c:174 ++msgid "svcudp_create: xp_pad is too small for IP_PKTINFO\n" ++msgstr "svcudp_create(): 'xp_pad' is te klein voor 'IP_PKTINFO'\n" + +-#: nis/nis_print.c:229 +-msgid "Default Access rights :\n" +-msgstr "Standaard toegangsrechten :\n" ++#: sunrpc/svc_udp.c:474 ++msgid "enablecache: cache already enabled" ++msgstr "enablecache(): buffering staat al aan" + +-#: nis/nis_print.c:238 +-#, c-format +-msgid "\tType : %s\n" +-msgstr "\tSoort : %s\n" ++#: sunrpc/svc_udp.c:480 ++msgid "enablecache: could not allocate cache" ++msgstr "enablecache(): kan geen geheugen voor cache reserveren" + +-#: nis/nis_print.c:239 +-msgid "\tAccess rights: " +-msgstr "\tToegangsrechten: " ++#: sunrpc/svc_udp.c:489 ++msgid "enablecache: could not allocate cache data" ++msgstr "enablecache(): kan geen geheugen voor cachegegevens reserveren" + +-#: nis/nis_print.c:252 +-msgid "Group Flags :" +-msgstr "Groepaanduidingen :" ++#: sunrpc/svc_udp.c:497 ++msgid "enablecache: could not allocate cache fifo" ++msgstr "enablecache(): kan geen geheugen voor cache-fifo reserveren" + +-#: nis/nis_print.c:255 +-msgid "" +-"\n" +-"Group Members :\n" +-msgstr "" +-"\n" +-"Groepsleden :\n" ++#: sunrpc/svc_udp.c:532 ++msgid "cache_set: victim not found" ++msgstr "cache_set(): kan het herbruikbare item niet vinden" + +-#: nis/nis_print.c:266 +-#, c-format +-msgid "Table Type : %s\n" +-msgstr "Tabelsoort : %s\n" ++#: sunrpc/svc_udp.c:543 ++msgid "cache_set: victim alloc failed" ++msgstr "cache_set(): kan geen geheugen reserveren voor nieuw item" + +-#: nis/nis_print.c:267 +-#, c-format +-msgid "Number of Columns : %d\n" +-msgstr "Aantal kolommen : %d\n" ++#: sunrpc/svc_udp.c:550 ++msgid "cache_set: could not allocate new rpc_buffer" ++msgstr "cache_set(): kan geen geheugen reserveren voor nieuw RPC-buffer" + +-#: nis/nis_print.c:268 +-#, c-format +-msgid "Character Separator : %c\n" +-msgstr "Teken-scheidingsteken : %c\n" ++#: sunrpc/svc_unix.c:150 ++msgid "svc_unix.c - AF_UNIX socket creation problem" ++msgstr "svc_unix.c: probleem bij aanmaken van AF_UNIX-socket" + +-#: nis/nis_print.c:269 +-#, c-format +-msgid "Search Path : %s\n" +-msgstr "Zoek pad : %s\n" ++#: sunrpc/svc_unix.c:166 ++msgid "svc_unix.c - cannot getsockname or listen" ++msgstr "svc_unix.c: getsockname() en listen() zijn mislukt" + +-#: nis/nis_print.c:270 +-msgid "Columns :\n" +-msgstr "Kolommen :\n" ++#: sunrpc/svc_unix.c:176 ++msgid "svcunix_create: out of memory\n" ++msgstr "svcunix_create(): onvoldoende geheugen\n" + +-#: nis/nis_print.c:273 +-#, c-format +-msgid "\t[%d]\tName : %s\n" +-msgstr "\t[%d]\tNaam : %s\n" ++#: sunrpc/svc_unix.c:215 ++msgid "svc_unix: makefd_xprt: out of memory\n" ++msgstr "svc_unix.c: makefd_xprt(): onvoldoende geheugen\n" + +-#: nis/nis_print.c:275 +-msgid "\t\tAttributes : " +-msgstr "\t\tKenmerken : " ++#: sunrpc/xdr.c:566 ++msgid "xdr_bytes: out of memory\n" ++msgstr "xdr_bytes(): onvoldoende geheugen\n" + +-#: nis/nis_print.c:277 +-msgid "\t\tAccess Rights : " +-msgstr "\t\tToegangsrechten : " ++#: sunrpc/xdr.c:718 ++msgid "xdr_string: out of memory\n" ++msgstr "xdr_string(): onvoldoende geheugen\n" + +-#: nis/nis_print.c:286 +-msgid "Linked Object Type : " +-msgstr "Soort gekoppeld objekt:" ++#: sunrpc/xdr_array.c:106 ++msgid "xdr_array: out of memory\n" ++msgstr "xdr_array(): onvoldoende geheugen\n" + +-#: nis/nis_print.c:288 +-#, c-format +-msgid "Linked to : %s\n" +-msgstr "Gekoppeld aan : %s\n" ++#: sunrpc/xdr_rec.c:156 ++msgid "xdrrec_create: out of memory\n" ++msgstr "xdrrec_create(): onvoldoende geheugen\n" + +-#: nis/nis_print.c:297 +-#, c-format +-msgid "\tEntry data of type %s\n" +-msgstr "\tIngangsgegevens van soort %s\n" ++#: sunrpc/xdr_ref.c:86 ++msgid "xdr_reference: out of memory\n" ++msgstr "xdr_reference(): onvoldoende geheugen\n" + +-#: nis/nis_print.c:300 +-#, c-format +-msgid "\t[%u] - [%u bytes] " +-msgstr "\t[%u] - [%u bytes] " ++#: sysdeps/generic/siglist.h:29 sysdeps/unix/siglist.c:27 ++msgid "Hangup" ++msgstr "Ophangen" + +-#: nis/nis_print.c:303 +-msgid "Encrypted data\n" +-msgstr "Gecodeerde gegevens\n" ++#: sysdeps/generic/siglist.h:30 sysdeps/unix/siglist.c:28 ++msgid "Interrupt" ++msgstr "Onderbreken" + +-#: nis/nis_print.c:305 +-msgid "Binary data\n" +-msgstr "Binaire gegevens\n" ++#: sysdeps/generic/siglist.h:31 sysdeps/unix/siglist.c:29 ++msgid "Quit" ++msgstr "Afsluiten" + +-#: nis/nis_print.c:320 +-#, c-format +-msgid "Object Name : %s\n" +-msgstr "Objektnaam : %s\n" ++#: sysdeps/generic/siglist.h:32 sysdeps/unix/siglist.c:30 ++msgid "Illegal instruction" ++msgstr "Ongeldige instructie" + +-#: nis/nis_print.c:321 +-#, c-format +-msgid "Directory : %s\n" +-msgstr "Map : %s\n" ++#: sysdeps/generic/siglist.h:33 sysdeps/unix/siglist.c:31 ++msgid "Trace/breakpoint trap" ++msgstr "Traceer/breekpunt-instructie" + +-#: nis/nis_print.c:322 +-#, c-format +-msgid "Owner : %s\n" +-msgstr "Eigenaar : %s\n" ++#: sysdeps/generic/siglist.h:34 ++msgid "Aborted" ++msgstr "Afgebroken" + +-#: nis/nis_print.c:323 +-#, c-format +-msgid "Group : %s\n" +-msgstr "Groep : %s\n" ++#: sysdeps/generic/siglist.h:35 sysdeps/unix/siglist.c:34 ++msgid "Floating point exception" ++msgstr "Drijvende-komma-berekeningsfout" + +-#: nis/nis_print.c:324 +-msgid "Access Rights : " +-msgstr "Toegangsrechten : " ++#: sysdeps/generic/siglist.h:36 sysdeps/unix/siglist.c:35 ++msgid "Killed" ++msgstr "Geëlimineerd" + +-#: nis/nis_print.c:326 +-#, c-format +-msgid "" +-"\n" +-"Time to Live : " +-msgstr "" +-"\n" +-"Tijd te leven : " ++#: sysdeps/generic/siglist.h:37 sysdeps/unix/siglist.c:36 ++msgid "Bus error" ++msgstr "Busfout" ++ ++#: sysdeps/generic/siglist.h:38 sysdeps/unix/siglist.c:37 ++msgid "Segmentation fault" ++msgstr "Segmentatiefout" + +-#: nis/nis_print.c:329 +-#, c-format +-msgid "Creation Time : %s" +-msgstr "Aanmaaktijd : %s" ++#. TRANS Broken pipe; there is no process reading from the other end of a pipe. ++#. TRANS Every library function that returns this error code also generates a ++#. TRANS @code{SIGPIPE} signal; this signal terminates the program if not handled ++#. TRANS or blocked. Thus, your program will never actually see @code{EPIPE} ++#. TRANS unless it has handled or blocked @code{SIGPIPE}. ++#: sysdeps/generic/siglist.h:39 sysdeps/gnu/errlist.c:359 ++#: sysdeps/unix/siglist.c:39 ++msgid "Broken pipe" ++msgstr "Gebroken pijp" + +-#: nis/nis_print.c:331 +-#, c-format +-msgid "Mod. Time : %s" +-msgstr "Wijzigingstijd : %s" ++#: sysdeps/generic/siglist.h:40 sysdeps/unix/siglist.c:40 ++msgid "Alarm clock" ++msgstr "Alarmklok" + +-#: nis/nis_print.c:332 +-msgid "Object Type : " +-msgstr "Objektsoort : " ++#: sysdeps/generic/siglist.h:41 sysdeps/unix/siglist.c:41 ++msgid "Terminated" ++msgstr "Afgesloten" + +-#: nis/nis_print.c:352 +-#, c-format +-msgid " Data Length = %u\n" +-msgstr " Gegevenslengte = %u\n" ++#: sysdeps/generic/siglist.h:42 sysdeps/unix/siglist.c:42 ++msgid "Urgent I/O condition" ++msgstr "Spoedeisende I/O-toestand" + +-#: nis/nis_print.c:365 +-#, c-format +-msgid "Status : %s\n" +-msgstr "Status : %s\n" ++#: sysdeps/generic/siglist.h:43 sysdeps/unix/siglist.c:43 ++msgid "Stopped (signal)" ++msgstr "Gestopt (signaal)" + +-#: nis/nis_print.c:366 +-#, c-format +-msgid "Number of objects : %u\n" +-msgstr "Aantal objekten : %u\n" ++#: sysdeps/generic/siglist.h:44 sysdeps/unix/siglist.c:44 ++msgid "Stopped" ++msgstr "Gestopt" + +-#: nis/nis_print.c:370 +-#, c-format +-msgid "Object #%d:\n" +-msgstr "Objekt #%d:\n" ++#: sysdeps/generic/siglist.h:45 sysdeps/unix/siglist.c:45 ++msgid "Continued" ++msgstr "Doorgegaan" + +-#: nis/nis_print_group_entry.c:115 +-#, c-format +-msgid "Group entry for \"%s.%s\" group:\n" +-msgstr "Groepingang voor \"%s.%s\" groep:\n" ++#: sysdeps/generic/siglist.h:46 sysdeps/unix/siglist.c:46 ++msgid "Child exited" ++msgstr "Kind is afgesloten" + +-#: nis/nis_print_group_entry.c:123 +-msgid " Explicit members:\n" +-msgstr " Expliciete leden:\n" ++#: sysdeps/generic/siglist.h:47 sysdeps/unix/siglist.c:47 ++msgid "Stopped (tty input)" ++msgstr "Gestopt (tty-invoer)" + +-#: nis/nis_print_group_entry.c:128 +-msgid " No explicit members\n" +-msgstr " Niet-expliciete leden\n" ++#: sysdeps/generic/siglist.h:48 sysdeps/unix/siglist.c:48 ++msgid "Stopped (tty output)" ++msgstr "Gestopt (tty-uitvoer)" + +-#: nis/nis_print_group_entry.c:131 +-msgid " Implicit members:\n" +-msgstr " Impliciete leden:\n" ++#: sysdeps/generic/siglist.h:49 sysdeps/unix/siglist.c:49 ++msgid "I/O possible" ++msgstr "I/O is mogelijk" + +-#: nis/nis_print_group_entry.c:136 +-msgid " No implicit members\n" +-msgstr " Niet-impliciete leden\n" ++#: sysdeps/generic/siglist.h:50 sysdeps/unix/siglist.c:50 ++msgid "CPU time limit exceeded" ++msgstr "Limiet op processortijd is overschreden" + +-#: nis/nis_print_group_entry.c:139 +-msgid " Recursive members:\n" +-msgstr " Recursieve leden:\n" ++#: sysdeps/generic/siglist.h:51 sysdeps/unix/siglist.c:51 ++msgid "File size limit exceeded" ++msgstr "Limiet op bestandsgrootte is overschreden" + +-#: nis/nis_print_group_entry.c:144 +-msgid " No recursive members\n" +-msgstr " Niet-recursieve leden\n" ++#: sysdeps/generic/siglist.h:52 sysdeps/unix/siglist.c:52 ++msgid "Virtual timer expired" ++msgstr "Virtuele tijdopnemer is verlopen" + +-#: nis/nis_print_group_entry.c:147 nis/nis_print_group_entry.c:163 +-msgid " Explicit nonmembers:\n" +-msgstr " Expliciete niet-leden:\n" ++#: sysdeps/generic/siglist.h:53 sysdeps/unix/siglist.c:53 ++msgid "Profiling timer expired" ++msgstr "Tijdopnemer voor analyse is verlopen" + +-#: nis/nis_print_group_entry.c:152 +-msgid " No explicit nonmembers\n" +-msgstr " Niet-expliciete niet-leden\n" ++#: sysdeps/generic/siglist.h:54 sysdeps/unix/siglist.c:54 ++msgid "Window changed" ++msgstr "Venster is veranderd" + +-#: nis/nis_print_group_entry.c:155 +-msgid " Implicit nonmembers:\n" +-msgstr " Impliciete niet-leden:\n" ++#: sysdeps/generic/siglist.h:55 sysdeps/unix/siglist.c:56 ++msgid "User defined signal 1" ++msgstr "Eerste door gebruiker gedefinieerd signaal" + +-#: nis/nis_print_group_entry.c:160 +-msgid " No implicit nonmembers\n" +-msgstr " Niet-impliciete niet-leden\n" ++#: sysdeps/generic/siglist.h:56 sysdeps/unix/siglist.c:57 ++msgid "User defined signal 2" ++msgstr "Tweede door gebruiker gedefinieerd signaal" + +-#: nis/nis_print_group_entry.c:168 +-msgid " No recursive nonmembers\n" +-msgstr " Niet-recursieve niet-leden\n" ++#: sysdeps/generic/siglist.h:60 sysdeps/unix/siglist.c:33 ++msgid "EMT trap" ++msgstr "EMT-instructie" + +-#: nis/nss_nisplus/nisplus-publickey.c:101 +-#: nis/nss_nisplus/nisplus-publickey.c:182 +-#, c-format +-msgid "DES entry for netname %s not unique\n" +-msgstr "DES-ingang voor netnaam %s is niet uniek\n" ++#: sysdeps/generic/siglist.h:63 sysdeps/unix/siglist.c:38 ++msgid "Bad system call" ++msgstr "Ongeldige systeemaanroep" + +-#: nis/nss_nisplus/nisplus-publickey.c:218 +-#, c-format +-msgid "netname2user: missing group id list in `%s'." +-msgstr "netname2user: ontbrekende groep-ID-lijst in `%s'." ++#: sysdeps/generic/siglist.h:66 ++msgid "Stack fault" ++msgstr "Stackfout" + +-#: nis/nss_nisplus/nisplus-publickey.c:300 +-#: nis/nss_nisplus/nisplus-publickey.c:306 +-#: nis/nss_nisplus/nisplus-publickey.c:370 +-#: nis/nss_nisplus/nisplus-publickey.c:379 +-#, c-format +-msgid "netname2user: (nis+ lookup): %s\n" +-msgstr "netname2user: (nis+ opzoeken): %s\n" ++#: sysdeps/generic/siglist.h:69 ++msgid "Information request" ++msgstr "Verzoek om informatie" + +-#: nis/nss_nisplus/nisplus-publickey.c:319 +-#, c-format +-msgid "netname2user: DES entry for %s in directory %s not unique" +-msgstr "netname2user: DES-ingang voor %s in map %s is niet uniek" ++#: sysdeps/generic/siglist.h:71 ++msgid "Power failure" ++msgstr "Stroomstoring" + +-#: nis/nss_nisplus/nisplus-publickey.c:337 +-#, c-format +-msgid "netname2user: principal name `%s' too long" +-msgstr "netname2user: hoofdnaam `%s' is te lang" ++#: sysdeps/generic/siglist.h:74 sysdeps/unix/siglist.c:55 ++msgid "Resource lost" ++msgstr "Hulpbron verloren" + +-#: nis/nss_nisplus/nisplus-publickey.c:392 +-#, c-format +-msgid "netname2user: LOCAL entry for %s in directory %s not unique" +-msgstr "netname2user: LOCAL-ingang voor %s in map %s is niet uniek" ++#. TRANS Operation not permitted; only the owner of the file (or other resource) ++#. TRANS or processes with special privileges can perform the operation. ++#: sysdeps/gnu/errlist.c:25 ++msgid "Operation not permitted" ++msgstr "Bewerking niet toegestaan" + +-#: nis/nss_nisplus/nisplus-publickey.c:399 +-msgid "netname2user: should not have uid 0" +-msgstr "netname2user: mag niet UID 0 hebben" ++#. TRANS No process matches the specified process ID. ++#: sysdeps/gnu/errlist.c:45 ++msgid "No such process" ++msgstr "Proces bestaat niet" + +-#: nis/ypclnt.c:171 +-#, c-format +-msgid "YPBINDPROC_DOMAIN: %s\n" +-msgstr "YPBINDPROC_DOMAIN: %s\n" ++#. TRANS Interrupted function call; an asynchronous signal occurred and prevented ++#. TRANS completion of the call. When this happens, you should try the call ++#. TRANS again. ++#. TRANS ++#. TRANS You can choose to have functions resume after a signal that is handled, ++#. TRANS rather than failing with @code{EINTR}; see @ref{Interrupted ++#. TRANS Primitives}. ++#: sysdeps/gnu/errlist.c:60 ++msgid "Interrupted system call" ++msgstr "Onderbroken systeemaanroep" + +-#: nis/ypclnt.c:780 +-msgid "Request arguments bad" +-msgstr "Verzoekargumenten slecht" ++#. TRANS Input/output error; usually used for physical read or write errors. ++#: sysdeps/gnu/errlist.c:69 ++msgid "Input/output error" ++msgstr "Invoer-/uitvoerfout" + +-#: nis/ypclnt.c:782 +-msgid "RPC failure on NIS operation" +-msgstr "RPC-mislukking bij NIS-bewerking" ++#. TRANS No such device or address. The system tried to use the device ++#. TRANS represented by a file you specified, and it couldn't find the device. ++#. TRANS This can mean that the device file was installed incorrectly, or that ++#. TRANS the physical device is missing or not correctly attached to the ++#. TRANS computer. ++#: sysdeps/gnu/errlist.c:82 ++msgid "No such device or address" ++msgstr "Apparaat of adres bestaat niet" + +-#: nis/ypclnt.c:784 +-msgid "Can't bind to server which serves this domain" +-msgstr "Kan niet binden aan de server die dit domein aanbiedt" ++#. TRANS Argument list too long; used when the arguments passed to a new program ++#. TRANS being executed with one of the @code{exec} functions (@pxref{Executing a ++#. TRANS File}) occupy too much memory space. This condition never arises in the ++#. TRANS GNU system. ++#: sysdeps/gnu/errlist.c:94 ++msgid "Argument list too long" ++msgstr "Argumentenlijst is te lang" + +-#: nis/ypclnt.c:786 +-msgid "No such map in server's domain" +-msgstr "Geen dergelijke afbeelding in domein van server" ++#. TRANS Invalid executable file format. This condition is detected by the ++#. TRANS @code{exec} functions; see @ref{Executing a File}. ++#: sysdeps/gnu/errlist.c:104 ++msgid "Exec format error" ++msgstr "Verkeerd uitvoerbaar bestand" + +-#: nis/ypclnt.c:788 +-msgid "No such key in map" +-msgstr "Geen dergelijke sleutel in afbeelding" ++#. TRANS Bad file descriptor; for example, I/O on a descriptor that has been ++#. TRANS closed or reading from a descriptor open only for writing (or vice ++#. TRANS versa). ++#: sysdeps/gnu/errlist.c:115 ++msgid "Bad file descriptor" ++msgstr "Ongeldige bestandsdescriptor" + +-#: nis/ypclnt.c:790 +-msgid "Internal NIS error" +-msgstr "Interne NIS-fout" ++#. TRANS There are no child processes. This error happens on operations that are ++#. TRANS supposed to manipulate child processes, when there aren't any processes ++#. TRANS to manipulate. ++#: sysdeps/gnu/errlist.c:126 ++msgid "No child processes" ++msgstr "Geen kindprocessen" + +-#: nis/ypclnt.c:792 +-msgid "Local resource allocation failure" +-msgstr "Toewijzingsfout lokale bron" ++#. TRANS Deadlock avoided; allocating a system resource would have resulted in a ++#. TRANS deadlock situation. The system does not guarantee that it will notice ++#. TRANS all such situations. This error means you got lucky and the system ++#. TRANS noticed; it might just hang. @xref{File Locks}, for an example. ++#: sysdeps/gnu/errlist.c:138 ++msgid "Resource deadlock avoided" ++msgstr "Volledige blokkering van hulpbron is omzeild" + +-#: nis/ypclnt.c:794 +-msgid "No more records in map database" +-msgstr "Niet meer records in afbeeldingengegevensbank" ++#. TRANS No memory available. The system cannot allocate more virtual memory ++#. TRANS because its capacity is full. ++#: sysdeps/gnu/errlist.c:148 ++msgid "Cannot allocate memory" ++msgstr "Kan geen geheugen meer reserveren" + +-#: nis/ypclnt.c:796 +-msgid "Can't communicate with portmapper" +-msgstr "Kan niet communiceren met poortvertaler" ++#. TRANS Bad address; an invalid pointer was detected. ++#. TRANS In the GNU system, this error never happens; you get a signal instead. ++#: sysdeps/gnu/errlist.c:167 ++msgid "Bad address" ++msgstr "Ongeldig adres" + +-#: nis/ypclnt.c:798 +-msgid "Can't communicate with ypbind" +-msgstr "Kan niet communiceren met ypbind" ++#. TRANS A file that isn't a block special file was given in a situation that ++#. TRANS requires one. For example, trying to mount an ordinary file as a file ++#. TRANS system in Unix gives this error. ++#: sysdeps/gnu/errlist.c:178 ++msgid "Block device required" ++msgstr "Blokapparaat vereist" + +-#: nis/ypclnt.c:800 +-msgid "Can't communicate with ypserv" +-msgstr "Kan niet communiceren met ypserv" ++#. TRANS Resource busy; a system resource that can't be shared is already in use. ++#. TRANS For example, if you try to delete a file that is the root of a currently ++#. TRANS mounted filesystem, you get this error. ++#: sysdeps/gnu/errlist.c:189 ++msgid "Device or resource busy" ++msgstr "Apparaat of hulpbron is bezig" + +-#: nis/ypclnt.c:802 +-msgid "Local domain name not set" +-msgstr "Lokaal domein niet ingesteld" ++#. TRANS File exists; an existing file was specified in a context where it only ++#. TRANS makes sense to specify a new file. ++#: sysdeps/gnu/errlist.c:199 ++msgid "File exists" ++msgstr "Bestand bestaat al" + +-#: nis/ypclnt.c:804 +-msgid "NIS map database is bad" +-msgstr "NIS-afbeeldingengegevensbank is slecht" ++#. TRANS An attempt to make an improper link across file systems was detected. ++#. TRANS This happens not only when you use @code{link} (@pxref{Hard Links}) but ++#. TRANS also when you rename a file with @code{rename} (@pxref{Renaming Files}). ++#: sysdeps/gnu/errlist.c:210 ++msgid "Invalid cross-device link" ++msgstr "Ongeldige koppeling tussen apparaten" + +-#: nis/ypclnt.c:806 +-msgid "NIS client/server version mismatch - can't supply service" +-msgstr "NIS client/server versie komt niet overeen - kan dienst niet aanbieden" ++#. TRANS The wrong type of device was given to a function that expects a ++#. TRANS particular sort of device. ++#: sysdeps/gnu/errlist.c:220 ++msgid "No such device" ++msgstr "Onjuist apparaat" + +-#: nis/ypclnt.c:810 +-msgid "Database is busy" +-msgstr "Gegevensbank is bezig" ++#. TRANS A file that isn't a directory was specified when a directory is required. ++#: sysdeps/gnu/errlist.c:229 ++msgid "Not a directory" ++msgstr "Niet een map" + +-#: nis/ypclnt.c:812 +-msgid "Unknown NIS error code" +-msgstr "Onbekende NIS-foutcode" ++#. TRANS File is a directory; you cannot open a directory for writing, ++#. TRANS or create or remove hard links to it. ++#: sysdeps/gnu/errlist.c:239 ++msgid "Is a directory" ++msgstr "Is een map" + +-#: nis/ypclnt.c:854 +-msgid "Internal ypbind error" +-msgstr "Interne ypbind-fout" ++#. TRANS Invalid argument. This is used to indicate various kinds of problems ++#. TRANS with passing the wrong argument to a library function. ++#: sysdeps/gnu/errlist.c:249 ++msgid "Invalid argument" ++msgstr "Ongeldig argument" + +-#: nis/ypclnt.c:856 +-msgid "Domain not bound" +-msgstr "Domein niet gebonden" ++#. TRANS The current process has too many files open and can't open any more. ++#. TRANS Duplicate descriptors do count toward this limit. ++#. TRANS ++#. TRANS In BSD and GNU, the number of open files is controlled by a resource ++#. TRANS limit that can usually be increased. If you get this error, you might ++#. TRANS want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited; ++#. TRANS @pxref{Limits on Resources}. ++#: sysdeps/gnu/errlist.c:264 ++msgid "Too many open files" ++msgstr "Te veel open bestanden" + +-#: nis/ypclnt.c:858 +-msgid "System resource allocation failure" +-msgstr "Toewijzingsfout systeembron" ++#. TRANS There are too many distinct file openings in the entire system. Note ++#. TRANS that any number of linked channels count as just one file opening; see ++#. TRANS @ref{Linked Channels}. This error never occurs in the GNU system. ++#: sysdeps/gnu/errlist.c:275 ++msgid "Too many open files in system" ++msgstr "Te veel open bestanden in systeem" + +-#: nis/ypclnt.c:860 +-msgid "Unknown ypbind error" +-msgstr "Onbekende ypbind-fout" ++#. TRANS Inappropriate I/O control operation, such as trying to set terminal ++#. TRANS modes on an ordinary file. ++#: sysdeps/gnu/errlist.c:285 ++msgid "Inappropriate ioctl for device" ++msgstr "Ongepaste ioctl() voor apparaat" + +-#: nis/ypclnt.c:899 +-msgid "yp_update: cannot convert host to netname\n" +-msgstr "yp_update: kan host niet converteren naar netnaam\n" ++#. TRANS An attempt to execute a file that is currently open for writing, or ++#. TRANS write to a file that is currently being executed. Often using a ++#. TRANS debugger to run a program is considered having it open for writing and ++#. TRANS will cause this error. (The name stands for ``text file busy''.) This ++#. TRANS is not an error in the GNU system; the text is copied as necessary. ++#: sysdeps/gnu/errlist.c:298 ++msgid "Text file busy" ++msgstr "Tekstbestand is bezig" + +-#: nis/ypclnt.c:911 +-msgid "yp_update: cannot get server address\n" +-msgstr "yp_update: kan server-adres niet opvragen\n" ++#. TRANS File too big; the size of a file would be larger than allowed by the system. ++#: sysdeps/gnu/errlist.c:307 ++msgid "File too large" ++msgstr "Bestand is te groot" + +-#: nscd/cache.c:94 +-msgid "while allocating hash table entry" +-msgstr "bij het toewijzen van een hash-tabel ingang" ++#. TRANS No space left on device; write operation on a file failed because the ++#. TRANS disk is full. ++#: sysdeps/gnu/errlist.c:317 ++msgid "No space left on device" ++msgstr "Geen ruimte meer over op apparaat" + +-#: nscd/cache.c:162 nscd/connections.c:184 +-#, c-format +-msgid "cannot stat() file `%s': %s" +-msgstr "kan bestand `%s' niet vinden: %s" ++#. TRANS Invalid seek operation (such as on a pipe). ++#: sysdeps/gnu/errlist.c:326 ++msgid "Illegal seek" ++msgstr "Ongeldige 'seek'-opdracht" + +-#: nscd/connections.c:150 +-msgid "Cannot run nscd in secure mode as unprivileged user" +-msgstr "Kan nscd niet uitvoeren in veilige modus als gebruiker zonder privileges" ++#. TRANS An attempt was made to modify something on a read-only file system. ++#: sysdeps/gnu/errlist.c:335 ++msgid "Read-only file system" ++msgstr "Bestandssysteem is alleen-lezen" + +-#: nscd/connections.c:172 +-#, c-format +-msgid "while allocating cache: %s" +-msgstr "bij toewijzen buffer: %s" ++#. TRANS Too many links; the link count of a single file would become too large. ++#. TRANS @code{rename} can cause this error if the file being renamed already has ++#. TRANS as many links as it can take (@pxref{Renaming Files}). ++#: sysdeps/gnu/errlist.c:346 ++msgid "Too many links" ++msgstr "Te veel koppelingen" + +-#: nscd/connections.c:197 +-#, c-format +-msgid "cannot open socket: %s" +-msgstr "kan socket niet openen: %s" ++#. TRANS Domain error; used by mathematical functions when an argument value does ++#. TRANS not fall into the domain over which the function is defined. ++#: sysdeps/gnu/errlist.c:369 ++msgid "Numerical argument out of domain" ++msgstr "Numeriek argument valt buiten domein" + +-#: nscd/connections.c:215 +-#, c-format +-msgid "cannot enable socket to accept connections: %s" +-msgstr "kan socket niet verbindingen laten accepteren: %s" ++#. TRANS Range error; used by mathematical functions when the result value is ++#. TRANS not representable because of overflow or underflow. ++#: sysdeps/gnu/errlist.c:379 ++msgid "Numerical result out of range" ++msgstr "Numeriek resultaat valt buiten bereik" ++ ++#. TRANS Resource temporarily unavailable; the call might work if you try again ++#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN}; ++#. TRANS they are always the same in the GNU C library. ++#. TRANS ++#. TRANS This error can happen in a few different situations: ++#. TRANS ++#. TRANS @itemize @bullet ++#. TRANS @item ++#. TRANS An operation that would block was attempted on an object that has ++#. TRANS non-blocking mode selected. Trying the same operation again will block ++#. TRANS until some external condition makes it possible to read, write, or ++#. TRANS connect (whatever the operation). You can use @code{select} to find out ++#. TRANS when the operation will be possible; @pxref{Waiting for I/O}. ++#. TRANS ++#. TRANS @strong{Portability Note:} In many older Unix systems, this condition ++#. TRANS was indicated by @code{EWOULDBLOCK}, which was a distinct error code ++#. TRANS different from @code{EAGAIN}. To make your program portable, you should ++#. TRANS check for both codes and treat them the same. ++#. TRANS ++#. TRANS @item ++#. TRANS A temporary resource shortage made an operation impossible. @code{fork} ++#. TRANS can return this error. It indicates that the shortage is expected to ++#. TRANS pass, so your program can try the call again later and it may succeed. ++#. TRANS It is probably a good idea to delay for a few seconds before trying it ++#. TRANS again, to allow time for other processes to release scarce resources. ++#. TRANS Such shortages are usually fairly serious and affect the whole system, ++#. TRANS so usually an interactive program should report the error to the user ++#. TRANS and return to its command loop. ++#. TRANS @end itemize ++#: sysdeps/gnu/errlist.c:416 ++msgid "Resource temporarily unavailable" ++msgstr "Hulpbron is tijdelijk onbeschikbaar" + +-#: nscd/connections.c:260 +-#, c-format +-msgid "cannot handle old request version %d; current version is %d" +-msgstr "kan oude verzoekversie %d niet behandelen; huidige versie is %d" ++#. TRANS In the GNU C library, this is another name for @code{EAGAIN} (above). ++#. TRANS The values are always the same, on every operating system. ++#. TRANS ++#. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a ++#. TRANS separate error code. ++#: sysdeps/gnu/errlist.c:429 ++msgid "Operation would block" ++msgstr "Bewerking zou blokkeren" + +-#: nscd/connections.c:298 nscd/connections.c:324 +-#, c-format +-msgid "cannot write result: %s" +-msgstr "kan resultaat niet schrijven: %s" ++#. TRANS An operation that cannot complete immediately was initiated on an object ++#. TRANS that has non-blocking mode selected. Some functions that must always ++#. TRANS block (such as @code{connect}; @pxref{Connecting}) never return ++#. TRANS @code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that ++#. TRANS the operation has begun and will take some time. Attempts to manipulate ++#. TRANS the object before the call completes return @code{EALREADY}. You can ++#. TRANS use the @code{select} function to find out when the pending operation ++#. TRANS has completed; @pxref{Waiting for I/O}. ++#: sysdeps/gnu/errlist.c:445 ++msgid "Operation now in progress" ++msgstr "Bewerking is nu bezig" + +-#: nscd/connections.c:392 nscd/connections.c:514 +-#, c-format +-msgid "error getting caller's id: %s" +-msgstr "fout bij opvragen ID van aanroeper: %s" ++#. TRANS An operation is already in progress on an object that has non-blocking ++#. TRANS mode selected. ++#: sysdeps/gnu/errlist.c:455 ++msgid "Operation already in progress" ++msgstr "Bewerking is al bezig" + +-#: nscd/connections.c:485 +-#, c-format +-msgid "while accepting connection: %s" +-msgstr "bij accepteren verbinding: %s" ++#. TRANS A file that isn't a socket was specified when a socket is required. ++#: sysdeps/gnu/errlist.c:464 ++msgid "Socket operation on non-socket" ++msgstr "Socketbewerking op een niet-socket" + +-#: nscd/connections.c:498 +-#, c-format +-msgid "short read while reading request: %s" +-msgstr "te weinig gelezen bij lezen van verzoek: %s" ++#. TRANS The size of a message sent on a socket was larger than the supported ++#. TRANS maximum size. ++#: sysdeps/gnu/errlist.c:474 ++msgid "Message too long" ++msgstr "Bericht is te lang" + +-#: nscd/connections.c:542 +-#, c-format +-msgid "key length in request too long: %d" +-msgstr "sleutellengte in verzoek te lang: %d" ++#. TRANS The socket type does not support the requested communications protocol. ++#: sysdeps/gnu/errlist.c:483 ++msgid "Protocol wrong type for socket" ++msgstr "Protocol van verkeerde soort voor socket" + +-#: nscd/connections.c:556 +-#, c-format +-msgid "short read while reading request key: %s" +-msgstr "te weinig gelezen bij lezen van verzoeksleutel: %s" ++#. TRANS You specified a socket option that doesn't make sense for the ++#. TRANS particular protocol being used by the socket. @xref{Socket Options}. ++#: sysdeps/gnu/errlist.c:493 ++msgid "Protocol not available" ++msgstr "Protocol is niet beschikbaar" + +-#: nscd/connections.c:566 +-#, c-format +-msgid "handle_request: request received (Version = %d) from PID %ld" +-msgstr "handle_request: verzoek ontvangen (Versie = %d) van PID %ld" ++#. TRANS The socket domain does not support the requested communications protocol ++#. TRANS (perhaps because the requested protocol is completely invalid). ++#. TRANS @xref{Creating a Socket}. ++#: sysdeps/gnu/errlist.c:504 ++msgid "Protocol not supported" ++msgstr "Protocol wordt niet ondersteund" + +-#: nscd/connections.c:571 +-#, c-format +-msgid "handle_request: request received (Version = %d)" +-msgstr "handle_request: verzoek ontvangen (versie = %d)" ++#. TRANS The socket type is not supported. ++#: sysdeps/gnu/errlist.c:513 ++msgid "Socket type not supported" ++msgstr "Socketsoort wordt niet ondersteund" + +-#: nscd/connections.c:635 nscd/connections.c:636 nscd/connections.c:655 +-#: nscd/connections.c:668 nscd/connections.c:674 nscd/connections.c:681 +-#, c-format +-msgid "Failed to run nscd as user '%s'" +-msgstr "Uitvoeren van nscd als gebruiker '%s' mislukt" ++#. TRANS The operation you requested is not supported. Some socket functions ++#. TRANS don't make sense for all types of sockets, and others may not be ++#. TRANS implemented for all communications protocols. In the GNU system, this ++#. TRANS error can happen for many calls when the object does not support the ++#. TRANS particular operation; it is a generic indication that the server knows ++#. TRANS nothing to do for that call. ++#: sysdeps/gnu/errlist.c:527 ++msgid "Operation not supported" ++msgstr "Bewerking wordt niet ondersteund" + +-#: nscd/connections.c:656 +-msgid "getgrouplist failed" +-msgstr "getgrouplist mislukt" ++#. TRANS The socket communications protocol family you requested is not supported. ++#: sysdeps/gnu/errlist.c:536 ++msgid "Protocol family not supported" ++msgstr "Protocolfamilie wordt niet ondersteund" + +-#: nscd/connections.c:669 +-msgid "setgroups failed" +-msgstr "setgroups mislukt" ++#. TRANS The address family specified for a socket is not supported; it is ++#. TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}. ++#: sysdeps/gnu/errlist.c:546 ++msgid "Address family not supported by protocol" ++msgstr "Adresfamilie wordt niet ondersteund door protocol" + +-#: nscd/grpcache.c:103 nscd/hstcache.c:111 nscd/pwdcache.c:109 +-msgid "while allocating key copy" +-msgstr "bij toewijzen sleutelkopie" ++#. TRANS The requested socket address is already in use. @xref{Socket Addresses}. ++#: sysdeps/gnu/errlist.c:555 ++msgid "Address already in use" ++msgstr "Adres is al in gebruik" + +-#: nscd/grpcache.c:153 nscd/hstcache.c:168 nscd/pwdcache.c:146 +-msgid "while allocating cache entry" +-msgstr "bij toewijzen bufferingang" ++#. TRANS The requested socket address is not available; for example, you tried ++#. TRANS to give a socket a name that doesn't match the local host name. ++#. TRANS @xref{Socket Addresses}. ++#: sysdeps/gnu/errlist.c:566 ++msgid "Cannot assign requested address" ++msgstr "Kan verzochte adres niet toewijzen" + +-#: nscd/grpcache.c:197 nscd/hstcache.c:283 nscd/pwdcache.c:193 +-#, c-format +-msgid "short write in %s: %s" +-msgstr "te weinig geschreven in %s: %s" ++#. TRANS A socket operation failed because the network was down. ++#: sysdeps/gnu/errlist.c:575 ++msgid "Network is down" ++msgstr "Netwerk ligt plat" + +-#: nscd/grpcache.c:219 +-#, c-format +-msgid "Haven't found \"%s\" in group cache!" +-msgstr "Kon \"%s\" niet vinden in groepbuffer!" ++#. TRANS A socket operation failed because the subnet containing the remote host ++#. TRANS was unreachable. ++#: sysdeps/gnu/errlist.c:585 ++msgid "Network is unreachable" ++msgstr "Netwerk is onbereikbaar" + +-#: nscd/grpcache.c:285 +-#, c-format +-msgid "Invalid numeric gid \"%s\"!" +-msgstr "Ongeldige numerieke GID \"%s\"!" ++#. TRANS A network connection was reset because the remote host crashed. ++#: sysdeps/gnu/errlist.c:594 ++msgid "Network dropped connection on reset" ++msgstr "Verbinding is verbroken door KILL-opdracht" + +-#: nscd/grpcache.c:292 +-#, c-format +-msgid "Haven't found \"%d\" in group cache!" +-msgstr "Kon \"%d\" niet vinden in groepbuffer!" ++#. TRANS A network connection was aborted locally. ++#: sysdeps/gnu/errlist.c:603 ++msgid "Software caused connection abort" ++msgstr "Verbinding is verbroken door lokaal probleem" + +-#: nscd/hstcache.c:305 nscd/hstcache.c:371 nscd/hstcache.c:436 +-#: nscd/hstcache.c:501 +-#, c-format +-msgid "Haven't found \"%s\" in hosts cache!" +-msgstr "Kon \"%s\" niet vinden in hostsbuffer!" ++#. TRANS A network connection was closed for reasons outside the control of the ++#. TRANS local host, such as by the remote machine rebooting or an unrecoverable ++#. TRANS protocol violation. ++#: sysdeps/gnu/errlist.c:614 ++msgid "Connection reset by peer" ++msgstr "Verbinding is weggevallen" + +-#: nscd/nscd.c:89 +-msgid "Read configuration data from NAME" +-msgstr "Configuratiegegevens lezen uit NAAM" ++#. TRANS The kernel's buffers for I/O operations are all in use. In GNU, this ++#. TRANS error is always synonymous with @code{ENOMEM}; you may get one or the ++#. TRANS other from network operations. ++#: sysdeps/gnu/errlist.c:625 ++msgid "No buffer space available" ++msgstr "Geen bufferruimte meer beschikbaar" + +-#: nscd/nscd.c:91 +-msgid "Do not fork and display messages on the current tty" +-msgstr "Niet vertakken en berichten op de huidige TTY weergeven" ++#. TRANS You tried to connect a socket that is already connected. ++#. TRANS @xref{Connecting}. ++#: sysdeps/gnu/errlist.c:635 ++msgid "Transport endpoint is already connected" ++msgstr "Overdrachtseindpunt is al verbonden" + +-#: nscd/nscd.c:92 +-msgid "NUMBER" +-msgstr "GETAL" ++#. TRANS The socket is not connected to anything. You get this error when you ++#. TRANS try to transmit data over a socket, without first specifying a ++#. TRANS destination for the data. For a connectionless socket (for datagram ++#. TRANS protocols, such as UDP), you get @code{EDESTADDRREQ} instead. ++#: sysdeps/gnu/errlist.c:647 ++msgid "Transport endpoint is not connected" ++msgstr "Overdrachtseindpunt is niet verbonden" + +-#: nscd/nscd.c:92 +-msgid "Start NUMBER threads" +-msgstr "GETAL threads starten" ++#. TRANS No default destination address was set for the socket. You get this ++#. TRANS error when you try to transmit data over a connectionless socket, ++#. TRANS without first specifying a destination for the data with @code{connect}. ++#: sysdeps/gnu/errlist.c:658 ++msgid "Destination address required" ++msgstr "Doeladres vereist" + +-#: nscd/nscd.c:93 +-msgid "Shut the server down" +-msgstr "De server afsluiten" ++#. TRANS The socket has already been shut down. ++#: sysdeps/gnu/errlist.c:667 ++msgid "Cannot send after transport endpoint shutdown" ++msgstr "Kan niets meer verzenden na sluiten van overdrachtseindpunt" + +-#: nscd/nscd.c:94 +-msgid "Print current configuration statistic" +-msgstr "Huidige configuratiestatistiek weergeven" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:676 ++msgid "Too many references: cannot splice" ++msgstr "Te veel verwijzingen: kan niet splitsen" + +-#: nscd/nscd.c:95 +-msgid "TABLE" +-msgstr "TABEL" ++#. TRANS A socket operation with a specified timeout received no response during ++#. TRANS the timeout period. ++#: sysdeps/gnu/errlist.c:686 ++msgid "Connection timed out" ++msgstr "Verbinding is verlopen" + +-#: nscd/nscd.c:96 +-msgid "Invalidate the specified cache" +-msgstr "De opgegeven buffer ongeldig maken" ++#. TRANS A remote host refused to allow the network connection (typically because ++#. TRANS it is not running the requested service). ++#: sysdeps/gnu/errlist.c:696 ++msgid "Connection refused" ++msgstr "Verbinding is geweigerd" + +-#: nscd/nscd.c:97 +-msgid "TABLE,yes" +-msgstr "TABEL,ja" ++#. TRANS Too many levels of symbolic links were encountered in looking up a file name. ++#. TRANS This often indicates a cycle of symbolic links. ++#: sysdeps/gnu/errlist.c:706 ++msgid "Too many levels of symbolic links" ++msgstr "Te veel niveaus van symbolische koppelingen -- vermoedelijk een lus" + +-#: nscd/nscd.c:97 +-msgid "Use separate cache for each user" +-msgstr "Gescheiden buffer gebruiken voor elke gebruiker" ++#. TRANS Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for ++#. TRANS Files}) or host name too long (in @code{gethostname} or ++#. TRANS @code{sethostname}; @pxref{Host Identification}). ++#: sysdeps/gnu/errlist.c:717 ++msgid "File name too long" ++msgstr "Bestandsnaam is te lang" + +-#: nscd/nscd.c:102 +-msgid "Name Service Cache Daemon." +-msgstr "Naamdienst Bufferdaemon." ++#. TRANS The remote host for a requested network connection is down. ++#: sysdeps/gnu/errlist.c:726 ++msgid "Host is down" ++msgstr "Host is inactief" + +-#: nscd/nscd.c:141 +-msgid "cannot read configuration file; this is fatal" +-msgstr "kan configuratiebestand niet lezen; dit is fataal" ++#. TRANS The remote host for a requested network connection is not reachable. ++#: sysdeps/gnu/errlist.c:735 ++msgid "No route to host" ++msgstr "Geen route naar host" + +-#: nscd/nscd.c:152 +-msgid "already running" +-msgstr "word al uitgevoerd" ++#. TRANS Directory not empty, where an empty directory was expected. Typically, ++#. TRANS this error occurs when you are trying to delete a directory. ++#: sysdeps/gnu/errlist.c:745 ++msgid "Directory not empty" ++msgstr "Map is niet leeg" + +-#: nscd/nscd.c:270 nscd/nscd.c:294 nscd/nscd_stat.c:132 +-msgid "Only root is allowed to use this option!" +-msgstr "Alleen root mag deze optie gebruiken!" ++#. TRANS This means that the per-user limit on new process would be exceeded by ++#. TRANS an attempted @code{fork}. @xref{Limits on Resources}, for details on ++#. TRANS the @code{RLIMIT_NPROC} limit. ++#: sysdeps/gnu/errlist.c:756 ++msgid "Too many processes" ++msgstr "Te veel processen" + +-#: nscd/nscd_conf.c:88 +-#, c-format +-msgid "Parse error: %s" +-msgstr "Verwerkfout: %s" ++#. TRANS The file quota system is confused because there are too many users. ++#. TRANS @c This can probably happen in a GNU system when using NFS. ++#: sysdeps/gnu/errlist.c:766 ++msgid "Too many users" ++msgstr "Te veel gebruikers" + +-#: nscd/nscd_conf.c:171 +-#, c-format +-msgid "Could not create log file \"%s\"" +-msgstr "Kon logbestand \"%s\" niet aanmaken" ++#. TRANS The user's disk quota was exceeded. ++#: sysdeps/gnu/errlist.c:775 ++msgid "Disk quota exceeded" ++msgstr "Schijfquotum is overschreden" + +-#: nscd/nscd_conf.c:187 +-msgid "Must specify user name for server-user option" +-msgstr "Het is nodig een gebruikersnaam op te geven bij de server-user optie" ++#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS ++#. TRANS system which is due to file system rearrangements on the server host. ++#. TRANS Repairing this condition usually requires unmounting and remounting ++#. TRANS the NFS file system on the local host. ++#: sysdeps/gnu/errlist.c:787 ++msgid "Stale NFS file handle" ++msgstr "Achterhaald NFS-bestandshandvat" + +-#: nscd/nscd_conf.c:194 +-msgid "Must specify user name for stat-user option" +-msgstr "Het is nodig een gebruikersnaam op te geven bij de stat-user optie" ++#. TRANS An attempt was made to NFS-mount a remote file system with a file name that ++#. TRANS already specifies an NFS-mounted file. ++#. TRANS (This is an error on some operating systems, but we expect it to work ++#. TRANS properly on the GNU system, making this error code impossible.) ++#: sysdeps/gnu/errlist.c:799 ++msgid "Object is remote" ++msgstr "Object is al elders" + +-#: nscd/nscd_conf.c:205 +-#, c-format +-msgid "Unknown option: %s %s %s" +-msgstr "Onbekende optie: %s %s %s" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:808 ++msgid "RPC struct is bad" ++msgstr "RPC-struct is ongeldig" + +-#: nscd/nscd_stat.c:103 +-#, c-format +-msgid "cannot write statistics: %s" +-msgstr "kan statistieken niet schrijven: %s" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:817 ++msgid "RPC version wrong" ++msgstr "RPC-versie is verkeerd" + +-#: nscd/nscd_stat.c:128 +-#, c-format +-msgid "Only root or %s is allowed to use this option!" +-msgstr "Alleen root of %s mag deze optie gebruiken!" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:826 ++msgid "RPC program not available" ++msgstr "RPC-programma is niet beschikbaar" + +-#: nscd/nscd_stat.c:139 +-msgid "nscd not running!\n" +-msgstr "nscd wordt niet uitgevoerd!\n" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:835 ++msgid "RPC program version wrong" ++msgstr "RPC-programmaversie is verkeerd" + +-#: nscd/nscd_stat.c:150 +-msgid "write incomplete" +-msgstr "schrijven onvolledig" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:844 ++msgid "RPC bad procedure for program" ++msgstr "Verkeerde RPC-procedure voor programma" + +-#: nscd/nscd_stat.c:162 +-msgid "cannot read statistics data" +-msgstr "kan statistische gegevens niet lezen" ++#. TRANS No locks available. This is used by the file locking facilities; see ++#. TRANS @ref{File Locks}. This error is never generated by the GNU system, but ++#. TRANS it can result from an operation to an NFS server running another ++#. TRANS operating system. ++#: sysdeps/gnu/errlist.c:856 ++msgid "No locks available" ++msgstr "Geen vergrendelingen meer beschikbaar" + +-#: nscd/nscd_stat.c:165 +-#, c-format +-msgid "" +-"nscd configuration:\n" +-"\n" +-"%15d server debug level\n" +-msgstr "" +-"nscd configuratie:\n" +-"\n" +-"%15d server debugniveau\n" ++#. TRANS Inappropriate file type or format. The file was the wrong type for the ++#. TRANS operation, or a data file had the wrong format. ++#. TRANS ++#. TRANS On some systems @code{chmod} returns this error if you try to set the ++#. TRANS sticky bit on a non-directory file; @pxref{Setting Permissions}. ++#: sysdeps/gnu/errlist.c:869 ++msgid "Inappropriate file type or format" ++msgstr "Ongepast bestandstype" + +-#: nscd/nscd_stat.c:189 +-#, c-format +-msgid "%3ud %2uh %2um %2lus server runtime\n" +-msgstr "%3ud %2uh %2um %2lus server looptijd\n" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:878 ++msgid "Authentication error" ++msgstr "Authentificatiefout" + +-#: nscd/nscd_stat.c:192 +-#, c-format +-msgid " %2uh %2um %2lus server runtime\n" +-msgstr " %2uh %2um %2lus server looptijd\n" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:887 ++msgid "Need authenticator" ++msgstr "Authentificator vereist" + +-#: nscd/nscd_stat.c:194 +-#, c-format +-msgid " %2um %2lus server runtime\n" +-msgstr " %2um %2lus server looptijd\n" ++#. TRANS Function not implemented. This indicates that the function called is ++#. TRANS not implemented at all, either in the C library itself or in the ++#. TRANS operating system. When you get this error, you can be sure that this ++#. TRANS particular function will always fail with @code{ENOSYS} unless you ++#. TRANS install a new version of the C library or the operating system. ++#: sysdeps/gnu/errlist.c:900 ++msgid "Function not implemented" ++msgstr "Functie is niet aanwezig" + +-#: nscd/nscd_stat.c:196 +-#, c-format +-msgid " %2lus server runtime\n" +-msgstr " %2lus server looptijd\n" ++#. TRANS Not supported. A function returns this error when certain parameter ++#. TRANS values are valid, but the functionality they request is not available. ++#. TRANS This can mean that the function does not implement a particular command ++#. TRANS or option value or flag bit at all. For functions that operate on some ++#. TRANS object given in a parameter, such as a file descriptor or a port, it ++#. TRANS might instead mean that only @emph{that specific object} (file ++#. TRANS descriptor, port, etc.) is unable to support the other parameters given; ++#. TRANS different file descriptors might support different ranges of parameter ++#. TRANS values. ++#. TRANS ++#. TRANS If the entire function is not available at all in the implementation, ++#. TRANS it returns @code{ENOSYS} instead. ++#: sysdeps/gnu/errlist.c:920 ++msgid "Not supported" ++msgstr "Niet ondersteund" + +-#: nscd/nscd_stat.c:198 +-#, c-format +-msgid "%15lu number of times clients had to wait\n" +-msgstr "%15lu aantal keren dat de client moest wachten\n" ++#. TRANS While decoding a multibyte character the function came along an invalid ++#. TRANS or an incomplete sequence of bytes or the given wide character is invalid. ++#: sysdeps/gnu/errlist.c:930 ++msgid "Invalid or incomplete multibyte or wide character" ++msgstr "Ongeldig of onvolledig multibyte-teken" + +-#: nscd/nscd_stat.c:213 nscd/nscd_stat.c:215 +-msgid " no" +-msgstr " nee" ++#. TRANS In the GNU system, servers supporting the @code{term} protocol return ++#. TRANS this error for certain operations when the caller is not in the ++#. TRANS foreground process group of the terminal. Users do not usually see this ++#. TRANS error because functions such as @code{read} and @code{write} translate ++#. TRANS it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control}, ++#. TRANS for information on process groups and these signals. ++#: sysdeps/gnu/errlist.c:944 ++msgid "Inappropriate operation for background process" ++msgstr "Ongepaste bewerking voor achtergrondproces" + +-#: nscd/nscd_stat.c:213 nscd/nscd_stat.c:215 +-msgid " yes" +-msgstr " ja" ++#. TRANS In the GNU system, opening a file returns this error when the file is ++#. TRANS translated by a program and the translator program dies while starting ++#. TRANS up, before it has connected to the file. ++#: sysdeps/gnu/errlist.c:955 ++msgid "Translator died" ++msgstr "Vertaler bestaat niet meer" + +-#: nscd/nscd_stat.c:221 +-#, c-format +-msgid "" +-"\n" +-"%s cache:\n" +-"\n" +-"%15s cache is enabled\n" +-"%15Zu suggested size\n" +-"%15lu seconds time to live for positive entries\n" +-"%15lu seconds time to live for negative entries\n" +-"%15lu cache hits on positive entries\n" +-"%15lu cache hits on negative entries\n" +-"%15lu cache misses on positive entries\n" +-"%15lu cache misses on negative entries\n" +-"%15lu%% cache hit rate\n" +-"%15lu current number of cached values\n" +-"%15lu maximum number of cached values\n" +-"%15lu maximum chain length searched\n" +-"%15lu number of delays on rdlock\n" +-"%15lu number of delays on wrlock\n" +-"%15s check /etc/%s for changes\n" +-msgstr "" +-"\n" +-"%s buffer:\n" +-"\n" +-"%15s buffer staat aan\n" +-"%15Zu voorgestelde grootte\n" +-"%15lu seconden levenstijd voor positieve ingangen\n" +-"%15lu seconden levenstijd voor negatieve ingangen\n" +-"%15lu buffertreffers op positieve ingangen\n" +-"%15lu buffertreffers op negatieve ingangen\n" +-"%15lu buffermissers op positieve ingangen\n" +-"%15lu buffermissers op negatieve ingangen\n" +-"%15lu%% aantal buffertreffers\n" +-"%15lu huidige aantal gebufferde waarden\n" +-"%15lu maximaal aantal gebufferde waarden\n" +-"%15lu maximale kettingslengte om te doorzoeken\n" +-"%15lu aantal vertragingen op·leesblokkering\n" +-"%15lu aantal vertragingen op schrijfblokkering\n" +-"%15s controleer /etc/%s voor wijzigingen\n" ++#. TRANS The experienced user will know what is wrong. ++#. TRANS @c This error code is a joke. Its perror text is part of the joke. ++#. TRANS @c Don't change it. ++#: sysdeps/gnu/errlist.c:966 ++msgid "?" ++msgstr "?" + +-#: nscd/pwdcache.c:215 +-#, c-format +-msgid "Haven't found \"%s\" in password cache!" +-msgstr "Kon \"%s\" niet vinden in wachtwoordenbuffer!" ++#. TRANS You did @strong{what}? ++#: sysdeps/gnu/errlist.c:975 ++msgid "You really blew it this time" ++msgstr "Deze keer hebt u het echt verknald" + +-#: nscd/pwdcache.c:281 +-#, c-format +-msgid "Invalid numeric uid \"%s\"!" +-msgstr "Ongeldige numerieke UID \"%s\"!" ++#. TRANS Go home and have a glass of warm, dairy-fresh milk. ++#: sysdeps/gnu/errlist.c:984 ++msgid "Computer bought the farm" ++msgstr "Ga er even rustig bij zitten" + +-#: nscd/pwdcache.c:288 +-#, c-format +-msgid "Haven't found \"%d\" in password cache!" +-msgstr "Kon \"%d\" niet vinden in wachtwoordenbuffer!" ++#. TRANS This error code has no purpose. ++#: sysdeps/gnu/errlist.c:993 ++msgid "Gratuitous error" ++msgstr "Zinloze fout" + +-#: elf/../sysdeps/generic/dl-sysdep.c:422 +-msgid "cannot create capability list" +-msgstr "kan mogelijkhedenlijst niet aanmaken" ++#: sysdeps/gnu/errlist.c:1001 ++msgid "Bad message" ++msgstr "Ongeldig bericht" + +-#: elf/../sysdeps/generic/readelflib.c:35 +-#, c-format +-msgid "file %s is truncated\n" +-msgstr "bestand %s is afgekapt\n" ++#: sysdeps/gnu/errlist.c:1009 ++msgid "Identifier removed" ++msgstr "Naam is verwijderd" + +-#: elf/../sysdeps/generic/readelflib.c:67 +-#, c-format +-msgid "%s is a 32 bit ELF file.\n" +-msgstr "%s is een 32-bits ELF-bestand.\n" ++#: sysdeps/gnu/errlist.c:1017 ++msgid "Multihop attempted" ++msgstr "Multihop geprobeerd" + +-#: elf/../sysdeps/generic/readelflib.c:69 +-#, c-format +-msgid "%s is a 64 bit ELF file.\n" +-msgstr "%s is een 64-bits ELF-bestand.\n" ++#: sysdeps/gnu/errlist.c:1025 ++msgid "No data available" ++msgstr "Geen gegevens beschikbaar" + +-#: elf/../sysdeps/generic/readelflib.c:71 +-#, c-format +-msgid "Unknown ELFCLASS in file %s.\n" +-msgstr "Onbekende ELFCLASS in bestand %s.\n" ++#: sysdeps/gnu/errlist.c:1033 ++msgid "Link has been severed" ++msgstr "Koppeling is verbroken" + +-#: elf/../sysdeps/generic/readelflib.c:78 +-#, c-format +-msgid "%s is not a shared object file (Type: %d).\n" +-msgstr "%s is niet een gedeeld objektbestand (Soort: %d).\n" ++#: sysdeps/gnu/errlist.c:1041 ++msgid "No message of desired type" ++msgstr "Geen bericht van de gewenste soort" + +-#: elf/../sysdeps/generic/readelflib.c:109 +-msgid "more than one dynamic segment\n" +-msgstr "meerdere dynamische segmenten\n" ++#: sysdeps/gnu/errlist.c:1049 ++msgid "Out of streams resources" ++msgstr "Geen hulpbronnen voor stromen meer beschikbaar" + +-#: elf/../sysdeps/unix/sysv/linux/i386/readelflib.c:49 +-#, c-format +-msgid "%s is for unknown machine %d.\n" +-msgstr "%s is voor onbekende machine %d.\n" ++#: sysdeps/gnu/errlist.c:1057 ++msgid "Device not a stream" ++msgstr "Apparaat is geen stroom" + +-#: elf/cache.c:70 +-msgid "unknown" +-msgstr "onbekend" ++#: sysdeps/gnu/errlist.c:1065 ++msgid "Value too large for defined data type" ++msgstr "Waarde is te groot voor gedefinieerde gegevenssoort" + +-#: elf/cache.c:111 +-msgid "Unknown OS" +-msgstr "Onbekend besturingssysteem" ++#: sysdeps/gnu/errlist.c:1073 ++msgid "Protocol error" ++msgstr "Protocolfout" + +-#: elf/cache.c:116 +-#, c-format +-msgid ", OS ABI: %s %d.%d.%d" +-msgstr ", Besturingssysteem ABI: %s %d.%d.%d" ++#: sysdeps/gnu/errlist.c:1081 ++msgid "Timer expired" ++msgstr "Tijdopnemer is verlopen" + +-#: elf/cache.c:142 elf/ldconfig.c:1078 +-#, c-format +-msgid "Can't open cache file %s\n" +-msgstr "Kan bufferbestand %s niet openen\n" ++#. TRANS Operation canceled; an asynchronous operation was canceled before it ++#. TRANS completed. @xref{Asynchronous I/O}. When you call @code{aio_cancel}, ++#. TRANS the normal result is for the operations affected to complete with this ++#. TRANS error; @pxref{Cancel AIO Operations}. ++#: sysdeps/gnu/errlist.c:1093 ++msgid "Operation canceled" ++msgstr "Bewerking is geannuleerd" + +-#: elf/cache.c:154 +-msgid "mmap of cache file failed.\n" +-msgstr "mmap van bufferbestand mislukt.\n" ++#: sysdeps/gnu/errlist.c:1101 ++msgid "Interrupted system call should be restarted" ++msgstr "Onderbroken systeemaanroep moet worden herstart" + +-#: elf/cache.c:158 elf/cache.c:168 +-msgid "File is not a cache file.\n" +-msgstr "Bestand is niet een bufferbestand.\n" ++#: sysdeps/gnu/errlist.c:1109 ++msgid "Channel number out of range" ++msgstr "Kanaalnummer valt buiten bereik" + +-#: elf/cache.c:201 elf/cache.c:211 +-#, c-format +-msgid "%d libs found in cache `%s'\n" +-msgstr "%d bibliotheken gevonden in buffer `%s'\n" ++#: sysdeps/gnu/errlist.c:1117 ++msgid "Level 2 not synchronized" ++msgstr "Niveau 2 is niet gesynchroniseerd" + +-#: elf/cache.c:410 +-#, c-format +-msgid "Can't remove old temporary cache file %s" +-msgstr "Kan oud tijdelijk bufferbestand %s niet verwijderen" ++#: sysdeps/gnu/errlist.c:1125 ++msgid "Level 3 halted" ++msgstr "Niveau 3 staat stil" + +-#: elf/cache.c:417 +-#, c-format +-msgid "Can't create temporary cache file %s" +-msgstr "Kan tijdelijk bufferbestand %s niet aanmaken" ++#: sysdeps/gnu/errlist.c:1133 ++msgid "Level 3 reset" ++msgstr "Niveau 3 reset" + +-#: elf/cache.c:425 elf/cache.c:434 elf/cache.c:438 +-msgid "Writing of cache data failed" +-msgstr "Schrijven van buffergegevens mislukt" ++#: sysdeps/gnu/errlist.c:1141 ++msgid "Link number out of range" ++msgstr "Koppelingsnummer valt buiten bereik" + +-#: elf/cache.c:442 +-msgid "Writing of cache data failed." +-msgstr "Schrijven van buffergegevens mislukt." ++#: sysdeps/gnu/errlist.c:1149 ++msgid "Protocol driver not attached" ++msgstr "Protocolstuurprogramma is niet aangehecht" + +-#: elf/cache.c:449 +-#, c-format +-msgid "Changing access rights of %s to %#o failed" +-msgstr "Wijzigen toegangsrechten van %s naar %#o mislukt" ++#: sysdeps/gnu/errlist.c:1157 ++msgid "No CSI structure available" ++msgstr "Geen CSI-structuur beschikbaar" + +-#: elf/cache.c:454 +-#, c-format +-msgid "Renaming of %s to %s failed" +-msgstr "Naam wijzigen van %s naar %s mislukt" ++#: sysdeps/gnu/errlist.c:1165 ++msgid "Level 2 halted" ++msgstr "Niveau 2 staat stil" + +-#: elf/dl-close.c:128 +-msgid "shared object not open" +-msgstr "gedeeld objekt niet open" ++#: sysdeps/gnu/errlist.c:1173 ++msgid "Invalid exchange" ++msgstr "Ongeldige uitwisseling" + +-#: elf/dl-close.c:531 elf/dl-open.c:454 +-msgid "TLS generation counter wrapped! Please send report with the 'glibcbug' script." +-msgstr "De teller bij het TLS genereren is weer opnieuw begonnen! Rapporteer deze softwarefout alstublieft met het 'glibcbug' script." ++#: sysdeps/gnu/errlist.c:1181 ++msgid "Invalid request descriptor" ++msgstr "Ongeldige verzoeksdescriptor" + +-#: elf/dl-deps.c:111 elf/dl-open.c:183 +-msgid "DST not allowed in SUID/SGID programs" +-msgstr "DST niet toegestaan in SUID/SGID-programma's" ++#: sysdeps/gnu/errlist.c:1189 ++msgid "Exchange full" ++msgstr "Uitwisseling is vol" + +-#: elf/dl-deps.c:124 +-msgid "empty dynamics string token substitution" +-msgstr "lege dynamische vervanging van tekenreeks-token" ++#: sysdeps/gnu/errlist.c:1197 ++msgid "No anode" ++msgstr "Geen anode" + +-#: elf/dl-deps.c:130 +-#, c-format +-msgid "cannot load auxiliary `%s' because of empty dynamic string token substitution\n" +-msgstr "kan helper `%s' niet laden vanwege lege dynamische vervanging van tekenreeks-token\n" ++#: sysdeps/gnu/errlist.c:1205 ++msgid "Invalid request code" ++msgstr "Ongeldige verzoekscode" + +-#: elf/dl-deps.c:461 +-msgid "cannot allocate dependency list" +-msgstr "kan afhankelijkhedenlijst niet toewijzen" ++#: sysdeps/gnu/errlist.c:1213 ++msgid "Invalid slot" ++msgstr "Ongeldige sleuf" + +-#: elf/dl-deps.c:494 elf/dl-deps.c:549 +-msgid "cannot allocate symbol search list" +-msgstr "kan symboolzoeklijst niet toewijzen" ++#: sysdeps/gnu/errlist.c:1221 ++msgid "File locking deadlock error" ++msgstr "Bestandsvergrendelingsfout; totale blokkering" + +-#: elf/dl-deps.c:534 +-msgid "Filters not supported with LD_TRACE_PRELINKING" +-msgstr "Filters niet ondersteund met LD_TRACE_PRELINKING" ++#: sysdeps/gnu/errlist.c:1229 ++msgid "Bad font file format" ++msgstr "Ongeldige bestandsindeling voor lettertype" + +-#: elf/dl-error.c:75 +-msgid "DYNAMIC LINKER BUG!!!" +-msgstr "FOUT IN DYNAMISCHE KOPPELAAR!!!" ++#: sysdeps/gnu/errlist.c:1237 ++msgid "Machine is not on the network" ++msgstr "Machine is niet op netwerk aangesloten" + +-#: elf/dl-error.c:108 +-msgid "error while loading shared libraries" +-msgstr "fout bij laden gedeelde bibliotheken" ++#: sysdeps/gnu/errlist.c:1245 ++msgid "Package not installed" ++msgstr "Pakket is niet geïnstalleerd" + +-#: elf/dl-load.c:347 +-msgid "cannot allocate name record" +-msgstr "kan naamrecord niet toewijzen" ++#: sysdeps/gnu/errlist.c:1253 ++msgid "Advertise error" ++msgstr "Adverteerfout" + +-#: elf/dl-load.c:449 elf/dl-load.c:528 elf/dl-load.c:648 elf/dl-load.c:743 +-msgid "cannot create cache for search path" +-msgstr "kan buffer voor zoekpad niet aanmaken" ++#: sysdeps/gnu/errlist.c:1261 ++msgid "Srmount error" ++msgstr "Srmount-fout" + +-#: elf/dl-load.c:551 +-msgid "cannot create RUNPATH/RPATH copy" +-msgstr "kan geen kopie maken van RUNPATH/RPATH" ++#: sysdeps/gnu/errlist.c:1269 ++msgid "Communication error on send" ++msgstr "Communicatiefout bij verzenden" + +-#: elf/dl-load.c:634 +-msgid "cannot create search path array" +-msgstr "kan zoekpad array niet aanmaken" ++#: sysdeps/gnu/errlist.c:1277 ++msgid "RFS specific error" ++msgstr "RFS-specifieke fout" + +-#: elf/dl-load.c:830 +-msgid "cannot stat shared object" +-msgstr "kan gedeeld objekt niet vinden" ++#: sysdeps/gnu/errlist.c:1285 ++msgid "Name not unique on network" ++msgstr "Naam is niet uniek op het netwerk" + +-#: elf/dl-load.c:874 +-msgid "cannot open zero fill device" +-msgstr "kan nul-opvul apparaat niet openen" ++#: sysdeps/gnu/errlist.c:1293 ++msgid "File descriptor in bad state" ++msgstr "Bestandsdescriptor is in ongeldige toestand" + +-#: elf/dl-load.c:883 elf/dl-load.c:1929 +-msgid "cannot create shared object descriptor" +-msgstr "kan gedeeld objekt beschrijver niet aanmaken" ++#: sysdeps/gnu/errlist.c:1301 ++msgid "Remote address changed" ++msgstr "Ginds adres is veranderd" + +-#: elf/dl-load.c:902 elf/dl-load.c:1470 elf/dl-load.c:1553 +-msgid "cannot read file data" +-msgstr "kan bestandsgegevens niet lezen" ++#: sysdeps/gnu/errlist.c:1309 ++msgid "Can not access a needed shared library" ++msgstr "Kan geen toegang krijgen tot benodigde gedeelde bibliotheek" + +-#: elf/dl-load.c:946 +-msgid "ELF load command alignment not page-aligned" +-msgstr "uitlijning van ELF-laadopdracht niet pagina-uitgelijnd" ++#: sysdeps/gnu/errlist.c:1317 ++msgid "Accessing a corrupted shared library" ++msgstr "Er wordt toegang gezocht tot een beschadigde gedeelde bibliotheek" + +-#: elf/dl-load.c:953 +-msgid "ELF load command address/offset not properly aligned" +-msgstr "ELF-laadopdracht adres/positie niet juist uitgelijnd" ++#: sysdeps/gnu/errlist.c:1325 ++msgid ".lib section in a.out corrupted" ++msgstr ".lib-sectie in a.out is beschadigd" + +-#: elf/dl-load.c:1037 +-msgid "cannot allocate TLS data structures for initial thread" +-msgstr "kan TLS-gegevensstructuren niet toewijzen voor initiële thread" ++#: sysdeps/gnu/errlist.c:1333 ++msgid "Attempting to link in too many shared libraries" ++msgstr "Er wordt geprobeerd te veel gedeelde bibliotheken te linken" + +-#: elf/dl-load.c:1061 +-msgid "cannot handle TLS data" +-msgstr "kan TLS-gegevens niet verwerken" ++#: sysdeps/gnu/errlist.c:1341 ++msgid "Cannot exec a shared library directly" ++msgstr "Kan een gedeelde bibliotheek niet direct uitvoeren" + +-#: elf/dl-load.c:1075 +-msgid "object file has no loadable segments" +-msgstr "objektbestand heeft geen te laden segmenten" ++#: sysdeps/gnu/errlist.c:1349 ++msgid "Streams pipe error" ++msgstr "Pijpfout bij stromen" + +-#: elf/dl-load.c:1110 +-msgid "failed to map segment from shared object" +-msgstr "afbeelden van segment van gedeeld objekt mislukt" ++#: sysdeps/gnu/errlist.c:1357 ++msgid "Structure needs cleaning" ++msgstr "Structure moet worden opgeschoond" + +-#: elf/dl-load.c:1135 +-msgid "cannot dynamically load executable" +-msgstr "kan uitvoerbaar bestand niet dynamisch laden" ++#: sysdeps/gnu/errlist.c:1365 ++msgid "Not a XENIX named type file" ++msgstr "Niet een XENIX-bestand met naam" + +-#: elf/dl-load.c:1191 +-msgid "cannot change memory protections" +-msgstr "kan geheugenbeschermingen niet veranderen" ++#: sysdeps/gnu/errlist.c:1373 ++msgid "No XENIX semaphores available" ++msgstr "Geen XENIX-semaforen beschikbaar" + +-#: elf/dl-load.c:1210 +-msgid "cannot map zero-fill pages" +-msgstr "kan nul-gevulde pagina's niet afbeelden" ++#: sysdeps/gnu/errlist.c:1381 ++msgid "Is a named type file" ++msgstr "Is een bestand met naam" + +-#: elf/dl-load.c:1228 +-msgid "cannot allocate memory for program header" +-msgstr "kan geen geheugen toewijzen voor programmakop" ++#: sysdeps/gnu/errlist.c:1389 ++msgid "Remote I/O error" ++msgstr "Gindse invoer-/uitvoerfout" + +-#: elf/dl-load.c:1259 +-msgid "object file has no dynamic section" +-msgstr "objektbestand heeft geen dynamische sectie" ++#: sysdeps/gnu/errlist.c:1397 ++msgid "No medium found" ++msgstr "Geen medium gevonden" + +-#: elf/dl-load.c:1299 +-msgid "shared object cannot be dlopen()ed" +-msgstr "gedeeld objekt kan niet ge-dlopen()d worden" ++#: sysdeps/gnu/errlist.c:1405 ++msgid "Wrong medium type" ++msgstr "Verkeerde mediumsoort" + +-#: elf/dl-load.c:1322 +-msgid "cannot create searchlist" +-msgstr "kan zoeklijst niet aanmaken" ++#: sysdeps/gnu/errlist.c:1413 ++msgid "Required key not available" ++msgstr "Vereiste sleutel is niet beschikbaar" ++ ++#: sysdeps/gnu/errlist.c:1421 ++msgid "Key has expired" ++msgstr "Sleutel is verlopen" ++ ++#: sysdeps/gnu/errlist.c:1429 ++msgid "Key has been revoked" ++msgstr "Sleutel is herroepen" ++ ++#: sysdeps/gnu/errlist.c:1437 ++msgid "Key was rejected by service" ++msgstr "Sleutel werd geweigerd door service" ++ ++#: sysdeps/gnu/errlist.c:1445 ++msgid "Owner died" ++msgstr "Eigenaar bestaat niet meer" ++ ++#: sysdeps/gnu/errlist.c:1453 ++msgid "State not recoverable" ++msgstr "Toestand is onherstelbaar" + +-#: elf/dl-load.c:1352 +-msgid "cannot enable executable stack as shared object requires" +-msgstr "kan uitvoerbare stack niet aanzetten zoals gedeeld objekt vereist" ++#: sysdeps/mach/_strerror.c:57 ++msgid "Error in unknown error system: " ++msgstr "Fout in systeem voor onbekende fouten: " + +-#: elf/dl-load.c:1470 +-msgid "file too short" +-msgstr "bestand te kort" ++#: sysdeps/posix/gai_strerror-strs.h:1 ++msgid "Address family for hostname not supported" ++msgstr "Adresfamilie voor hostnaam wordt niet ondersteund" + +-#: elf/dl-load.c:1493 +-msgid "invalid ELF header" +-msgstr "ongeldige ELF-header" ++#: sysdeps/posix/gai_strerror-strs.h:2 ++msgid "Temporary failure in name resolution" ++msgstr "Tijdelijke storing in naamsherleiding" + +-#: elf/dl-load.c:1502 +-msgid "ELF file data encoding not big-endian" +-msgstr "ELF-bestand gegevenscodering niet big-endian" ++#: sysdeps/posix/gai_strerror-strs.h:3 ++msgid "Bad value for ai_flags" ++msgstr "Ongeldige waarde voor 'ai_flags'" + +-#: elf/dl-load.c:1504 +-msgid "ELF file data encoding not little-endian" +-msgstr "ELF-bestand gegevenscodering niet little-endian" ++#: sysdeps/posix/gai_strerror-strs.h:4 ++msgid "Non-recoverable failure in name resolution" ++msgstr "Niet-herstelbare mislukking in naamsherleiding" + +-#: elf/dl-load.c:1508 +-msgid "ELF file version ident does not match current one" +-msgstr "ELF-bestandsversie identificatie komt niet overeen met huidige" ++#: sysdeps/posix/gai_strerror-strs.h:5 ++msgid "ai_family not supported" ++msgstr "'ai_family' wordt niet ondersteund" + +-#: elf/dl-load.c:1512 +-msgid "ELF file OS ABI invalid" +-msgstr "ELF-bestand OS ABI onjuist" ++#: sysdeps/posix/gai_strerror-strs.h:6 ++msgid "Memory allocation failure" ++msgstr "Onvoldoende geheugen" + +-#: elf/dl-load.c:1514 +-msgid "ELF file ABI version invalid" +-msgstr "ELF-bestand ABI-versie ongeldig" ++#: sysdeps/posix/gai_strerror-strs.h:7 ++msgid "No address associated with hostname" ++msgstr "Geen adres geassocieerd met hostnaam" + +-#: elf/dl-load.c:1517 +-msgid "internal error" +-msgstr "interne fout" ++#: sysdeps/posix/gai_strerror-strs.h:8 ++msgid "Name or service not known" ++msgstr "Naam of dienst is niet bekend" + +-#: elf/dl-load.c:1524 +-msgid "ELF file version does not match current one" +-msgstr "ELF-bestand versie komt niet overeen met huidige" ++#: sysdeps/posix/gai_strerror-strs.h:9 ++msgid "Servname not supported for ai_socktype" ++msgstr "Servicenaam wordt niet ondersteund voor 'ai_socktype'" + +-#: elf/dl-load.c:1532 +-msgid "ELF file's phentsize not the expected size" +-msgstr "phentsize van ELF-bestand niet de verwachte grootte" ++#: sysdeps/posix/gai_strerror-strs.h:10 ++msgid "ai_socktype not supported" ++msgstr "'ai_socktype' wordt niet ondersteund" + +-#: elf/dl-load.c:1538 +-msgid "only ET_DYN and ET_EXEC can be loaded" +-msgstr "slechts ET_DYN en ET_EXEC kunnen worden geladen" ++#: sysdeps/posix/gai_strerror-strs.h:11 ++msgid "System error" ++msgstr "Systeemfout" + +-#: elf/dl-load.c:1944 +-msgid "cannot open shared object file" +-msgstr "kan gedeeld objektbestand niet openen" ++#: sysdeps/posix/gai_strerror-strs.h:12 ++msgid "Processing request in progress" ++msgstr "Bezig met verwerken van verzoek" + +-#: elf/dl-lookup.c:265 elf/dl-lookup.c:443 +-msgid "relocation error" +-msgstr "verhuisfout" ++#: sysdeps/posix/gai_strerror-strs.h:13 ++msgid "Request canceled" ++msgstr "Verzoek is geannuleerd" + +-#: elf/dl-open.c:111 +-msgid "cannot extend global scope" +-msgstr "kan globaal bereik niet uitbreiden" ++#: sysdeps/posix/gai_strerror-strs.h:14 ++msgid "Request not canceled" ++msgstr "Verzoek is niet geannuleerd" + +-#: elf/dl-open.c:214 +-msgid "empty dynamic string token substitution" +-msgstr "lege dynamische vervanging van tekenreeks-token" ++#: sysdeps/posix/gai_strerror-strs.h:15 ++msgid "All requests done" ++msgstr "Alle verzoeken zijn gedaan" + +-#: elf/dl-open.c:361 elf/dl-open.c:372 +-msgid "cannot create scope list" +-msgstr "kan bereiklijst niet aanmaken" ++#: sysdeps/posix/gai_strerror-strs.h:16 ++msgid "Interrupted by a signal" ++msgstr "Onderbroken door een signaal" + +-#: elf/dl-open.c:434 +-msgid "cannot create TLS data structures" +-msgstr "kan TLS-gegevensstructuren niet aanmaken" ++#: sysdeps/posix/gai_strerror-strs.h:17 ++msgid "Parameter string not correctly encoded" ++msgstr "Parameter-tekenreeks is niet juist gecodeerd" + +-#: elf/dl-open.c:496 +-msgid "invalid mode for dlopen()" +-msgstr "ongeldige modus voor dlopen()" ++#: sysdeps/unix/siglist.c:26 ++msgid "Signal 0" ++msgstr "Signaal 0" + +-#: elf/dl-reloc.c:57 +-msgid "cannot allocate memory in static TLS block" +-msgstr "kan geen geheugen toewijzen in statisch TLS-blok" ++#: sysdeps/unix/siglist.c:32 ++msgid "IOT trap" ++msgstr "IOT-instructie" + +-#: elf/dl-reloc.c:176 +-msgid "cannot make segment writable for relocation" +-msgstr "kan segment niet schrijfbaar maken voor verhuizing" ++#: sysdeps/unix/sysv/linux/i386/readelflib.c:49 ++#, c-format ++msgid "%s is for unknown machine %d.\n" ++msgstr "%s is voor onbekende machine %d.\n" + +-#: elf/dl-reloc.c:277 ++#: sysdeps/unix/sysv/linux/ia64/makecontext.c:63 + #, c-format +-msgid "%s: profiler found no PLTREL in object %s\n" +-msgstr "%s: profileerder heeft geen PLTREL in objekt gevonden %s\n" ++msgid "makecontext: does not know how to handle more than 8 arguments\n" ++msgstr "makecontext(): kan niet meer dan 8 argumenten aan\n" + +-#: elf/dl-reloc.c:289 ++#: sysdeps/unix/sysv/linux/lddlibc4.c:64 + #, c-format +-msgid "%s: profiler out of memory shadowing PLTREL of %s\n" +-msgstr "%s: profileerder heeft geheugentekort bij schaduwen van PLTREL van %s\n" ++msgid "cannot open `%s'" ++msgstr "kan '%s' niet openen" + +-#: elf/dl-reloc.c:304 +-msgid "cannot restore segment prot after reloc" +-msgstr "kan segmentbescherming niet herstellen na verhuizing" ++#: sysdeps/unix/sysv/linux/lddlibc4.c:68 ++#, c-format ++msgid "cannot read header from `%s'" ++msgstr "kan kop van '%s' niet lezen" + +-#: elf/dl-sym.c:74 elf/dl-sym.c:145 +-msgid "RTLD_NEXT used in code not dynamically loaded" +-msgstr "RTLD_NEXT gebruikt in code niet dynamisch geladen" ++#: timezone/zdump.c:215 ++msgid "lacks alphabetic at start" ++msgstr "begint niet met een letter" + +-#: elf/dl-version.c:303 +-msgid "cannot allocate version reference table" +-msgstr "kan versieverwijzingstabel niet toewijzen" ++#: timezone/zdump.c:217 ++msgid "has fewer than 3 alphabetics" ++msgstr "heeft minder dan drie letters" + +-#: elf/ldconfig.c:122 +-msgid "Print cache" +-msgstr "Buffer weergeven" ++#: timezone/zdump.c:219 ++msgid "has more than 6 alphabetics" ++msgstr "heeft meer dan zes letters" + +-#: elf/ldconfig.c:123 +-msgid "Generate verbose messages" +-msgstr "Breedsprakige berichten genereren" ++#: timezone/zdump.c:227 ++msgid "differs from POSIX standard" ++msgstr "verschilt van de POSIX-standaard" + +-#: elf/ldconfig.c:124 +-msgid "Don't build cache" +-msgstr "Geen buffer bouwen" ++#: timezone/zdump.c:233 ++#, c-format ++msgid "%s: warning: zone \"%s\" abbreviation \"%s\" %s\n" ++msgstr "%s: Waarschuwing: zone \"%s\", afkorting \"%s\" %s\n" + +-#: elf/ldconfig.c:125 +-msgid "Don't generate links" +-msgstr "Geen koppelingen genereren" ++#: timezone/zdump.c:284 ++#, c-format ++msgid "%s: usage is %s [ --version ] [ -v ] [ -c [loyear,]hiyear ] zonename ...\n" ++msgstr "" ++"Gebruik: %s [-v] [-c [ondergrens,]bovengrens] zonenaam...\n" ++" %s --version\n" + +-#: elf/ldconfig.c:126 +-msgid "Change to and use ROOT as root directory" +-msgstr "Gaan naar en ROOT gebruiken als root-map" ++#: timezone/zdump.c:301 ++#, c-format ++msgid "%s: wild -c argument %s\n" ++msgstr "%s: extra argument %s bij optie -c\n" + +-#: elf/ldconfig.c:127 +-msgid "Use CACHE as cache file" +-msgstr "BUFFER als bufferbestand gebruiken" ++#: timezone/zdump.c:392 ++msgid "Error writing to standard output" ++msgstr "Fout tijdens schrijven naar standaarduitvoer" + +-#: elf/ldconfig.c:128 +-msgid "Use CONF as configuration file" +-msgstr "CONF als configuratiebestand gebruiken" ++#: timezone/zdump.c:415 ++#, c-format ++msgid "%s: use of -v on system with floating time_t other than float or double\n" ++msgstr "%s: Optie -v is gebruikt op een systeem zonder een adequaat drijvende-kommatype voor 'time_t'\n" + +-#: elf/ldconfig.c:129 +-msgid "Only process directories specified on the command line. Don't build cache." +-msgstr "Alleen mappen opgegeven op opdrachtregel verwerken. Geen buffer opbouwen." ++#: timezone/zic.c:371 ++#, c-format ++msgid "%s: Memory exhausted: %s\n" ++msgstr "%s: Onvoldoende geheugen: %s\n" + +-#: elf/ldconfig.c:130 +-msgid "Manually link individual libraries." +-msgstr "Handmatig losse bibliotheken koppelen." ++#: timezone/zic.c:430 ++#, c-format ++msgid "\"%s\", line %d: %s" ++msgstr "\"%s\", regel %d: %s" + +-#: elf/ldconfig.c:131 +-msgid "Format to use: new, old or compat (default)" +-msgstr "Formaat om te gebruiken: nieuw, oud of compatibiliteit (standaard)" ++#: timezone/zic.c:433 ++#, c-format ++msgid " (rule from \"%s\", line %d)" ++msgstr " (voorschrift uit \"%s\", regel %d)" + +-#: elf/ldconfig.c:139 +-msgid "Configure Dynamic Linker Run Time Bindings." +-msgstr "Dynamische koppelaar uitvoer-tijd bindingen configureren." ++#: timezone/zic.c:445 ++msgid "warning: " ++msgstr "waarschuwing: " + +-#: elf/ldconfig.c:297 ++#: timezone/zic.c:455 + #, c-format +-msgid "Path `%s' given more than once" +-msgstr "Pad `%s' meerdere malen opgegeven" ++msgid "" ++"%s: usage is %s [ --version ] [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n" ++"\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" ++msgstr "" ++"Gebruik: %s [-s] [-v] [-l lokale_tijd] [-p posixvoorschriften] [-d map] \\\n" ++" [-L schrikkelseconden] [-y jaar_is_soort] [bestandsnaam...]\n" ++" %s --version\n" + +-#: elf/ldconfig.c:341 ++#: timezone/zic.c:503 + #, c-format +-msgid "%s is not a known library type" +-msgstr "%s is geen bekende bibliotheeksoort" ++msgid "%s: More than one -d option specified\n" ++msgstr "%s: Optie -d is meermaals gegeven\n" + +-#: elf/ldconfig.c:361 ++#: timezone/zic.c:513 + #, c-format +-msgid "Can't stat %s" +-msgstr "Kan %s niet vinden" ++msgid "%s: More than one -l option specified\n" ++msgstr "%s: Optie -l is meermaals gegeven\n" + +-#: elf/ldconfig.c:431 ++#: timezone/zic.c:523 + #, c-format +-msgid "Can't stat %s\n" +-msgstr "Kan %s niet vinden\n" ++msgid "%s: More than one -p option specified\n" ++msgstr "%s: Optie -p is meermaals gegeven\n" + +-#: elf/ldconfig.c:441 ++#: timezone/zic.c:533 + #, c-format +-msgid "%s is not a symbolic link\n" +-msgstr "%s is geen symbolische koppeling\n" ++msgid "%s: More than one -y option specified\n" ++msgstr "%s: Optie -y is meermaals gegeven\n" + +-#: elf/ldconfig.c:460 ++#: timezone/zic.c:543 + #, c-format +-msgid "Can't unlink %s" +-msgstr "Kan %s niet ontkoppelen" ++msgid "%s: More than one -L option specified\n" ++msgstr "%s: Optie -L is meermaals gegeven\n" ++ ++#: timezone/zic.c:592 ++msgid "link to link" ++msgstr "koppeling naar een andere koppeling" + +-#: elf/ldconfig.c:466 ++#: timezone/zic.c:657 ++msgid "hard link failed, symbolic link used" ++msgstr "harde koppeling is mislukt; symbolische wordt gebruikt" ++ ++#: timezone/zic.c:665 + #, c-format +-msgid "Can't link %s to %s" +-msgstr "Kan %s niet met %s koppelen" ++msgid "%s: Can't link from %s to %s: %s\n" ++msgstr "%s: Kan geen koppeling maken van %s naar %s: %s\n" + +-#: elf/ldconfig.c:472 +-msgid " (changed)\n" +-msgstr " (gewijzigd)\n" ++#: timezone/zic.c:774 timezone/zic.c:776 ++msgid "same rule name in multiple files" ++msgstr "dezelfde voorschriftnaam in meerdere bestanden" + +-#: elf/ldconfig.c:474 +-msgid " (SKIPPED)\n" +-msgstr " (OVERGESLAGEN)\n" ++#: timezone/zic.c:817 ++msgid "unruly zone" ++msgstr "onhandelbare zone" + +-#: elf/ldconfig.c:529 ++#: timezone/zic.c:824 + #, c-format +-msgid "Can't find %s" +-msgstr "Kan %s niet vinden" ++msgid "%s in ruleless zone" ++msgstr "%s in voorschriftloze zone" + +-#: elf/ldconfig.c:545 +-#, c-format +-msgid "Can't lstat %s" +-msgstr "Kan %s niet vinden (met lstat)" ++#: timezone/zic.c:845 ++msgid "standard input" ++msgstr "standaardinvoer" + +-#: elf/ldconfig.c:552 ++#: timezone/zic.c:850 + #, c-format +-msgid "Ignored file %s since it is not a regular file." +-msgstr "Bestand %s genegeerd omdat het geen gewoon bestand is." ++msgid "%s: Can't open %s: %s\n" ++msgstr "%s: Kan %s niet openen: %s\n" + +-#: elf/ldconfig.c:560 +-#, c-format +-msgid "No link created since soname could not be found for %s" +-msgstr "Geen koppeling aangemaakt omdat soname (gedeeld-objekt naam) niet kon worden gevonden voor %s" ++#: timezone/zic.c:861 ++msgid "line too long" ++msgstr "regel is te lang" + +-#: elf/ldconfig.c:651 +-#, c-format +-msgid "Can't open directory %s" +-msgstr "Kan map %s niet openen" ++#: timezone/zic.c:881 ++msgid "input line of unknown type" ++msgstr "invoerregel is van onbekende soort" + +-#: elf/ldconfig.c:706 elf/ldconfig.c:753 ++#: timezone/zic.c:897 + #, c-format +-msgid "Cannot lstat %s" +-msgstr "Kan %s niet vinden (met lstat)" ++msgid "%s: Leap line in non leap seconds file %s\n" ++msgstr "%s: Schrikkelregel in niet-schrikkelbestand %s\n" + +-#: elf/ldconfig.c:718 ++#: timezone/zic.c:904 timezone/zic.c:1325 timezone/zic.c:1350 + #, c-format +-msgid "Cannot stat %s" +-msgstr "Kan %s niet vinden" ++msgid "%s: panic: Invalid l_value %d\n" ++msgstr "%s: **interne fout** -- ongeldige regelcode %d\n" + +-#: elf/ldconfig.c:775 elf/readlib.c:92 ++#: timezone/zic.c:912 + #, c-format +-msgid "Input file %s not found.\n" +-msgstr "Invoerbestand %s niet gevonden.\n" ++msgid "%s: Error reading %s\n" ++msgstr "%s: Fout bij lezen van %s\n" + +-#: elf/ldconfig.c:826 ++#: timezone/zic.c:919 + #, c-format +-msgid "libc5 library %s in wrong directory" +-msgstr "libc5-bibliotheek %s in verkeerde map" ++msgid "%s: Error closing %s: %s\n" ++msgstr "%s: Fout bij sluiten van %s: %s\n" + +-#: elf/ldconfig.c:829 +-#, c-format +-msgid "libc6 library %s in wrong directory" +-msgstr "libc6-bibliotheek %s in verkeerde map" ++#: timezone/zic.c:924 ++msgid "expected continuation line not found" ++msgstr "verwachte regelcontinuering is niet gevonden" + +-#: elf/ldconfig.c:832 +-#, c-format +-msgid "libc4 library %s in wrong directory" +-msgstr "libc4-bibliotheek %s in verkeerde map" ++#: timezone/zic.c:968 ++msgid "24:00 not handled by pre-1998 versions of zic" ++msgstr "versies van 'zic' van voor 1998 kunnen '24:00' niet aan" + +-#: elf/ldconfig.c:859 +-#, c-format +-msgid "libraries %s and %s in directory %s have same soname but different type." +-msgstr "bibliotheken %s en %s in map %s hebben dezelfde soname (gedeeld-objekt naam) maar een verschillende soort." ++#: timezone/zic.c:982 ++msgid "wrong number of fields on Rule line" ++msgstr "verkeerd aantal velden op 'Rule'-regel" + +-#: elf/ldconfig.c:962 +-#, c-format +-msgid "Can't open configuration file %s" +-msgstr "Kan configuratiebestand %s niet openen" ++#: timezone/zic.c:986 ++msgid "nameless rule" ++msgstr "naamloos voorschrift" + +-#: elf/ldconfig.c:1033 +-#, c-format +-msgid "relative path `%s' used to build cache" +-msgstr "relatief pad `%s' gebruikt om buffer te bouwen" ++#: timezone/zic.c:991 ++msgid "invalid saved time" ++msgstr "ongeldige opgeslagen tijd" + +-#: elf/ldconfig.c:1057 +-msgid "Can't chdir to /" +-msgstr "Kan niet verplaatsen naar map /" ++#: timezone/zic.c:1010 ++msgid "wrong number of fields on Zone line" ++msgstr "verkeerd aantal velden op 'Zone'-regel" + +-#: elf/ldconfig.c:1099 ++#: timezone/zic.c:1016 + #, c-format +-msgid "Can't open cache file directory %s\n" +-msgstr "Kan bufferbestandmap %s niet openen\n" ++msgid "\"Zone %s\" line and -l option are mutually exclusive" ++msgstr "De regel \"Zone %s\" en optie -l sluiten elkaar uit" + +-#: elf/readlib.c:98 ++#: timezone/zic.c:1024 + #, c-format +-msgid "Cannot fstat file %s.\n" +-msgstr "Kan bestand %s niet vinden (met fstat).\n" ++msgid "\"Zone %s\" line and -p option are mutually exclusive" ++msgstr "De regel \"Zone %s\" en optie -p sluiten elkaar uit" + +-#: elf/readlib.c:108 ++#: timezone/zic.c:1036 + #, c-format +-msgid "File %s is too small, not checked." +-msgstr "Bestand %s is te klein, niet gecontroleerd." ++msgid "duplicate zone name %s (file \"%s\", line %d)" ++msgstr "dubbele zonenaam '%s' (in bestand %s, regel %d)" + +-#: elf/readlib.c:117 +-#, c-format +-msgid "Cannot mmap file %s.\n" +-msgstr "In geheugen afbeelden van %s mislukt.\n" ++#: timezone/zic.c:1052 ++msgid "wrong number of fields on Zone continuation line" ++msgstr "verkeerd aantal velden op 'Zone'-continueringsregel" + +-#: elf/readlib.c:155 +-#, c-format +-msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n" +-msgstr "%s is geen ELF-bestand - het heeft de verkeerde magische bytes aan het begin.\n" ++#: timezone/zic.c:1092 ++msgid "invalid UTC offset" ++msgstr "ongeldige positie ten opzichte van UTC" + +-#: elf/sprof.c:72 +-msgid "Output selection:" +-msgstr "Uitvoerselectie:" ++#: timezone/zic.c:1095 ++msgid "invalid abbreviation format" ++msgstr "ongeldige opmaak voor afkorting" + +-#: elf/sprof.c:74 +-msgid "print list of count paths and their number of use" +-msgstr "lijst weergeven met telpaden en hoe vaak ze worden gebruikt" ++#: timezone/zic.c:1122 ++msgid "Zone continuation line end time is not after end time of previous line" ++msgstr "'Zone'-continueringsregel: eindtijd ligt niet na eindtijd van vorige regel" + +-#: elf/sprof.c:76 +-msgid "generate flat profile with counts and ticks" +-msgstr "vlak profiel met aantallen en tikken genereren" ++#: timezone/zic.c:1150 ++msgid "wrong number of fields on Leap line" ++msgstr "verkeerd aantal velden op 'Leap'-regel" + +-#: elf/sprof.c:77 +-msgid "generate call graph" +-msgstr "aanroepengrafiek genereren" ++#: timezone/zic.c:1159 ++msgid "invalid leaping year" ++msgstr "ongeldig schrikkeljaar" + +-#: elf/sprof.c:84 +-msgid "Read and display shared object profiling data" +-msgstr "Profileergegevens van gedeeld objekt lezen en weergeven" ++#: timezone/zic.c:1174 timezone/zic.c:1280 ++msgid "invalid month name" ++msgstr "ongeldige maandnaam" + +-#: elf/sprof.c:87 +-msgid "SHOBJ [PROFDATA]" +-msgstr "GEDEELD_OBJEKT [PROFILEERGEGEVENS]" ++#: timezone/zic.c:1187 timezone/zic.c:1402 timezone/zic.c:1416 ++msgid "invalid day of month" ++msgstr "ongeldige dag van maand" ++ ++#: timezone/zic.c:1192 ++msgid "time before zero" ++msgstr "tijdswaarde is kleiner dan nul" ++ ++#: timezone/zic.c:1196 ++msgid "time too small" ++msgstr "tijdswaarde is te klein" ++ ++#: timezone/zic.c:1200 ++msgid "time too large" ++msgstr "tijdswaarde is te groot" ++ ++#: timezone/zic.c:1204 timezone/zic.c:1309 ++msgid "invalid time of day" ++msgstr "ongeldige tijd van de dag" ++ ++#: timezone/zic.c:1223 ++msgid "illegal CORRECTION field on Leap line" ++msgstr "ongeldig CORRECTION-veld op 'Leap'-regel" ++ ++#: timezone/zic.c:1228 ++msgid "illegal Rolling/Stationary field on Leap line" ++msgstr "ongeldig 'Rolling'/'Stationary'-veld op 'Leap'-regel" ++ ++#: timezone/zic.c:1244 ++msgid "wrong number of fields on Link line" ++msgstr "verkeerd aantal velden op 'Link'-regel" ++ ++#: timezone/zic.c:1248 ++msgid "blank FROM field on Link line" ++msgstr "leeg FROM-veld op 'Link'-regel" ++ ++#: timezone/zic.c:1252 ++msgid "blank TO field on Link line" ++msgstr "leeg TO-veld op 'Link'-regel" ++ ++#: timezone/zic.c:1329 ++msgid "invalid starting year" ++msgstr "ongeldig beginjaar" ++ ++#: timezone/zic.c:1333 ++msgid "starting year too low to be represented" ++msgstr "beginjaar is te vroeg om te kunnen representeren" ++ ++#: timezone/zic.c:1335 ++msgid "starting year too high to be represented" ++msgstr "beginjaar is te laat om te kunnen representeren" ++ ++#: timezone/zic.c:1354 ++msgid "invalid ending year" ++msgstr "ongeldig eindjaar" ++ ++#: timezone/zic.c:1358 ++msgid "ending year too low to be represented" ++msgstr "eindjaar is te vroeg om te kunnen representeren" ++ ++#: timezone/zic.c:1360 ++msgid "ending year too high to be represented" ++msgstr "eindjaar is te laat om te kunnen representeren" + +-#: elf/sprof.c:398 ++#: timezone/zic.c:1363 ++msgid "starting year greater than ending year" ++msgstr "beginjaar is groter dan eindjaar" ++ ++#: timezone/zic.c:1370 ++msgid "typed single year" ++msgstr "beginjaar en eindjaar zijn gelijk" ++ ++#: timezone/zic.c:1407 ++msgid "invalid weekday name" ++msgstr "ongeldige naam voor weekdag" ++ ++#: timezone/zic.c:1521 + #, c-format +-msgid "failed to load shared object `%s'" +-msgstr "laden gedeeld objekt `%s' mislukt" ++msgid "%s: Can't remove %s: %s\n" ++msgstr "%s: Kan %s niet verwijderen: %s\n" + +-#: elf/sprof.c:407 +-msgid "cannot create internal descriptors" +-msgstr "kan interne beschrijvers niet aanmaken" ++#: timezone/zic.c:1531 ++#, c-format ++msgid "%s: Can't create %s: %s\n" ++msgstr "%s: Kan %s niet aanmaken: %s\n" + +-#: elf/sprof.c:526 ++#: timezone/zic.c:1598 + #, c-format +-msgid "Reopening shared object `%s' failed" +-msgstr "Opnieuw openen van gedeelde objekt `%s' mislukt" ++msgid "%s: Error writing %s\n" ++msgstr "%s: Fout bij schrijven van %s\n" + +-#: elf/sprof.c:534 +-msgid "mapping of section headers failed" +-msgstr "afbeelden van sectiekoppen mislukt" ++#: timezone/zic.c:1789 ++msgid "can't determine time zone abbreviation to use just after until time" ++msgstr "kan tijdzone-afkorting voor gebruik na een tot-tijd niet bepalen" + +-#: elf/sprof.c:544 +-msgid "mapping of section header string table failed" +-msgstr "afbeelden van sectiekoppen tekenreekstabel mislukt" ++#: timezone/zic.c:1832 ++msgid "too many transitions?!" ++msgstr "te veel overgangen!?" + +-#: elf/sprof.c:564 +-#, c-format +-msgid "*** The file `%s' is stripped: no detailed analysis possible\n" +-msgstr "*** Het bestand `%s' is gestript: geen gedetailleerde analyse mogelijk\n" ++#: timezone/zic.c:1851 ++msgid "internal error - addtype called with bad isdst" ++msgstr "**interne fout** -- addtype() aangeroepen met onjuiste 'isdst'" + +-#: elf/sprof.c:594 +-msgid "failed to load symbol data" +-msgstr "laden symboolgegevens mislukt" ++#: timezone/zic.c:1855 ++msgid "internal error - addtype called with bad ttisstd" ++msgstr "**interne fout** -- addtype() aangeroepen met onjuiste 'ttisstd'" + +-#: elf/sprof.c:664 +-msgid "cannot load profiling data" +-msgstr "kan profileergegevens niet laden" ++#: timezone/zic.c:1859 ++msgid "internal error - addtype called with bad ttisgmt" ++msgstr "**interne fout** -- addtype() aangeroepen met onjuiste 'ttisgmt'" + +-#: elf/sprof.c:673 +-msgid "while stat'ing profiling data file" +-msgstr "bij vinden profileergegevensbestand" ++#: timezone/zic.c:1878 ++msgid "too many local time types" ++msgstr "te veel soorten lokale tijd" ++ ++#: timezone/zic.c:1906 ++msgid "too many leap seconds" ++msgstr "te veel schrikkelseconden" ++ ++#: timezone/zic.c:1912 ++msgid "repeated leap second moment" ++msgstr "herhaald schrikkelseconde-moment" ++ ++#: timezone/zic.c:1964 ++msgid "Wild result from command execution" ++msgstr "Vreemd resultaat van uitgevoerde opdracht" + +-#: elf/sprof.c:681 ++#: timezone/zic.c:1965 + #, c-format +-msgid "profiling data file `%s' does not match shared object `%s'" +-msgstr "profileergegevens bestand `%s' komt niet overeen met gedeeld objekt `%s'" ++msgid "%s: command was '%s', result was %d\n" ++msgstr "%s: opdracht was '%s', resultaat was %d\n" + +-#: elf/sprof.c:692 +-msgid "failed to mmap the profiling data file" +-msgstr "afbeelden in geheugen van profileergegevensbestand mislukt" ++#: timezone/zic.c:2062 ++msgid "Odd number of quotation marks" ++msgstr "Oneven aantal aanhalingstekens" + +-#: elf/sprof.c:700 +-msgid "error while closing the profiling data file" +-msgstr "fout bij sluiten profileergegevens bestand" ++#: timezone/zic.c:2083 timezone/zic.c:2102 ++msgid "time overflow" ++msgstr "tijdsoverloop" + +-#: elf/sprof.c:709 elf/sprof.c:779 +-msgid "cannot create internal descriptor" +-msgstr "kan interne beschrijver niet aanmaken" ++#: timezone/zic.c:2149 ++msgid "use of 2/29 in non leap-year" ++msgstr "'29-2' gebruikt in een niet-schrikkeljaar" + +-#: elf/sprof.c:755 ++#: timezone/zic.c:2184 ++msgid "rule goes past start/end of month--will not work with pre-2004 versions of zic" ++msgstr "voorschrift gaat voorbij begin of einde van maand -- dit werkt niet met versies van 'zic' van voor 2004" ++ ++#: timezone/zic.c:2218 ++msgid "time zone abbreviation lacks alphabetic at start" ++msgstr "tijdzone-afkorting begint niet met een letter" ++ ++#: timezone/zic.c:2220 ++msgid "time zone abbreviation has more than 3 alphabetics" ++msgstr "tijdzone-afkorting heeft meer dan drie letters" ++ ++#: timezone/zic.c:2222 ++msgid "time zone abbreviation has too many alphabetics" ++msgstr "tijdzone-afkorting heeft te veel letters" ++ ++#: timezone/zic.c:2232 ++msgid "time zone abbreviation differs from POSIX standard" ++msgstr "tijdzone-afkorting verschilt van de POSIX-standaard" ++ ++#: timezone/zic.c:2244 ++msgid "too many, or too long, time zone abbreviations" ++msgstr "te veel of te lange tijdzone-afkortingen" ++ ++#: timezone/zic.c:2285 + #, c-format +-msgid "`%s' is no correct profile data file for `%s'" +-msgstr "`%s' is geen juist bestand met profileergegevens voor `%s'" ++msgid "%s: Can't create directory %s: %s\n" ++msgstr "%s: Kan map %s niet aanmaken: %s\n" + +-#: elf/sprof.c:936 elf/sprof.c:988 +-msgid "cannot allocate symbol data" +-msgstr "kan symboolgegevens niet toewijzen" ++#: timezone/zic.c:2307 ++#, c-format ++msgid "%s: %d did not sign extend correctly\n" ++msgstr "%s: %d is niet correct omgezet naar een grotere precisie\n" +diff -urN --exclude=CVS glibc-2_5/libc/po/pl.po glibc-2_5-branch/libc/po/pl.po +--- glibc-2_5/libc/po/pl.po 2006-09-21 06:16:48.000000000 +0200 ++++ glibc-2_5-branch/libc/po/pl.po 2007-03-20 14:22:25.000000000 +0100 +@@ -1,3727 +1,4468 @@ + # Polish translation for GNU libc. +-# Copyright (C) 1996, 1997, 1998, 1999, 2002, 2003, 2004 Free Software Foundation, Inc. ++# Copyright (C) 1996, 1997, 1998, 1999, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. + # Pawe Krawczyk , 1996,97,98,99. +-# Jakub Bogusz , 2002, 2003, 2004. ++# Jakub Bogusz , 2002-2006. + # + msgid "" + msgstr "" +-"Project-Id-Version: libc 2.3.3\n" +-"POT-Creation-Date: 2004-08-05 09:16+0200\n" +-"PO-Revision-Date: 2004-08-06 00:01+0200\n" ++"Project-Id-Version: libc 2.5\n" ++"POT-Creation-Date: 2006-09-29 11:38-0700\n" ++"PO-Revision-Date: 2006-10-05 20:01+0200\n" + "Last-Translator: Jakub Bogusz \n" + "Language-Team: Polish \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=ISO-8859-2\n" + "Content-Transfer-Encoding: 8bit\n" + +-#: sysdeps/generic/siglist.h:29 stdio-common/../sysdeps/unix/siglist.c:27 +-msgid "Hangup" +-msgstr "Rozczenie" +- +-#: sysdeps/generic/siglist.h:30 stdio-common/../sysdeps/unix/siglist.c:28 +-msgid "Interrupt" +-msgstr "Przerwanie" +- +-# XXX -PK +-#: sysdeps/generic/siglist.h:31 stdio-common/../sysdeps/unix/siglist.c:29 +-msgid "Quit" +-msgstr "Wyjcie" +- +-#: sysdeps/generic/siglist.h:32 stdio-common/../sysdeps/unix/siglist.c:30 +-msgid "Illegal instruction" +-msgstr "Bdna instrukcja" ++#: argp/argp-help.c:227 ++#, c-format ++msgid "%.*s: ARGP_HELP_FMT parameter requires a value" ++msgstr "%.*s: parametr ARGP_HELP_FMT wymaga podania wartoci" + +-#: sysdeps/generic/siglist.h:33 stdio-common/../sysdeps/unix/siglist.c:31 +-msgid "Trace/breakpoint trap" +-msgstr "Puapka debuggera/breakpoint" ++#: argp/argp-help.c:237 ++#, c-format ++msgid "%.*s: Unknown ARGP_HELP_FMT parameter" ++msgstr "%.*s: Nieznany parametr ARGP_HELP_FMT" + +-#: sysdeps/generic/siglist.h:34 +-msgid "Aborted" +-msgstr "Przerwane" ++#: argp/argp-help.c:250 ++#, c-format ++msgid "Garbage in ARGP_HELP_FMT: %s" ++msgstr "Bdne dane w ARGP_HELP_FMT: %s" + +-#: sysdeps/generic/siglist.h:35 stdio-common/../sysdeps/unix/siglist.c:34 +-msgid "Floating point exception" +-msgstr "Bd w obliczeniach zmiennoprzecinkowych" ++#: argp/argp-help.c:1214 ++msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." ++msgstr "Argumenty obowizkowe lub opcjonalne dla dugich opcji s rwnie obowizkowe lub opcjonalne dla odpowiednich krtkich opcji." + +-#: sysdeps/generic/siglist.h:36 stdio-common/../sysdeps/unix/siglist.c:35 +-msgid "Killed" +-msgstr "Unicestwiony" ++#: argp/argp-help.c:1600 ++msgid "Usage:" ++msgstr "Skadnia:" + +-#: sysdeps/generic/siglist.h:37 stdio-common/../sysdeps/unix/siglist.c:36 +-msgid "Bus error" +-msgstr "Bd szyny" ++#: argp/argp-help.c:1604 ++msgid " or: " ++msgstr " lub: " + +-#: sysdeps/generic/siglist.h:38 stdio-common/../sysdeps/unix/siglist.c:37 +-msgid "Segmentation fault" +-msgstr "Naruszenie ochrony pamici" ++#: argp/argp-help.c:1616 ++msgid " [OPTION...]" ++msgstr " [OPCJA...]" + +-#. TRANS Broken pipe; there is no process reading from the other end of a pipe. +-#. TRANS Every library function that returns this error code also generates a +-#. TRANS @code{SIGPIPE} signal; this signal terminates the program if not handled +-#. TRANS or blocked. Thus, your program will never actually see @code{EPIPE} +-#. TRANS unless it has handled or blocked @code{SIGPIPE}. +-#: sysdeps/generic/siglist.h:39 stdio-common/../sysdeps/gnu/errlist.c:351 +-#: stdio-common/../sysdeps/unix/siglist.c:39 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:62 +-msgid "Broken pipe" +-msgstr "Przerwany potok" ++#: argp/argp-help.c:1643 ++#, c-format ++msgid "Try `%s --help' or `%s --usage' for more information.\n" ++msgstr "Polecenie `%s --help' lub `%s --usage' pozwoli uzyska wicej informacji.\n" + +-#: sysdeps/generic/siglist.h:40 stdio-common/../sysdeps/unix/siglist.c:40 +-msgid "Alarm clock" +-msgstr "Budzik" ++#: argp/argp-help.c:1671 ++#, c-format ++msgid "Report bugs to %s.\n" ++msgstr "Prosimy zgasza bdy na adres %s.\n" + +-#: sysdeps/generic/siglist.h:41 stdio-common/../sysdeps/unix/siglist.c:41 +-msgid "Terminated" +-msgstr "Zakoczony" ++#: argp/argp-parse.c:102 ++msgid "Give this help list" ++msgstr "Wywietlenie tego tekstu pomocy" + +-#: sysdeps/generic/siglist.h:42 stdio-common/../sysdeps/unix/siglist.c:42 +-msgid "Urgent I/O condition" +-msgstr "Nagy wypadek I/O" ++#: argp/argp-parse.c:103 ++msgid "Give a short usage message" ++msgstr "Wywietlenie krtkiej informacji o skadni polecenia" + +-#: sysdeps/generic/siglist.h:43 stdio-common/../sysdeps/unix/siglist.c:43 +-msgid "Stopped (signal)" +-msgstr "Zatrzymany (sygna)" ++#: argp/argp-parse.c:104 ++msgid "Set the program name" ++msgstr "Okrelenie nazwy programu" + +-#: sysdeps/generic/siglist.h:44 stdio-common/../sysdeps/unix/siglist.c:44 +-msgid "Stopped" +-msgstr "Zatrzymany" ++#: argp/argp-parse.c:106 ++msgid "Hang for SECS seconds (default 3600)" ++msgstr "Zatrzymanie na SECS sekund (domylnie 3600)" + +-#: sysdeps/generic/siglist.h:45 stdio-common/../sysdeps/unix/siglist.c:45 +-msgid "Continued" +-msgstr "Kontynuacja" ++#: argp/argp-parse.c:167 ++msgid "Print program version" ++msgstr "Wywietlenie wersji programu" + +-#: sysdeps/generic/siglist.h:46 stdio-common/../sysdeps/unix/siglist.c:46 +-msgid "Child exited" +-msgstr "Potomek zakoczy prac" ++#: argp/argp-parse.c:183 ++msgid "(PROGRAM ERROR) No version known!?" ++msgstr "(BD PROGRAMU) Nieznana wersja?!" + +-#: sysdeps/generic/siglist.h:47 stdio-common/../sysdeps/unix/siglist.c:47 +-msgid "Stopped (tty input)" +-msgstr "Zatrzymany (wejcie z tty)" ++#: argp/argp-parse.c:623 ++#, c-format ++msgid "%s: Too many arguments\n" ++msgstr "%s: Za duo argumentw\n" + +-#: sysdeps/generic/siglist.h:48 stdio-common/../sysdeps/unix/siglist.c:48 +-msgid "Stopped (tty output)" +-msgstr "Zatrzymany (wyjcie na tty)" ++#: argp/argp-parse.c:766 ++msgid "(PROGRAM ERROR) Option should have been recognized!?" ++msgstr "(BD PROGRAMU) Opcja powinna zosta rozpoznana?!" + +-#: sysdeps/generic/siglist.h:49 stdio-common/../sysdeps/unix/siglist.c:49 +-msgid "I/O possible" +-msgstr "We/Wy dozwolone" ++#: assert/assert-perr.c:57 ++#, c-format ++msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n" ++msgstr "%s%s%s:%u %s%sNiespodziewany bd: %s.\n" + +-#: sysdeps/generic/siglist.h:50 stdio-common/../sysdeps/unix/siglist.c:50 +-msgid "CPU time limit exceeded" +-msgstr "Przekroczony limit czasu procesora" ++#: assert/assert.c:57 ++#, c-format ++msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" ++msgstr "%s%s%s:%u: %s%sWarunek zapewnienia `%s' nie zosta speniony.\n" + +-#: sysdeps/generic/siglist.h:51 stdio-common/../sysdeps/unix/siglist.c:51 +-msgid "File size limit exceeded" +-msgstr "Przekroczony limit wielkoci pliku" ++#: catgets/gencat.c:109 catgets/gencat.c:113 nscd/nscd.c:96 nss/makedb.c:61 ++msgid "NAME" ++msgstr "NAZWA" + +-#: sysdeps/generic/siglist.h:52 stdio-common/../sysdeps/unix/siglist.c:52 +-msgid "Virtual timer expired" +-msgstr "Upyn czas stopera wirtualnego" ++#: catgets/gencat.c:110 ++msgid "Create C header file NAME containing symbol definitions" ++msgstr "Tworzenie pliku nagwkowego C o tej NAZWIE zawierajcego definicje symboli" + +-#: sysdeps/generic/siglist.h:53 stdio-common/../sysdeps/unix/siglist.c:53 +-msgid "Profiling timer expired" +-msgstr "Upyn czas stopera profilujcego" ++#: catgets/gencat.c:112 ++msgid "Do not use existing catalog, force new output file" ++msgstr "Zamiast do istniejcego katalogu, zapisanie do nowego pliku" + +-#: sysdeps/generic/siglist.h:54 stdio-common/../sysdeps/unix/siglist.c:54 +-msgid "Window changed" +-msgstr "Okno zmienione" ++#: catgets/gencat.c:113 nss/makedb.c:61 ++msgid "Write output to file NAME" ++msgstr "Zapisanie wynikw do pliku NAZWA" + +-#: sysdeps/generic/siglist.h:55 stdio-common/../sysdeps/unix/siglist.c:56 +-msgid "User defined signal 1" +-msgstr "Sygna uytkownika 1" ++#: catgets/gencat.c:118 ++msgid "" ++"Generate message catalog. If INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n" ++"is -, output is written to standard output.\n" ++msgstr "" ++"Generowanie katalogu komunikatw. Jeli PLIK-WE to -, dane s czytane ze standardowego wejcia. Jeli PLIK-WY\n" ++"to -, dane s zapisywane na standardowe wyjcie.\n" + +-#: sysdeps/generic/siglist.h:56 stdio-common/../sysdeps/unix/siglist.c:57 +-msgid "User defined signal 2" +-msgstr "Sygna uytkownika 2" ++#: catgets/gencat.c:123 ++msgid "" ++"-o OUTPUT-FILE [INPUT-FILE]...\n" ++"[OUTPUT-FILE [INPUT-FILE]...]" ++msgstr "" ++"-o PLIK-WY [PLIK-WE]...\n" ++"[PLIK-WY [PLIK-WE]...]" + +-#: sysdeps/generic/siglist.h:60 stdio-common/../sysdeps/unix/siglist.c:33 +-msgid "EMT trap" +-msgstr "Puapka EMT" ++#: catgets/gencat.c:231 debug/pcprofiledump.c:199 iconv/iconv_prog.c:410 ++#: iconv/iconvconfig.c:379 locale/programs/localedef.c:370 ++#: login/programs/pt_chown.c:88 malloc/memusagestat.c:525 nss/makedb.c:231 ++msgid "" ++"For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Instrukcje dotyczce zgaszania bdw znajduj si pod adresem:\n" ++".\n" + +-#: sysdeps/generic/siglist.h:63 stdio-common/../sysdeps/unix/siglist.c:38 +-msgid "Bad system call" +-msgstr "Bdne wywoanie systemowe" ++#: catgets/gencat.c:245 debug/xtrace.sh:64 elf/ldconfig.c:285 ++#: elf/ldd.bash.in:39 elf/sprof.c:355 iconv/iconv_prog.c:425 ++#: iconv/iconvconfig.c:394 locale/programs/locale.c:274 ++#: locale/programs/localedef.c:386 login/programs/pt_chown.c:59 ++#: malloc/memusage.sh:71 nscd/nscd.c:401 nss/getent.c:83 nss/makedb.c:245 ++#: posix/getconf.c:1007 ++#, c-format ++msgid "" ++"Copyright (C) %s Free Software Foundation, Inc.\n" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"Copyright (C) %s Free Software Foundation, Inc.\n" ++"To oprogramowanie jest darmowe; warunki kopiowania s opisane w rdach.\n" ++"Autorzy nie daj ADNYCH gwarancji, w tym rwnie gwarancji MOLIWOCI\n" ++"SPRZEDAY lub PRZYDATNOCI DO KONKRETNYCH ZASTOSOWA.\n" + +-#: sysdeps/generic/siglist.h:66 +-msgid "Stack fault" +-msgstr "Bd stosu" ++# w %s wchodzi nazwisko autora danego programu/procedury -PK ++#: catgets/gencat.c:250 debug/xtrace.sh:68 elf/ldconfig.c:290 elf/sprof.c:361 ++#: iconv/iconv_prog.c:430 iconv/iconvconfig.c:399 locale/programs/locale.c:279 ++#: locale/programs/localedef.c:391 malloc/memusage.sh:75 nscd/nscd.c:406 ++#: nss/getent.c:88 nss/makedb.c:250 posix/getconf.c:1012 ++#, c-format ++msgid "Written by %s.\n" ++msgstr "Autorem jest %s.\n" + +-#: sysdeps/generic/siglist.h:69 +-msgid "Information request" +-msgstr "danie informacji" ++#: catgets/gencat.c:281 ++msgid "*standard input*" ++msgstr "*standardowe wejcie*" + +-#: sysdeps/generic/siglist.h:71 +-msgid "Power failure" +-msgstr "Awaria zasilania" ++#: catgets/gencat.c:287 iconv/iconv_charmap.c:157 iconv/iconv_prog.c:297 ++#: nss/makedb.c:170 ++#, c-format ++msgid "cannot open input file `%s'" ++msgstr "nie mona otworzy pliku wejciowego `%s'" + +-#: sysdeps/generic/siglist.h:74 stdio-common/../sysdeps/unix/siglist.c:55 +-msgid "Resource lost" +-msgstr "Zasoby zostay stracone" ++#: catgets/gencat.c:416 catgets/gencat.c:493 ++msgid "illegal set number" ++msgstr "bdny numer zbioru" + +-#: sysdeps/mach/hurd/mips/dl-machine.c:68 +-#: string/../sysdeps/mach/_strerror.c:57 +-msgid "Error in unknown error system: " +-msgstr "Bd w nieznanym systemie bdw: " ++#: catgets/gencat.c:443 ++msgid "duplicate set definition" ++msgstr "powtrzona definicja zbioru" + +-#: sysdeps/mach/hurd/mips/dl-machine.c:83 +-#: string/../sysdeps/generic/_strerror.c:44 +-#: string/../sysdeps/mach/_strerror.c:87 +-msgid "Unknown error " +-msgstr "Nieznany bd " ++#: catgets/gencat.c:445 catgets/gencat.c:622 catgets/gencat.c:676 ++msgid "this is the first definition" ++msgstr "to pierwsza definicja" + +-#: sysdeps/unix/sysv/linux/lddlibc4.c:64 ++#: catgets/gencat.c:521 + #, c-format +-msgid "cannot open `%s'" +-msgstr "nie mona otworzy `%s'" ++msgid "unknown set `%s'" ++msgstr "nieznany zbir `%s'" + +-#: sysdeps/unix/sysv/linux/lddlibc4.c:68 +-#, c-format +-msgid "cannot read header from `%s'" +-msgstr "nie mona przeczyta nagwka z `%s'" ++#: catgets/gencat.c:562 ++msgid "invalid quote character" ++msgstr "niepoprawny znak cudzysowu" + +-#: iconv/iconv_charmap.c:159 iconv/iconv_prog.c:295 catgets/gencat.c:288 ++#: catgets/gencat.c:575 + #, c-format +-msgid "cannot open input file `%s'" +-msgstr "nie mona otworzy pliku wejciowego `%s'" ++msgid "unknown directive `%s': line ignored" ++msgstr "nieznana dyrektywa `%s': linia zignorowana" + +-#: iconv/iconv_charmap.c:177 iconv/iconv_prog.c:313 +-#, c-format +-msgid "error while closing input `%s'" +-msgstr "bd podczas zamykania wejcia `%s'" ++#: catgets/gencat.c:620 ++msgid "duplicated message number" ++msgstr "powtrzony numer komunikatu" + +-#: iconv/iconv_charmap.c:443 +-#, c-format +-msgid "illegal input sequence at position %Zd" +-msgstr "bdna sekwencja wejciowa na pozycji %Zd" ++#: catgets/gencat.c:673 ++msgid "duplicated message identifier" ++msgstr "powtrzony identyfikator komunikatu" + +-#: iconv/iconv_charmap.c:462 iconv/iconv_prog.c:506 +-msgid "incomplete character or shift sequence at end of buffer" +-msgstr "niekompletny znak lub sekwencja sterujca na kocu bufora" ++#: catgets/gencat.c:730 ++msgid "invalid character: message ignored" ++msgstr "niepoprawny znak: komunikat zignorowany" + +-#: iconv/iconv_charmap.c:507 iconv/iconv_charmap.c:543 iconv/iconv_prog.c:549 +-#: iconv/iconv_prog.c:585 +-msgid "error while reading the input" +-msgstr "bd podczas czytania danych wejciowych" ++#: catgets/gencat.c:773 ++msgid "invalid line" ++msgstr "niepoprawna linia" + +-#: iconv/iconv_charmap.c:525 iconv/iconv_prog.c:567 +-msgid "unable to allocate buffer for input" +-msgstr "przydzielenie bufora dla danych wejciowych byo niemoliwe" ++#: catgets/gencat.c:827 ++msgid "malformed line ignored" ++msgstr "bdnie sformuowana linia zostaa pominita" + +-#: iconv/iconv_prog.c:61 +-msgid "Input/Output format specification:" +-msgstr "Specyfikacja formatu wejcia/wyjcia:" ++#: catgets/gencat.c:991 catgets/gencat.c:1032 nss/makedb.c:183 ++#, c-format ++msgid "cannot open output file `%s'" ++msgstr "nie mona otworzy pliku wyjciowego `%s'" + +-#: iconv/iconv_prog.c:62 +-msgid "encoding of original text" +-msgstr "kodowanie oryginalnego tekstu" ++#: catgets/gencat.c:1194 locale/programs/linereader.c:559 ++msgid "invalid escape sequence" ++msgstr "bdna sekwencja escape" + +-#: iconv/iconv_prog.c:63 +-msgid "encoding for output" +-msgstr "kodowanie wynikw" ++#: catgets/gencat.c:1216 ++msgid "unterminated message" ++msgstr "nie zakoczony komunikat" + +-#: iconv/iconv_prog.c:64 +-msgid "Information:" +-msgstr "Informacje:" ++#: catgets/gencat.c:1240 ++#, c-format ++msgid "while opening old catalog file" ++msgstr "podczas otwierania starego pliku katalogu" + +-#: iconv/iconv_prog.c:65 +-msgid "list all known coded character sets" +-msgstr "wywietlenie wszystkich znanych zestaww znakw" ++#: catgets/gencat.c:1331 ++#, c-format ++msgid "conversion modules not available" ++msgstr "moduy konwersji niedostpny" + +-#: iconv/iconv_prog.c:66 locale/programs/localedef.c:128 +-msgid "Output control:" +-msgstr "Kontrola wyjcia:" ++#: catgets/gencat.c:1357 ++#, c-format ++msgid "cannot determine escape character" ++msgstr "nie mona okreli znaku escape" + +-#: iconv/iconv_prog.c:67 +-msgid "omit invalid characters from output" +-msgstr "pominicie nieprawidowych znakw z wyjcia" ++#: debug/pcprofiledump.c:52 ++msgid "Don't buffer output" ++msgstr "Nie buforowanie wyjcia" + +-#: iconv/iconv_prog.c:68 +-msgid "output file" +-msgstr "plik wynikowy" +- +-#: iconv/iconv_prog.c:69 +-msgid "suppress warnings" +-msgstr "nie wypisywanie ostrzee" +- +-#: iconv/iconv_prog.c:70 +-msgid "print progress information" +-msgstr "wywietlanie informacji o postpie konwersji" +- +-#: iconv/iconv_prog.c:75 +-msgid "Convert encoding of given files from one encoding to another." +-msgstr "Konwersja podanych plikw midzy rnymi metodami kodowania." +- +-#: iconv/iconv_prog.c:79 +-msgid "[FILE...]" +-msgstr "[PLIK...]" +- +-#: iconv/iconv_prog.c:201 +-msgid "cannot open output file" +-msgstr "nie mona otworzy pliku wyjciowego" +- +-#: iconv/iconv_prog.c:243 +-#, c-format +-msgid "conversions from `%s' and to `%s' are not supported" +-msgstr "konwersja z `%s' oraz do `%s' nie jest obsugiwana" +- +-#: iconv/iconv_prog.c:248 +-#, c-format +-msgid "conversion from `%s' is not supported" +-msgstr "konwersja z `%s' nie jest obsugiwana" +- +-#: iconv/iconv_prog.c:255 +-#, c-format +-msgid "conversion to `%s' is not supported" +-msgstr "konwersja do `%s' nie jest obsugiwana" +- +-#: iconv/iconv_prog.c:259 +-#, c-format +-msgid "conversion from `%s' to `%s' is not supported" +-msgstr "konwersja z `%s' do `%s' nie jest obsugiwana" +- +-#: iconv/iconv_prog.c:265 +-msgid "failed to start conversion processing" +-msgstr "nie udao si rozpocz konwersji" ++#: debug/pcprofiledump.c:57 ++msgid "Dump information generated by PC profiling." ++msgstr "Zrzut informacji wygenerowanych przez profilowanie PC." + +-#: iconv/iconv_prog.c:360 +-msgid "error while closing output file" +-msgstr "bd podczas zamykania pliku wyjciowego" ++#: debug/pcprofiledump.c:60 ++msgid "[FILE]" ++msgstr "[PLIK]" + +-#: iconv/iconv_prog.c:409 iconv/iconvconfig.c:357 locale/programs/locale.c:279 +-#: locale/programs/localedef.c:372 catgets/gencat.c:233 +-#: malloc/memusagestat.c:602 debug/pcprofiledump.c:199 +-msgid "Report bugs using the `glibcbug' script to .\n" +-msgstr "Prosimy zgasza bdy za pomoc skryptu `glibcbug' na adres .\n" +- +-#: iconv/iconv_prog.c:423 iconv/iconvconfig.c:371 locale/programs/locale.c:292 +-#: locale/programs/localedef.c:386 catgets/gencat.c:246 posix/getconf.c:913 +-#: nss/getent.c:74 nscd/nscd.c:355 nscd/nscd_nischeck.c:90 elf/ldconfig.c:274 +-#: elf/sprof.c:349 ++#: debug/pcprofiledump.c:100 + #, c-format +-msgid "" +-"Copyright (C) %s Free Software Foundation, Inc.\n" +-"This is free software; see the source for copying conditions. There is NO\n" +-"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +-msgstr "" +-"Copyright (C) %s Free Software Foundation, Inc.\n" +-"To oprogramowanie jest darmowe; warunki kopiowania s opisane w rdach.\n" +-"Autorzy nie daj ADNYCH gwarancji, w tym rwnie gwarancji MOLIWOCI\n" +-"SPRZEDAY lub PRZYDATNOCI DO KONKRETNYCH ZASTOSOWA.\n" ++msgid "cannot open input file" ++msgstr "nie mona otworzy pliku wejciowego" + +-# w %s wchodzi nazwisko autora danego programu/procedury -PK +-#: iconv/iconv_prog.c:428 iconv/iconvconfig.c:376 locale/programs/locale.c:297 +-#: locale/programs/localedef.c:391 catgets/gencat.c:251 posix/getconf.c:918 +-#: nss/getent.c:79 nscd/nscd.c:360 nscd/nscd_nischeck.c:95 elf/ldconfig.c:279 +-#: elf/sprof.c:355 ++#: debug/pcprofiledump.c:106 + #, c-format +-msgid "Written by %s.\n" +-msgstr "Autorem jest %s.\n" +- +-#: iconv/iconv_prog.c:458 iconv/iconv_prog.c:484 +-msgid "conversion stopped due to problem in writing the output" +-msgstr "konwersja przerwana z powodu problemu z zapisaniem wynikw" ++msgid "cannot read header" ++msgstr "nie mona odczyta nagwka" + +-#: iconv/iconv_prog.c:502 ++#: debug/pcprofiledump.c:170 + #, c-format +-msgid "illegal input sequence at position %ld" +-msgstr "bdna sekwencja wejciowa na pozycji %ld" +- +-#: iconv/iconv_prog.c:510 +-msgid "internal error (illegal descriptor)" +-msgstr "bd wewntrzny (nieprawidowy deskryptor)" ++msgid "invalid pointer size" ++msgstr "nieprawidowy rozmiar wskanika" + +-#: iconv/iconv_prog.c:513 +-#, c-format +-msgid "unknown iconv() error %d" +-msgstr "nieznany bd iconv() %d" ++#: debug/xtrace.sh:27 debug/xtrace.sh:45 ++msgid "Usage: xtrace [OPTION]... PROGRAM [PROGRAMOPTION]...\\n" ++msgstr "Skadnia: xtrace [OPCJA]... PROGRAM [OPCJA-PROGRAMU]...\\n" ++ ++#: debug/xtrace.sh:33 ++#, fuzzy ++msgid "Try `xtrace --help' for more information.\\n" ++msgstr "Polecenie \\`xtrace --help' pozwoli uzyska wicej informacji.\\n" ++ ++#: debug/xtrace.sh:39 ++#, fuzzy ++msgid "xtrace: option `$1' requires an argument.\\n" ++msgstr "xtrace: opcja \\`$1' musi mie argument.\\n" + +-#: iconv/iconv_prog.c:756 ++#: debug/xtrace.sh:46 + msgid "" +-"The following list contain all the coded character sets known. This does\n" +-"not necessarily mean that all combinations of these names can be used for\n" +-"the FROM and TO command line parameters. One coded character set can be\n" +-"listed with several different names (aliases).\n" ++"Trace execution of program by printing currently executed function.\n" + "\n" +-" " ++" --data=FILE Don't run the program, just print the data from FILE.\n" ++"\n" ++" -?,--help Print this help and exit\n" ++" --usage Give a short usage message\n" ++" -V,--version Print version information and exit\n" ++"\n" ++"Mandatory arguments to long options are also mandatory for any corresponding\n" ++"short options.\n" ++"\n" ++"For bug reporting instructions, please see:\n" ++".\\n" + msgstr "" +-"Ponisza lista zawiera wszystkie znane zakodowane zestawy znakw. Nie oznacza\n" +-"to, e wszystkie kombinacje zestaww mog by uywane jako parametry OD i DO.\n" +-"Jeden zestaw znakw moe znajdowa si na licie pod wieloma nazwami\n" +-"(aliasami).\n" ++"ledzenie wykonywania programu poprzez wypisywanie aktualnie wykonywanych\n" ++"funkcji.\n" + "\n" +-" " ++" --data=PLIK Wypisanie danych z PLIKU zamiast uruchamiania programu\n" ++"\n" ++" -?,--help Wypisanie tego opisu i zakoczenie\n" ++" --usage Podanie krtkiego opisu skadni polecenia\n" ++" -V,--version Wypisanie informacji o wersji i zakoczenie\n" ++"\n" ++"Argumenty obowizkowe dla dugich opcji s obowizkowe rwnie dla odpowiednich\n" ++"krtkich opcji.\n" ++"\n" ++"Informacje na temat zgaszania bdw mona znale pod adresem:\n" ++".\\n" + +-#: iconv/iconvconfig.c:110 +-msgid "Create fastloading iconv module configuration file." +-msgstr "Tworzenie pliku konfiguracyjnego do szybkiego wczytywania moduw iconv." ++#: debug/xtrace.sh:125 ++#, fuzzy ++msgid "xtrace: unrecognized option `$1'\\n" ++msgstr "xtrace: nieznana opcja \\`$1'\\n" ++ ++#: debug/xtrace.sh:138 ++msgid "No program name given\\n" ++msgstr "Nie podano nazwy programu\\n" ++ ++#: debug/xtrace.sh:146 ++#, fuzzy, sh-format ++msgid "executable `$program' not found\\n" ++msgstr "nie znaleziono programu wykonywalnego \\`$program'\\n" ++ ++#: debug/xtrace.sh:150 ++#, fuzzy, sh-format ++msgid "`$program' is no executable\\n" ++msgstr "\\`$program' nie jest wykonywalny\\n" + +-#: iconv/iconvconfig.c:114 +-msgid "[DIR...]" +-msgstr "[KATALOG...]" ++#: dlfcn/dlinfo.c:67 ++msgid "RTLD_SELF used in code not dynamically loaded" ++msgstr "RTLD_SELF wystpio w kodzie nie adowanym dynamicznie" + +-#: iconv/iconvconfig.c:126 +-msgid "Prefix used for all file accesses" +-msgstr "Prefiks uywany przy kadym dostpie do pliku" ++#: dlfcn/dlinfo.c:76 ++msgid "unsupported dlinfo request" ++msgstr "nieobsugiwane danie dlinfo" + +-#: iconv/iconvconfig.c:327 locale/programs/localedef.c:292 +-msgid "no output file produced because warnings were issued" +-msgstr "nie utworzono pliku wyjciowego, poniewa wystpiy ostrzeenia" ++#: dlfcn/dlmopen.c:64 ++msgid "invalid namespace" ++msgstr "niepoprawna przestrze nazw" ++ ++#: dlfcn/dlmopen.c:69 ++msgid "invalid mode" ++msgstr "niepoprawny tryb" ++ ++#: dlfcn/dlopen.c:64 ++msgid "invalid mode parameter" ++msgstr "niepoprawny parametr trybu" + +-#: iconv/iconvconfig.c:405 +-msgid "while inserting in search tree" +-msgstr "bd podczas wstawiania do drzewa wyszukiwa" ++#: elf/cache.c:67 ++msgid "unknown" ++msgstr "nieznany" + +-#: iconv/iconvconfig.c:1204 +-msgid "cannot generate output file" +-msgstr "nie mona wygenerowa pliku wyjciowego" ++#: elf/cache.c:110 ++msgid "Unknown OS" ++msgstr "Nieznany system" + +-#: locale/programs/charmap-dir.c:59 ++#: elf/cache.c:115 + #, c-format +-msgid "cannot read character map directory `%s'" +-msgstr "nie mona odczyta katalogu mapy znakw `%s'" ++msgid ", OS ABI: %s %d.%d.%d" ++msgstr ", ABI systemu: %s %d.%d.%d" + +-#: locale/programs/charmap.c:136 ++#: elf/cache.c:141 elf/ldconfig.c:1231 + #, c-format +-msgid "character map file `%s' not found" +-msgstr "nie znaleziono pliku tablicy znakw `%s'" ++msgid "Can't open cache file %s\n" ++msgstr "Nie mona otworzy pliku bufora %s\n" + +-#: locale/programs/charmap.c:194 ++#: elf/cache.c:153 + #, c-format +-msgid "default character map file `%s' not found" +-msgstr "nie znaleziono domylnej tablicy znakw `%s'" ++msgid "mmap of cache file failed.\n" ++msgstr "mmap pliku bufora nie powiodo si.\n" + +-#: locale/programs/charmap.c:257 ++#: elf/cache.c:157 elf/cache.c:167 + #, c-format +-msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n" +-msgstr "tablica znakw `%s' niekompatybilna z ASCII, lokalizacja niekompatybilna z ISO C\n" ++msgid "File is not a cache file.\n" ++msgstr "Plik nie jest plikiem bufora.\n" + +-#: locale/programs/charmap.c:336 ++#: elf/cache.c:200 elf/cache.c:210 + #, c-format +-msgid "%s: must be greater than \n" +-msgstr "%s: musi by wikszy ni \n" ++msgid "%d libs found in cache `%s'\n" ++msgstr "Znaleziono %d bibliotek w buforze `%s'\n" + +-#: locale/programs/charmap.c:356 locale/programs/charmap.c:373 +-#: locale/programs/repertoire.c:175 ++#: elf/cache.c:409 + #, c-format +-msgid "syntax error in prolog: %s" +-msgstr "bd skadni w prologu: %s" +- +-#: locale/programs/charmap.c:357 +-msgid "invalid definition" +-msgstr "niepoprawna definicja" +- +-#: locale/programs/charmap.c:374 locale/programs/locfile.c:126 +-#: locale/programs/locfile.c:153 locale/programs/repertoire.c:176 +-msgid "bad argument" +-msgstr "bdny argument" ++msgid "Can't remove old temporary cache file %s" ++msgstr "Nie mona usun starego tymczasowego pliku bufora %s" + +-#: locale/programs/charmap.c:402 ++#: elf/cache.c:416 + #, c-format +-msgid "duplicate definition of <%s>" +-msgstr "powtrzona definicja <%s>" ++msgid "Can't create temporary cache file %s" ++msgstr "Nie mona utworzy tymczasowego pliku bufora %s" + +-#: locale/programs/charmap.c:409 ++#: elf/cache.c:424 elf/cache.c:434 elf/cache.c:438 + #, c-format +-msgid "value for <%s> must be 1 or greater" +-msgstr "warto <%s> musi wynosi 1 lub wicej" ++msgid "Writing of cache data failed" ++msgstr "Zapis danych bufora nie powid si" + +-#: locale/programs/charmap.c:421 ++#: elf/cache.c:442 + #, c-format +-msgid "value of <%s> must be greater or equal than the value of <%s>" +-msgstr "warto <%s> musi by wiksza lub rwna wartoci <%s>" ++msgid "Writing of cache data failed." ++msgstr "Zapis danych bufora nie powid si." + +-#: locale/programs/charmap.c:444 locale/programs/repertoire.c:184 ++#: elf/cache.c:449 + #, c-format +-msgid "argument to <%s> must be a single character" +-msgstr "argument <%s> musi by pojedynczym znakiem" +- +-#: locale/programs/charmap.c:470 +-msgid "character sets with locking states are not supported" +-msgstr "zestawy znakw ze stanami blokowania nie s obsugiwane" ++msgid "Changing access rights of %s to %#o failed" ++msgstr "Zmiana praw dostpu %s na %#o nie powioda si" + +-#: locale/programs/charmap.c:497 locale/programs/charmap.c:551 +-#: locale/programs/charmap.c:583 locale/programs/charmap.c:677 +-#: locale/programs/charmap.c:732 locale/programs/charmap.c:773 +-#: locale/programs/charmap.c:814 ++#: elf/cache.c:454 + #, c-format +-msgid "syntax error in %s definition: %s" +-msgstr "bd skadni w definicji %s: %s" ++msgid "Renaming of %s to %s failed" ++msgstr "Zmiana nazwy %s na %s nie powioda si" + +-#: locale/programs/charmap.c:498 locale/programs/charmap.c:678 +-#: locale/programs/charmap.c:774 locale/programs/repertoire.c:231 +-msgid "no symbolic name given" +-msgstr "brak nazwy symbolicznej" ++#: elf/dl-close.c:116 ++msgid "shared object not open" ++msgstr "obiekt dzielony nie jest otwarty" + +-#: locale/programs/charmap.c:552 +-msgid "invalid encoding given" +-msgstr "niepoprawne kodowanie" ++#: elf/dl-deps.c:112 ++msgid "DST not allowed in SUID/SGID programs" ++msgstr "DST nie dozwolone dla programw SUID/SGID" + +-#: locale/programs/charmap.c:561 +-msgid "too few bytes in character encoding" +-msgstr "za mao bajtw w kodzie znaku" ++#: elf/dl-deps.c:125 ++msgid "empty dynamics string token substitution" ++msgstr "puste dynamiczne podstawienie znaku acucha" + +-#: locale/programs/charmap.c:563 +-msgid "too many bytes in character encoding" +-msgstr "za duo bajtw w kodzie znaku" ++#: elf/dl-deps.c:131 ++#, c-format ++msgid "cannot load auxiliary `%s' because of empty dynamic string token substitution\n" ++msgstr "nie mona wczyta pomocniczego `%s' z powodu pustego dynamicznego podstawienia\n" + +-#: locale/programs/charmap.c:585 locale/programs/charmap.c:733 +-#: locale/programs/charmap.c:816 locale/programs/repertoire.c:297 +-msgid "no symbolic name given for end of range" +-msgstr "brak nazwy symbolicznej dla koca przedziau" ++#: elf/dl-deps.c:472 ++msgid "cannot allocate dependency list" ++msgstr "nie mona przydzieli pamici dla listy zalenoci" + +-#: locale/programs/charmap.c:609 locale/programs/locfile.c:818 +-#: locale/programs/repertoire.c:314 +-#, c-format +-msgid "`%1$s' definition does not end with `END %1$s'" +-msgstr "definicja `%1$s' musi koczy si wyraeniem `END %1$s'" ++#: elf/dl-deps.c:505 elf/dl-deps.c:560 ++msgid "cannot allocate symbol search list" ++msgstr "nie mona przydzieli pamici dla listy przeszukiwania symboli" + +-#: locale/programs/charmap.c:642 +-msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" +-msgstr "po definicji CHARMAP mog wystpowa tylko definicje WIDTH" ++#: elf/dl-deps.c:545 ++msgid "Filters not supported with LD_TRACE_PRELINKING" ++msgstr "Filtry nie s obsugiwane z LD_TRACE_PRELINKING" + +-#: locale/programs/charmap.c:650 locale/programs/charmap.c:713 +-#, c-format +-msgid "value for %s must be an integer" +-msgstr "warto %s musi by liczb cakowit" ++#: elf/dl-error.c:77 ++msgid "DYNAMIC LINKER BUG!!!" ++msgstr "BD DYNAMICZNEGO LINKERA!!!" + +-# state machine = finite state machine = +-# automat skoczony -PK +-#: locale/programs/charmap.c:841 +-#, c-format +-msgid "%s: error in state machine" +-msgstr "%s: bd w automacie skoczonym" ++#: elf/dl-error.c:124 ++msgid "error while loading shared libraries" ++msgstr "bd podczas wczytywania bibliotek dzielonych" + +-#: locale/programs/charmap.c:849 locale/programs/ld-address.c:605 +-#: locale/programs/ld-collate.c:2650 locale/programs/ld-collate.c:3818 +-#: locale/programs/ld-ctype.c:2225 locale/programs/ld-ctype.c:2994 +-#: locale/programs/ld-identification.c:469 +-#: locale/programs/ld-measurement.c:255 locale/programs/ld-messages.c:349 +-#: locale/programs/ld-monetary.c:958 locale/programs/ld-name.c:324 +-#: locale/programs/ld-numeric.c:392 locale/programs/ld-paper.c:258 +-#: locale/programs/ld-telephone.c:330 locale/programs/ld-time.c:1219 +-#: locale/programs/locfile.c:825 locale/programs/repertoire.c:325 +-#, c-format +-msgid "%s: premature end of file" +-msgstr "%s: przedwczesny koniec pliku" ++#: elf/dl-fptr.c:88 ++msgid "cannot map pages for fdesc table" ++msgstr "nie mona odwzorowa stron dla tablicy fdesc" ++ ++#: elf/dl-fptr.c:192 ++msgid "cannot map pages for fptr table" ++msgstr "nie mona odwzorowa stron dla tablicy fptr" ++ ++#: elf/dl-fptr.c:221 ++msgid "internal error: symidx out of range of fptr table" ++msgstr "bd wewntrzny: symidx spoza zakresu tablicy fptr" + +-#: locale/programs/charmap.c:868 locale/programs/charmap.c:879 +-#, c-format +-msgid "unknown character `%s'" +-msgstr "nieznany znak `%s'" ++#: elf/dl-load.c:372 ++msgid "cannot allocate name record" ++msgstr "nie mona przydzieli pamici dla rekordu nazwy" + +-#: locale/programs/charmap.c:887 +-#, c-format +-msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d" +-msgstr "liczba bajtw dla sekwencji bajtw pocztku i koca przedziau jest rna: %d i %d" ++#: elf/dl-load.c:474 elf/dl-load.c:553 elf/dl-load.c:673 elf/dl-load.c:786 ++msgid "cannot create cache for search path" ++msgstr "nie mona utworzy bufora dla cieki przeszukiwania" + +-#: locale/programs/charmap.c:991 locale/programs/ld-collate.c:2930 +-#: locale/programs/repertoire.c:420 +-msgid "invalid names for character range" +-msgstr "nieprawidowe nazwy dla przedziau znakw" ++#: elf/dl-load.c:576 ++msgid "cannot create RUNPATH/RPATH copy" ++msgstr "nie mona utworzy kopii RUNPATH/RPATH" + +-#: locale/programs/charmap.c:1003 locale/programs/repertoire.c:432 +-msgid "hexadecimal range format should use only capital characters" +-msgstr "w szesnastkowym formacie przedziau powinny by uywane wielkie litery" ++#: elf/dl-load.c:659 ++msgid "cannot create search path array" ++msgstr "nie mona utworzy tablicy cieki przeszukiwania" + +-#: locale/programs/charmap.c:1021 +-#, c-format +-msgid "<%s> and <%s> are illegal names for range" +-msgstr "<%s> i <%s> nie s poprawnymi nazwami dla przedziau" ++#: elf/dl-load.c:870 ++msgid "cannot stat shared object" ++msgstr "nie mona wykona stat na obiekcie dzielonym" + +-#: locale/programs/charmap.c:1027 +-msgid "upper limit in range is not higher then lower limit" +-msgstr "grna granica przedziau nie jest wiksza ni dolna" ++#: elf/dl-load.c:940 ++msgid "cannot open zero fill device" ++msgstr "nie mona otworzy urzdzenia wypeniajcego zerami" + +-#: locale/programs/charmap.c:1085 +-msgid "resulting bytes for range not representable." +-msgstr "wynikowe bajty dla przedziau nie mog zosta wyraone." ++#: elf/dl-load.c:985 elf/dl-load.c:2215 ++msgid "cannot create shared object descriptor" ++msgstr "nie mona utworzy deskryptora obiektu dzielonego" + +-#: locale/programs/ld-address.c:134 locale/programs/ld-collate.c:1534 +-#: locale/programs/ld-ctype.c:421 locale/programs/ld-identification.c:134 +-#: locale/programs/ld-measurement.c:95 locale/programs/ld-messages.c:98 +-#: locale/programs/ld-monetary.c:194 locale/programs/ld-name.c:95 +-#: locale/programs/ld-numeric.c:99 locale/programs/ld-paper.c:92 +-#: locale/programs/ld-telephone.c:95 locale/programs/ld-time.c:160 +-#, c-format +-msgid "No definition for %s category found" +-msgstr "Nie znaleziono definicji dla kategorii %s" ++#: elf/dl-load.c:1004 elf/dl-load.c:1663 elf/dl-load.c:1755 ++msgid "cannot read file data" ++msgstr "nie mona odczyta danych z pliku" + +-#: locale/programs/ld-address.c:145 locale/programs/ld-address.c:183 +-#: locale/programs/ld-address.c:201 locale/programs/ld-address.c:228 +-#: locale/programs/ld-address.c:290 locale/programs/ld-address.c:309 +-#: locale/programs/ld-address.c:322 locale/programs/ld-identification.c:147 +-#: locale/programs/ld-measurement.c:106 locale/programs/ld-monetary.c:206 +-#: locale/programs/ld-monetary.c:250 locale/programs/ld-monetary.c:266 +-#: locale/programs/ld-monetary.c:278 locale/programs/ld-name.c:106 +-#: locale/programs/ld-name.c:143 locale/programs/ld-numeric.c:113 +-#: locale/programs/ld-numeric.c:127 locale/programs/ld-paper.c:103 +-#: locale/programs/ld-paper.c:112 locale/programs/ld-telephone.c:106 +-#: locale/programs/ld-telephone.c:163 locale/programs/ld-time.c:176 +-#: locale/programs/ld-time.c:197 +-#, c-format +-msgid "%s: field `%s' not defined" +-msgstr "%s: pole `%s' nie jest zdefiniowane" ++#: elf/dl-load.c:1048 ++msgid "ELF load command alignment not page-aligned" ++msgstr "wyrwnanie polecenia wczytania ELF nie wyrwnane do granicy stron" + +-#: locale/programs/ld-address.c:157 locale/programs/ld-address.c:209 +-#: locale/programs/ld-address.c:235 locale/programs/ld-address.c:265 +-#: locale/programs/ld-name.c:118 locale/programs/ld-telephone.c:118 +-#, c-format +-msgid "%s: field `%s' must not be empty" +-msgstr "%s: pole `%s' nie moe by puste" ++#: elf/dl-load.c:1055 ++msgid "ELF load command address/offset not properly aligned" ++msgstr "adres/przesunicie polecenia wczytania ELF niewaciwie wyrwnane" + +-#: locale/programs/ld-address.c:169 +-#, c-format +-msgid "%s: invalid escape `%%%c' sequence in field `%s'" +-msgstr "%s: niepoprawna sekwencja escape `%%%c' w polu `%s'" ++#: elf/dl-load.c:1139 ++msgid "cannot allocate TLS data structures for initial thread" ++msgstr "nie mona przydzieli struktur danych TLS dla pocztkowego wtku" + +-#: locale/programs/ld-address.c:220 +-#, c-format +-msgid "%s: terminology language code `%s' not defined" +-msgstr "%s: kod jzyka terminologii `%s' nie jest zdefiniowany" ++#: elf/dl-load.c:1163 ++msgid "cannot handle TLS data" ++msgstr "nie mona obsuy danych TLS" + +-#: locale/programs/ld-address.c:247 locale/programs/ld-address.c:276 +-#, c-format +-msgid "%s: language abbreviation `%s' not defined" +-msgstr "%s: skrt jzyka `%s' nie jest zdefiniowany" ++#: elf/dl-load.c:1182 ++msgid "object file has no loadable segments" ++msgstr "plik obiektu nie ma segmentw adowalnych" + +-#: locale/programs/ld-address.c:254 locale/programs/ld-address.c:282 +-#: locale/programs/ld-address.c:316 locale/programs/ld-address.c:328 +-#, c-format +-msgid "%s: `%s' value does not match `%s' value" +-msgstr "%s: warto `%s' nie pasuje do wartoci `%s'" ++#: elf/dl-load.c:1218 ++msgid "failed to map segment from shared object" ++msgstr "odwzorowanie segmentu z obiektu dzielonego nie powiodo si" + +-#: locale/programs/ld-address.c:301 +-#, c-format +-msgid "%s: numeric country code `%d' not valid" +-msgstr "%s: liczbowy kod kraju `%d' jest niepoprawny" ++#: elf/dl-load.c:1242 ++msgid "cannot dynamically load executable" ++msgstr "nie mona dynamicznie wczyta pliku wykonywalnego" + +-#: locale/programs/ld-address.c:497 locale/programs/ld-address.c:534 +-#: locale/programs/ld-address.c:572 locale/programs/ld-ctype.c:2601 +-#: locale/programs/ld-identification.c:365 +-#: locale/programs/ld-measurement.c:222 locale/programs/ld-messages.c:302 +-#: locale/programs/ld-monetary.c:700 locale/programs/ld-monetary.c:735 +-#: locale/programs/ld-monetary.c:776 locale/programs/ld-name.c:281 +-#: locale/programs/ld-numeric.c:264 locale/programs/ld-paper.c:225 +-#: locale/programs/ld-telephone.c:289 locale/programs/ld-time.c:1108 +-#: locale/programs/ld-time.c:1150 +-#, c-format +-msgid "%s: field `%s' declared more than once" +-msgstr "%s: pole `%s' zadeklarowane wicej ni raz" ++#: elf/dl-load.c:1303 ++msgid "cannot change memory protections" ++msgstr "nie mona zmieni ochrony pamici" + +-#: locale/programs/ld-address.c:501 locale/programs/ld-address.c:539 +-#: locale/programs/ld-identification.c:369 locale/programs/ld-messages.c:312 +-#: locale/programs/ld-monetary.c:704 locale/programs/ld-monetary.c:739 +-#: locale/programs/ld-name.c:285 locale/programs/ld-numeric.c:268 +-#: locale/programs/ld-telephone.c:293 locale/programs/ld-time.c:1002 +-#: locale/programs/ld-time.c:1071 locale/programs/ld-time.c:1113 +-#, c-format +-msgid "%s: unknown character in field `%s'" +-msgstr "%s: nieznany znak w polu `%s'" ++#: elf/dl-load.c:1322 ++msgid "cannot map zero-fill pages" ++msgstr "nie mona odwzorowa stron wypenionych zerami" + +-#: locale/programs/ld-address.c:586 locale/programs/ld-collate.c:3800 +-#: locale/programs/ld-ctype.c:2974 locale/programs/ld-identification.c:450 +-#: locale/programs/ld-measurement.c:236 locale/programs/ld-messages.c:331 +-#: locale/programs/ld-monetary.c:940 locale/programs/ld-name.c:306 +-#: locale/programs/ld-numeric.c:374 locale/programs/ld-paper.c:240 +-#: locale/programs/ld-telephone.c:312 locale/programs/ld-time.c:1201 +-#, c-format +-msgid "%s: incomplete `END' line" +-msgstr "%s: niekompletna linia `END'" ++#: elf/dl-load.c:1336 ++msgid "object file has no dynamic section" ++msgstr "plik obiektu nie ma sekcji dynamicznej" + +-#: locale/programs/ld-address.c:589 locale/programs/ld-collate.c:2653 +-#: locale/programs/ld-collate.c:3802 locale/programs/ld-ctype.c:2228 +-#: locale/programs/ld-ctype.c:2977 locale/programs/ld-identification.c:453 +-#: locale/programs/ld-measurement.c:239 locale/programs/ld-messages.c:333 +-#: locale/programs/ld-monetary.c:942 locale/programs/ld-name.c:308 +-#: locale/programs/ld-numeric.c:376 locale/programs/ld-paper.c:242 +-#: locale/programs/ld-telephone.c:314 locale/programs/ld-time.c:1203 +-#, c-format +-msgid "%1$s: definition does not end with `END %1$s'" +-msgstr "%1$s: definicja nie koczy si przez `END %1$s'" ++#: elf/dl-load.c:1359 ++msgid "shared object cannot be dlopen()ed" ++msgstr "obiekt dzielony nie moe by otwarty przez dlopen()" + +-#: locale/programs/ld-address.c:596 locale/programs/ld-collate.c:523 +-#: locale/programs/ld-collate.c:575 locale/programs/ld-collate.c:871 +-#: locale/programs/ld-collate.c:884 locale/programs/ld-collate.c:2640 +-#: locale/programs/ld-collate.c:3809 locale/programs/ld-ctype.c:1956 +-#: locale/programs/ld-ctype.c:2215 locale/programs/ld-ctype.c:2799 +-#: locale/programs/ld-ctype.c:2985 locale/programs/ld-identification.c:460 +-#: locale/programs/ld-measurement.c:246 locale/programs/ld-messages.c:340 +-#: locale/programs/ld-monetary.c:949 locale/programs/ld-name.c:315 +-#: locale/programs/ld-numeric.c:383 locale/programs/ld-paper.c:249 +-#: locale/programs/ld-telephone.c:321 locale/programs/ld-time.c:1210 +-#, c-format +-msgid "%s: syntax error" +-msgstr "%s: bd skadni" ++#: elf/dl-load.c:1372 ++msgid "cannot allocate memory for program header" ++msgstr "nie mona przydzieli pamici na nagwek programu" + +-#: locale/programs/ld-collate.c:398 +-#, c-format +-msgid "`%.*s' already defined in charmap" +-msgstr "`%.*s' ju zdefiniowany w tablicy znakw" ++#: elf/dl-load.c:1389 elf/dl-open.c:174 ++msgid "invalid caller" ++msgstr "niepoprawny wywoujcy" + +-#: locale/programs/ld-collate.c:407 +-#, c-format +-msgid "`%.*s' already defined in repertoire" +-msgstr "`%.*s' ju zdefiniowany w repertuarze" ++#: elf/dl-load.c:1428 ++msgid "cannot enable executable stack as shared object requires" ++msgstr "nie mona wczy wykonywalnego stosu wymaganego przez obiekt dzielony" + +-#: locale/programs/ld-collate.c:414 +-#, c-format +-msgid "`%.*s' already defined as collating symbol" +-msgstr "`%.*s' ju zdefiniowany jako symbol scalajcy" ++#: elf/dl-load.c:1443 ++msgid "cannot close file descriptor" ++msgstr "nie mona zamkn deskryptora pliku" + +-#: locale/programs/ld-collate.c:421 +-#, c-format +-msgid "`%.*s' already defined as collating element" +-msgstr "`%.*s' ju zdefiniowany jako element scalajcy" ++#: elf/dl-load.c:1485 ++msgid "cannot create searchlist" ++msgstr "nie mona utworzy listy przeszukiwa" + +-#: locale/programs/ld-collate.c:452 locale/programs/ld-collate.c:478 +-#, c-format +-msgid "%s: `forward' and `backward' are mutually excluding each other" +-msgstr "%s: porzdki `forward' i `backward' wykluczaj si wzajemnie" ++#: elf/dl-load.c:1663 ++msgid "file too short" ++msgstr "plik za krtki" + +-#: locale/programs/ld-collate.c:462 locale/programs/ld-collate.c:488 +-#: locale/programs/ld-collate.c:504 +-#, c-format +-msgid "%s: `%s' mentioned more than once in definition of weight %d" +-msgstr "%s: `%s' wystpio wicej ni raz w definicji wagi %d" ++#: elf/dl-load.c:1692 ++msgid "invalid ELF header" ++msgstr "nieprawidowy nagwek ELF" + +-#: locale/programs/ld-collate.c:560 +-#, c-format +-msgid "%s: too many rules; first entry only had %d" +-msgstr "%s: zbyt duo regu; pierwszy wpis mia tylko %d" ++#: elf/dl-load.c:1704 ++msgid "ELF file data encoding not big-endian" ++msgstr "kodowanie danych w pliku ELF nie jest big-endian" + +-#: locale/programs/ld-collate.c:596 +-#, c-format +-msgid "%s: not enough sorting rules" +-msgstr "%s: za mao regu sortowania" ++#: elf/dl-load.c:1706 ++msgid "ELF file data encoding not little-endian" ++msgstr "kodowanie danych w pliku ELF nie jest little-endian" + +-#: locale/programs/ld-collate.c:761 +-#, c-format +-msgid "%s: empty weight string not allowed" +-msgstr "%s: pusty acuch wagi jest niedozwolony" ++#: elf/dl-load.c:1710 ++msgid "ELF file version ident does not match current one" ++msgstr "identyfikator wersji pliku ELF nie zgadza si z aktualnym" + +-# ellipsis = wyrzutnia jezykowa - sprawdzilem. nawet pamietam ze cos takiego +-# istnieje ze szkoly, ale za cholere nie pamietam co to jest ;) -PK +-#: locale/programs/ld-collate.c:856 +-#, c-format +-msgid "%s: weights must use the same ellipsis symbol as the name" +-msgstr "%s: wagi musz uywa jako nazwy tego samego symbolu wyrzutni" ++#: elf/dl-load.c:1714 ++msgid "ELF file OS ABI invalid" ++msgstr "niepoprawne ABI systemu w pliku ELF" + +-#: locale/programs/ld-collate.c:912 +-#, c-format +-msgid "%s: too many values" +-msgstr "%s: zbyt duo wartoci" ++#: elf/dl-load.c:1716 ++msgid "ELF file ABI version invalid" ++msgstr "niepoprawna wersja ABI w pliku ELF" + +-#: locale/programs/ld-collate.c:1031 locale/programs/ld-collate.c:1206 +-#, c-format +-msgid "order for `%.*s' already defined at %s:%Zu" +-msgstr "porzdek dla `%.*s' zosta ju zdefiniowany w %s:%Zu" ++#: elf/dl-load.c:1719 ++msgid "internal error" ++msgstr "bd wewntrzny" + +-#: locale/programs/ld-collate.c:1081 +-#, c-format +-msgid "%s: the start and the end symbol of a range must stand for characters" +-msgstr "%s: pocztkowy i kocowy symbol przedziau musz by znakami" ++#: elf/dl-load.c:1726 ++msgid "ELF file version does not match current one" ++msgstr "wersja pliku ELF nie zgadza si z aktualn" + +-#: locale/programs/ld-collate.c:1108 +-#, c-format +-msgid "%s: byte sequences of first and last character must have the same length" +-msgstr "%s: sekwencje bajtw pierwszego i ostatniego znaku musz mie t sam dugo" ++#: elf/dl-load.c:1734 ++msgid "only ET_DYN and ET_EXEC can be loaded" ++msgstr "tylko ET_DYN i ET_EXEC mog by wczytane" + +-#: locale/programs/ld-collate.c:1150 +-#, c-format +-msgid "%s: byte sequence of first character of sequence is not lower than that of the last character" +-msgstr "%s: sekwencja bajtw pierwszego znaku sekwencji nie jest mniejsza ni ostatniego znaku" ++#: elf/dl-load.c:1740 ++msgid "ELF file's phentsize not the expected size" ++msgstr "phentsize w pliku ELF nie jest oczekiwanym rozmiarem" + +-#: locale/programs/ld-collate.c:1275 +-#, c-format +-msgid "%s: symbolic range ellipsis must not directly follow `order_start'" +-msgstr "%s: wyrzutnia symbolicznego przedziau nie moe by bezporednio po `order_start'" ++#: elf/dl-load.c:2231 ++msgid "wrong ELF class: ELFCLASS64" ++msgstr "niewaciwa klasa ELF: ELFCLASS64" ++ ++#: elf/dl-load.c:2232 ++msgid "wrong ELF class: ELFCLASS32" ++msgstr "niewaciwa klasa ELF: ELFCLASS32" + +-#: locale/programs/ld-collate.c:1279 +-#, c-format +-msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'" +-msgstr "%s: wyrzutnia symbolicznego przedziau nie moe by bezporednio przed `order_end'" ++#: elf/dl-load.c:2235 ++msgid "cannot open shared object file" ++msgstr "nie mona otworzy pliku obiektu dzielonego" + +-#: locale/programs/ld-collate.c:1299 locale/programs/ld-ctype.c:1476 +-#, c-format +-msgid "`%s' and `%.*s' are not valid names for symbolic range" +-msgstr "`%s' i `%.*s' nie s poprawnymi nazwami dla symbolicznego przedziau" ++#: elf/dl-lookup.c:261 ++msgid "relocation error" ++msgstr "bd relokacji" + +-#: locale/programs/ld-collate.c:1348 locale/programs/ld-collate.c:3737 +-#, c-format +-msgid "%s: order for `%.*s' already defined at %s:%Zu" +-msgstr "%s: porzdek dla `%.*s' zosta ju zdefiniowany w %s:%Zu" ++#: elf/dl-lookup.c:289 ++msgid "symbol lookup error" ++msgstr "bd poszukiwania symbolu" + +-#: locale/programs/ld-collate.c:1357 +-#, c-format +-msgid "%s: `%s' must be a character" +-msgstr "%s: `%s' musi by znakiem" ++#: elf/dl-open.c:112 ++msgid "cannot extend global scope" ++msgstr "nie mona rozszerzy zakresu globalnego" + +-#: locale/programs/ld-collate.c:1550 +-#, c-format +-msgid "%s: `position' must be used for a specific level in all sections or none" +-msgstr "%s: `position' musi by uyte dla konkretnego poziomu we wszystkich sekcjach lub adnej" ++#: elf/dl-open.c:237 ++msgid "empty dynamic string token substitution" ++msgstr "puste dynamiczne podstawienie znaku acucha" + +-#: locale/programs/ld-collate.c:1575 +-#, c-format +-msgid "symbol `%s' not defined" +-msgstr "nie zdefiniowany symbol `%s'" ++#: elf/dl-open.c:406 elf/dl-open.c:417 elf/dl-open.c:425 ++msgid "cannot create scope list" ++msgstr "nie mona utworzy listy zakresw" + +-#: locale/programs/ld-collate.c:1651 locale/programs/ld-collate.c:1757 +-#, c-format +-msgid "symbol `%s' has the same encoding as" +-msgstr "symbol `%s' ma to samo kodowanie co" ++#: elf/dl-open.c:470 ++msgid "TLS generation counter wrapped! Please report this." ++msgstr "Licznik generacji TLS przekrci si! Prosz to zgosi." + +-#: locale/programs/ld-collate.c:1655 locale/programs/ld-collate.c:1761 +-#, c-format +-msgid "symbol `%s'" +-msgstr "symbol `%s'" ++#: elf/dl-open.c:508 ++msgid "invalid mode for dlopen()" ++msgstr "bdny typ dla dlopen()" + +-#: locale/programs/ld-collate.c:1803 +-msgid "no definition of `UNDEFINED'" +-msgstr "brak definicji `UNDEFINED'" ++#: elf/dl-open.c:525 ++msgid "no more namespaces available for dlmopen()" ++msgstr "nie ma wicej dostpnych przestrzeni nazw dla dlmopen()" ++ ++#: elf/dl-open.c:538 ++msgid "invalid target namespace in dlmopen()" ++msgstr "bdna przestrze nazw dla celu w dlmopen()" + +-#: locale/programs/ld-collate.c:1832 +-msgid "too many errors; giving up" +-msgstr "zbyt duo bdw; poddaj si" ++#: elf/dl-reloc.c:55 ++msgid "cannot allocate memory in static TLS block" ++msgstr "nie mona przydzieli pamici w statycznym bloku TLS" + +-#: locale/programs/ld-collate.c:2735 +-#, c-format +-msgid "%s: duplicate definition of `%s'" +-msgstr "%s: powtrzona definicja `%s'" ++#: elf/dl-reloc.c:198 ++msgid "cannot make segment writable for relocation" ++msgstr "nie mona uczyni segmentu zapisywalnym w celu relokacji" + +-#: locale/programs/ld-collate.c:2771 ++#: elf/dl-reloc.c:279 + #, c-format +-msgid "%s: duplicate declaration of section `%s'" +-msgstr "%s: powtrzona deklaracja sekcji `%s'" ++msgid "%s: no PLTREL found in object %s\n" ++msgstr "%s: nie znaleziono PLTREL w obiekcie %s\n" + +-#: locale/programs/ld-collate.c:2910 ++#: elf/dl-reloc.c:290 + #, c-format +-msgid "%s: unknown character in collating symbol name" +-msgstr "%s: nieznany znak w nazwie symbolu scalajcego" ++msgid "%s: out of memory to store relocation results for %s\n" ++msgstr "%s: brak pamici na zapisanie wynikw relokacji dla %s\n" + +-#: locale/programs/ld-collate.c:3042 +-#, c-format +-msgid "%s: unknown character in equivalent definition name" +-msgstr "%s: nieznany znak w nazwie definicji rwnowanoci" ++#: elf/dl-reloc.c:306 ++msgid "cannot restore segment prot after reloc" ++msgstr "nie mona odtworzy ochrony segmentu po relokacji" + +-#: locale/programs/ld-collate.c:3055 +-#, c-format +-msgid "%s: unknown character in equivalent definition value" +-msgstr "%s: nieznany znak w wartoci definicji rwnowanoci" ++#: elf/dl-reloc.c:331 ++msgid "cannot apply additional memory protection after relocation" ++msgstr "nie mona naoy dodatkowej ochrony pamici po relokacji" + +-#: locale/programs/ld-collate.c:3065 +-#, c-format +-msgid "%s: unknown symbol `%s' in equivalent definition" +-msgstr "%s: nieznany symbol `%s' w definicji rwnowanoci" ++#: elf/dl-sym.c:98 ++msgid "RTLD_NEXT used in code not dynamically loaded" ++msgstr "RTLD_NEXT wystpio w kodzie nie adowanym dynamicznie" + +-#: locale/programs/ld-collate.c:3074 +-msgid "error while adding equivalent collating symbol" +-msgstr "bd podczas dodawania rwnowanego symbolu scalajcego" ++#: elf/dl-sysdep.c:495 ++msgid "cannot create capability list" ++msgstr "nie mona utworzy listy uprawnie" + +-#: locale/programs/ld-collate.c:3104 +-#, c-format +-msgid "duplicate definition of script `%s'" +-msgstr "powtrzona definicja skryptu `%s'" ++#: elf/dl-tls.c:829 ++msgid "cannot create TLS data structures" ++msgstr "nie mona utworzy struktur danych TLS" + +-#: locale/programs/ld-collate.c:3152 +-#, c-format +-msgid "%s: unknown section name `%s'" +-msgstr "%s: nieznana nazwa sekcji `%s'" ++#: elf/dl-version.c:303 ++msgid "cannot allocate version reference table" ++msgstr "nie mona przydzieli tablicy odniesie do wersji" + +-#: locale/programs/ld-collate.c:3180 +-#, c-format +-msgid "%s: multiple order definitions for section `%s'" +-msgstr "%s: wielokrotna definicja porzdku dla sekcji `%s'" ++#: elf/ldconfig.c:133 ++msgid "Print cache" ++msgstr "Wypisanie zawartoci bufora" + +-#: locale/programs/ld-collate.c:3205 +-#, c-format +-msgid "%s: invalid number of sorting rules" +-msgstr "%s: bdna liczba regu sortowania" ++#: elf/ldconfig.c:134 ++msgid "Generate verbose messages" ++msgstr "Wywietlanie wikszej liczby komunikatw" + +-#: locale/programs/ld-collate.c:3232 +-#, c-format +-msgid "%s: multiple order definitions for unnamed section" +-msgstr "%s: wielokrotna definicja porzdku dla nie nazwanej sekcji" ++#: elf/ldconfig.c:135 ++msgid "Don't build cache" ++msgstr "Nie budowanie bufora" + +-#: locale/programs/ld-collate.c:3286 locale/programs/ld-collate.c:3414 +-#: locale/programs/ld-collate.c:3778 +-#, c-format +-msgid "%s: missing `order_end' keyword" +-msgstr "%s: brak sowa kluczowego `order_end'" ++#: elf/ldconfig.c:136 ++msgid "Don't generate links" ++msgstr "Nie tworzenie dowiza" + +-#: locale/programs/ld-collate.c:3347 +-#, c-format +-msgid "%s: order for collating symbol %.*s not yet defined" +-msgstr "%s: porzdek dla symbolu scalajcego %.*s jeszcze nie zdefiniowany" ++#: elf/ldconfig.c:137 ++msgid "Change to and use ROOT as root directory" ++msgstr "Przejcie do i uywanie KATALOGU jako gwnego katalogu" + +-#: locale/programs/ld-collate.c:3365 +-#, c-format +-msgid "%s: order for collating element %.*s not yet defined" +-msgstr "%s: porzdek dla elementu scalajcego %.*s jeszcze nie zdefiniowany" ++#: elf/ldconfig.c:137 ++msgid "ROOT" ++msgstr "KATALOG" + +-#: locale/programs/ld-collate.c:3376 +-#, c-format +-msgid "%s: cannot reorder after %.*s: symbol not known" +-msgstr "%s: nie mona zmieni porzdku po %.*s: nieznany symbol" ++#: elf/ldconfig.c:138 ++msgid "CACHE" ++msgstr "BUFOR" + +-#: locale/programs/ld-collate.c:3428 locale/programs/ld-collate.c:3790 +-#, c-format +-msgid "%s: missing `reorder-end' keyword" +-msgstr "%s: brak sowa kluczowego `reorder-end'" ++#: elf/ldconfig.c:138 ++msgid "Use CACHE as cache file" ++msgstr "Uycie BUFORA jako pliku bufora" + +-#: locale/programs/ld-collate.c:3462 locale/programs/ld-collate.c:3662 +-#, c-format +-msgid "%s: section `%.*s' not known" +-msgstr "%s: nieznana sekcja `%.*s'" ++#: elf/ldconfig.c:139 ++msgid "CONF" ++msgstr "KONF" + +-#: locale/programs/ld-collate.c:3527 +-#, c-format +-msgid "%s: bad symbol <%.*s>" +-msgstr "%s: bdny symbol <%.*s>" ++#: elf/ldconfig.c:139 ++msgid "Use CONF as configuration file" ++msgstr "Uycie KONF jako pliku konfiguracyjnego" + +-#: locale/programs/ld-collate.c:3725 +-#, c-format +-msgid "%s: cannot have `%s' as end of ellipsis range" +-msgstr "%s: nie mona uy `%s' jako koca przedziau wyrzutni" ++#: elf/ldconfig.c:140 ++msgid "Only process directories specified on the command line. Don't build cache." ++msgstr "Przetwarzanie wycznie katalogw podanych z linii polece; nie budowanie bufora." + +-#: locale/programs/ld-collate.c:3774 +-#, c-format +-msgid "%s: empty category description not allowed" +-msgstr "%s: pusty opis kategorii niedozwolony" ++#: elf/ldconfig.c:141 ++msgid "Manually link individual libraries." ++msgstr "Rczne tworzenie dowiza do pojedynczych bibliotek." + +-#: locale/programs/ld-collate.c:3793 +-#, c-format +-msgid "%s: missing `reorder-sections-end' keyword" +-msgstr "%s: brak sowa kluczowego `reorder-sections-end'" ++#: elf/ldconfig.c:142 ++msgid "FORMAT" ++msgstr "FORMAT" + +-#: locale/programs/ld-ctype.c:440 +-msgid "No character set name specified in charmap" +-msgstr "Brak nazwy zestawu znakw w tablicy znakw" ++#: elf/ldconfig.c:142 ++msgid "Format to use: new, old or compat (default)" ++msgstr "Uywany format: new, old lub compat (domylny)" + +-#: locale/programs/ld-ctype.c:469 +-#, c-format +-msgid "character L'\\u%0*x' in class `%s' must be in class `%s'" +-msgstr "znak L'\\u%0*x' z klasy `%s' musi by w klasie `%s'" ++#: elf/ldconfig.c:150 ++msgid "Configure Dynamic Linker Run Time Bindings." ++msgstr "Konfiguracja powiza dynamicznego linkera." + +-#: locale/programs/ld-ctype.c:484 ++#: elf/ldconfig.c:308 + #, c-format +-msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'" +-msgstr "znak L'\\u%0*x' z klasy `%s' nie moe by w klasie `%s'" ++msgid "Path `%s' given more than once" ++msgstr "cieka `%s' podana wicej ni raz" + +-#: locale/programs/ld-ctype.c:498 locale/programs/ld-ctype.c:556 ++#: elf/ldconfig.c:348 + #, c-format +-msgid "internal error in %s, line %u" +-msgstr "bd wewntrzny w %s, linia %u" ++msgid "%s is not a known library type" ++msgstr "%s nie jest znanym rodzajem biblioteki" + +-#: locale/programs/ld-ctype.c:527 ++#: elf/ldconfig.c:373 + #, c-format +-msgid "character '%s' in class `%s' must be in class `%s'" +-msgstr "znak '%s' z klasy `%s' musi by w klasie `%s'" ++msgid "Can't stat %s" ++msgstr "Nie mona wykona stat na %s" + +-#: locale/programs/ld-ctype.c:543 ++#: elf/ldconfig.c:447 + #, c-format +-msgid "character '%s' in class `%s' must not be in class `%s'" +-msgstr "znak '%s' z klasy `%s' nie moe by w klasie `%s'" ++msgid "Can't stat %s\n" ++msgstr "Nie mona wykona stat na %s\n" + +-#: locale/programs/ld-ctype.c:573 locale/programs/ld-ctype.c:611 ++#: elf/ldconfig.c:457 + #, c-format +-msgid " character not in class `%s'" +-msgstr "znak nie jest w klasie `%s'" ++msgid "%s is not a symbolic link\n" ++msgstr "%s nie jest dowizaniem symbolicznym\n" + +-#: locale/programs/ld-ctype.c:585 locale/programs/ld-ctype.c:622 ++#: elf/ldconfig.c:476 + #, c-format +-msgid " character must not be in class `%s'" +-msgstr "znak nie moe by w klasie `%s'" +- +-#: locale/programs/ld-ctype.c:600 +-msgid "character not defined in character map" +-msgstr "znak nie zdefiniowany w tablicy znakw" +- +-#: locale/programs/ld-ctype.c:714 +-msgid "`digit' category has not entries in groups of ten" +-msgstr "kategoria `digit' nie ma wpisw w grupach po dziesi" ++msgid "Can't unlink %s" ++msgstr "Nie mona usun %s" + +-#: locale/programs/ld-ctype.c:763 +-msgid "no input digits defined and none of the standard names in the charmap" +-msgstr "brak cyfr wejciowych ani adnej ze standardowych nazw w tablicy znakw" ++#: elf/ldconfig.c:482 ++#, c-format ++msgid "Can't link %s to %s" ++msgstr "Nie mona dowiza %s do %s" + +-#: locale/programs/ld-ctype.c:828 +-msgid "not all characters used in `outdigit' are available in the charmap" +-msgstr "nie wszystkie znaki uyte w `outdigit' s dostpne w tablicy znakw" ++#: elf/ldconfig.c:488 ++msgid " (changed)\n" ++msgstr " (zmieniono)\n" + +-#: locale/programs/ld-ctype.c:845 +-msgid "not all characters used in `outdigit' are available in the repertoire" +-msgstr "nie wszystkie znaki uyte w `outdigit' s dostpne w repertuarze" ++#: elf/ldconfig.c:490 ++msgid " (SKIPPED)\n" ++msgstr " (POMINITO)\n" + +-#: locale/programs/ld-ctype.c:1244 ++#: elf/ldconfig.c:545 + #, c-format +-msgid "character class `%s' already defined" +-msgstr "klasa znakw `%s' jest ju zdefiniowana" ++msgid "Can't find %s" ++msgstr "Nie mona znale %s" + +-#: locale/programs/ld-ctype.c:1250 ++#: elf/ldconfig.c:561 + #, c-format +-msgid "implementation limit: no more than %Zd character classes allowed" +-msgstr "ograniczenie implementacji: dozwolone maksymalnie %Zd klas znakw" ++msgid "Can't lstat %s" ++msgstr "Nie mona wykona lstat na %s" + +-#: locale/programs/ld-ctype.c:1276 ++#: elf/ldconfig.c:568 + #, c-format +-msgid "character map `%s' already defined" +-msgstr "tablica znakw `%s' jest ju zdefiniowana" ++msgid "Ignored file %s since it is not a regular file." ++msgstr "Zignorowano plik %s poniewa nie jest zwykym plikiem." + +-#: locale/programs/ld-ctype.c:1282 ++#: elf/ldconfig.c:576 + #, c-format +-msgid "implementation limit: no more than %d character maps allowed" +-msgstr "ograniczenie implementacji: dozwolone maksymalnie %d tablic znakw" ++msgid "No link created since soname could not be found for %s" ++msgstr "Nie utworzono dowizania poniewa nie znaleziono soname dla %s" + +-#: locale/programs/ld-ctype.c:1547 locale/programs/ld-ctype.c:1672 +-#: locale/programs/ld-ctype.c:1778 locale/programs/ld-ctype.c:2464 +-#: locale/programs/ld-ctype.c:3460 ++#: elf/ldconfig.c:667 + #, c-format +-msgid "%s: field `%s' does not contain exactly ten entries" +-msgstr "%s: pole `%s' nie zawiera dokadnie dziesiciu elementw" ++msgid "Can't open directory %s" ++msgstr "Nie mona otworzy katalogu %s" + +-#: locale/programs/ld-ctype.c:1575 locale/programs/ld-ctype.c:2146 ++#: elf/ldconfig.c:735 elf/ldconfig.c:782 + #, c-format +-msgid "to-value of range is smaller than from-value " +-msgstr "warto-do przedziau jest mniejsza ni warto-od " +- +-#: locale/programs/ld-ctype.c:1702 +-msgid "start and end character sequence of range must have the same length" +-msgstr "pocztkowa i kocowa sekwencja znakw przedziau musz mie t sam dugo" +- +-#: locale/programs/ld-ctype.c:1709 +-msgid "to-value character sequence is smaller than from-value sequence" +-msgstr "sekwencja znakw warto-do jest mniejsza ni sekwencja warto-od" +- +-#: locale/programs/ld-ctype.c:2066 locale/programs/ld-ctype.c:2117 +-msgid "premature end of `translit_ignore' definition" +-msgstr "przedwczesny koniec definicji `translit_ignore'" +- +-#: locale/programs/ld-ctype.c:2072 locale/programs/ld-ctype.c:2123 +-#: locale/programs/ld-ctype.c:2165 +-msgid "syntax error" +-msgstr "bd skadni" ++msgid "Cannot lstat %s" ++msgstr "Nie mona wykona lstat na %s" + +-#: locale/programs/ld-ctype.c:2296 ++#: elf/ldconfig.c:747 + #, c-format +-msgid "%s: syntax error in definition of new character class" +-msgstr "%s: bd skadni w definicji nowej klasy znakw" ++msgid "Cannot stat %s" ++msgstr "Nie mona wykona stat na %s" + +-#: locale/programs/ld-ctype.c:2311 ++#: elf/ldconfig.c:804 elf/readlib.c:90 + #, c-format +-msgid "%s: syntax error in definition of new character map" +-msgstr "%s: bd skadni w definicji nowej tablicy znakw" +- +-#: locale/programs/ld-ctype.c:2486 +-msgid "ellipsis range must be marked by two operands of same type" +-msgstr "przedzia wyrzutni musi by oznaczony dwoma argumentami tego samego typu" +- +-#: locale/programs/ld-ctype.c:2495 +-msgid "with symbolic name range values the absolute ellipsis `...' must not be used" +-msgstr "dla wartoci przedziau bdcych nazwami nie mona uy bezwzgldnej wyrzutni `...'" +- +-#: locale/programs/ld-ctype.c:2510 +-msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" +-msgstr "dla wartoci przedziau w kodzie UCS trzeba uy wyrzutni szesnastkowej `..'" +- +-#: locale/programs/ld-ctype.c:2524 +-msgid "with character code range values one must use the absolute ellipsis `...'" +-msgstr "dla wartoci przedziau z kodami znakw trzeba uy bezwzgldnej wyrzutni `...'" ++msgid "Input file %s not found.\n" ++msgstr "Nie znaleziono pliku wejciowego %s.\n" + +-#: locale/programs/ld-ctype.c:2675 ++#: elf/ldconfig.c:855 + #, c-format +-msgid "duplicated definition for mapping `%s'" +-msgstr "powtrzona definicja odwzorowania `%s'" ++msgid "libc5 library %s in wrong directory" ++msgstr "biblioteka libc5 %s w zym katalogu" + +-#: locale/programs/ld-ctype.c:2761 locale/programs/ld-ctype.c:2905 ++#: elf/ldconfig.c:858 + #, c-format +-msgid "%s: `translit_start' section does not end with `translit_end'" +-msgstr "%s: sekcja `translit_start' nie koczy si przez `translit_end'" ++msgid "libc6 library %s in wrong directory" ++msgstr "biblioteka libc6 %s w zym katalogu" + +-#: locale/programs/ld-ctype.c:2856 ++#: elf/ldconfig.c:861 + #, c-format +-msgid "%s: duplicate `default_missing' definition" +-msgstr "%s: powtrzona definicja `default_missing'" +- +-#: locale/programs/ld-ctype.c:2861 +-msgid "previous definition was here" +-msgstr "tutaj bya poprzednia definicja" ++msgid "libc4 library %s in wrong directory" ++msgstr "biblioteka libc4 %s w zym katalogu" + +-#: locale/programs/ld-ctype.c:2883 ++#: elf/ldconfig.c:888 + #, c-format +-msgid "%s: no representable `default_missing' definition found" +-msgstr "%s: nie znaleziono dajcej si wyrazi definicji `default_missing'" ++msgid "libraries %s and %s in directory %s have same soname but different type." ++msgstr "biblioteki %s i %s w katalogu %s maj to samo soname ale inny rodzaj." + +-#: locale/programs/ld-ctype.c:3036 ++#: elf/ldconfig.c:995 + #, c-format +-msgid "%s: character `%s' not defined in charmap while needed as default value" +-msgstr "%s: znak `%s', wymagany jako domylny, nie zosta zdefiniowany w tablicy znakw" ++msgid "Can't open configuration file %s" ++msgstr "Nie mona otworzy pliku konfiguracyjnego %s" + +-#: locale/programs/ld-ctype.c:3041 locale/programs/ld-ctype.c:3125 +-#: locale/programs/ld-ctype.c:3145 locale/programs/ld-ctype.c:3166 +-#: locale/programs/ld-ctype.c:3187 locale/programs/ld-ctype.c:3208 +-#: locale/programs/ld-ctype.c:3229 locale/programs/ld-ctype.c:3269 +-#: locale/programs/ld-ctype.c:3290 locale/programs/ld-ctype.c:3357 ++#: elf/ldconfig.c:1059 + #, c-format +-msgid "%s: character `%s' in charmap not representable with one byte" +-msgstr "%s: znak `%s' z tablicy znakw nie moe by wyraony w jednym bajcie" ++msgid "%s:%u: bad syntax in hwcap line" ++msgstr "%s:%u: bdna skadnia w linii hwcap" + +-#: locale/programs/ld-ctype.c:3120 locale/programs/ld-ctype.c:3140 +-#: locale/programs/ld-ctype.c:3182 locale/programs/ld-ctype.c:3203 +-#: locale/programs/ld-ctype.c:3224 locale/programs/ld-ctype.c:3264 +-#: locale/programs/ld-ctype.c:3285 locale/programs/ld-ctype.c:3352 +-#: locale/programs/ld-ctype.c:3394 locale/programs/ld-ctype.c:3419 ++#: elf/ldconfig.c:1065 + #, c-format +-msgid "%s: character `%s' not defined while needed as default value" +-msgstr "%s: znak `%s', wymagany jako domylny, nie zosta zdefiniowany" ++msgid "%s:%u: hwcap index %lu above maximum %u" ++msgstr "%s:%u: indeks hwcap %lu powyej maksymalnego %u" + +-#: locale/programs/ld-ctype.c:3161 ++#: elf/ldconfig.c:1072 elf/ldconfig.c:1080 + #, c-format +-msgid "character `%s' not defined while needed as default value" +-msgstr "znak `%s', wymagany jako domylny, nie zosta zdefiniowany" ++msgid "%s:%u: hwcap index %lu already defined as %s" ++msgstr "%s:%u: indeks hwcap %lu ju zdefiniowany jako %s" + +-#: locale/programs/ld-ctype.c:3401 locale/programs/ld-ctype.c:3426 ++#: elf/ldconfig.c:1083 + #, c-format +-msgid "%s: character `%s' needed as default value not representable with one byte" +-msgstr "%s: znak `%s', wymagany jako domylny, nie moe by wyraony w jednym bajcie" +- +-#: locale/programs/ld-ctype.c:3481 +-msgid "no output digits defined and none of the standard names in the charmap" +-msgstr "brak definicji cyfr wyjciowych ani adnej standardowej nazwy w tablicy znakw" ++msgid "%s:%u: duplicate hwcap %lu %s" ++msgstr "%s:%u: powtrzony hwcap %lu %s" + +-#: locale/programs/ld-ctype.c:3772 ++#: elf/ldconfig.c:1105 + #, c-format +-msgid "%s: transliteration data from locale `%s' not available" +-msgstr "%s: dane do transliteracji z lokalizacji `%s' niedostpne" ++msgid "need absolute file name for configuration file when using -r" ++msgstr "opcja -r wymaga bezwzgldnej cieki pliku konfiguracyjnego" + +-#: locale/programs/ld-ctype.c:3868 ++#: elf/ldconfig.c:1112 locale/programs/xmalloc.c:69 malloc/obstack.c:434 ++#: malloc/obstack.c:436 posix/getconf.c:980 posix/getconf.c:1158 + #, c-format +-msgid "%s: table for class \"%s\": %lu bytes\n" +-msgstr "%s: tablica dla klasy \"%s\": %lu bajtw\n" ++msgid "memory exhausted" ++msgstr "pami wyczerpana" + +-#: locale/programs/ld-ctype.c:3937 ++#: elf/ldconfig.c:1142 + #, c-format +-msgid "%s: table for map \"%s\": %lu bytes\n" +-msgstr "%s: tablica dla odwzorowania \"%s\": %lu bajtw\n" ++msgid "%s:%u: cannot read directory %s" ++msgstr "%s:%u: nie mona odczyta %s" + +-#: locale/programs/ld-ctype.c:4070 ++#: elf/ldconfig.c:1182 + #, c-format +-msgid "%s: table for width: %lu bytes\n" +-msgstr "%s: tablica dla szerokoci: %lu bajtw\n" ++msgid "relative path `%s' used to build cache" ++msgstr "uyto wzgldnej cieki `%s' do utworzenia bufora" + +-#: locale/programs/ld-identification.c:171 ++#: elf/ldconfig.c:1210 + #, c-format +-msgid "%s: no identification for category `%s'" +-msgstr "%s: brak identyfikacji dla kategorii `%s'" ++msgid "Can't chdir to /" ++msgstr "Nie mona przej do katalogu /" + +-#: locale/programs/ld-identification.c:436 ++#: elf/ldconfig.c:1252 + #, c-format +-msgid "%s: duplicate category version definition" +-msgstr "%s: powtrzona definicja wersji kategorii" ++msgid "Can't open cache file directory %s\n" ++msgstr "Nie mona otworzy katalogu pliku bufora %s\n" + +-#: locale/programs/ld-measurement.c:114 +-#, c-format +-msgid "%s: invalid value for field `%s'" +-msgstr "%s: bdna warto dla pola `%s'" ++#: elf/ldd.bash.in:43 ++msgid "Written by %s and %s.\n" ++msgstr "Autorami s %s i %s.\n" + +-#: locale/programs/ld-messages.c:115 locale/programs/ld-messages.c:149 +-#, c-format +-msgid "%s: field `%s' undefined" +-msgstr "%s: pole `%s' nie zdefiniowane" ++#: elf/ldd.bash.in:48 ++msgid "" ++"Usage: ldd [OPTION]... FILE...\n" ++" --help print this help and exit\n" ++" --version print version information and exit\n" ++" -d, --data-relocs process data relocations\n" ++" -r, --function-relocs process data and function relocations\n" ++" -u, --unused print unused direct dependencies\n" ++" -v, --verbose print all information\n" ++"For bug reporting instructions, please see:\n" ++"." ++msgstr "" ++"Skadnia: ldd [OPCJA]... PLIK...\n" ++" --help wypisanie tego opisu i zakoczenie\n" ++" --version wypisanie informacji o wersji i zakoczenie\n" ++" -d, --data-relocs przetworzenie relokacji danych\n" ++" -r, --function-relocs przetworzenie relokacji danych i funkcji\n" ++" -u, --unused wypisanie nieuywanych bezporednich zalenoci\n" ++" -v, --verbose wypisanie wszystkich informacji\n" ++"Instrukcje dotyczce zgaszania bdw znajduj si pod adresem:\n" ++"." ++ ++#: elf/ldd.bash.in:80 ++#, fuzzy ++msgid "ldd: option `$1' is ambiguous" ++msgstr "ldd: opcja \\`$1' jest niejednoznaczna" ++ ++#: elf/ldd.bash.in:87 ++msgid "unrecognized option" ++msgstr "nieznana opcja" ++ ++#: elf/ldd.bash.in:88 elf/ldd.bash.in:126 ++#, fuzzy ++msgid "Try `ldd --help' for more information." ++msgstr "Polecenie \\`ldd --help' pozwoli uzyska wicej informacji." ++ ++#: elf/ldd.bash.in:125 ++msgid "missing file arguments" ++msgstr "brakujce argumenty plikowe" + +-#: locale/programs/ld-messages.c:122 locale/programs/ld-messages.c:156 +-#, c-format +-msgid "%s: value for field `%s' must not be an empty string" +-msgstr "%s: warto pola `%s' nie moe by acuchem pustym" ++#. TRANS No such file or directory. This is a ``file doesn't exist'' error ++#. TRANS for ordinary files that are referenced in contexts where they are ++#. TRANS expected to already exist. ++#: elf/ldd.bash.in:148 sysdeps/gnu/errlist.c:36 ++msgid "No such file or directory" ++msgstr "Nie ma takiego pliku ani katalogu" + +-#: locale/programs/ld-messages.c:138 locale/programs/ld-messages.c:172 +-#, c-format +-msgid "%s: no correct regular expression for field `%s': %s" +-msgstr "%s: brak poprawnego wyraenia regularnego dla pola `%s': %s" ++#: elf/ldd.bash.in:151 inet/rcmd.c:483 ++msgid "not regular file" ++msgstr "nie jest zwykym plikiem" + +-#: locale/programs/ld-monetary.c:224 +-#, c-format +-msgid "%s: value of field `int_curr_symbol' has wrong length" +-msgstr "%s: warto pola `int_curr_symbol' ma z dugo" ++#: elf/ldd.bash.in:154 ++msgid "warning: you do not have execution permission for" ++msgstr "uwaga: brak uprawnie do wykonywania" ++ ++#: elf/ldd.bash.in:183 ++msgid "\tnot a dynamic executable" ++msgstr "\tnie jest dynamicznym programem wykonywalnym" ++ ++#: elf/ldd.bash.in:191 ++msgid "exited with unknown exit code" ++msgstr "zakoczy dziaanie z nieznanym kodem wyjcia" ++ ++#: elf/ldd.bash.in:196 ++msgid "error: you do not have read permission for" ++msgstr "bd: brak uprawnie do odczytu" + +-#: locale/programs/ld-monetary.c:237 ++#: elf/readelflib.c:35 + #, c-format +-msgid "%s: value of field `int_curr_symbol' does not correspond to a valid name in ISO 4217" +-msgstr "%s: warto pola `int_curr_symbol' nie jest zgodna z nazwami ISO 4217" ++msgid "file %s is truncated\n" ++msgstr "plik %s jest skrcony\n" + +-#: locale/programs/ld-monetary.c:256 locale/programs/ld-numeric.c:119 ++#: elf/readelflib.c:67 + #, c-format +-msgid "%s: value for field `%s' must not be the empty string" +-msgstr "%s: warto pola `%s' nie moe by acuchem pustym" ++msgid "%s is a 32 bit ELF file.\n" ++msgstr "%s jest 32-bitowym plikiem ELF.\n" + +-#: locale/programs/ld-monetary.c:284 locale/programs/ld-monetary.c:314 ++#: elf/readelflib.c:69 + #, c-format +-msgid "%s: value for field `%s' must be in range %d...%d" +-msgstr "%s: warto pola `%s' musi mieci si w przedziale %d...%d" ++msgid "%s is a 64 bit ELF file.\n" ++msgstr "%s jest 64-bitowym plikiem ELF.\n" + +-#: locale/programs/ld-monetary.c:746 locale/programs/ld-numeric.c:275 ++#: elf/readelflib.c:71 + #, c-format +-msgid "%s: value for field `%s' must be a single character" +-msgstr "%s: warto pola `%s' musi by pojedynczym znakiem" ++msgid "Unknown ELFCLASS in file %s.\n" ++msgstr "Nieznana ELFCLASS w pliku %s.\n" + +-#: locale/programs/ld-monetary.c:843 locale/programs/ld-numeric.c:319 ++#: elf/readelflib.c:78 + #, c-format +-msgid "%s: `-1' must be last entry in `%s' field" +-msgstr "%s: `-1' musi by ostatnim elementem w polu `%s'" ++msgid "%s is not a shared object file (Type: %d).\n" ++msgstr "%s nie jest plikiem obiektu dzielonego (Typ: %d).\n" + +-#: locale/programs/ld-monetary.c:865 locale/programs/ld-numeric.c:340 ++#: elf/readelflib.c:109 + #, c-format +-msgid "%s: values for field `%s' must be smaller than 127" +-msgstr "%s: wartoci pola `%s' musz by mniejsze ni 127" +- +-#: locale/programs/ld-monetary.c:908 +-msgid "conversion rate value cannot be zero" +-msgstr "warto stopnia konwersji nie moe by zerem" ++msgid "more than one dynamic segment\n" ++msgstr "wicej ni jeden segment dynamiczny\n" + +-#: locale/programs/ld-name.c:130 locale/programs/ld-telephone.c:127 +-#: locale/programs/ld-telephone.c:150 ++#: elf/readlib.c:96 + #, c-format +-msgid "%s: invalid escape sequence in field `%s'" +-msgstr "%s: niepoprawna sekwencja escape w polu `%s'" ++msgid "Cannot fstat file %s.\n" ++msgstr "Nie mona wykona fstat na pliku %s.\n" + +-#: locale/programs/ld-time.c:248 ++#: elf/readlib.c:107 + #, c-format +-msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'" +-msgstr "%s: znacznik kierunku w acuchu %Zd w polu `era' nie jest '+' ani '-'" ++msgid "File %s is empty, not checked." ++msgstr "Plik %s jest pusty, nie sprawdzony." + +-#: locale/programs/ld-time.c:259 ++#: elf/readlib.c:113 + #, c-format +-msgid "%s: direction flag in string %Zd in `era' field is not a single character" +-msgstr "%s: znacznik kierunku w acuchu %Zd w polu `era' nie jest pojedynczym znakiem" ++msgid "File %s is too small, not checked." ++msgstr "Plik %s jest za may, nie sprawdzony." + +-#: locale/programs/ld-time.c:272 ++#: elf/readlib.c:123 + #, c-format +-msgid "%s: invalid number for offset in string %Zd in `era' field" +-msgstr "%s: niepoprawna warto przesunicia w acuchu %Zd w polu `era'" ++msgid "Cannot mmap file %s.\n" ++msgstr "Nie mona wykona mmap pliku %s.\n" + +-#: locale/programs/ld-time.c:280 ++#: elf/readlib.c:161 + #, c-format +-msgid "%s: garbage at end of offset value in string %Zd in `era' field" +-msgstr "%s: mieci na kocu wartoci przesunicia w acuchu %Zd w polu `era'" ++msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n" ++msgstr "%s nie jest plikiem ELF - ma ze bajty magiczne na pocztku.\n" + +-#: locale/programs/ld-time.c:331 +-#, c-format +-msgid "%s: invalid starting date in string %Zd in `era' field" +-msgstr "%s: niepoprawna data pocztkowa w acuchu %Zd w polu `era'" ++#: elf/sprof.c:77 ++msgid "Output selection:" ++msgstr "Wybr wyjcia:" + +-#: locale/programs/ld-time.c:340 +-#, c-format +-msgid "%s: garbage at end of starting date in string %Zd in `era' field " +-msgstr "%s: mieci na kocu daty pocztkowej w acuchu %Zd w polu `era' " ++# XXX poprawic -PK ++#: elf/sprof.c:79 ++msgid "print list of count paths and their number of use" ++msgstr "wypisanie listy cieek zliczania i ich licznikw uycia" + +-#: locale/programs/ld-time.c:359 +-#, c-format +-msgid "%s: starting date is invalid in string %Zd in `era' field" +-msgstr "%s: niepoprawna data pocztkowa w acuchu %Zd w polu `era'" ++#: elf/sprof.c:81 ++msgid "generate flat profile with counts and ticks" ++msgstr "generowanie prostego profilu z licznikami i czasami" ++ ++#: elf/sprof.c:82 ++msgid "generate call graph" ++msgstr "generowanie wykresu wywoa" ++ ++#: elf/sprof.c:89 ++msgid "" ++"Read and display shared object profiling data. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Odczyt i wywietlanie danych profilujcych dla obiektw wspdzielonych. Instrukcje dotyczce zgaszania bdw znajduj si pod adresem:\n" ++".\n" ++ ++#: elf/sprof.c:94 ++msgid "SHOBJ [PROFDATA]" ++msgstr "OBIEKT_DZIELONY [DANE_PROFILUJCE]" + +-#: locale/programs/ld-time.c:408 ++#: elf/sprof.c:400 + #, c-format +-msgid "%s: invalid stopping date in string %Zd in `era' field" +-msgstr "%s: niepoprawna data kocowa w acuchu %Zd w polu `era'" ++msgid "failed to load shared object `%s'" ++msgstr "zaadowanie dzielonego obiektu `%s' nie powiodo si" + +-#: locale/programs/ld-time.c:417 ++#: elf/sprof.c:409 + #, c-format +-msgid "%s: garbage at end of stopping date in string %Zd in `era' field" +-msgstr "%s: mieci na kocu daty kocowej w acuchu %Zd w polu `era'" ++msgid "cannot create internal descriptors" ++msgstr "nie mona utworzy wewntrznych deskryptorw" + +-#: locale/programs/ld-time.c:436 ++#: elf/sprof.c:528 + #, c-format +-msgid "%s: stopping date is invalid in string %Zd in `era' field" +-msgstr "%s: niepoprawna data kocowa w acuchu %Zd w polu `era'" ++msgid "Reopening shared object `%s' failed" ++msgstr "Ponowne otwarcie obiektu dzielonego `%s' nie powiodo si" + +-#: locale/programs/ld-time.c:445 ++#: elf/sprof.c:535 elf/sprof.c:629 + #, c-format +-msgid "%s: missing era name in string %Zd in `era' field" +-msgstr "%s: brak nazwy ery w acuchu %Zd w polu `era'" ++msgid "reading of section headers failed" ++msgstr "odczyt nagwkw sekcji nie powid si" + +-#: locale/programs/ld-time.c:457 ++#: elf/sprof.c:543 elf/sprof.c:637 + #, c-format +-msgid "%s: missing era format in string %Zd in `era' field" +-msgstr "%s: brak formatu ery w acuchu %Zd w polu `era'" ++msgid "reading of section header string table failed" ++msgstr "odczyt tablicy acuchw nagwkw sekcji nie powid si" + +-#: locale/programs/ld-time.c:486 ++#: elf/sprof.c:569 + #, c-format +-msgid "%s: third operand for value of field `%s' must not be larger than %d" +-msgstr "%s: warto trzeciego argumentu pola `%s' nie moe by wiksza ni %d" ++msgid "*** Cannot read debuginfo file name: %m\n" ++msgstr "*** Nie mona odczyta nazwy pliku informacji diagnostycznych: %m\n" + +-#: locale/programs/ld-time.c:494 locale/programs/ld-time.c:502 ++#: elf/sprof.c:589 + #, c-format +-msgid "%s: values of field `%s' must not be larger than %d" +-msgstr "%s: wartoci pola `%s' nie mog by wiksze ni %d" ++msgid "cannot determine file name" ++msgstr "nie mona okreli nazwy pliku" + +-#: locale/programs/ld-time.c:510 ++#: elf/sprof.c:622 + #, c-format +-msgid "%s: values for field `%s' must not be larger than %d" +-msgstr "%s: wartoci w polu `%s' nie mog by wiksze ni %d" ++msgid "reading of ELF header failed" ++msgstr "odczyt nagwka ELF nie powid si" + +-#: locale/programs/ld-time.c:986 ++#: elf/sprof.c:658 + #, c-format +-msgid "%s: too few values for field `%s'" +-msgstr "%s: zbyt mao wartoci w polu `%s'" ++msgid "*** The file `%s' is stripped: no detailed analysis possible\n" ++msgstr "*** Symbole z pliku `%s' zostay usunite, dokadna analiza jest niemoliwa\n" + +-#: locale/programs/ld-time.c:1031 +-msgid "extra trailing semicolon" +-msgstr "nadmiarowy rednik na kocu" ++#: elf/sprof.c:688 ++#, c-format ++msgid "failed to load symbol data" ++msgstr "zaadowanie danych o symbolach nie powiodo si" + +-#: locale/programs/ld-time.c:1034 ++#: elf/sprof.c:755 + #, c-format +-msgid "%s: too many values for field `%s'" +-msgstr "%s: zbyt duo wartoci w polu `%s'" ++msgid "cannot load profiling data" ++msgstr "nie mona zaadowa danych do profilowania" + +-#: locale/programs/linereader.c:130 +-msgid "trailing garbage at end of line" +-msgstr "mieci na kocu linii" ++#: elf/sprof.c:764 ++#, c-format ++msgid "while stat'ing profiling data file" ++msgstr "podczas wykonywania stat na pliku z danymi profilujcymi" + +-#: locale/programs/linereader.c:304 +-msgid "garbage at end of number" +-msgstr "mieci na kocu liczby" ++#: elf/sprof.c:772 ++#, c-format ++msgid "profiling data file `%s' does not match shared object `%s'" ++msgstr "dane profilujce w pliku `%s' nie pasuj do obiektu dzielonego `%s'" + +-#: locale/programs/linereader.c:416 +-msgid "garbage at end of character code specification" +-msgstr "mieci na kocu specyfikacji kodu znaku" ++#: elf/sprof.c:783 ++#, c-format ++msgid "failed to mmap the profiling data file" ++msgstr "wykonanie mmap danych profilujcych nie powiodo si" + +-#: locale/programs/linereader.c:502 +-msgid "unterminated symbolic name" +-msgstr "nie zakoczona nazwa symboliczna" ++#: elf/sprof.c:791 ++#, c-format ++msgid "error while closing the profiling data file" ++msgstr "bd podczas zamykania pliku z danymi profilujcymi" + +-#: locale/programs/linereader.c:566 catgets/gencat.c:1195 +-msgid "invalid escape sequence" +-msgstr "bdna sekwencja escape" ++#: elf/sprof.c:800 elf/sprof.c:870 ++#, c-format ++msgid "cannot create internal descriptor" ++msgstr "nie mona utworzy wewntrznego deskryptora" + +-#: locale/programs/linereader.c:629 +-msgid "illegal escape sequence at end of string" +-msgstr "niepoprawna sekwencja escape na kocu acucha" ++#: elf/sprof.c:846 ++#, c-format ++msgid "`%s' is no correct profile data file for `%s'" ++msgstr "`%s' nie jest poprawnym plikiem danych profilujcych dla `%s'" + +-#: locale/programs/linereader.c:633 locale/programs/linereader.c:861 +-msgid "unterminated string" +-msgstr "nie zakoczony acuch" ++#: elf/sprof.c:1027 elf/sprof.c:1085 ++#, c-format ++msgid "cannot allocate symbol data" ++msgstr "nie mona przydzieli pamici dla symboli" + +-#: locale/programs/linereader.c:675 +-msgid "non-symbolic character value should not be used" +-msgstr "nie symboliczna warto znaku nie powinna by uyta" ++#: iconv/iconv_charmap.c:175 iconv/iconv_prog.c:315 ++#, c-format ++msgid "error while closing input `%s'" ++msgstr "bd podczas zamykania wejcia `%s'" + +-#: locale/programs/linereader.c:822 ++#: iconv/iconv_charmap.c:449 + #, c-format +-msgid "symbol `%.*s' not in charmap" +-msgstr "brak symbolu `%.*s' w tablicy znakw" ++msgid "illegal input sequence at position %Zd" ++msgstr "bdna sekwencja wejciowa na pozycji %Zd" + +-#: locale/programs/linereader.c:843 ++#: iconv/iconv_charmap.c:468 iconv/iconv_prog.c:525 + #, c-format +-msgid "symbol `%.*s' not in repertoire map" +-msgstr "brak symbolu `%.*s' w tablicy repertuaru" ++msgid "incomplete character or shift sequence at end of buffer" ++msgstr "niekompletny znak lub sekwencja sterujca na kocu bufora" + +-#: locale/programs/locale.c:75 +-msgid "System information:" +-msgstr "Informacja o systemie:" ++#: iconv/iconv_charmap.c:513 iconv/iconv_charmap.c:549 iconv/iconv_prog.c:568 ++#: iconv/iconv_prog.c:604 ++#, c-format ++msgid "error while reading the input" ++msgstr "bd podczas czytania danych wejciowych" + +-#: locale/programs/locale.c:77 +-msgid "Write names of available locales" +-msgstr "Wypisanie nazw dostpnych lokalizacji" ++#: iconv/iconv_charmap.c:531 iconv/iconv_prog.c:586 ++#, c-format ++msgid "unable to allocate buffer for input" ++msgstr "przydzielenie bufora dla danych wejciowych byo niemoliwe" + +-#: locale/programs/locale.c:79 +-msgid "Write names of available charmaps" +-msgstr "Wypisanie nazw dostpnych tablic znakw" ++#: iconv/iconv_prog.c:59 ++msgid "Input/Output format specification:" ++msgstr "Specyfikacja formatu wejcia/wyjcia:" + +-#: locale/programs/locale.c:80 +-msgid "Modify output format:" +-msgstr "Modyfikacja formatu wyjciowego:" ++#: iconv/iconv_prog.c:60 ++msgid "encoding of original text" ++msgstr "kodowanie oryginalnego tekstu" + +-#: locale/programs/locale.c:81 +-msgid "Write names of selected categories" +-msgstr "Wypisanie nazw wybranych kategorii" ++#: iconv/iconv_prog.c:61 ++msgid "encoding for output" ++msgstr "kodowanie wynikw" + +-#: locale/programs/locale.c:82 +-msgid "Write names of selected keywords" +-msgstr "Wypisanie nazw wybranych sw kluczowych" ++#: iconv/iconv_prog.c:62 ++msgid "Information:" ++msgstr "Informacje:" + +-#: locale/programs/locale.c:83 +-msgid "Print more information" +-msgstr "Wypisanie wikszej iloci informacji" ++#: iconv/iconv_prog.c:63 ++msgid "list all known coded character sets" ++msgstr "wywietlenie wszystkich znanych zestaww znakw" + +-#: locale/programs/locale.c:88 +-msgid "Get locale-specific information." +-msgstr "Wywietlanie danych dotyczcych lokalizacji." ++#: iconv/iconv_prog.c:64 locale/programs/localedef.c:126 ++msgid "Output control:" ++msgstr "Kontrola wyjcia:" + +-#: locale/programs/locale.c:91 +-msgid "" +-"NAME\n" +-"[-a|-m]" +-msgstr "" +-"NAZWA\n" +-"[-a|-m]" ++#: iconv/iconv_prog.c:65 ++msgid "omit invalid characters from output" ++msgstr "pominicie nieprawidowych znakw z wyjcia" + +-#: locale/programs/locale.c:195 +-msgid "Cannot set LC_CTYPE to default locale" +-msgstr "Nie mona ustawi LC_CTYPE na domyln lokalizacj" ++#: iconv/iconv_prog.c:66 ++msgid "output file" ++msgstr "plik wynikowy" + +-#: locale/programs/locale.c:197 +-msgid "Cannot set LC_MESSAGES to default locale" +-msgstr "Nie mona ustawi LC_MESSAGES na domyln lokalizacj" ++#: iconv/iconv_prog.c:67 ++msgid "suppress warnings" ++msgstr "nie wypisywanie ostrzee" + +-#: locale/programs/locale.c:210 +-msgid "Cannot set LC_COLLATE to default locale" +-msgstr "Nie mona ustawi LC_COLLATE na domyln lokalizacj" ++#: iconv/iconv_prog.c:68 ++msgid "print progress information" ++msgstr "wywietlanie informacji o postpie konwersji" + +-#: locale/programs/locale.c:226 +-msgid "Cannot set LC_ALL to default locale" +-msgstr "Nie mona ustawi LC_ALL na domyln lokalizacj" ++#: iconv/iconv_prog.c:73 ++msgid "Convert encoding of given files from one encoding to another." ++msgstr "Konwersja podanych plikw midzy rnymi metodami kodowania." + +-#: locale/programs/locale.c:517 +-msgid "while preparing output" +-msgstr "podczas przygotowywania wynikw" ++#: iconv/iconv_prog.c:77 ++msgid "[FILE...]" ++msgstr "[PLIK...]" + +-#: locale/programs/localedef.c:121 +-msgid "Input Files:" +-msgstr "Pliki wejciowe:" ++#: iconv/iconv_prog.c:199 ++#, c-format ++msgid "cannot open output file" ++msgstr "nie mona otworzy pliku wyjciowego" + +-#: locale/programs/localedef.c:123 +-msgid "Symbolic character names defined in FILE" +-msgstr "Nazwy symboliczne znakw s zdefiniowane w PLIKU" ++#: iconv/iconv_prog.c:241 ++#, c-format ++msgid "conversions from `%s' and to `%s' are not supported" ++msgstr "konwersje z `%s' oraz do `%s' nie s obsugiwane" + +-#: locale/programs/localedef.c:124 +-msgid "Source definitions are found in FILE" +-msgstr "Definicje rdowe znajduj si w PLIKU" ++#: iconv/iconv_prog.c:246 ++#, c-format ++msgid "conversion from `%s' is not supported" ++msgstr "konwersja z `%s' nie jest obsugiwana" + +-#: locale/programs/localedef.c:126 +-msgid "FILE contains mapping from symbolic names to UCS4 values" +-msgstr "PLIK zawiera odwzorowania nazw symbolicznych na wartoci UCS4" ++#: iconv/iconv_prog.c:253 ++#, c-format ++msgid "conversion to `%s' is not supported" ++msgstr "konwersja do `%s' nie jest obsugiwana" + +-#: locale/programs/localedef.c:130 +-msgid "Create output even if warning messages were issued" +-msgstr "Tworzenie pliku wyjciowego nawet jeli wystpiy ostrzeenia" ++#: iconv/iconv_prog.c:257 ++#, c-format ++msgid "conversion from `%s' to `%s' is not supported" ++msgstr "konwersja z `%s' do `%s' nie jest obsugiwana" + +-#: locale/programs/localedef.c:131 +-msgid "Create old-style tables" +-msgstr "Tworzenie tablic w starym stylu" ++#: iconv/iconv_prog.c:267 ++#, c-format ++msgid "failed to start conversion processing" ++msgstr "nie udao si rozpocz konwersji" + +-#: locale/programs/localedef.c:132 +-msgid "Optional output file prefix" +-msgstr "Opcjonalny prefiks plikw wyjciowych" ++#: iconv/iconv_prog.c:361 ++#, c-format ++msgid "error while closing output file" ++msgstr "bd podczas zamykania pliku wyjciowego" + +-#: locale/programs/localedef.c:133 +-msgid "Be strictly POSIX conform" +-msgstr "cise przestrzeganie POSIX" ++#: iconv/iconv_prog.c:470 iconv/iconv_prog.c:496 ++#, c-format ++msgid "conversion stopped due to problem in writing the output" ++msgstr "konwersja przerwana z powodu problemu z zapisaniem wynikw" + +-#: locale/programs/localedef.c:135 +-msgid "Suppress warnings and information messages" +-msgstr "Pominicie wywietlania ostrzee i informacji" ++#: iconv/iconv_prog.c:521 ++#, c-format ++msgid "illegal input sequence at position %ld" ++msgstr "bdna sekwencja wejciowa na pozycji %ld" + +-#: locale/programs/localedef.c:136 +-msgid "Print more messages" +-msgstr "Wywietlanie wicej liczby komunikatw" ++#: iconv/iconv_prog.c:529 ++#, c-format ++msgid "internal error (illegal descriptor)" ++msgstr "bd wewntrzny (nieprawidowy deskryptor)" + +-#: locale/programs/localedef.c:137 +-msgid "Archive control:" +-msgstr "Kontrola archiwum:" ++#: iconv/iconv_prog.c:532 ++#, c-format ++msgid "unknown iconv() error %d" ++msgstr "nieznany bd iconv() %d" + +-#: locale/programs/localedef.c:139 +-msgid "Don't add new data to archive" +-msgstr "Nie dodawanie nowych danych do archiwum" +- +-#: locale/programs/localedef.c:141 +-msgid "Add locales named by parameters to archive" +-msgstr "Dodanie do archiwum lokalizacji okrelonych parametrami" +- +-#: locale/programs/localedef.c:142 +-msgid "Replace existing archive content" +-msgstr "Zastpienie aktualnej zawartoci archiwum" +- +-#: locale/programs/localedef.c:144 +-msgid "Remove locales named by parameters from archive" +-msgstr "Usunicie z archiwum lokalizacji okrelonych parametrami" ++#: iconv/iconv_prog.c:778 ++msgid "" ++"The following list contain all the coded character sets known. This does\n" ++"not necessarily mean that all combinations of these names can be used for\n" ++"the FROM and TO command line parameters. One coded character set can be\n" ++"listed with several different names (aliases).\n" ++"\n" ++" " ++msgstr "" ++"Ponisza lista zawiera wszystkie znane zakodowane zestawy znakw. Nie oznacza\n" ++"to, e wszystkie kombinacje zestaww mog by uywane jako parametry OD i DO.\n" ++"Jeden zestaw znakw moe znajdowa si na licie pod wieloma nazwami\n" ++"(aliasami).\n" ++"\n" ++" " + +-#: locale/programs/localedef.c:145 +-msgid "List content of archive" +-msgstr "Lista zawartoci archiwum" ++#: iconv/iconvconfig.c:109 ++msgid "Create fastloading iconv module configuration file." ++msgstr "Tworzenie pliku konfiguracyjnego do szybkiego wczytywania moduw iconv." + +-#: locale/programs/localedef.c:147 +-msgid "locale.alias file to consult when making archive" +-msgstr "Plik locale.alias uywany przy tworzeniu archiwum" ++#: iconv/iconvconfig.c:113 ++msgid "[DIR...]" ++msgstr "[KATALOG...]" + +-#: locale/programs/localedef.c:152 +-msgid "Compile locale specification" +-msgstr "Kompilowanie specyfikacji lokalizacji" ++#: iconv/iconvconfig.c:126 ++msgid "Prefix used for all file accesses" ++msgstr "Prefiks uywany przy kadym dostpie do pliku" + +-#: locale/programs/localedef.c:155 +-msgid "" +-"NAME\n" +-"[--add-to-archive|--delete-from-archive] FILE...\n" +-"--list-archive [FILE]" +-msgstr "" +-"NAZWA\n" +-"[--add-to-archive|--delete-from-archive] PLIK...\n" +-"--list-archive [PLIK]" ++#: iconv/iconvconfig.c:127 ++msgid "Put output in FILE instead of installed location (--prefix does not apply to FILE)" ++msgstr "Umieszczenie wyjcia w PLIKU zamiast miejsca instalacji (--prefix nie wpywa na PLIK)" + +-#: locale/programs/localedef.c:233 +-msgid "cannot create directory for output files" +-msgstr "nie mona utworzy katalogu na pliki wyjciowe" ++#: iconv/iconvconfig.c:131 ++msgid "Do not search standard directories, only those on the command line" ++msgstr "Nie przeszukiwanie standardowych katalogw, a wycznie podanych z linii polece" + +-#: locale/programs/localedef.c:244 +-msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" +-msgstr "OSTATECZNE: system nie definiuje `_POSIX2_LOCALEDEF'" ++#: iconv/iconvconfig.c:300 ++#, c-format ++msgid "Directory arguments required when using --nostdlib" ++msgstr "W przypadku uycia --nostdlib wymagane jest podanie katalogw jako argumentw" + +-#: locale/programs/localedef.c:258 locale/programs/localedef.c:274 +-#: locale/programs/localedef.c:599 locale/programs/localedef.c:619 ++#: iconv/iconvconfig.c:342 locale/programs/localedef.c:290 + #, c-format +-msgid "cannot open locale definition file `%s'" +-msgstr "nie mona otworzy pliku definicji lokalizacji `%s'" ++msgid "no output file produced because warnings were issued" ++msgstr "nie utworzono pliku wyjciowego, poniewa wystpiy ostrzeenia" + +-#: locale/programs/localedef.c:286 ++#: iconv/iconvconfig.c:428 + #, c-format +-msgid "cannot write output files to `%s'" +-msgstr "nie mona zapisa plikw wyjciowych do `%s'" ++msgid "while inserting in search tree" ++msgstr "bd podczas wstawiania do drzewa wyszukiwa" + +-# wyjatkowo nieladne tlumaczenia repertoire i locale -PK +-# XXX +-#: locale/programs/localedef.c:367 ++#: iconv/iconvconfig.c:1236 + #, c-format +-msgid "" +-"System's directory for character maps : %s\n" +-" repertoire maps: %s\n" +-" locale path : %s\n" +-"%s" +-msgstr "" +-"Katalog systemowy dla tablic znakw: %s\n" +-" tablic repertuarw: %s\n" +-" cieka lokalizacji: %s\n" +-"%s" ++msgid "cannot generate output file" ++msgstr "nie mona wygenerowa pliku wyjciowego" + +-#: locale/programs/localedef.c:567 +-msgid "circular dependencies between locale definitions" +-msgstr "zaptlone zalenoci pomidzy definicjami lokalizacji" ++#: inet/rcmd.c:157 ++msgid "rcmd: Cannot allocate memory\n" ++msgstr "rcmd: Nie mona przydzieli pamici\n" ++ ++#: inet/rcmd.c:172 ++msgid "rcmd: socket: All ports in use\n" ++msgstr "rcmd: socket: Wszystkie porty zajte\n" + +-#: locale/programs/localedef.c:573 ++#: inet/rcmd.c:200 + #, c-format +-msgid "cannot add already read locale `%s' a second time" +-msgstr "nie mona doda po raz drugi ju odczytanej lokalizacji `%s'" ++msgid "connect to address %s: " ++msgstr "poczenie do adresu %s: " + +-#: locale/programs/locarchive.c:89 locale/programs/locarchive.c:259 +-msgid "cannot create temporary file" +-msgstr "nie mona utworzy pliku tymczasowego" ++#: inet/rcmd.c:213 ++#, c-format ++msgid "Trying %s...\n" ++msgstr "Prbowanie %s...\n" + +-#: locale/programs/locarchive.c:118 locale/programs/locarchive.c:305 +-msgid "cannot initialize archive file" +-msgstr "nie mona zainicjowa pliku archiwum" ++#: inet/rcmd.c:249 ++#, c-format ++msgid "rcmd: write (setting up stderr): %m\n" ++msgstr "rcmd: write (podczas ustawiania stderr): %m\n" + +-#: locale/programs/locarchive.c:125 locale/programs/locarchive.c:312 +-msgid "cannot resize archive file" +-msgstr "nie mona zmieni rozmiaru pliku archiwum" ++#: inet/rcmd.c:265 ++#, c-format ++msgid "rcmd: poll (setting up stderr): %m\n" ++msgstr "rcmd: poll (podczas ustawiania stderr): %m\n" + +-#: locale/programs/locarchive.c:134 locale/programs/locarchive.c:321 +-#: locale/programs/locarchive.c:511 +-msgid "cannot map archive header" +-msgstr "nie mona odwzorowa nagwka archiwum" ++#: inet/rcmd.c:268 ++msgid "poll: protocol failure in circuit setup\n" ++msgstr "poll: bd protokou podczas zestawiania ptli\n" + +-#: locale/programs/locarchive.c:156 +-msgid "failed to create new locale archive" +-msgstr "tworzenie nowego archiwum lokalizacji nie powiodo si" ++#: inet/rcmd.c:301 ++msgid "socket: protocol failure in circuit setup\n" ++msgstr "socket: bd protokou podczas zestawiania ptli\n" + +-#: locale/programs/locarchive.c:168 +-msgid "cannot change mode of new locale archive" +-msgstr "nie mona zmieni uprawnie nowego archiwum lokalizacji" ++#: inet/rcmd.c:325 ++#, c-format ++msgid "rcmd: %s: short read" ++msgstr "rcmd: %s: odczyt skrcony" + +-#: locale/programs/locarchive.c:253 +-msgid "cannot map locale archive file" +-msgstr "nie mona odwzorowa pliku archiwum lokalizacji" ++#: inet/rcmd.c:481 ++msgid "lstat failed" ++msgstr "lstat nie powiodo si" + +-#: locale/programs/locarchive.c:329 +-msgid "cannot lock new archive" +-msgstr "nie mona zablokowa nowego archiwum" ++#: inet/rcmd.c:488 ++msgid "cannot open" ++msgstr "nie mona otworzy" + +-#: locale/programs/locarchive.c:380 +-msgid "cannot extend locale archive file" +-msgstr "nie mona rozszerzy pliku archiwum lokalizacji" ++#: inet/rcmd.c:490 ++msgid "fstat failed" ++msgstr "fstat nie powiodo si" + +-#: locale/programs/locarchive.c:389 +-msgid "cannot change mode of resized locale archive" +-msgstr "nie mona zmieni uprawnie archiwum lokalizacji po zmianie rozmiaru" ++#: inet/rcmd.c:492 ++msgid "bad owner" ++msgstr "nieodpowiedni waciciel" + +-#: locale/programs/locarchive.c:397 +-msgid "cannot rename new archive" +-msgstr "nie mona zmieni nazwy nowego archiwum" ++#: inet/rcmd.c:494 ++msgid "writeable by other than owner" ++msgstr "zapisywalny nie tylko przez waciciela" + +-#: locale/programs/locarchive.c:450 +-#, c-format +-msgid "cannot open locale archive \"%s\"" +-msgstr "nie mona otworzy archiwum lokalizacji \"%s\"" ++#: inet/rcmd.c:496 ++msgid "hard linked somewhere" ++msgstr "gdzie twardo dowizany" + +-#: locale/programs/locarchive.c:455 +-#, c-format +-msgid "cannot stat locale archive \"%s\"" +-msgstr "nie mona wykona stat na archiwum lokalizacji \"%s\"" ++#: inet/ruserpass.c:170 inet/ruserpass.c:193 ++msgid "out of memory" ++msgstr "brak pamici" + +-#: locale/programs/locarchive.c:474 +-#, c-format +-msgid "cannot lock locale archive \"%s\"" +-msgstr "nie mona zablokowa archiwum lokalizacji \"%s\"" ++#: inet/ruserpass.c:184 ++msgid "Error: .netrc file is readable by others." ++msgstr "Bd: plik .netrc moe by czytany przez innych." + +-#: locale/programs/locarchive.c:497 +-msgid "cannot read archive header" +-msgstr "nie mona odczyta nagwka archiwum" ++#: inet/ruserpass.c:185 ++msgid "Remove password or make file unreadable by others." ++msgstr "Naley usun haso lub uczyni plik niedostpnym dla innych." + +-#: locale/programs/locarchive.c:557 ++#: inet/ruserpass.c:277 + #, c-format +-msgid "locale '%s' already exists" +-msgstr "lokalizacja '%s' ju istnieje" ++msgid "Unknown .netrc keyword %s" ++msgstr "Nieznane sowo kluczowe w .netrc: %s" + +-#: locale/programs/locarchive.c:788 locale/programs/locarchive.c:803 +-#: locale/programs/locarchive.c:815 locale/programs/locarchive.c:827 +-#: locale/programs/locfile.c:343 +-msgid "cannot add to locale archive" +-msgstr "nie mona doda do archiwum lokalizacji" ++#: libidn/nfkc.c:464 ++msgid "Character out of range for UTF-8" ++msgstr "Znak spoza zakresu UTF-8" + +-#: locale/programs/locarchive.c:982 ++#: locale/programs/charmap-dir.c:57 + #, c-format +-msgid "locale alias file `%s' not found" +-msgstr "nie znaleziono pliku aliasw lokalizacji `%s'" ++msgid "cannot read character map directory `%s'" ++msgstr "nie mona odczyta katalogu mapy znakw `%s'" + +-#: locale/programs/locarchive.c:1126 ++#: locale/programs/charmap.c:137 + #, c-format +-msgid "Adding %s\n" +-msgstr "Dodawanie %s\n" ++msgid "character map file `%s' not found" ++msgstr "nie znaleziono pliku tablicy znakw `%s'" + +-#: locale/programs/locarchive.c:1132 ++#: locale/programs/charmap.c:194 + #, c-format +-msgid "stat of \"%s\" failed: %s: ignored" +-msgstr "stat na \"%s\" nie powiodo si: %s: zignorowano" ++msgid "default character map file `%s' not found" ++msgstr "nie znaleziono domylnej tablicy znakw `%s'" + +-#: locale/programs/locarchive.c:1138 ++#: locale/programs/charmap.c:257 + #, c-format +-msgid "\"%s\" is no directory; ignored" +-msgstr "\"%s\" nie jest katalogiem; zignorowano" ++msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n" ++msgstr "tablica znakw `%s' niekompatybilna z ASCII, lokalizacja niekompatybilna z ISO C\n" + +-#: locale/programs/locarchive.c:1145 ++#: locale/programs/charmap.c:336 + #, c-format +-msgid "cannot open directory \"%s\": %s: ignored" +-msgstr "nie mona otworzy katalogu \"%s\": %s: zignorowano" ++msgid "%s: must be greater than \n" ++msgstr "%s: musi by wikszy ni \n" + +-#: locale/programs/locarchive.c:1217 ++#: locale/programs/charmap.c:356 locale/programs/charmap.c:373 ++#: locale/programs/repertoire.c:174 + #, c-format +-msgid "incomplete set of locale files in \"%s\"" +-msgstr "niekompletny zestaw plikw lokalizacji w \"%s\"" ++msgid "syntax error in prolog: %s" ++msgstr "bd skadni w prologu: %s" + +-#: locale/programs/locarchive.c:1281 +-#, c-format +-msgid "cannot read all files in \"%s\": ignored" +-msgstr "nie mona przeczyta wszystkich plikw w \"%s\": zignorowano" ++#: locale/programs/charmap.c:357 ++msgid "invalid definition" ++msgstr "niepoprawna definicja" + +-#: locale/programs/locarchive.c:1351 +-#, c-format +-msgid "locale \"%s\" not in archive" +-msgstr "lokalizacji \"%s\" nie ma w archiwum" ++#: locale/programs/charmap.c:374 locale/programs/locfile.c:125 ++#: locale/programs/locfile.c:152 locale/programs/repertoire.c:175 ++msgid "bad argument" ++msgstr "bdny argument" + +-#: locale/programs/locfile.c:132 ++#: locale/programs/charmap.c:402 + #, c-format +-msgid "argument to `%s' must be a single character" +-msgstr "argument `%s' musi by pojedynczym znakiem" +- +-#: locale/programs/locfile.c:251 +-msgid "syntax error: not inside a locale definition section" +-msgstr "bd skadni: poza sekcj definicji lokalizacji" ++msgid "duplicate definition of <%s>" ++msgstr "powtrzona definicja <%s>" + +-#: locale/programs/locfile.c:625 ++#: locale/programs/charmap.c:409 + #, c-format +-msgid "cannot open output file `%s' for category `%s'" +-msgstr "nie mona otworzy pliku wyjciowego `%s' dla kategorii `%s'" ++msgid "value for <%s> must be 1 or greater" ++msgstr "warto <%s> musi wynosi 1 lub wicej" + +-#: locale/programs/locfile.c:649 ++#: locale/programs/charmap.c:421 + #, c-format +-msgid "failure while writing data for category `%s'" +-msgstr "niepowodzenie podczas zapisu danych dla kategorii `%s'" ++msgid "value of <%s> must be greater or equal than the value of <%s>" ++msgstr "warto <%s> musi by wiksza lub rwna wartoci <%s>" + +-#: locale/programs/locfile.c:745 ++#: locale/programs/charmap.c:444 locale/programs/repertoire.c:183 + #, c-format +-msgid "cannot create output file `%s' for category `%s'" +-msgstr "nie mona utworzy pliku wyjciowego `%s' dla kategorii `%s'" +- +-#: locale/programs/locfile.c:781 +-msgid "expect string argument for `copy'" +-msgstr "spodziewanym argumentem dla `copy' jest acuch" +- +-#: locale/programs/locfile.c:785 +-msgid "locale name should consist only of portable characters" +-msgstr "nazwa lokalizacji powinna skada si wycznie ze znakw przenonych" ++msgid "argument to <%s> must be a single character" ++msgstr "argument <%s> musi by pojedynczym znakiem" + +-#: locale/programs/locfile.c:804 +-msgid "no other keyword shall be specified when `copy' is used" +-msgstr "adne inne sowo kluczowe nie powinno wystpowa razem z `copy'" ++#: locale/programs/charmap.c:470 ++msgid "character sets with locking states are not supported" ++msgstr "zestawy znakw ze stanami blokowania nie s obsugiwane" + +-#: locale/programs/repertoire.c:230 locale/programs/repertoire.c:271 +-#: locale/programs/repertoire.c:296 ++#: locale/programs/charmap.c:497 locale/programs/charmap.c:551 ++#: locale/programs/charmap.c:583 locale/programs/charmap.c:677 ++#: locale/programs/charmap.c:732 locale/programs/charmap.c:773 ++#: locale/programs/charmap.c:814 + #, c-format +-msgid "syntax error in repertoire map definition: %s" +-msgstr "bd skadni w definicji tablicy repertuaru: %s" ++msgid "syntax error in %s definition: %s" ++msgstr "bd skadni w definicji %s: %s" + +-#: locale/programs/repertoire.c:272 +-msgid "no or value given" +-msgstr "nie podano adnych wartoci lub " ++#: locale/programs/charmap.c:498 locale/programs/charmap.c:678 ++#: locale/programs/charmap.c:774 locale/programs/repertoire.c:230 ++msgid "no symbolic name given" ++msgstr "brak nazwy symbolicznej" + +-#: locale/programs/repertoire.c:332 +-msgid "cannot save new repertoire map" +-msgstr "nie mona zachowa nowej tablicy repertuaru" ++#: locale/programs/charmap.c:552 ++msgid "invalid encoding given" ++msgstr "niepoprawne kodowanie" + +-#: locale/programs/repertoire.c:343 +-#, c-format +-msgid "repertoire map file `%s' not found" +-msgstr "nie znaleziono pliku tablicy repertuaru `%s'" ++#: locale/programs/charmap.c:561 ++msgid "too few bytes in character encoding" ++msgstr "za mao bajtw w kodzie znaku" ++ ++#: locale/programs/charmap.c:563 ++msgid "too many bytes in character encoding" ++msgstr "za duo bajtw w kodzie znaku" ++ ++#: locale/programs/charmap.c:585 locale/programs/charmap.c:733 ++#: locale/programs/charmap.c:816 locale/programs/repertoire.c:296 ++msgid "no symbolic name given for end of range" ++msgstr "brak nazwy symbolicznej dla koca przedziau" + +-#: locale/programs/repertoire.c:450 ++#: locale/programs/charmap.c:609 locale/programs/locfile.c:818 ++#: locale/programs/repertoire.c:313 + #, c-format +-msgid "<%s> and <%s> are invalid names for range" +-msgstr "<%s> i <%s> s niepoprawnymi nazwami dla przedziau" ++msgid "`%1$s' definition does not end with `END %1$s'" ++msgstr "definicja `%1$s' musi koczy si wyraeniem `END %1$s'" + +-#: locale/programs/repertoire.c:457 +-msgid "upper limit in range is not smaller then lower limit" +-msgstr "grna granica przedziau nie jest mniejsza ni dolna" ++#: locale/programs/charmap.c:642 ++msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" ++msgstr "po definicji CHARMAP mog wystpowa tylko definicje WIDTH" + +-#: locale/programs/xmalloc.c:70 malloc/obstack.c:505 malloc/obstack.c:508 +-#: posix/getconf.c:1007 +-msgid "memory exhausted" +-msgstr "pami wyczerpana" ++#: locale/programs/charmap.c:650 locale/programs/charmap.c:713 ++#, c-format ++msgid "value for %s must be an integer" ++msgstr "warto %s musi by liczb cakowit" + +-#: assert/assert-perr.c:57 ++# state machine = finite state machine = ++# automat skoczony -PK ++#: locale/programs/charmap.c:841 + #, c-format +-msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n" +-msgstr "%s%s%s:%u %s%sNiespodziewany bd: %s.\n" ++msgid "%s: error in state machine" ++msgstr "%s: bd w automacie skoczonym" + +-#: assert/assert.c:56 ++#: locale/programs/charmap.c:849 locale/programs/ld-address.c:615 ++#: locale/programs/ld-collate.c:2650 locale/programs/ld-collate.c:3820 ++#: locale/programs/ld-ctype.c:2224 locale/programs/ld-ctype.c:2996 ++#: locale/programs/ld-identification.c:467 ++#: locale/programs/ld-measurement.c:253 locale/programs/ld-messages.c:347 ++#: locale/programs/ld-monetary.c:956 locale/programs/ld-name.c:322 ++#: locale/programs/ld-numeric.c:383 locale/programs/ld-paper.c:256 ++#: locale/programs/ld-telephone.c:328 locale/programs/ld-time.c:1236 ++#: locale/programs/locfile.c:825 locale/programs/repertoire.c:324 + #, c-format +-msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" +-msgstr "%s%s%s:%u: %s%sWarunek zapewnienia `%s' nie zosta speniony.\n" ++msgid "%s: premature end of file" ++msgstr "%s: przedwczesny koniec pliku" + +-#: intl/tst-codeset.c:40 intl/tst-codeset.c:50 +-msgid "cheese" +-msgstr "ser" +- +-#: intl/tst-gettext2.c:37 +-msgid "First string for testing." +-msgstr "Pierwszy acuch do testw." +- +-#: intl/tst-gettext2.c:38 +-msgid "Another string for testing." +-msgstr "Inny acuch do testw." ++#: locale/programs/charmap.c:868 locale/programs/charmap.c:879 ++#, c-format ++msgid "unknown character `%s'" ++msgstr "nieznany znak `%s'" + +-#: catgets/gencat.c:111 catgets/gencat.c:115 nscd/nscd.c:88 +-msgid "NAME" +-msgstr "NAZWA" ++#: locale/programs/charmap.c:887 ++#, c-format ++msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d" ++msgstr "liczba bajtw dla sekwencji bajtw pocztku i koca przedziau jest rna: %d i %d" + +-#: catgets/gencat.c:112 +-msgid "Create C header file NAME containing symbol definitions" +-msgstr "Tworzenie pliku nagwkowego C o tej NAZWIE zawierajcego definicje symboli" ++#: locale/programs/charmap.c:992 locale/programs/ld-collate.c:2933 ++#: locale/programs/repertoire.c:419 ++msgid "invalid names for character range" ++msgstr "nieprawidowe nazwy dla przedziau znakw" + +-#: catgets/gencat.c:114 +-msgid "Do not use existing catalog, force new output file" +-msgstr "Zamiast do istniejcego katalogu, zapisanie do nowego pliku" ++#: locale/programs/charmap.c:1004 locale/programs/repertoire.c:431 ++msgid "hexadecimal range format should use only capital characters" ++msgstr "w szesnastkowym formacie przedziau powinny by uywane wielkie litery" + +-#: catgets/gencat.c:115 +-msgid "Write output to file NAME" +-msgstr "Zapisanie wynikw do pliku NAZWA" ++#: locale/programs/charmap.c:1022 ++#, c-format ++msgid "<%s> and <%s> are illegal names for range" ++msgstr "<%s> i <%s> nie s poprawnymi nazwami dla przedziau" + +-#: catgets/gencat.c:120 +-msgid "" +-"Generate message catalog. If INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n" +-"is -, output is written to standard output.\n" +-msgstr "" +-"Generowanie katalogu komunikatw. Jeli PLIK-WE to -, dane s czytane ze standardowego wejcia. Jeli PLIK-WY\n" +-"to -, dane s zapisywane na standardowe wyjcie.\n" ++#: locale/programs/charmap.c:1028 ++msgid "upper limit in range is not higher then lower limit" ++msgstr "grna granica przedziau nie jest wiksza ni dolna" + +-#: catgets/gencat.c:125 +-msgid "" +-"-o OUTPUT-FILE [INPUT-FILE]...\n" +-"[OUTPUT-FILE [INPUT-FILE]...]" +-msgstr "" +-"-o PLIK-WY [PLIK-WE]...\n" +-"[PLIK-WY [PLIK-WE]...]" ++#: locale/programs/charmap.c:1086 ++msgid "resulting bytes for range not representable." ++msgstr "wynikowe bajty dla przedziau nie mog zosta wyraone." + +-#: catgets/gencat.c:282 +-msgid "*standard input*" +-msgstr "*standardowe wejcie*" ++#: locale/programs/ld-address.c:132 locale/programs/ld-collate.c:1532 ++#: locale/programs/ld-ctype.c:419 locale/programs/ld-identification.c:132 ++#: locale/programs/ld-measurement.c:93 locale/programs/ld-messages.c:96 ++#: locale/programs/ld-monetary.c:192 locale/programs/ld-name.c:93 ++#: locale/programs/ld-numeric.c:97 locale/programs/ld-paper.c:90 ++#: locale/programs/ld-telephone.c:93 locale/programs/ld-time.c:158 ++#, c-format ++msgid "No definition for %s category found" ++msgstr "Nie znaleziono definicji dla kategorii %s" + +-#: catgets/gencat.c:417 catgets/gencat.c:494 +-msgid "illegal set number" +-msgstr "bdny numer zbioru" ++#: locale/programs/ld-address.c:143 locale/programs/ld-address.c:181 ++#: locale/programs/ld-address.c:199 locale/programs/ld-address.c:228 ++#: locale/programs/ld-address.c:300 locale/programs/ld-address.c:319 ++#: locale/programs/ld-address.c:332 locale/programs/ld-identification.c:145 ++#: locale/programs/ld-measurement.c:104 locale/programs/ld-monetary.c:204 ++#: locale/programs/ld-monetary.c:248 locale/programs/ld-monetary.c:264 ++#: locale/programs/ld-monetary.c:276 locale/programs/ld-name.c:104 ++#: locale/programs/ld-name.c:141 locale/programs/ld-numeric.c:111 ++#: locale/programs/ld-numeric.c:125 locale/programs/ld-paper.c:101 ++#: locale/programs/ld-paper.c:110 locale/programs/ld-telephone.c:104 ++#: locale/programs/ld-telephone.c:161 locale/programs/ld-time.c:174 ++#: locale/programs/ld-time.c:195 ++#, c-format ++msgid "%s: field `%s' not defined" ++msgstr "%s: pole `%s' nie jest zdefiniowane" + +-#: catgets/gencat.c:444 +-msgid "duplicate set definition" +-msgstr "powtrzona definicja zbioru" ++#: locale/programs/ld-address.c:155 locale/programs/ld-address.c:207 ++#: locale/programs/ld-address.c:237 locale/programs/ld-address.c:275 ++#: locale/programs/ld-name.c:116 locale/programs/ld-telephone.c:116 ++#, c-format ++msgid "%s: field `%s' must not be empty" ++msgstr "%s: pole `%s' nie moe by puste" + +-#: catgets/gencat.c:446 catgets/gencat.c:623 catgets/gencat.c:677 +-msgid "this is the first definition" +-msgstr "to pierwsza definicja" ++#: locale/programs/ld-address.c:167 ++#, c-format ++msgid "%s: invalid escape `%%%c' sequence in field `%s'" ++msgstr "%s: niepoprawna sekwencja escape `%%%c' w polu `%s'" + +-#: catgets/gencat.c:522 ++#: locale/programs/ld-address.c:218 + #, c-format +-msgid "unknown set `%s'" +-msgstr "nieznany zbir `%s'" ++msgid "%s: terminology language code `%s' not defined" ++msgstr "%s: kod jzyka terminologii `%s' nie jest zdefiniowany" + +-#: catgets/gencat.c:563 +-msgid "invalid quote character" +-msgstr "niepoprawny znak cudzysowu" ++#: locale/programs/ld-address.c:243 ++#, c-format ++msgid "%s: field `%s' must not be defined" ++msgstr "%s: pole `%s' nie moe by zdefiniowane" + +-#: catgets/gencat.c:576 ++#: locale/programs/ld-address.c:257 locale/programs/ld-address.c:286 + #, c-format +-msgid "unknown directive `%s': line ignored" +-msgstr "nieznana dyrektywa `%s': linia zignorowana" ++msgid "%s: language abbreviation `%s' not defined" ++msgstr "%s: skrt jzyka `%s' nie jest zdefiniowany" + +-#: catgets/gencat.c:621 +-msgid "duplicated message number" +-msgstr "powtrzony numer komunikatu" ++#: locale/programs/ld-address.c:264 locale/programs/ld-address.c:292 ++#: locale/programs/ld-address.c:326 locale/programs/ld-address.c:338 ++#, c-format ++msgid "%s: `%s' value does not match `%s' value" ++msgstr "%s: warto `%s' nie pasuje do wartoci `%s'" + +-#: catgets/gencat.c:674 +-msgid "duplicated message identifier" +-msgstr "powtrzony identyfikator komunikatu" ++#: locale/programs/ld-address.c:311 ++#, c-format ++msgid "%s: numeric country code `%d' not valid" ++msgstr "%s: liczbowy kod kraju `%d' jest niepoprawny" + +-#: catgets/gencat.c:731 +-msgid "invalid character: message ignored" +-msgstr "niepoprawny znak: komunikat zignorowany" ++#: locale/programs/ld-address.c:507 locale/programs/ld-address.c:544 ++#: locale/programs/ld-address.c:582 locale/programs/ld-ctype.c:2603 ++#: locale/programs/ld-identification.c:363 ++#: locale/programs/ld-measurement.c:220 locale/programs/ld-messages.c:300 ++#: locale/programs/ld-monetary.c:698 locale/programs/ld-monetary.c:733 ++#: locale/programs/ld-monetary.c:774 locale/programs/ld-name.c:279 ++#: locale/programs/ld-numeric.c:262 locale/programs/ld-paper.c:223 ++#: locale/programs/ld-telephone.c:287 locale/programs/ld-time.c:1125 ++#: locale/programs/ld-time.c:1167 ++#, c-format ++msgid "%s: field `%s' declared more than once" ++msgstr "%s: pole `%s' zadeklarowane wicej ni raz" + +-#: catgets/gencat.c:774 +-msgid "invalid line" +-msgstr "niepoprawna linia" ++#: locale/programs/ld-address.c:511 locale/programs/ld-address.c:549 ++#: locale/programs/ld-identification.c:367 locale/programs/ld-messages.c:310 ++#: locale/programs/ld-monetary.c:702 locale/programs/ld-monetary.c:737 ++#: locale/programs/ld-name.c:283 locale/programs/ld-numeric.c:266 ++#: locale/programs/ld-telephone.c:291 locale/programs/ld-time.c:1019 ++#: locale/programs/ld-time.c:1088 locale/programs/ld-time.c:1130 ++#, c-format ++msgid "%s: unknown character in field `%s'" ++msgstr "%s: nieznany znak w polu `%s'" + +-#: catgets/gencat.c:828 +-msgid "malformed line ignored" +-msgstr "bdnie sformuowana linia zostaa pominita" ++#: locale/programs/ld-address.c:596 locale/programs/ld-collate.c:3802 ++#: locale/programs/ld-ctype.c:2976 locale/programs/ld-identification.c:448 ++#: locale/programs/ld-measurement.c:234 locale/programs/ld-messages.c:329 ++#: locale/programs/ld-monetary.c:938 locale/programs/ld-name.c:304 ++#: locale/programs/ld-numeric.c:365 locale/programs/ld-paper.c:238 ++#: locale/programs/ld-telephone.c:310 locale/programs/ld-time.c:1218 ++#, c-format ++msgid "%s: incomplete `END' line" ++msgstr "%s: niekompletna linia `END'" + +-#: catgets/gencat.c:992 catgets/gencat.c:1033 ++#: locale/programs/ld-address.c:599 locale/programs/ld-collate.c:2653 ++#: locale/programs/ld-collate.c:3804 locale/programs/ld-ctype.c:2227 ++#: locale/programs/ld-ctype.c:2979 locale/programs/ld-identification.c:451 ++#: locale/programs/ld-measurement.c:237 locale/programs/ld-messages.c:331 ++#: locale/programs/ld-monetary.c:940 locale/programs/ld-name.c:306 ++#: locale/programs/ld-numeric.c:367 locale/programs/ld-paper.c:240 ++#: locale/programs/ld-telephone.c:312 locale/programs/ld-time.c:1220 + #, c-format +-msgid "cannot open output file `%s'" +-msgstr "nie mona otworzy pliku wyjciowego `%s'" ++msgid "%1$s: definition does not end with `END %1$s'" ++msgstr "%1$s: definicja nie koczy si przez `END %1$s'" + +-#: catgets/gencat.c:1217 +-msgid "unterminated message" +-msgstr "nie zakoczony komunikat" ++#: locale/programs/ld-address.c:606 locale/programs/ld-collate.c:521 ++#: locale/programs/ld-collate.c:573 locale/programs/ld-collate.c:869 ++#: locale/programs/ld-collate.c:882 locale/programs/ld-collate.c:2640 ++#: locale/programs/ld-collate.c:3811 locale/programs/ld-ctype.c:1955 ++#: locale/programs/ld-ctype.c:2214 locale/programs/ld-ctype.c:2801 ++#: locale/programs/ld-ctype.c:2987 locale/programs/ld-identification.c:458 ++#: locale/programs/ld-measurement.c:244 locale/programs/ld-messages.c:338 ++#: locale/programs/ld-monetary.c:947 locale/programs/ld-name.c:313 ++#: locale/programs/ld-numeric.c:374 locale/programs/ld-paper.c:247 ++#: locale/programs/ld-telephone.c:319 locale/programs/ld-time.c:1227 ++#, c-format ++msgid "%s: syntax error" ++msgstr "%s: bd skadni" + +-#: catgets/gencat.c:1241 +-msgid "while opening old catalog file" +-msgstr "podczas otwierania starego pliku katalogu" ++#: locale/programs/ld-collate.c:396 ++#, c-format ++msgid "`%.*s' already defined in charmap" ++msgstr "`%.*s' ju zdefiniowany w tablicy znakw" + +-#: catgets/gencat.c:1332 +-msgid "conversion modules not available" +-msgstr "moduy konwersji niedostpny" ++#: locale/programs/ld-collate.c:405 ++#, c-format ++msgid "`%.*s' already defined in repertoire" ++msgstr "`%.*s' ju zdefiniowany w repertuarze" + +-#: catgets/gencat.c:1358 +-msgid "cannot determine escape character" +-msgstr "nie mona okreli znaku escape" ++#: locale/programs/ld-collate.c:412 ++#, c-format ++msgid "`%.*s' already defined as collating symbol" ++msgstr "`%.*s' ju zdefiniowany jako symbol scalajcy" + +-#: stdlib/../sysdeps/unix/sysv/linux/ia64/makecontext.c:63 ++#: locale/programs/ld-collate.c:419 + #, c-format +-msgid "makecontext: does not know how to handle more than 8 arguments\n" +-msgstr "makecontext: nie wiadomo jak obsuy wicej ni 8 argumentw\n" ++msgid "`%.*s' already defined as collating element" ++msgstr "`%.*s' ju zdefiniowany jako element scalajcy" + +-#: stdio-common/../sysdeps/gnu/errlist.c:12 posix/regcomp.c:147 +-#: nis/nis_error.c:29 nis/ypclnt.c:778 nis/ypclnt.c:852 +-msgid "Success" +-msgstr "Sukces" ++#: locale/programs/ld-collate.c:450 locale/programs/ld-collate.c:476 ++#, c-format ++msgid "%s: `forward' and `backward' are mutually excluding each other" ++msgstr "%s: porzdki `forward' i `backward' wykluczaj si wzajemnie" + +-#. TRANS Operation not permitted; only the owner of the file (or other resource) +-#. TRANS or processes with special privileges can perform the operation. +-#: stdio-common/../sysdeps/gnu/errlist.c:17 +-msgid "Operation not permitted" +-msgstr "Operacja niedozwolona" ++#: locale/programs/ld-collate.c:460 locale/programs/ld-collate.c:486 ++#: locale/programs/ld-collate.c:502 ++#, c-format ++msgid "%s: `%s' mentioned more than once in definition of weight %d" ++msgstr "%s: `%s' wystpio wicej ni raz w definicji wagi %d" + +-#. TRANS No such file or directory. This is a ``file doesn't exist'' error +-#. TRANS for ordinary files that are referenced in contexts where they are +-#. TRANS expected to already exist. +-#: stdio-common/../sysdeps/gnu/errlist.c:28 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:32 +-msgid "No such file or directory" +-msgstr "Nie ma takiego pliku ani katalogu" ++#: locale/programs/ld-collate.c:558 ++#, c-format ++msgid "%s: too many rules; first entry only had %d" ++msgstr "%s: zbyt duo regu; pierwszy wpis mia tylko %d" + +-#. TRANS No process matches the specified process ID. +-#: stdio-common/../sysdeps/gnu/errlist.c:37 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:33 +-msgid "No such process" +-msgstr "Nie ma takiego procesu" ++#: locale/programs/ld-collate.c:594 ++#, c-format ++msgid "%s: not enough sorting rules" ++msgstr "%s: za mao regu sortowania" + +-#. TRANS Interrupted function call; an asynchronous signal occurred and prevented +-#. TRANS completion of the call. When this happens, you should try the call +-#. TRANS again. +-#. TRANS +-#. TRANS You can choose to have functions resume after a signal that is handled, +-#. TRANS rather than failing with @code{EINTR}; see @ref{Interrupted +-#. TRANS Primitives}. +-#: stdio-common/../sysdeps/gnu/errlist.c:52 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:34 +-msgid "Interrupted system call" +-msgstr "Przerwane wywoanie systemowe" ++#: locale/programs/ld-collate.c:759 ++#, c-format ++msgid "%s: empty weight string not allowed" ++msgstr "%s: pusty acuch wagi jest niedozwolony" + +-#. TRANS Input/output error; usually used for physical read or write errors. +-#: stdio-common/../sysdeps/gnu/errlist.c:61 +-msgid "Input/output error" +-msgstr "Bd wejcia/wyjcia" ++# ellipsis = wyrzutnia jezykowa - sprawdzilem. nawet pamietam ze cos takiego ++# istnieje ze szkoly, ale za cholere nie pamietam co to jest ;) -PK ++#: locale/programs/ld-collate.c:854 ++#, c-format ++msgid "%s: weights must use the same ellipsis symbol as the name" ++msgstr "%s: wagi musz uywa jako nazwy tego samego symbolu wyrzutni" + +-#. TRANS No such device or address. The system tried to use the device +-#. TRANS represented by a file you specified, and it couldn't find the device. +-#. TRANS This can mean that the device file was installed incorrectly, or that +-#. TRANS the physical device is missing or not correctly attached to the +-#. TRANS computer. +-#: stdio-common/../sysdeps/gnu/errlist.c:74 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:36 +-msgid "No such device or address" +-msgstr "Nie ma takiego urzdzenia ani adresu" ++#: locale/programs/ld-collate.c:910 ++#, c-format ++msgid "%s: too many values" ++msgstr "%s: zbyt duo wartoci" + +-#. TRANS Argument list too long; used when the arguments passed to a new program +-#. TRANS being executed with one of the @code{exec} functions (@pxref{Executing a +-#. TRANS File}) occupy too much memory space. This condition never arises in the +-#. TRANS GNU system. +-#: stdio-common/../sysdeps/gnu/errlist.c:86 +-msgid "Argument list too long" +-msgstr "Lista argumentw za duga" ++#: locale/programs/ld-collate.c:1029 locale/programs/ld-collate.c:1204 ++#, c-format ++msgid "order for `%.*s' already defined at %s:%Zu" ++msgstr "porzdek dla `%.*s' zosta ju zdefiniowany w %s:%Zu" + +-#. TRANS Invalid executable file format. This condition is detected by the +-#. TRANS @code{exec} functions; see @ref{Executing a File}. +-#: stdio-common/../sysdeps/gnu/errlist.c:96 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:38 +-msgid "Exec format error" +-msgstr "Bdny format pliku wykonywalnego" ++#: locale/programs/ld-collate.c:1079 ++#, c-format ++msgid "%s: the start and the end symbol of a range must stand for characters" ++msgstr "%s: pocztkowy i kocowy symbol przedziau musz by znakami" + +-#. TRANS Bad file descriptor; for example, I/O on a descriptor that has been +-#. TRANS closed or reading from a descriptor open only for writing (or vice +-#. TRANS versa). +-#: stdio-common/../sysdeps/gnu/errlist.c:107 +-msgid "Bad file descriptor" +-msgstr "Bdny deskryptor pliku" ++#: locale/programs/ld-collate.c:1106 ++#, c-format ++msgid "%s: byte sequences of first and last character must have the same length" ++msgstr "%s: sekwencje bajtw pierwszego i ostatniego znaku musz mie t sam dugo" + +-#. TRANS There are no child processes. This error happens on operations that are +-#. TRANS supposed to manipulate child processes, when there aren't any processes +-#. TRANS to manipulate. +-#: stdio-common/../sysdeps/gnu/errlist.c:118 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:40 +-msgid "No child processes" +-msgstr "Brak procesw potomnych" ++#: locale/programs/ld-collate.c:1148 ++#, c-format ++msgid "%s: byte sequence of first character of sequence is not lower than that of the last character" ++msgstr "%s: sekwencja bajtw pierwszego znaku sekwencji nie jest mniejsza ni ostatniego znaku" ++ ++#: locale/programs/ld-collate.c:1273 ++#, c-format ++msgid "%s: symbolic range ellipsis must not directly follow `order_start'" ++msgstr "%s: wyrzutnia symbolicznego przedziau nie moe by bezporednio po `order_start'" ++ ++#: locale/programs/ld-collate.c:1277 ++#, c-format ++msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'" ++msgstr "%s: wyrzutnia symbolicznego przedziau nie moe by bezporednio przed `order_end'" ++ ++#: locale/programs/ld-collate.c:1297 locale/programs/ld-ctype.c:1475 ++#, c-format ++msgid "`%s' and `%.*s' are not valid names for symbolic range" ++msgstr "`%s' i `%.*s' nie s poprawnymi nazwami dla symbolicznego przedziau" ++ ++#: locale/programs/ld-collate.c:1346 locale/programs/ld-collate.c:3739 ++#, c-format ++msgid "%s: order for `%.*s' already defined at %s:%Zu" ++msgstr "%s: porzdek dla `%.*s' zosta ju zdefiniowany w %s:%Zu" ++ ++#: locale/programs/ld-collate.c:1355 ++#, c-format ++msgid "%s: `%s' must be a character" ++msgstr "%s: `%s' musi by znakiem" ++ ++#: locale/programs/ld-collate.c:1548 ++#, c-format ++msgid "%s: `position' must be used for a specific level in all sections or none" ++msgstr "%s: `position' musi by uyte dla konkretnego poziomu we wszystkich sekcjach lub adnej" ++ ++#: locale/programs/ld-collate.c:1573 ++#, c-format ++msgid "symbol `%s' not defined" ++msgstr "nie zdefiniowany symbol `%s'" ++ ++#: locale/programs/ld-collate.c:1649 locale/programs/ld-collate.c:1755 ++#, c-format ++msgid "symbol `%s' has the same encoding as" ++msgstr "symbol `%s' ma to samo kodowanie co" ++ ++#: locale/programs/ld-collate.c:1653 locale/programs/ld-collate.c:1759 ++#, c-format ++msgid "symbol `%s'" ++msgstr "symbol `%s'" ++ ++#: locale/programs/ld-collate.c:1801 ++#, c-format ++msgid "no definition of `UNDEFINED'" ++msgstr "brak definicji `UNDEFINED'" ++ ++#: locale/programs/ld-collate.c:1830 ++#, c-format ++msgid "too many errors; giving up" ++msgstr "zbyt duo bdw; poddaj si" ++ ++#: locale/programs/ld-collate.c:2738 ++#, c-format ++msgid "%s: duplicate definition of `%s'" ++msgstr "%s: powtrzona definicja `%s'" ++ ++#: locale/programs/ld-collate.c:2774 ++#, c-format ++msgid "%s: duplicate declaration of section `%s'" ++msgstr "%s: powtrzona deklaracja sekcji `%s'" ++ ++#: locale/programs/ld-collate.c:2913 ++#, c-format ++msgid "%s: unknown character in collating symbol name" ++msgstr "%s: nieznany znak w nazwie symbolu scalajcego" ++ ++#: locale/programs/ld-collate.c:3045 ++#, c-format ++msgid "%s: unknown character in equivalent definition name" ++msgstr "%s: nieznany znak w nazwie definicji rwnowanoci" ++ ++#: locale/programs/ld-collate.c:3058 ++#, c-format ++msgid "%s: unknown character in equivalent definition value" ++msgstr "%s: nieznany znak w wartoci definicji rwnowanoci" ++ ++#: locale/programs/ld-collate.c:3068 ++#, c-format ++msgid "%s: unknown symbol `%s' in equivalent definition" ++msgstr "%s: nieznany symbol `%s' w definicji rwnowanoci" ++ ++#: locale/programs/ld-collate.c:3077 ++msgid "error while adding equivalent collating symbol" ++msgstr "bd podczas dodawania rwnowanego symbolu scalajcego" ++ ++#: locale/programs/ld-collate.c:3107 ++#, c-format ++msgid "duplicate definition of script `%s'" ++msgstr "powtrzona definicja skryptu `%s'" ++ ++#: locale/programs/ld-collate.c:3155 ++#, c-format ++msgid "%s: unknown section name `%s'" ++msgstr "%s: nieznana nazwa sekcji `%s'" ++ ++#: locale/programs/ld-collate.c:3183 ++#, c-format ++msgid "%s: multiple order definitions for section `%s'" ++msgstr "%s: wielokrotna definicja porzdku dla sekcji `%s'" ++ ++#: locale/programs/ld-collate.c:3208 ++#, c-format ++msgid "%s: invalid number of sorting rules" ++msgstr "%s: bdna liczba regu sortowania" ++ ++#: locale/programs/ld-collate.c:3235 ++#, c-format ++msgid "%s: multiple order definitions for unnamed section" ++msgstr "%s: wielokrotna definicja porzdku dla nie nazwanej sekcji" ++ ++#: locale/programs/ld-collate.c:3289 locale/programs/ld-collate.c:3417 ++#: locale/programs/ld-collate.c:3780 ++#, c-format ++msgid "%s: missing `order_end' keyword" ++msgstr "%s: brak sowa kluczowego `order_end'" ++ ++#: locale/programs/ld-collate.c:3350 ++#, c-format ++msgid "%s: order for collating symbol %.*s not yet defined" ++msgstr "%s: porzdek dla symbolu scalajcego %.*s jeszcze nie zdefiniowany" ++ ++#: locale/programs/ld-collate.c:3368 ++#, c-format ++msgid "%s: order for collating element %.*s not yet defined" ++msgstr "%s: porzdek dla elementu scalajcego %.*s jeszcze nie zdefiniowany" ++ ++#: locale/programs/ld-collate.c:3379 ++#, c-format ++msgid "%s: cannot reorder after %.*s: symbol not known" ++msgstr "%s: nie mona zmieni porzdku po %.*s: nieznany symbol" ++ ++#: locale/programs/ld-collate.c:3431 locale/programs/ld-collate.c:3792 ++#, c-format ++msgid "%s: missing `reorder-end' keyword" ++msgstr "%s: brak sowa kluczowego `reorder-end'" ++ ++#: locale/programs/ld-collate.c:3465 locale/programs/ld-collate.c:3664 ++#, c-format ++msgid "%s: section `%.*s' not known" ++msgstr "%s: nieznana sekcja `%.*s'" ++ ++#: locale/programs/ld-collate.c:3530 ++#, c-format ++msgid "%s: bad symbol <%.*s>" ++msgstr "%s: bdny symbol <%.*s>" ++ ++#: locale/programs/ld-collate.c:3727 ++#, c-format ++msgid "%s: cannot have `%s' as end of ellipsis range" ++msgstr "%s: nie mona uy `%s' jako koca przedziau wyrzutni" ++ ++#: locale/programs/ld-collate.c:3776 ++#, c-format ++msgid "%s: empty category description not allowed" ++msgstr "%s: pusty opis kategorii niedozwolony" ++ ++#: locale/programs/ld-collate.c:3795 ++#, c-format ++msgid "%s: missing `reorder-sections-end' keyword" ++msgstr "%s: brak sowa kluczowego `reorder-sections-end'" ++ ++#: locale/programs/ld-ctype.c:438 ++#, c-format ++msgid "No character set name specified in charmap" ++msgstr "Brak nazwy zestawu znakw w tablicy znakw" ++ ++#: locale/programs/ld-ctype.c:467 ++#, c-format ++msgid "character L'\\u%0*x' in class `%s' must be in class `%s'" ++msgstr "znak L'\\u%0*x' z klasy `%s' musi by w klasie `%s'" ++ ++#: locale/programs/ld-ctype.c:482 ++#, c-format ++msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'" ++msgstr "znak L'\\u%0*x' z klasy `%s' nie moe by w klasie `%s'" ++ ++#: locale/programs/ld-ctype.c:496 locale/programs/ld-ctype.c:554 ++#, c-format ++msgid "internal error in %s, line %u" ++msgstr "bd wewntrzny w %s, linia %u" ++ ++#: locale/programs/ld-ctype.c:525 ++#, c-format ++msgid "character '%s' in class `%s' must be in class `%s'" ++msgstr "znak '%s' z klasy `%s' musi by w klasie `%s'" ++ ++#: locale/programs/ld-ctype.c:541 ++#, c-format ++msgid "character '%s' in class `%s' must not be in class `%s'" ++msgstr "znak '%s' z klasy `%s' nie moe by w klasie `%s'" ++ ++#: locale/programs/ld-ctype.c:571 locale/programs/ld-ctype.c:609 ++#, c-format ++msgid " character not in class `%s'" ++msgstr "znak nie jest w klasie `%s'" ++ ++#: locale/programs/ld-ctype.c:583 locale/programs/ld-ctype.c:620 ++#, c-format ++msgid " character must not be in class `%s'" ++msgstr "znak nie moe by w klasie `%s'" ++ ++#: locale/programs/ld-ctype.c:598 ++#, c-format ++msgid "character not defined in character map" ++msgstr "znak nie zdefiniowany w tablicy znakw" ++ ++#: locale/programs/ld-ctype.c:712 ++#, c-format ++msgid "`digit' category has not entries in groups of ten" ++msgstr "kategoria `digit' nie ma wpisw w grupach po dziesi" ++ ++#: locale/programs/ld-ctype.c:761 ++#, c-format ++msgid "no input digits defined and none of the standard names in the charmap" ++msgstr "brak cyfr wejciowych ani adnej ze standardowych nazw w tablicy znakw" ++ ++#: locale/programs/ld-ctype.c:826 ++#, c-format ++msgid "not all characters used in `outdigit' are available in the charmap" ++msgstr "nie wszystkie znaki uyte w `outdigit' s dostpne w tablicy znakw" ++ ++#: locale/programs/ld-ctype.c:843 ++#, c-format ++msgid "not all characters used in `outdigit' are available in the repertoire" ++msgstr "nie wszystkie znaki uyte w `outdigit' s dostpne w repertuarze" ++ ++#: locale/programs/ld-ctype.c:1243 ++#, c-format ++msgid "character class `%s' already defined" ++msgstr "klasa znakw `%s' jest ju zdefiniowana" ++ ++#: locale/programs/ld-ctype.c:1249 ++#, c-format ++msgid "implementation limit: no more than %Zd character classes allowed" ++msgstr "ograniczenie implementacji: dozwolone maksymalnie %Zd klas znakw" ++ ++#: locale/programs/ld-ctype.c:1275 ++#, c-format ++msgid "character map `%s' already defined" ++msgstr "tablica znakw `%s' jest ju zdefiniowana" ++ ++#: locale/programs/ld-ctype.c:1281 ++#, c-format ++msgid "implementation limit: no more than %d character maps allowed" ++msgstr "ograniczenie implementacji: dozwolone maksymalnie %d tablic znakw" ++ ++#: locale/programs/ld-ctype.c:1546 locale/programs/ld-ctype.c:1671 ++#: locale/programs/ld-ctype.c:1777 locale/programs/ld-ctype.c:2466 ++#: locale/programs/ld-ctype.c:3462 ++#, c-format ++msgid "%s: field `%s' does not contain exactly ten entries" ++msgstr "%s: pole `%s' nie zawiera dokadnie dziesiciu elementw" ++ ++#: locale/programs/ld-ctype.c:1574 locale/programs/ld-ctype.c:2145 ++#, c-format ++msgid "to-value of range is smaller than from-value " ++msgstr "warto-do przedziau jest mniejsza ni warto-od " ++ ++#: locale/programs/ld-ctype.c:1701 ++msgid "start and end character sequence of range must have the same length" ++msgstr "pocztkowa i kocowa sekwencja znakw przedziau musz mie t sam dugo" ++ ++#: locale/programs/ld-ctype.c:1708 ++msgid "to-value character sequence is smaller than from-value sequence" ++msgstr "sekwencja znakw warto-do jest mniejsza ni sekwencja warto-od" ++ ++#: locale/programs/ld-ctype.c:2065 locale/programs/ld-ctype.c:2116 ++msgid "premature end of `translit_ignore' definition" ++msgstr "przedwczesny koniec definicji `translit_ignore'" ++ ++#: locale/programs/ld-ctype.c:2071 locale/programs/ld-ctype.c:2122 ++#: locale/programs/ld-ctype.c:2164 ++msgid "syntax error" ++msgstr "bd skadni" ++ ++#: locale/programs/ld-ctype.c:2298 ++#, c-format ++msgid "%s: syntax error in definition of new character class" ++msgstr "%s: bd skadni w definicji nowej klasy znakw" ++ ++#: locale/programs/ld-ctype.c:2313 ++#, c-format ++msgid "%s: syntax error in definition of new character map" ++msgstr "%s: bd skadni w definicji nowej tablicy znakw" ++ ++#: locale/programs/ld-ctype.c:2488 ++msgid "ellipsis range must be marked by two operands of same type" ++msgstr "przedzia wyrzutni musi by oznaczony dwoma argumentami tego samego typu" ++ ++#: locale/programs/ld-ctype.c:2497 ++msgid "with symbolic name range values the absolute ellipsis `...' must not be used" ++msgstr "dla wartoci przedziau bdcych nazwami nie mona uy bezwzgldnej wyrzutni `...'" ++ ++#: locale/programs/ld-ctype.c:2512 ++msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" ++msgstr "dla wartoci przedziau w kodzie UCS trzeba uy wyrzutni szesnastkowej `..'" ++ ++#: locale/programs/ld-ctype.c:2526 ++msgid "with character code range values one must use the absolute ellipsis `...'" ++msgstr "dla wartoci przedziau z kodami znakw trzeba uy bezwzgldnej wyrzutni `...'" ++ ++#: locale/programs/ld-ctype.c:2677 ++#, c-format ++msgid "duplicated definition for mapping `%s'" ++msgstr "powtrzona definicja odwzorowania `%s'" ++ ++#: locale/programs/ld-ctype.c:2763 locale/programs/ld-ctype.c:2907 ++#, c-format ++msgid "%s: `translit_start' section does not end with `translit_end'" ++msgstr "%s: sekcja `translit_start' nie koczy si przez `translit_end'" ++ ++#: locale/programs/ld-ctype.c:2858 ++#, c-format ++msgid "%s: duplicate `default_missing' definition" ++msgstr "%s: powtrzona definicja `default_missing'" ++ ++#: locale/programs/ld-ctype.c:2863 ++msgid "previous definition was here" ++msgstr "tutaj bya poprzednia definicja" ++ ++#: locale/programs/ld-ctype.c:2885 ++#, c-format ++msgid "%s: no representable `default_missing' definition found" ++msgstr "%s: nie znaleziono dajcej si wyrazi definicji `default_missing'" ++ ++#: locale/programs/ld-ctype.c:3038 ++#, c-format ++msgid "%s: character `%s' not defined in charmap while needed as default value" ++msgstr "%s: znak `%s', wymagany jako domylny, nie zosta zdefiniowany w tablicy znakw" ++ ++#: locale/programs/ld-ctype.c:3043 locale/programs/ld-ctype.c:3127 ++#: locale/programs/ld-ctype.c:3147 locale/programs/ld-ctype.c:3168 ++#: locale/programs/ld-ctype.c:3189 locale/programs/ld-ctype.c:3210 ++#: locale/programs/ld-ctype.c:3231 locale/programs/ld-ctype.c:3271 ++#: locale/programs/ld-ctype.c:3292 locale/programs/ld-ctype.c:3359 ++#, c-format ++msgid "%s: character `%s' in charmap not representable with one byte" ++msgstr "%s: znak `%s' z tablicy znakw nie moe by wyraony w jednym bajcie" ++ ++#: locale/programs/ld-ctype.c:3122 locale/programs/ld-ctype.c:3142 ++#: locale/programs/ld-ctype.c:3184 locale/programs/ld-ctype.c:3205 ++#: locale/programs/ld-ctype.c:3226 locale/programs/ld-ctype.c:3266 ++#: locale/programs/ld-ctype.c:3287 locale/programs/ld-ctype.c:3354 ++#: locale/programs/ld-ctype.c:3396 locale/programs/ld-ctype.c:3421 ++#, c-format ++msgid "%s: character `%s' not defined while needed as default value" ++msgstr "%s: znak `%s', wymagany jako domylny, nie zosta zdefiniowany" ++ ++#: locale/programs/ld-ctype.c:3163 ++#, c-format ++msgid "character `%s' not defined while needed as default value" ++msgstr "znak `%s', wymagany jako domylny, nie zosta zdefiniowany" ++ ++#: locale/programs/ld-ctype.c:3403 locale/programs/ld-ctype.c:3428 ++#, c-format ++msgid "%s: character `%s' needed as default value not representable with one byte" ++msgstr "%s: znak `%s', wymagany jako domylny, nie moe by wyraony w jednym bajcie" ++ ++#: locale/programs/ld-ctype.c:3483 ++#, c-format ++msgid "no output digits defined and none of the standard names in the charmap" ++msgstr "brak definicji cyfr wyjciowych ani adnej standardowej nazwy w tablicy znakw" ++ ++#: locale/programs/ld-ctype.c:3774 ++#, c-format ++msgid "%s: transliteration data from locale `%s' not available" ++msgstr "%s: dane do transliteracji z lokalizacji `%s' niedostpne" ++ ++#: locale/programs/ld-ctype.c:3875 ++#, c-format ++msgid "%s: table for class \"%s\": %lu bytes\n" ++msgstr "%s: tablica dla klasy \"%s\": %lu bajtw\n" ++ ++#: locale/programs/ld-ctype.c:3944 ++#, c-format ++msgid "%s: table for map \"%s\": %lu bytes\n" ++msgstr "%s: tablica dla odwzorowania \"%s\": %lu bajtw\n" ++ ++#: locale/programs/ld-ctype.c:4077 ++#, c-format ++msgid "%s: table for width: %lu bytes\n" ++msgstr "%s: tablica dla szerokoci: %lu bajtw\n" ++ ++#: locale/programs/ld-identification.c:169 ++#, c-format ++msgid "%s: no identification for category `%s'" ++msgstr "%s: brak identyfikacji dla kategorii `%s'" ++ ++#: locale/programs/ld-identification.c:434 ++#, c-format ++msgid "%s: duplicate category version definition" ++msgstr "%s: powtrzona definicja wersji kategorii" ++ ++#: locale/programs/ld-measurement.c:112 ++#, c-format ++msgid "%s: invalid value for field `%s'" ++msgstr "%s: bdna warto dla pola `%s'" ++ ++#: locale/programs/ld-messages.c:113 locale/programs/ld-messages.c:147 ++#, c-format ++msgid "%s: field `%s' undefined" ++msgstr "%s: pole `%s' nie zdefiniowane" ++ ++#: locale/programs/ld-messages.c:120 locale/programs/ld-messages.c:154 ++#, c-format ++msgid "%s: value for field `%s' must not be an empty string" ++msgstr "%s: warto pola `%s' nie moe by acuchem pustym" ++ ++#: locale/programs/ld-messages.c:136 locale/programs/ld-messages.c:170 ++#, c-format ++msgid "%s: no correct regular expression for field `%s': %s" ++msgstr "%s: brak poprawnego wyraenia regularnego dla pola `%s': %s" ++ ++#: locale/programs/ld-monetary.c:222 ++#, c-format ++msgid "%s: value of field `int_curr_symbol' has wrong length" ++msgstr "%s: warto pola `int_curr_symbol' ma z dugo" ++ ++#: locale/programs/ld-monetary.c:235 ++#, c-format ++msgid "%s: value of field `int_curr_symbol' does not correspond to a valid name in ISO 4217" ++msgstr "%s: warto pola `int_curr_symbol' nie jest zgodna z nazwami ISO 4217" ++ ++#: locale/programs/ld-monetary.c:254 locale/programs/ld-numeric.c:117 ++#, c-format ++msgid "%s: value for field `%s' must not be the empty string" ++msgstr "%s: warto pola `%s' nie moe by acuchem pustym" ++ ++#: locale/programs/ld-monetary.c:282 locale/programs/ld-monetary.c:312 ++#, c-format ++msgid "%s: value for field `%s' must be in range %d...%d" ++msgstr "%s: warto pola `%s' musi mieci si w przedziale %d...%d" ++ ++#: locale/programs/ld-monetary.c:744 locale/programs/ld-numeric.c:273 ++#, c-format ++msgid "%s: value for field `%s' must be a single character" ++msgstr "%s: warto pola `%s' musi by pojedynczym znakiem" ++ ++#: locale/programs/ld-monetary.c:841 locale/programs/ld-numeric.c:317 ++#, c-format ++msgid "%s: `-1' must be last entry in `%s' field" ++msgstr "%s: `-1' musi by ostatnim elementem w polu `%s'" ++ ++#: locale/programs/ld-monetary.c:863 locale/programs/ld-numeric.c:334 ++#, c-format ++msgid "%s: values for field `%s' must be smaller than 127" ++msgstr "%s: wartoci pola `%s' musz by mniejsze ni 127" ++ ++#: locale/programs/ld-monetary.c:906 ++msgid "conversion rate value cannot be zero" ++msgstr "warto stopnia konwersji nie moe by zerem" ++ ++#: locale/programs/ld-name.c:128 locale/programs/ld-telephone.c:125 ++#: locale/programs/ld-telephone.c:148 ++#, c-format ++msgid "%s: invalid escape sequence in field `%s'" ++msgstr "%s: niepoprawna sekwencja escape w polu `%s'" ++ ++#: locale/programs/ld-time.c:246 ++#, c-format ++msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'" ++msgstr "%s: znacznik kierunku w acuchu %Zd w polu `era' nie jest '+' ani '-'" ++ ++#: locale/programs/ld-time.c:257 ++#, c-format ++msgid "%s: direction flag in string %Zd in `era' field is not a single character" ++msgstr "%s: znacznik kierunku w acuchu %Zd w polu `era' nie jest pojedynczym znakiem" ++ ++#: locale/programs/ld-time.c:270 ++#, c-format ++msgid "%s: invalid number for offset in string %Zd in `era' field" ++msgstr "%s: niepoprawna warto przesunicia w acuchu %Zd w polu `era'" ++ ++#: locale/programs/ld-time.c:278 ++#, c-format ++msgid "%s: garbage at end of offset value in string %Zd in `era' field" ++msgstr "%s: mieci na kocu wartoci przesunicia w acuchu %Zd w polu `era'" ++ ++#: locale/programs/ld-time.c:329 ++#, c-format ++msgid "%s: invalid starting date in string %Zd in `era' field" ++msgstr "%s: niepoprawna data pocztkowa w acuchu %Zd w polu `era'" ++ ++#: locale/programs/ld-time.c:338 ++#, c-format ++msgid "%s: garbage at end of starting date in string %Zd in `era' field " ++msgstr "%s: mieci na kocu daty pocztkowej w acuchu %Zd w polu `era' " ++ ++#: locale/programs/ld-time.c:357 ++#, c-format ++msgid "%s: starting date is invalid in string %Zd in `era' field" ++msgstr "%s: niepoprawna data pocztkowa w acuchu %Zd w polu `era'" ++ ++#: locale/programs/ld-time.c:406 ++#, c-format ++msgid "%s: invalid stopping date in string %Zd in `era' field" ++msgstr "%s: niepoprawna data kocowa w acuchu %Zd w polu `era'" ++ ++#: locale/programs/ld-time.c:415 ++#, c-format ++msgid "%s: garbage at end of stopping date in string %Zd in `era' field" ++msgstr "%s: mieci na kocu daty kocowej w acuchu %Zd w polu `era'" ++ ++#: locale/programs/ld-time.c:434 ++#, c-format ++msgid "%s: stopping date is invalid in string %Zd in `era' field" ++msgstr "%s: niepoprawna data kocowa w acuchu %Zd w polu `era'" ++ ++#: locale/programs/ld-time.c:443 ++#, c-format ++msgid "%s: missing era name in string %Zd in `era' field" ++msgstr "%s: brak nazwy ery w acuchu %Zd w polu `era'" ++ ++#: locale/programs/ld-time.c:455 ++#, c-format ++msgid "%s: missing era format in string %Zd in `era' field" ++msgstr "%s: brak formatu ery w acuchu %Zd w polu `era'" ++ ++#: locale/programs/ld-time.c:496 ++#, c-format ++msgid "%s: third operand for value of field `%s' must not be larger than %d" ++msgstr "%s: warto trzeciego argumentu pola `%s' nie moe by wiksza ni %d" ++ ++#: locale/programs/ld-time.c:504 locale/programs/ld-time.c:512 ++#, c-format ++msgid "%s: values of field `%s' must not be larger than %d" ++msgstr "%s: wartoci pola `%s' nie mog by wiksze ni %d" ++ ++#: locale/programs/ld-time.c:520 ++#, c-format ++msgid "%s: values for field `%s' must not be larger than %d" ++msgstr "%s: wartoci w polu `%s' nie mog by wiksze ni %d" ++ ++#: locale/programs/ld-time.c:1003 ++#, c-format ++msgid "%s: too few values for field `%s'" ++msgstr "%s: zbyt mao wartoci w polu `%s'" ++ ++#: locale/programs/ld-time.c:1048 ++msgid "extra trailing semicolon" ++msgstr "nadmiarowy rednik na kocu" ++ ++#: locale/programs/ld-time.c:1051 ++#, c-format ++msgid "%s: too many values for field `%s'" ++msgstr "%s: zbyt duo wartoci w polu `%s'" ++ ++#: locale/programs/linereader.c:129 ++msgid "trailing garbage at end of line" ++msgstr "mieci na kocu linii" ++ ++#: locale/programs/linereader.c:297 ++msgid "garbage at end of number" ++msgstr "mieci na kocu liczby" ++ ++#: locale/programs/linereader.c:409 ++msgid "garbage at end of character code specification" ++msgstr "mieci na kocu specyfikacji kodu znaku" ++ ++#: locale/programs/linereader.c:495 ++msgid "unterminated symbolic name" ++msgstr "nie zakoczona nazwa symboliczna" ++ ++#: locale/programs/linereader.c:622 ++msgid "illegal escape sequence at end of string" ++msgstr "niepoprawna sekwencja escape na kocu acucha" ++ ++#: locale/programs/linereader.c:626 locale/programs/linereader.c:854 ++msgid "unterminated string" ++msgstr "nie zakoczony acuch" ++ ++#: locale/programs/linereader.c:668 ++msgid "non-symbolic character value should not be used" ++msgstr "nie symboliczna warto znaku nie powinna by uyta" ++ ++#: locale/programs/linereader.c:815 ++#, c-format ++msgid "symbol `%.*s' not in charmap" ++msgstr "brak symbolu `%.*s' w tablicy znakw" ++ ++#: locale/programs/linereader.c:836 ++#, c-format ++msgid "symbol `%.*s' not in repertoire map" ++msgstr "brak symbolu `%.*s' w tablicy repertuaru" ++ ++#: locale/programs/locale.c:73 ++msgid "System information:" ++msgstr "Informacja o systemie:" ++ ++#: locale/programs/locale.c:75 ++msgid "Write names of available locales" ++msgstr "Wypisanie nazw dostpnych lokalizacji" ++ ++#: locale/programs/locale.c:77 ++msgid "Write names of available charmaps" ++msgstr "Wypisanie nazw dostpnych tablic znakw" ++ ++#: locale/programs/locale.c:78 ++msgid "Modify output format:" ++msgstr "Modyfikacja formatu wyjciowego:" ++ ++#: locale/programs/locale.c:79 ++msgid "Write names of selected categories" ++msgstr "Wypisanie nazw wybranych kategorii" ++ ++#: locale/programs/locale.c:80 ++msgid "Write names of selected keywords" ++msgstr "Wypisanie nazw wybranych sw kluczowych" ++ ++#: locale/programs/locale.c:81 ++msgid "Print more information" ++msgstr "Wypisanie wikszej iloci informacji" ++ ++#: locale/programs/locale.c:86 ++msgid "" ++"Get locale-specific information. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Pobranie informacji dotyczcych lokalizacji. Instrukcje dotyczce zgaszania bdw znajduj si pod adresem:\n" ++".\n" ++ ++#: locale/programs/locale.c:91 ++msgid "" ++"NAME\n" ++"[-a|-m]" ++msgstr "" ++"NAZWA\n" ++"[-a|-m]" ++ ++#: locale/programs/locale.c:192 ++#, c-format ++msgid "Cannot set LC_CTYPE to default locale" ++msgstr "Nie mona ustawi LC_CTYPE na domyln lokalizacj" ++ ++#: locale/programs/locale.c:194 ++#, c-format ++msgid "Cannot set LC_MESSAGES to default locale" ++msgstr "Nie mona ustawi LC_MESSAGES na domyln lokalizacj" ++ ++#: locale/programs/locale.c:207 ++#, c-format ++msgid "Cannot set LC_COLLATE to default locale" ++msgstr "Nie mona ustawi LC_COLLATE na domyln lokalizacj" ++ ++#: locale/programs/locale.c:223 ++#, c-format ++msgid "Cannot set LC_ALL to default locale" ++msgstr "Nie mona ustawi LC_ALL na domyln lokalizacj" ++ ++#: locale/programs/locale.c:499 ++#, c-format ++msgid "while preparing output" ++msgstr "podczas przygotowywania wynikw" ++ ++#: locale/programs/localedef.c:119 ++msgid "Input Files:" ++msgstr "Pliki wejciowe:" ++ ++#: locale/programs/localedef.c:121 ++msgid "Symbolic character names defined in FILE" ++msgstr "Nazwy symboliczne znakw s zdefiniowane w PLIKU" ++ ++#: locale/programs/localedef.c:122 ++msgid "Source definitions are found in FILE" ++msgstr "Definicje rdowe znajduj si w PLIKU" ++ ++#: locale/programs/localedef.c:124 ++msgid "FILE contains mapping from symbolic names to UCS4 values" ++msgstr "PLIK zawiera odwzorowania nazw symbolicznych na wartoci UCS4" ++ ++#: locale/programs/localedef.c:128 ++msgid "Create output even if warning messages were issued" ++msgstr "Tworzenie pliku wyjciowego nawet jeli wystpiy ostrzeenia" ++ ++#: locale/programs/localedef.c:129 ++msgid "Create old-style tables" ++msgstr "Tworzenie tablic w starym stylu" ++ ++#: locale/programs/localedef.c:130 ++msgid "Optional output file prefix" ++msgstr "Opcjonalny prefiks plikw wyjciowych" ++ ++#: locale/programs/localedef.c:131 ++msgid "Be strictly POSIX conform" ++msgstr "cise przestrzeganie POSIX" ++ ++#: locale/programs/localedef.c:133 ++msgid "Suppress warnings and information messages" ++msgstr "Pominicie wywietlania ostrzee i informacji" ++ ++#: locale/programs/localedef.c:134 ++msgid "Print more messages" ++msgstr "Wywietlanie wicej liczby komunikatw" ++ ++#: locale/programs/localedef.c:135 ++msgid "Archive control:" ++msgstr "Kontrola archiwum:" ++ ++#: locale/programs/localedef.c:137 ++msgid "Don't add new data to archive" ++msgstr "Nie dodawanie nowych danych do archiwum" ++ ++#: locale/programs/localedef.c:139 ++msgid "Add locales named by parameters to archive" ++msgstr "Dodanie do archiwum lokalizacji okrelonych parametrami" ++ ++#: locale/programs/localedef.c:140 ++msgid "Replace existing archive content" ++msgstr "Zastpienie aktualnej zawartoci archiwum" ++ ++#: locale/programs/localedef.c:142 ++msgid "Remove locales named by parameters from archive" ++msgstr "Usunicie z archiwum lokalizacji okrelonych parametrami" ++ ++#: locale/programs/localedef.c:143 ++msgid "List content of archive" ++msgstr "Lista zawartoci archiwum" ++ ++#: locale/programs/localedef.c:145 ++msgid "locale.alias file to consult when making archive" ++msgstr "Plik locale.alias uywany przy tworzeniu archiwum" ++ ++#: locale/programs/localedef.c:150 ++msgid "Compile locale specification" ++msgstr "Kompilowanie specyfikacji lokalizacji" ++ ++#: locale/programs/localedef.c:153 ++msgid "" ++"NAME\n" ++"[--add-to-archive|--delete-from-archive] FILE...\n" ++"--list-archive [FILE]" ++msgstr "" ++"NAZWA\n" ++"[--add-to-archive|--delete-from-archive] PLIK...\n" ++"--list-archive [PLIK]" ++ ++#: locale/programs/localedef.c:231 ++#, c-format ++msgid "cannot create directory for output files" ++msgstr "nie mona utworzy katalogu na pliki wyjciowe" ++ ++#: locale/programs/localedef.c:242 ++#, c-format ++msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" ++msgstr "OSTATECZNE: system nie definiuje `_POSIX2_LOCALEDEF'" + +-#. TRANS Deadlock avoided; allocating a system resource would have resulted in a +-#. TRANS deadlock situation. The system does not guarantee that it will notice +-#. TRANS all such situations. This error means you got lucky and the system +-#. TRANS noticed; it might just hang. @xref{File Locks}, for an example. +-#: stdio-common/../sysdeps/gnu/errlist.c:130 +-msgid "Resource deadlock avoided" +-msgstr "Uniknito zakleszczenia zasobw" ++#: locale/programs/localedef.c:256 locale/programs/localedef.c:272 ++#: locale/programs/localedef.c:598 locale/programs/localedef.c:618 ++#, c-format ++msgid "cannot open locale definition file `%s'" ++msgstr "nie mona otworzy pliku definicji lokalizacji `%s'" ++ ++#: locale/programs/localedef.c:284 ++#, c-format ++msgid "cannot write output files to `%s'" ++msgstr "nie mona zapisa plikw wyjciowych do `%s'" ++ ++# wyjatkowo nieladne tlumaczenia repertoire i locale -PK ++# XXX ++#: locale/programs/localedef.c:365 ++#, c-format ++msgid "" ++"System's directory for character maps : %s\n" ++" repertoire maps: %s\n" ++" locale path : %s\n" ++"%s" ++msgstr "" ++"Katalog systemowy dla tablic znakw: %s\n" ++" tablic repertuarw: %s\n" ++" cieka lokalizacji: %s\n" ++"%s" ++ ++#: locale/programs/localedef.c:566 ++#, c-format ++msgid "circular dependencies between locale definitions" ++msgstr "zaptlone zalenoci pomidzy definicjami lokalizacji" ++ ++#: locale/programs/localedef.c:572 ++#, c-format ++msgid "cannot add already read locale `%s' a second time" ++msgstr "nie mona doda po raz drugi ju odczytanej lokalizacji `%s'" ++ ++#: locale/programs/locarchive.c:87 locale/programs/locarchive.c:256 ++#, c-format ++msgid "cannot create temporary file" ++msgstr "nie mona utworzy pliku tymczasowego" ++ ++#: locale/programs/locarchive.c:116 locale/programs/locarchive.c:302 ++#, c-format ++msgid "cannot initialize archive file" ++msgstr "nie mona zainicjowa pliku archiwum" ++ ++#: locale/programs/locarchive.c:123 locale/programs/locarchive.c:309 ++#, c-format ++msgid "cannot resize archive file" ++msgstr "nie mona zmieni rozmiaru pliku archiwum" ++ ++#: locale/programs/locarchive.c:132 locale/programs/locarchive.c:318 ++#: locale/programs/locarchive.c:506 ++#, c-format ++msgid "cannot map archive header" ++msgstr "nie mona odwzorowa nagwka archiwum" ++ ++#: locale/programs/locarchive.c:154 ++#, c-format ++msgid "failed to create new locale archive" ++msgstr "tworzenie nowego archiwum lokalizacji nie powiodo si" ++ ++#: locale/programs/locarchive.c:166 ++#, c-format ++msgid "cannot change mode of new locale archive" ++msgstr "nie mona zmieni uprawnie nowego archiwum lokalizacji" ++ ++#: locale/programs/locarchive.c:250 ++#, c-format ++msgid "cannot map locale archive file" ++msgstr "nie mona odwzorowa pliku archiwum lokalizacji" ++ ++#: locale/programs/locarchive.c:326 ++#, c-format ++msgid "cannot lock new archive" ++msgstr "nie mona zablokowa nowego archiwum" ++ ++#: locale/programs/locarchive.c:375 ++#, c-format ++msgid "cannot extend locale archive file" ++msgstr "nie mona rozszerzy pliku archiwum lokalizacji" ++ ++#: locale/programs/locarchive.c:384 ++#, c-format ++msgid "cannot change mode of resized locale archive" ++msgstr "nie mona zmieni uprawnie archiwum lokalizacji po zmianie rozmiaru" ++ ++#: locale/programs/locarchive.c:392 ++#, c-format ++msgid "cannot rename new archive" ++msgstr "nie mona zmieni nazwy nowego archiwum" ++ ++#: locale/programs/locarchive.c:445 ++#, c-format ++msgid "cannot open locale archive \"%s\"" ++msgstr "nie mona otworzy archiwum lokalizacji \"%s\"" ++ ++#: locale/programs/locarchive.c:450 ++#, c-format ++msgid "cannot stat locale archive \"%s\"" ++msgstr "nie mona wykona stat na archiwum lokalizacji \"%s\"" ++ ++#: locale/programs/locarchive.c:469 ++#, c-format ++msgid "cannot lock locale archive \"%s\"" ++msgstr "nie mona zablokowa archiwum lokalizacji \"%s\"" ++ ++#: locale/programs/locarchive.c:492 ++#, c-format ++msgid "cannot read archive header" ++msgstr "nie mona odczyta nagwka archiwum" ++ ++#: locale/programs/locarchive.c:552 ++#, c-format ++msgid "locale '%s' already exists" ++msgstr "lokalizacja '%s' ju istnieje" ++ ++#: locale/programs/locarchive.c:783 locale/programs/locarchive.c:798 ++#: locale/programs/locarchive.c:810 locale/programs/locarchive.c:822 ++#: locale/programs/locfile.c:343 ++#, c-format ++msgid "cannot add to locale archive" ++msgstr "nie mona doda do archiwum lokalizacji" ++ ++#: locale/programs/locarchive.c:977 ++#, c-format ++msgid "locale alias file `%s' not found" ++msgstr "nie znaleziono pliku aliasw lokalizacji `%s'" ++ ++#: locale/programs/locarchive.c:1121 ++#, c-format ++msgid "Adding %s\n" ++msgstr "Dodawanie %s\n" ++ ++#: locale/programs/locarchive.c:1127 ++#, c-format ++msgid "stat of \"%s\" failed: %s: ignored" ++msgstr "stat na \"%s\" nie powiodo si: %s: zignorowano" ++ ++#: locale/programs/locarchive.c:1133 ++#, c-format ++msgid "\"%s\" is no directory; ignored" ++msgstr "\"%s\" nie jest katalogiem; zignorowano" ++ ++#: locale/programs/locarchive.c:1140 ++#, c-format ++msgid "cannot open directory \"%s\": %s: ignored" ++msgstr "nie mona otworzy katalogu \"%s\": %s: zignorowano" ++ ++#: locale/programs/locarchive.c:1212 ++#, c-format ++msgid "incomplete set of locale files in \"%s\"" ++msgstr "niekompletny zestaw plikw lokalizacji w \"%s\"" ++ ++#: locale/programs/locarchive.c:1276 ++#, c-format ++msgid "cannot read all files in \"%s\": ignored" ++msgstr "nie mona przeczyta wszystkich plikw w \"%s\": zignorowano" ++ ++#: locale/programs/locarchive.c:1346 ++#, c-format ++msgid "locale \"%s\" not in archive" ++msgstr "lokalizacji \"%s\" nie ma w archiwum" ++ ++#: locale/programs/locfile.c:131 ++#, c-format ++msgid "argument to `%s' must be a single character" ++msgstr "argument `%s' musi by pojedynczym znakiem" ++ ++#: locale/programs/locfile.c:251 ++msgid "syntax error: not inside a locale definition section" ++msgstr "bd skadni: poza sekcj definicji lokalizacji" ++ ++#: locale/programs/locfile.c:625 ++#, c-format ++msgid "cannot open output file `%s' for category `%s'" ++msgstr "nie mona otworzy pliku wyjciowego `%s' dla kategorii `%s'" ++ ++#: locale/programs/locfile.c:649 ++#, c-format ++msgid "failure while writing data for category `%s'" ++msgstr "niepowodzenie podczas zapisu danych dla kategorii `%s'" ++ ++#: locale/programs/locfile.c:745 ++#, c-format ++msgid "cannot create output file `%s' for category `%s'" ++msgstr "nie mona utworzy pliku wyjciowego `%s' dla kategorii `%s'" ++ ++#: locale/programs/locfile.c:781 ++msgid "expect string argument for `copy'" ++msgstr "spodziewanym argumentem dla `copy' jest acuch" ++ ++#: locale/programs/locfile.c:785 ++msgid "locale name should consist only of portable characters" ++msgstr "nazwa lokalizacji powinna skada si wycznie ze znakw przenonych" ++ ++#: locale/programs/locfile.c:804 ++msgid "no other keyword shall be specified when `copy' is used" ++msgstr "adne inne sowo kluczowe nie powinno wystpowa razem z `copy'" ++ ++#: locale/programs/repertoire.c:229 locale/programs/repertoire.c:270 ++#: locale/programs/repertoire.c:295 ++#, c-format ++msgid "syntax error in repertoire map definition: %s" ++msgstr "bd skadni w definicji tablicy repertuaru: %s" ++ ++#: locale/programs/repertoire.c:271 ++msgid "no or value given" ++msgstr "nie podano adnych wartoci lub " ++ ++#: locale/programs/repertoire.c:331 ++#, c-format ++msgid "cannot save new repertoire map" ++msgstr "nie mona zachowa nowej tablicy repertuaru" ++ ++#: locale/programs/repertoire.c:342 ++#, c-format ++msgid "repertoire map file `%s' not found" ++msgstr "nie znaleziono pliku tablicy repertuaru `%s'" ++ ++#: locale/programs/repertoire.c:449 ++#, c-format ++msgid "<%s> and <%s> are invalid names for range" ++msgstr "<%s> i <%s> s niepoprawnymi nazwami dla przedziau" ++ ++#: locale/programs/repertoire.c:456 ++msgid "upper limit in range is not smaller then lower limit" ++msgstr "grna granica przedziau nie jest mniejsza ni dolna" ++ ++#: login/programs/pt_chown.c:74 ++#, c-format ++msgid "Set the owner, group and access permission of the slave pseudo terminal corresponding to the master pseudo terminal passed on file descriptor `%d'. This is the helper program for the `grantpt' function. It is not intended to be run directly from the command line.\n" ++msgstr "Ustawienie waciciela, grupy i praw dostpu podrzdnego pseudoterminala odpowiadajcego nadrzdnemu pseudoterminalowi przekazanemu w deskryptorze pliku `%d'. Jest to program pomocniczy dla funkcji `grantpt'. Nie jest przeznaczony do uruchamiania bezporednio z linii polece.\n" ++ ++#: login/programs/pt_chown.c:84 ++#, c-format ++msgid "" ++"The owner is set to the current user, the group is set to `%s', and the access permission is set to `%o'.\n" ++"\n" ++"%s" ++msgstr "" ++"Waciciela ustawiono na biecego uytkownika, grup na `%s', a prawa dostpu na `%o'.\n" ++"\n" ++"%s" ++ ++#: login/programs/pt_chown.c:161 ++#, c-format ++msgid "too many arguments" ++msgstr "za duo argumentw" ++ ++#: login/programs/pt_chown.c:169 ++#, c-format ++msgid "needs to be installed setuid `root'" ++msgstr "musi by zainstalowany jako setuid `root'" ++ ++#: malloc/mcheck.c:324 ++msgid "memory is consistent, library is buggy\n" ++msgstr "pami jest spjna, biblioteka zawiera bdy\n" ++ ++#: malloc/mcheck.c:327 ++msgid "memory clobbered before allocated block\n" ++msgstr "pami zostaa uszkodzona przed przydzielonym blokiem\n" ++ ++#: malloc/mcheck.c:330 ++msgid "memory clobbered past end of allocated block\n" ++msgstr "pami zostaa uszkodzona za przydzielonym blokiem\n" ++ ++#: malloc/mcheck.c:333 ++msgid "block freed twice\n" ++msgstr "blok zwalniany dwa razy\n" ++ ++#: malloc/mcheck.c:336 ++msgid "bogus mcheck_status, library is buggy\n" ++msgstr "bdny mcheck_status, biblioteka zawiera bdy\n" ++ ++#: malloc/memusage.sh:27 ++#, fuzzy ++msgid "Try `memusage --help' for more information." ++msgstr "Polecenie \\`memusage --help' pozwoli uzyska wicej informacji." ++ ++#: malloc/memusage.sh:33 ++#, fuzzy ++msgid "memusage: option `$1' requires an argument" ++msgstr "memusage: opcja \\`$1' musi mie argument" ++ ++#: malloc/memusage.sh:39 ++msgid "" ++"Usage: memusage [OPTION]... PROGRAM [PROGRAMOPTION]...\n" ++"Profile memory usage of PROGRAM.\n" ++"\n" ++" -n,--progname=NAME Name of the program file to profile\n" ++" -p,--png=FILE Generate PNG graphic and store it in FILE\n" ++" -d,--data=FILE Generate binary data file and store it in FILE\n" ++" -u,--unbuffered Don't buffer output\n" ++" -b,--buffer=SIZE Collect SIZE entries before writing them out\n" ++" --no-timer Don't collect additional information though timer\n" ++" -m,--mmap Also trace mmap & friends\n" ++"\n" ++" -?,--help Print this help and exit\n" ++" --usage Give a short usage message\n" ++" -V,--version Print version information and exit\n" ++"\n" ++" The following options only apply when generating graphical output:\n" ++" -t,--time-based Make graph linear in time\n" ++" -T,--total Also draw graph of total memory use\n" ++" --title=STRING Use STRING as title of the graph\n" ++" -x,--x-size=SIZE Make graphic SIZE pixels wide\n" ++" -y,--y-size=SIZE Make graphic SIZE pixels high\n" ++"\n" ++"Mandatory arguments to long options are also mandatory for any corresponding\n" ++"short options.\n" ++"\n" ++"For bug reporting instructions, please see:\n" ++"." ++msgstr "" ++"Skadnia: memusage [OPCJA]... PROGRAM [OPCJA-PROGRAMU]...\n" ++"Profilowanie wykorzystania pamici przez PROGRAM.\n" ++"\n" ++" -n,--progname=NAZWA Nazwa pliku programu do profilowania\n" ++" -p,--png=PLIK Wygenerowanie grafiki PNG i zapisanie jej do PLIKU\n" ++" -d,--data=PLIK Wygenerowanie danych binarnych i zapisanie do PLIKU\n" ++" -u,--unbuffered Nie buforowanie wyjcia\n" ++" -b,--buffer=ROZMIAR Zgromadzenie tylu wpisw przed zapisaniem ich\n" ++" --no-timer Nie zbieranie dodatkowych informacji z uyciem zegara\n" ++" -m,--mmap ledzenie take mmap i podobnych funkcji\n" ++"\n" ++" -?,--help Wypisanie tego opisu i zakoczenie\n" ++" --usage Podanie krtkiego opisu skadni polecenia\n" ++" -V,--version Wypisanie informacji o wersji i zakoczenie\n" ++"\n" ++" Nastpujce opcje odnosz si tylko do generowania graficznego wyjcia:\n" ++" -t,--time-based Utworzenie wykresu liniowego w czasie\n" ++" -T,--total Narysowanie take wykresu cakowitego uycia pamici\n" ++" --title=ACUCH Uycie ACUCHA jako tytuu wykresu\n" ++" -x,--x-size=ROZMIAR Utworzenie wykresu o podanej szerokoci w pikselach\n" ++" -y,--y-size=ROZMIAR Utworzenie wykresu o podanej wysokoci w pikselach\n" ++"\n" ++"Argumenty obowizkowe dla dugich opcji s obowizkowe rwnie dla odpowiednich\n" ++"krtkich opcji.\n" ++"\n" ++"Informacje na temat zgaszania bdw mona znale pod adresem:\n" ++".\\n" ++ ++#: malloc/memusage.sh:90 ++msgid "" ++"Syntax: memusage [--data=FILE] [--progname=NAME] [--png=FILE] [--unbuffered]\n" ++" [--buffer=SIZE] [--no-timer] [--time-based] [--total]\n" ++" [--title=STRING] [--x-size=SIZE] [--y-size=SIZE]\n" ++" PROGRAM [PROGRAMOPTION]..." ++msgstr "" ++"Skadnia: memusage [--data=PLIK] [--progname=NAZWA] [--png=PLIK] [--unbuffered]\n" ++" [--buffer=ROZMIAR] [--no-timer] [--time-based] [--total]\n" ++" [--title=ACUCH] [--x-size=ROZMIAR] [--y-size=ROZMIAR]\n" ++" PROGRAM [OPCJA-PROGRAMU]..." ++ ++#: malloc/memusage.sh:182 ++#, fuzzy ++msgid "memusage: option `${1##*=}' is ambiguous" ++msgstr "memusage: opcja \\`${1##*=}' jest niejednoznaczna" ++ ++#: malloc/memusage.sh:191 ++#, fuzzy ++msgid "memusage: unrecognized option `$1'" ++msgstr "memusage: nieznana opcja \\`$1'" ++ ++#: malloc/memusage.sh:204 ++msgid "No program name given" ++msgstr "Nie podano nazwy programu" ++ ++#: malloc/memusagestat.c:53 ++msgid "Name output file" ++msgstr "Nazwa pliku wyjciowego" ++ ++#: malloc/memusagestat.c:54 ++msgid "Title string used in output graphic" ++msgstr "acuch tytuowy uywany w wynikowym wykresie" ++ ++#: malloc/memusagestat.c:55 ++msgid "Generate output linear to time (default is linear to number of function calls)" ++msgstr "Generowanie wyjcia liniowo po czasie (domylnie: liniowo po liczbie wywoa funkcji)" ++ ++#: malloc/memusagestat.c:57 ++msgid "Also draw graph for total memory consumption" ++msgstr "Narysowanie take wykresu cakowitego uycia pamici" + +-#. TRANS No memory available. The system cannot allocate more virtual memory +-#. TRANS because its capacity is full. +-#: stdio-common/../sysdeps/gnu/errlist.c:140 +-msgid "Cannot allocate memory" +-msgstr "Nie mona przydzieli pamici" ++#: malloc/memusagestat.c:58 ++msgid "make output graphic VALUE pixel wide" ++msgstr "stworzenie wykresu szerokoci VALUE pikseli" + +-#. TRANS Permission denied; the file permissions do not allow the attempted operation. +-#: stdio-common/../sysdeps/gnu/errlist.c:149 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:43 +-#: nis/nis_error.c:39 nis/ypclnt.c:808 +-msgid "Permission denied" +-msgstr "Brak dostpu" ++#: malloc/memusagestat.c:59 ++msgid "make output graphic VALUE pixel high" ++msgstr "stworzenie wykresu szerokoci VALUE pikseli" + +-#. TRANS Bad address; an invalid pointer was detected. +-#. TRANS In the GNU system, this error never happens; you get a signal instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:159 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:44 +-msgid "Bad address" +-msgstr "Bdny adres" ++#: malloc/memusagestat.c:64 ++msgid "Generate graphic from memory profiling data" ++msgstr "Wygenerowanie wykresu z danych profilowania pamici" + +-#. TRANS A file that isn't a block special file was given in a situation that +-#. TRANS requires one. For example, trying to mount an ordinary file as a file +-#. TRANS system in Unix gives this error. +-#: stdio-common/../sysdeps/gnu/errlist.c:170 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:45 +-msgid "Block device required" +-msgstr "Wymagane urzdzenie blokowe" ++#: malloc/memusagestat.c:67 ++msgid "DATAFILE [OUTFILE]" ++msgstr "PLIK-DANYCH [PLIK-WYJCIOWY]" + +-#. TRANS Resource busy; a system resource that can't be shared is already in use. +-#. TRANS For example, if you try to delete a file that is the root of a currently +-#. TRANS mounted filesystem, you get this error. +-#: stdio-common/../sysdeps/gnu/errlist.c:181 +-msgid "Device or resource busy" +-msgstr "Urzdzenie lub zasoby zajte" ++#: misc/error.c:118 timezone/zic.c:396 ++msgid "Unknown system error" ++msgstr "Nieznany bd systemowy" + +-#. TRANS File exists; an existing file was specified in a context where it only +-#. TRANS makes sense to specify a new file. +-#: stdio-common/../sysdeps/gnu/errlist.c:191 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:47 +-msgid "File exists" +-msgstr "Plik istnieje" ++#: nis/nis_callback.c:189 ++msgid "unable to free arguments" ++msgstr "zwolnienie argumentw niemoliwe" + +-#. TRANS An attempt to make an improper link across file systems was detected. +-#. TRANS This happens not only when you use @code{link} (@pxref{Hard Links}) but +-#. TRANS also when you rename a file with @code{rename} (@pxref{Renaming Files}). +-#: stdio-common/../sysdeps/gnu/errlist.c:202 +-msgid "Invalid cross-device link" +-msgstr "Bdne dowizanie midzy urzdzeniami" ++#: nis/nis_error.h:1 nis/ypclnt.c:822 nis/ypclnt.c:910 posix/regcomp.c:132 ++#: sysdeps/gnu/errlist.c:20 ++msgid "Success" ++msgstr "Sukces" + +-#. TRANS The wrong type of device was given to a function that expects a +-#. TRANS particular sort of device. +-#: stdio-common/../sysdeps/gnu/errlist.c:212 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:49 +-msgid "No such device" +-msgstr "Nie ma takiego urzdzenia" ++#: nis/nis_error.h:2 ++msgid "Probable success" ++msgstr "Prawdopodobnie sukces" + +-#. TRANS A file that isn't a directory was specified when a directory is required. +-#: stdio-common/../sysdeps/gnu/errlist.c:221 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:50 +-msgid "Not a directory" +-msgstr "Nie jest katalogiem" ++#: nis/nis_error.h:3 ++msgid "Not found" ++msgstr "Nie znaleziono" + +-#. TRANS File is a directory; you cannot open a directory for writing, +-#. TRANS or create or remove hard links to it. +-#: stdio-common/../sysdeps/gnu/errlist.c:231 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:51 +-msgid "Is a directory" +-msgstr "Jest katalogiem" ++#: nis/nis_error.h:4 ++msgid "Probably not found" ++msgstr "Prawdopodobnie nie znaleziony" + +-#. TRANS Invalid argument. This is used to indicate various kinds of problems +-#. TRANS with passing the wrong argument to a library function. +-#: stdio-common/../sysdeps/gnu/errlist.c:241 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:52 +-msgid "Invalid argument" +-msgstr "Zy argument" ++#: nis/nis_error.h:5 ++msgid "Cache expired" ++msgstr "Dezaktualizacja bufora cache" + +-#. TRANS The current process has too many files open and can't open any more. +-#. TRANS Duplicate descriptors do count toward this limit. +-#. TRANS +-#. TRANS In BSD and GNU, the number of open files is controlled by a resource +-#. TRANS limit that can usually be increased. If you get this error, you might +-#. TRANS want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited; +-#. TRANS @pxref{Limits on Resources}. +-#: stdio-common/../sysdeps/gnu/errlist.c:256 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:54 +-msgid "Too many open files" +-msgstr "Za duo otwartych plikw" ++#: nis/nis_error.h:6 ++msgid "NIS+ servers unreachable" ++msgstr "Serwery NIS+ s niedostpne" + +-#. TRANS There are too many distinct file openings in the entire system. Note +-#. TRANS that any number of linked channels count as just one file opening; see +-#. TRANS @ref{Linked Channels}. This error never occurs in the GNU system. +-#: stdio-common/../sysdeps/gnu/errlist.c:267 +-msgid "Too many open files in system" +-msgstr "Za duo otwartych plikw w systemie" ++#: nis/nis_error.h:7 ++msgid "Unknown object" ++msgstr "Nieznany obiekt" + +-#. TRANS Inappropriate I/O control operation, such as trying to set terminal +-#. TRANS modes on an ordinary file. +-#: stdio-common/../sysdeps/gnu/errlist.c:277 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:55 +-msgid "Inappropriate ioctl for device" +-msgstr "Niewaciwy ioctl dla urzdzenia" ++#: nis/nis_error.h:8 ++msgid "Server busy, try again" ++msgstr "Serwer zajty, trzeba sprbowa ponownie" + +-#. TRANS An attempt to execute a file that is currently open for writing, or +-#. TRANS write to a file that is currently being executed. Often using a +-#. TRANS debugger to run a program is considered having it open for writing and +-#. TRANS will cause this error. (The name stands for ``text file busy''.) This +-#. TRANS is not an error in the GNU system; the text is copied as necessary. +-#: stdio-common/../sysdeps/gnu/errlist.c:290 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:56 +-msgid "Text file busy" +-msgstr "Plik wykonywalny zajty" ++#: nis/nis_error.h:9 ++msgid "Generic system error" ++msgstr "Oglny bd systemowy" + +-#. TRANS File too big; the size of a file would be larger than allowed by the system. +-#: stdio-common/../sysdeps/gnu/errlist.c:299 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:57 +-msgid "File too large" +-msgstr "Plik zbyt duy" ++#: nis/nis_error.h:10 ++msgid "First/next chain broken" ++msgstr "acuch pierwszy/nastpny jest uszkodzony" + +-#. TRANS No space left on device; write operation on a file failed because the +-#. TRANS disk is full. +-#: stdio-common/../sysdeps/gnu/errlist.c:309 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:58 +-msgid "No space left on device" +-msgstr "Brak miejsca na urzdzeniu" ++#. TRANS Permission denied; the file permissions do not allow the attempted operation. ++#: nis/nis_error.h:11 nis/ypclnt.c:867 sysdeps/gnu/errlist.c:157 ++msgid "Permission denied" ++msgstr "Brak dostpu" + +-#. TRANS Invalid seek operation (such as on a pipe). +-#: stdio-common/../sysdeps/gnu/errlist.c:318 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:59 +-msgid "Illegal seek" +-msgstr "Bdne przesunicie" ++#: nis/nis_error.h:12 ++msgid "Not owner" ++msgstr "Nie jest wacicielem" + +-#. TRANS An attempt was made to modify something on a read-only file system. +-#: stdio-common/../sysdeps/gnu/errlist.c:327 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:60 +-msgid "Read-only file system" +-msgstr "System plikw wycznie do odczytu" ++#: nis/nis_error.h:13 ++msgid "Name not served by this server" ++msgstr "Nazwa nie jest obsugiwana przez ten serwer" + +-#. TRANS Too many links; the link count of a single file would become too large. +-#. TRANS @code{rename} can cause this error if the file being renamed already has +-#. TRANS as many links as it can take (@pxref{Renaming Files}). +-#: stdio-common/../sysdeps/gnu/errlist.c:338 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:61 +-msgid "Too many links" +-msgstr "Za duo dowiza" ++#: nis/nis_error.h:14 ++msgid "Server out of memory" ++msgstr "Brak pamici dla serwera" + +-#. TRANS Domain error; used by mathematical functions when an argument value does +-#. TRANS not fall into the domain over which the function is defined. +-#: stdio-common/../sysdeps/gnu/errlist.c:361 +-msgid "Numerical argument out of domain" +-msgstr "Argument liczbowy spoza dziedziny" ++#: nis/nis_error.h:15 ++msgid "Object with same name exists" ++msgstr "Istnieje ju obiekt o tej nazwie" + +-#. TRANS Range error; used by mathematical functions when the result value is +-#. TRANS not representable because of overflow or underflow. +-#: stdio-common/../sysdeps/gnu/errlist.c:371 +-msgid "Numerical result out of range" +-msgstr "Wynik liczbowy poza zakresem" ++#: nis/nis_error.h:16 ++msgid "Not master server for this domain" ++msgstr "To nie jest serwer nadrzdny dla tej domeny" + +-#. TRANS Resource temporarily unavailable; the call might work if you try again +-#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN}; +-#. TRANS they are always the same in the GNU C library. +-#. TRANS +-#. TRANS This error can happen in a few different situations: +-#. TRANS +-#. TRANS @itemize @bullet +-#. TRANS @item +-#. TRANS An operation that would block was attempted on an object that has +-#. TRANS non-blocking mode selected. Trying the same operation again will block +-#. TRANS until some external condition makes it possible to read, write, or +-#. TRANS connect (whatever the operation). You can use @code{select} to find out +-#. TRANS when the operation will be possible; @pxref{Waiting for I/O}. +-#. TRANS +-#. TRANS @strong{Portability Note:} In many older Unix systems, this condition +-#. TRANS was indicated by @code{EWOULDBLOCK}, which was a distinct error code +-#. TRANS different from @code{EAGAIN}. To make your program portable, you should +-#. TRANS check for both codes and treat them the same. +-#. TRANS +-#. TRANS @item +-#. TRANS A temporary resource shortage made an operation impossible. @code{fork} +-#. TRANS can return this error. It indicates that the shortage is expected to +-#. TRANS pass, so your program can try the call again later and it may succeed. +-#. TRANS It is probably a good idea to delay for a few seconds before trying it +-#. TRANS again, to allow time for other processes to release scarce resources. +-#. TRANS Such shortages are usually fairly serious and affect the whole system, +-#. TRANS so usually an interactive program should report the error to the user +-#. TRANS and return to its command loop. +-#. TRANS @end itemize +-#: stdio-common/../sysdeps/gnu/errlist.c:408 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:41 +-msgid "Resource temporarily unavailable" +-msgstr "Zasoby chwilowo niedostpne" ++#: nis/nis_error.h:17 ++msgid "Invalid object for operation" ++msgstr "Bdny obiekt dla tej operacji" + +-#. TRANS In the GNU C library, this is another name for @code{EAGAIN} (above). +-#. TRANS The values are always the same, on every operating system. +-#. TRANS +-#. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a +-#. TRANS separate error code. +-#: stdio-common/../sysdeps/gnu/errlist.c:421 +-msgid "Operation would block" +-msgstr "Operacja spowodowaaby blokad" ++#: nis/nis_error.h:18 ++msgid "Malformed name, or illegal name" ++msgstr "le sformuowana lub nieprawidowa nazwa" + +-#. TRANS An operation that cannot complete immediately was initiated on an object +-#. TRANS that has non-blocking mode selected. Some functions that must always +-#. TRANS block (such as @code{connect}; @pxref{Connecting}) never return +-#. TRANS @code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that +-#. TRANS the operation has begun and will take some time. Attempts to manipulate +-#. TRANS the object before the call completes return @code{EALREADY}. You can +-#. TRANS use the @code{select} function to find out when the pending operation +-#. TRANS has completed; @pxref{Waiting for I/O}. +-#: stdio-common/../sysdeps/gnu/errlist.c:437 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:180 +-msgid "Operation now in progress" +-msgstr "Operacja jest wanie wykonywana" ++#: nis/nis_error.h:19 ++msgid "Unable to create callback" ++msgstr "Utworzenie wywoania zwrotnego jest niemoliwe" + +-#. TRANS An operation is already in progress on an object that has non-blocking +-#. TRANS mode selected. +-#: stdio-common/../sysdeps/gnu/errlist.c:447 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:179 +-msgid "Operation already in progress" +-msgstr "Operacja jest ju wykonywana" ++# XXX callback? -PK ++#: nis/nis_error.h:20 ++msgid "Results sent to callback proc" ++msgstr "Wyniki zostay wysane do procedury wywoania zwrotnego" + +-#. TRANS A file that isn't a socket was specified when a socket is required. +-#: stdio-common/../sysdeps/gnu/errlist.c:456 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:125 +-msgid "Socket operation on non-socket" +-msgstr "Operacja na obiekcie, ktry nie jest gniazdem" ++#: nis/nis_error.h:21 ++msgid "Not found, no such name" ++msgstr "Nie znaleziono, brak takiej nazwy" + +-#. TRANS The size of a message sent on a socket was larger than the supported +-#. TRANS maximum size. +-#: stdio-common/../sysdeps/gnu/errlist.c:466 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:127 +-msgid "Message too long" +-msgstr "Komunikat za dugi" ++#: nis/nis_error.h:22 ++msgid "Name/entry isn't unique" ++msgstr "Nazwa/zapis nie jest unikalny" + +-#. TRANS The socket type does not support the requested communications protocol. +-#: stdio-common/../sysdeps/gnu/errlist.c:475 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:128 +-msgid "Protocol wrong type for socket" +-msgstr "Typ protokou nie pasuje do gniazda" ++#: nis/nis_error.h:23 ++msgid "Modification failed" ++msgstr "Modyfikacja nie powioda si" + +-#. TRANS You specified a socket option that doesn't make sense for the +-#. TRANS particular protocol being used by the socket. @xref{Socket Options}. +-#: stdio-common/../sysdeps/gnu/errlist.c:485 +-msgid "Protocol not available" +-msgstr "Protok niedostpny" ++#: nis/nis_error.h:24 ++msgid "Database for table does not exist" ++msgstr "Brak bazy danych dla tej tabeli" + +-#. TRANS The socket domain does not support the requested communications protocol +-#. TRANS (perhaps because the requested protocol is completely invalid). +-#. TRANS @xref{Creating a Socket}. +-#: stdio-common/../sysdeps/gnu/errlist.c:496 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:150 +-msgid "Protocol not supported" +-msgstr "Protok nie obsugiwany" ++#: nis/nis_error.h:25 ++msgid "Entry/table type mismatch" ++msgstr "Typy wpisu/tablicy nie pasuj do siebie" + +-#. TRANS The socket type is not supported. +-#: stdio-common/../sysdeps/gnu/errlist.c:505 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:151 +-msgid "Socket type not supported" +-msgstr "Nie obsugiwany typ gniazda" ++#: nis/nis_error.h:26 ++msgid "Link points to illegal name" ++msgstr "Dowizanie wskazuje na bdn nazw" + +-#. TRANS The operation you requested is not supported. Some socket functions +-#. TRANS don't make sense for all types of sockets, and others may not be +-#. TRANS implemented for all communications protocols. In the GNU system, this +-#. TRANS error can happen for many calls when the object does not support the +-#. TRANS particular operation; it is a generic indication that the server knows +-#. TRANS nothing to do for that call. +-#: stdio-common/../sysdeps/gnu/errlist.c:519 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:78 +-msgid "Operation not supported" +-msgstr "Operacja nie obsugiwana" ++#: nis/nis_error.h:27 ++msgid "Partial success" ++msgstr "Czciowy sukces" + +-#. TRANS The socket communications protocol family you requested is not supported. +-#: stdio-common/../sysdeps/gnu/errlist.c:528 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:153 +-msgid "Protocol family not supported" +-msgstr "Nie obsugiwana rodzina protokow" ++#: nis/nis_error.h:28 ++msgid "Too many attributes" ++msgstr "Za duo atrybutw" + +-#. TRANS The address family specified for a socket is not supported; it is +-#. TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}. +-#: stdio-common/../sysdeps/gnu/errlist.c:538 +-msgid "Address family not supported by protocol" +-msgstr "Rodzina adresw nie obsugiwana przez protok" ++#: nis/nis_error.h:29 ++msgid "Error in RPC subsystem" ++msgstr "Bd w podsystemie RPC" + +-#. TRANS The requested socket address is already in use. @xref{Socket Addresses}. +-#: stdio-common/../sysdeps/gnu/errlist.c:547 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:155 +-msgid "Address already in use" +-msgstr "Adres jest ju w uyciu" ++#: nis/nis_error.h:30 ++msgid "Missing or malformed attribute" ++msgstr "Brakujcy lub le sformuowany atrybut" + +-#. TRANS The requested socket address is not available; for example, you tried +-#. TRANS to give a socket a name that doesn't match the local host name. +-#. TRANS @xref{Socket Addresses}. +-#: stdio-common/../sysdeps/gnu/errlist.c:558 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:156 +-msgid "Cannot assign requested address" +-msgstr "Nie mona przypisa danego adresu" ++#: nis/nis_error.h:31 ++msgid "Named object is not searchable" ++msgstr "Wskazany obiekt nie moe by przeszukiwany" + +-#. TRANS A socket operation failed because the network was down. +-#: stdio-common/../sysdeps/gnu/errlist.c:567 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:157 +-msgid "Network is down" +-msgstr "Sie jest wyczona" ++#: nis/nis_error.h:32 ++msgid "Error while talking to callback proc" ++msgstr "Wystpi bd podczas odwoania do procedury wywoania zwrotnego" + +-#. TRANS A socket operation failed because the subnet containing the remote host +-#. TRANS was unreachable. +-#: stdio-common/../sysdeps/gnu/errlist.c:577 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:158 +-msgid "Network is unreachable" +-msgstr "Sie jest niedostpna" ++#: nis/nis_error.h:33 ++msgid "Non NIS+ namespace encountered" ++msgstr "Napotkano nazwy nie nalece do przestrzeni NIS+" + +-#. TRANS A network connection was reset because the remote host crashed. +-#: stdio-common/../sysdeps/gnu/errlist.c:586 +-msgid "Network dropped connection on reset" +-msgstr "Sie przerwaa poczenie po resecie" ++#: nis/nis_error.h:34 ++msgid "Illegal object type for operation" ++msgstr "Nieprawidowy typ obiektu dla tej operacji" + +-#. TRANS A network connection was aborted locally. +-#: stdio-common/../sysdeps/gnu/errlist.c:595 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:160 +-msgid "Software caused connection abort" +-msgstr "Oprogramowanie spowodowao przerwanie poczenia" ++#: nis/nis_error.h:35 ++msgid "Passed object is not the same object on server" ++msgstr "Uzyskany obiekt nie jest taki sam jak obiekt na serwerze" + +-#. TRANS A network connection was closed for reasons outside the control of the +-#. TRANS local host, such as by the remote machine rebooting or an unrecoverable +-#. TRANS protocol violation. +-#: stdio-common/../sysdeps/gnu/errlist.c:606 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:161 +-msgid "Connection reset by peer" +-msgstr "Poczenie zerwane przez drug stron" ++#: nis/nis_error.h:36 ++msgid "Modify operation failed" ++msgstr "Operacja modyfikacji nie powioda si" + +-#. TRANS The kernel's buffers for I/O operations are all in use. In GNU, this +-#. TRANS error is always synonymous with @code{ENOMEM}; you may get one or the +-#. TRANS other from network operations. +-#: stdio-common/../sysdeps/gnu/errlist.c:617 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:162 +-msgid "No buffer space available" +-msgstr "Brak miejsca w buforze" ++#: nis/nis_error.h:37 ++msgid "Query illegal for named table" ++msgstr "Bdne zapytanie dla podanej tablicy" + +-#. TRANS You tried to connect a socket that is already connected. +-#. TRANS @xref{Connecting}. +-#: stdio-common/../sysdeps/gnu/errlist.c:627 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:163 +-msgid "Transport endpoint is already connected" +-msgstr "Drugi koniec jest ju poczony" ++#: nis/nis_error.h:38 ++msgid "Attempt to remove a non-empty table" ++msgstr "Prba skasowania tablicy z zawartoci" + +-#. TRANS The socket is not connected to anything. You get this error when you +-#. TRANS try to transmit data over a socket, without first specifying a +-#. TRANS destination for the data. For a connectionless socket (for datagram +-#. TRANS protocols, such as UDP), you get @code{EDESTADDRREQ} instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:639 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:164 +-msgid "Transport endpoint is not connected" +-msgstr "Drugi koniec nie jest poczony" ++#: nis/nis_error.h:39 ++msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" ++msgstr "Bd podczas dostpu do pliku startowego NIS+. Czy NIS+ jest zainstalowany?" + +-#. TRANS No default destination address was set for the socket. You get this +-#. TRANS error when you try to transmit data over a connectionless socket, +-#. TRANS without first specifying a destination for the data with @code{connect}. +-#: stdio-common/../sysdeps/gnu/errlist.c:650 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:126 +-msgid "Destination address required" +-msgstr "Wymagany jest adres docelowy" ++#: nis/nis_error.h:40 ++msgid "Full resync required for directory" ++msgstr "Katalog wymaga powtrzenia penej synchronizacji" + +-#. TRANS The socket has already been shut down. +-#: stdio-common/../sysdeps/gnu/errlist.c:659 +-msgid "Cannot send after transport endpoint shutdown" +-msgstr "Wysyanie po zamkniciu gniazda jest niemoliwe" ++#: nis/nis_error.h:41 ++msgid "NIS+ operation failed" ++msgstr "Operacja NIS+ nie powioda si" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:668 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:174 +-msgid "Too many references: cannot splice" +-msgstr "Za duo odniesie: dowizanie niemoliwe" ++#: nis/nis_error.h:42 ++msgid "NIS+ service is unavailable or not installed" ++msgstr "Usuga NIS+ jest niedostpna lub nie zostaa zainstalowana" + +-#. TRANS A socket operation with a specified timeout received no response during +-#. TRANS the timeout period. +-#: stdio-common/../sysdeps/gnu/errlist.c:678 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:175 +-msgid "Connection timed out" +-msgstr "Przekroczony czas oczekiwania na poczenie" ++#: nis/nis_error.h:43 ++msgid "Yes, 42 is the meaning of life" ++msgstr "Tak, 42 jest odpowiedzi na pytanie o sens ycia" + +-#. TRANS A remote host refused to allow the network connection (typically because +-#. TRANS it is not running the requested service). +-#: stdio-common/../sysdeps/gnu/errlist.c:688 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:176 +-msgid "Connection refused" +-msgstr "Poczenie odrzucone" ++#: nis/nis_error.h:44 ++msgid "Unable to authenticate NIS+ server" ++msgstr "Uwierzytelnienie serwera NIS+ jest niemoliwe" + +-#. TRANS Too many levels of symbolic links were encountered in looking up a file name. +-#. TRANS This often indicates a cycle of symbolic links. +-#: stdio-common/../sysdeps/gnu/errlist.c:698 +-msgid "Too many levels of symbolic links" +-msgstr "Za due zagniedenie dowiza symbolicznych" ++#: nis/nis_error.h:45 ++msgid "Unable to authenticate NIS+ client" ++msgstr "Uwierzytelnienie klienta NIS+ jest niemoliwe" + +-#. TRANS Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for +-#. TRANS Files}) or host name too long (in @code{gethostname} or +-#. TRANS @code{sethostname}; @pxref{Host Identification}). +-#: stdio-common/../sysdeps/gnu/errlist.c:709 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:108 +-msgid "File name too long" +-msgstr "Za duga nazwa pliku" ++#: nis/nis_error.h:46 ++msgid "No file space on server" ++msgstr "Brak miejsca na serwerze" + +-#. TRANS The remote host for a requested network connection is down. +-#: stdio-common/../sysdeps/gnu/errlist.c:718 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:177 +-msgid "Host is down" +-msgstr "Urzdzenie jest wyczone" ++#: nis/nis_error.h:47 ++msgid "Unable to create process on server" ++msgstr "Utworzenie procesu na serwerze jest niemoliwe" + +-#. TRANS The remote host for a requested network connection is not reachable. +-#: stdio-common/../sysdeps/gnu/errlist.c:727 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:178 +-msgid "No route to host" +-msgstr "Brak trasy do hosta" ++#: nis/nis_error.h:48 ++msgid "Master server busy, full dump rescheduled." ++msgstr "Serwer nadrzdny jest zajty, peny zrzut danych przesunity na pniej." + +-#. TRANS Directory not empty, where an empty directory was expected. Typically, +-#. TRANS this error occurs when you are trying to delete a directory. +-#: stdio-common/../sysdeps/gnu/errlist.c:737 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:123 +-msgid "Directory not empty" +-msgstr "Katalog nie jest pusty" ++#: nis/nis_local_names.c:122 ++#, c-format ++msgid "LOCAL entry for UID %d in directory %s not unique\n" ++msgstr "Wpis LOKALNY dla UID %d w katalogu %s nie jest unikalny\n" + +-#. TRANS This means that the per-user limit on new process would be exceeded by +-#. TRANS an attempted @code{fork}. @xref{Limits on Resources}, for details on +-#. TRANS the @code{RLIMIT_NPROC} limit. +-#: stdio-common/../sysdeps/gnu/errlist.c:748 +-msgid "Too many processes" +-msgstr "Za duo procesw" ++#: nis/nis_print.c:51 ++msgid "UNKNOWN" ++msgstr "NIEZNANY" + +-#. TRANS The file quota system is confused because there are too many users. +-#. TRANS @c This can probably happen in a GNU system when using NFS. +-#: stdio-common/../sysdeps/gnu/errlist.c:758 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:124 +-msgid "Too many users" +-msgstr "Za duo uytkownikw" ++#: nis/nis_print.c:109 ++msgid "BOGUS OBJECT\n" ++msgstr "NIEISTNIEJCY OBIEKT\n" + +-#. TRANS The user's disk quota was exceeded. +-#: stdio-common/../sysdeps/gnu/errlist.c:767 +-msgid "Disk quota exceeded" +-msgstr "Przekroczony limit dyskowy" ++#: nis/nis_print.c:112 ++msgid "NO OBJECT\n" ++msgstr "BRAK OBIEKTU\n" + +-#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS +-#. TRANS system which is due to file system rearrangements on the server host. +-#. TRANS Repairing this condition usually requires unmounting and remounting +-#. TRANS the NFS file system on the local host. +-#: stdio-common/../sysdeps/gnu/errlist.c:779 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:181 +-msgid "Stale NFS file handle" +-msgstr "Nieaktualny uchwyt pliku NFS" ++#: nis/nis_print.c:115 ++msgid "DIRECTORY\n" ++msgstr "KATALOG\n" + +-# to imho jest bardziej zrozumiale - zwlaszcza ze to sie czasem zdarza +-# jak sie uruchomi mountd bez -r -PK +-#. TRANS An attempt was made to NFS-mount a remote file system with a file name that +-#. TRANS already specifies an NFS-mounted file. +-#. TRANS (This is an error on some operating systems, but we expect it to work +-#. TRANS properly on the GNU system, making this error code impossible.) +-#: stdio-common/../sysdeps/gnu/errlist.c:791 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:96 +-msgid "Object is remote" +-msgstr "Zdalny obiekt jest obiektem podmontowanym przez NFS" ++#: nis/nis_print.c:118 ++msgid "GROUP\n" ++msgstr "GRUPA\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:800 +-msgid "RPC struct is bad" +-msgstr "Struktura RPC jest bdna" ++#: nis/nis_print.c:121 ++msgid "TABLE\n" ++msgstr "TABLICA\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:809 +-msgid "RPC version wrong" +-msgstr "Za wersja RPC" ++#: nis/nis_print.c:124 ++msgid "ENTRY\n" ++msgstr "POZYCJA\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:818 +-msgid "RPC program not available" +-msgstr "Program RPC niedostpny" ++#: nis/nis_print.c:127 ++msgid "LINK\n" ++msgstr "DOWIZANIE\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:827 +-msgid "RPC program version wrong" +-msgstr "Za wersja programu RPC" ++#: nis/nis_print.c:130 ++msgid "PRIVATE\n" ++msgstr "PRYWATNY\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:836 +-msgid "RPC bad procedure for program" +-msgstr "Za procedura RPC dla programu" ++#: nis/nis_print.c:133 ++msgid "(Unknown object)\n" ++msgstr "(Nieznany obiekt)\n" + +-#. TRANS No locks available. This is used by the file locking facilities; see +-#. TRANS @ref{File Locks}. This error is never generated by the GNU system, but +-#. TRANS it can result from an operation to an NFS server running another +-#. TRANS operating system. +-#: stdio-common/../sysdeps/gnu/errlist.c:848 +-msgid "No locks available" +-msgstr "Brak dostpnych blokad" ++#: nis/nis_print.c:167 ++#, c-format ++msgid "Name : `%s'\n" ++msgstr "Nazwa : `%s'\n" + +-#. TRANS Inappropriate file type or format. The file was the wrong type for the +-#. TRANS operation, or a data file had the wrong format. +-#. TRANS +-#. TRANS On some systems @code{chmod} returns this error if you try to set the +-#. TRANS sticky bit on a non-directory file; @pxref{Setting Permissions}. +-#: stdio-common/../sysdeps/gnu/errlist.c:861 +-msgid "Inappropriate file type or format" +-msgstr "Niewaciwy typ lub format pliku" ++#: nis/nis_print.c:168 ++#, c-format ++msgid "Type : %s\n" ++msgstr "Typ : %s\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:870 +-msgid "Authentication error" +-msgstr "Bd uwierzytelnienia" ++#: nis/nis_print.c:173 ++msgid "Master Server :\n" ++msgstr "Serwer nadrzdny :\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:879 +-msgid "Need authenticator" +-msgstr "Wymagane uwierzytelnienie" ++#: nis/nis_print.c:175 ++msgid "Replicate :\n" ++msgstr "Replikacja :\n" + +-#. TRANS Function not implemented. This indicates that the function called is +-#. TRANS not implemented at all, either in the C library itself or in the +-#. TRANS operating system. When you get this error, you can be sure that this +-#. TRANS particular function will always fail with @code{ENOSYS} unless you +-#. TRANS install a new version of the C library or the operating system. +-#: stdio-common/../sysdeps/gnu/errlist.c:892 +-msgid "Function not implemented" +-msgstr "Nie zaimplementowana funkcja" ++#: nis/nis_print.c:176 ++#, c-format ++msgid "\tName : %s\n" ++msgstr "\tNazwa : %s\n" + +-#. TRANS Not supported. A function returns this error when certain parameter +-#. TRANS values are valid, but the functionality they request is not available. +-#. TRANS This can mean that the function does not implement a particular command +-#. TRANS or option value or flag bit at all. For functions that operate on some +-#. TRANS object given in a parameter, such as a file descriptor or a port, it +-#. TRANS might instead mean that only @emph{that specific object} (file +-#. TRANS descriptor, port, etc.) is unable to support the other parameters given; +-#. TRANS different file descriptors might support different ranges of parameter +-#. TRANS values. +-#. TRANS +-#. TRANS If the entire function is not available at all in the implementation, +-#. TRANS it returns @code{ENOSYS} instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:912 +-msgid "Not supported" +-msgstr "Nie obsugiwane" ++#: nis/nis_print.c:177 ++msgid "\tPublic Key : " ++msgstr "\tKlucz publiczny : " ++ ++#: nis/nis_print.c:181 ++msgid "None.\n" ++msgstr "Brak.\n" + +-#. TRANS While decoding a multibyte character the function came along an invalid +-#. TRANS or an incomplete sequence of bytes or the given wide character is invalid. +-#: stdio-common/../sysdeps/gnu/errlist.c:922 +-msgid "Invalid or incomplete multibyte or wide character" +-msgstr "Bdny lub niepeny znak wielobajtowy" ++#: nis/nis_print.c:184 ++#, c-format ++msgid "Diffie-Hellmann (%d bits)\n" ++msgstr "Diffie-Hellmann (%d bitw)\n" + +-#. TRANS In the GNU system, servers supporting the @code{term} protocol return +-#. TRANS this error for certain operations when the caller is not in the +-#. TRANS foreground process group of the terminal. Users do not usually see this +-#. TRANS error because functions such as @code{read} and @code{write} translate +-#. TRANS it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control}, +-#. TRANS for information on process groups and these signals. +-#: stdio-common/../sysdeps/gnu/errlist.c:936 +-msgid "Inappropriate operation for background process" +-msgstr "Dziaanie niedopuszczalne dla procesu w tle" ++#: nis/nis_print.c:189 ++#, c-format ++msgid "RSA (%d bits)\n" ++msgstr "RSA (%d bitw)\n" + +-#. TRANS In the GNU system, opening a file returns this error when the file is +-#. TRANS translated by a program and the translator program dies while starting +-#. TRANS up, before it has connected to the file. +-#: stdio-common/../sysdeps/gnu/errlist.c:947 +-msgid "Translator died" +-msgstr "Translator przerwa prac" ++#: nis/nis_print.c:192 ++msgid "Kerberos.\n" ++msgstr "Kerberos.\n" + +-#. TRANS The experienced user will know what is wrong. +-#. TRANS @c This error code is a joke. Its perror text is part of the joke. +-#. TRANS @c Don't change it. +-#: stdio-common/../sysdeps/gnu/errlist.c:958 +-msgid "?" +-msgstr "?" ++#: nis/nis_print.c:195 ++#, c-format ++msgid "Unknown (type = %d, bits = %d)\n" ++msgstr "Nieznany (typ = %d, bity = %d)\n" + +-#. TRANS You did @strong{what}? +-#: stdio-common/../sysdeps/gnu/errlist.c:967 +-msgid "You really blew it this time" +-msgstr "Tym razem dae popali" ++#: nis/nis_print.c:206 ++#, c-format ++msgid "\tUniversal addresses (%u)\n" ++msgstr "\tAdresy uniwersalne (%u)\n" + +-#. TRANS Go home and have a glass of warm, dairy-fresh milk. +-#: stdio-common/../sysdeps/gnu/errlist.c:976 +-msgid "Computer bought the farm" +-msgstr "Komputer wyjecha na wakacje" ++#: nis/nis_print.c:228 ++msgid "Time to live : " ++msgstr "Czas ycia : " + +-#. TRANS This error code has no purpose. +-#: stdio-common/../sysdeps/gnu/errlist.c:985 +-msgid "Gratuitous error" +-msgstr "Nieoczekiwany bd" ++#: nis/nis_print.c:230 ++msgid "Default Access rights :\n" ++msgstr "Domylne prawa dostpu :\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:993 +-msgid "Bad message" +-msgstr "Bdny komunikat" ++#: nis/nis_print.c:239 ++#, c-format ++msgid "\tType : %s\n" ++msgstr "\tTyp : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1001 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:66 +-msgid "Identifier removed" +-msgstr "Identyfikator zosta usunity" ++#: nis/nis_print.c:240 ++msgid "\tAccess rights: " ++msgstr "\tPrawa dostpu: " + +-# wydaje mi sie ze tu chodzi o wyczerpanie TTL i stad 'zbyt' -PK +-#: stdio-common/../sysdeps/gnu/errlist.c:1009 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:104 +-msgid "Multihop attempted" +-msgstr "Prba przejcia przez zbyt wiele ruterw" ++#: nis/nis_print.c:254 ++msgid "Group Flags :" ++msgstr "Flagi grupy :" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1017 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:91 +-msgid "No data available" +-msgstr "Brak danych" ++#: nis/nis_print.c:257 ++msgid "" ++"\n" ++"Group Members :\n" ++msgstr "" ++"\n" ++"Czonkowie grupy :\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1025 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:97 +-msgid "Link has been severed" +-msgstr "Poczenie zostao przerwane" ++#: nis/nis_print.c:269 ++#, c-format ++msgid "Table Type : %s\n" ++msgstr "Typ tablicy : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1033 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:65 +-msgid "No message of desired type" +-msgstr "Brak komunikatu o podanym typie" ++#: nis/nis_print.c:270 ++#, c-format ++msgid "Number of Columns : %d\n" ++msgstr "Liczba kolumn : %d\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1041 +-msgid "Out of streams resources" +-msgstr "Brak dodatkowych strumieni" ++#: nis/nis_print.c:271 ++#, c-format ++msgid "Character Separator : %c\n" ++msgstr "Separator znakw : %c\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1049 +-msgid "Device not a stream" +-msgstr "Urzdzenie nie jest strumieniem" ++#: nis/nis_print.c:272 ++#, c-format ++msgid "Search Path : %s\n" ++msgstr "cieka przeszukiwania : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1057 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:109 +-msgid "Value too large for defined data type" +-msgstr "Warto za dua dla zdefiniowanego typu danych" ++#: nis/nis_print.c:273 ++msgid "Columns :\n" ++msgstr "Kolumny :\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1065 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:101 +-msgid "Protocol error" +-msgstr "Bd protokou" ++#: nis/nis_print.c:276 ++#, c-format ++msgid "\t[%d]\tName : %s\n" ++msgstr "\t[%d]\tNazwa : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1073 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:92 +-msgid "Timer expired" +-msgstr "Upyn czas stopera" ++#: nis/nis_print.c:278 ++msgid "\t\tAttributes : " ++msgstr "\t\tAtrybuty : " + +-#. TRANS Operation canceled; an asynchronous operation was canceled before it +-#. TRANS completed. @xref{Asynchronous I/O}. When you call @code{aio_cancel}, +-#. TRANS the normal result is for the operations affected to complete with this +-#. TRANS error; @pxref{Cancel AIO Operations}. +-#: stdio-common/../sysdeps/gnu/errlist.c:1085 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:77 +-msgid "Operation canceled" +-msgstr "Operacja anulowana" ++#: nis/nis_print.c:280 ++msgid "\t\tAccess Rights : " ++msgstr "\t\tPrawa dostpu : " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1093 +-msgid "Interrupted system call should be restarted" +-msgstr "Naley wznowi przerwane wywoanie systemowe" ++#: nis/nis_print.c:290 ++msgid "Linked Object Type : " ++msgstr "Typ dowizanego obiektu : " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1101 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:67 +-msgid "Channel number out of range" +-msgstr "Numer kanau poza zakresem" ++#: nis/nis_print.c:292 ++#, c-format ++msgid "Linked to : %s\n" ++msgstr "Dowizany do : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1109 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:68 +-msgid "Level 2 not synchronized" +-msgstr "Poziom 2 nie zsynchronizowany" ++#: nis/nis_print.c:302 ++#, c-format ++msgid "\tEntry data of type %s\n" ++msgstr "\tDane rekordu typu %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1117 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:69 +-msgid "Level 3 halted" +-msgstr "Poziom 3 zatrzymany" ++#: nis/nis_print.c:305 ++#, c-format ++msgid "\t[%u] - [%u bytes] " ++msgstr "\t[%u] - [%u bajtw] " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1125 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:70 +-msgid "Level 3 reset" +-msgstr "Poziom 3 wyzerowany" ++#: nis/nis_print.c:308 ++msgid "Encrypted data\n" ++msgstr "Zaszyfrowane dane\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1133 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:71 +-msgid "Link number out of range" +-msgstr "Numer dowizania poza zakresem" ++#: nis/nis_print.c:310 ++msgid "Binary data\n" ++msgstr "Dane binarne\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1141 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:72 +-msgid "Protocol driver not attached" +-msgstr "Sterownik protokou nie jest podczony" ++#: nis/nis_print.c:326 ++#, c-format ++msgid "Object Name : %s\n" ++msgstr "Nazwa obiektu : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1149 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:73 +-msgid "No CSI structure available" +-msgstr "Struktura CSI niedostpna" ++#: nis/nis_print.c:327 ++#, c-format ++msgid "Directory : %s\n" ++msgstr "Katalog : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1157 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:74 +-msgid "Level 2 halted" +-msgstr "Poziom 2 zatrzymany" ++#: nis/nis_print.c:328 ++#, c-format ++msgid "Owner : %s\n" ++msgstr "Waciciel : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1165 +-msgid "Invalid exchange" +-msgstr "Bdna wymiana" ++#: nis/nis_print.c:329 ++#, c-format ++msgid "Group : %s\n" ++msgstr "Grupa : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1173 +-msgid "Invalid request descriptor" +-msgstr "Bdny deskryptor dania" ++#: nis/nis_print.c:330 ++msgid "Access Rights : " ++msgstr "Prawa dostpu : " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1181 +-msgid "Exchange full" +-msgstr "Przepeniona wymiana" ++#: nis/nis_print.c:332 ++#, c-format ++msgid "" ++"\n" ++"Time to Live : " ++msgstr "" ++"\n" ++"Czas ycia : " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1189 +-msgid "No anode" +-msgstr "Brak anody" ++#: nis/nis_print.c:335 ++#, c-format ++msgid "Creation Time : %s" ++msgstr "Czas utworz. : %s" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1197 +-msgid "Invalid request code" +-msgstr "Zy kod dania" ++#: nis/nis_print.c:337 ++#, c-format ++msgid "Mod. Time : %s" ++msgstr "Czas modyf. : %s" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1205 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:85 +-msgid "Invalid slot" +-msgstr "Bdny kana" ++#: nis/nis_print.c:338 ++msgid "Object Type : " ++msgstr "Typ obiektu : " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1213 +-msgid "File locking deadlock error" +-msgstr "Podczas blokowania pliku wystpio zakleszczenie" ++#: nis/nis_print.c:358 ++#, c-format ++msgid " Data Length = %u\n" ++msgstr " Rozmiar danych = %u\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1221 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:87 +-msgid "Bad font file format" +-msgstr "Bdny format pliku fontu" ++#: nis/nis_print.c:372 ++#, c-format ++msgid "Status : %s\n" ++msgstr "Stan : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1229 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:94 +-msgid "Machine is not on the network" +-msgstr "Maszyna nie znajduje si w tej sieci" ++#: nis/nis_print.c:373 ++#, c-format ++msgid "Number of objects : %u\n" ++msgstr "Liczba obiektw : %u\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1237 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:95 +-msgid "Package not installed" +-msgstr "Pakiet nie jest zainstalowany" ++#: nis/nis_print.c:377 ++#, c-format ++msgid "Object #%d:\n" ++msgstr "Obiekt #%d:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1245 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:98 +-msgid "Advertise error" +-msgstr "Bd podczas ogaszania" ++#: nis/nis_print_group_entry.c:117 ++#, c-format ++msgid "Group entry for \"%s.%s\" group:\n" ++msgstr "Wpis dla grupy \"%s.%s\":\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1253 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:99 +-msgid "Srmount error" +-msgstr "Bd srmount" ++# XXX nie-czlonkowie brzmi glupio -PK ++#: nis/nis_print_group_entry.c:125 ++msgid " Explicit members:\n" ++msgstr " Czonkowie zadeklarowani:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1261 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:100 +-msgid "Communication error on send" +-msgstr "Bd komunikacji podczas wysyania" ++#: nis/nis_print_group_entry.c:130 ++msgid " No explicit members\n" ++msgstr " Brak zadeklarowanych czonkw\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1269 +-msgid "RFS specific error" +-msgstr "Bd RFS" ++#: nis/nis_print_group_entry.c:133 ++msgid " Implicit members:\n" ++msgstr " Czonkowie domniemani:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1277 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:110 +-msgid "Name not unique on network" +-msgstr "Nazwa nie jest unikalna w sieci" ++#: nis/nis_print_group_entry.c:138 ++msgid " No implicit members\n" ++msgstr " Brak domniemanych czonkw\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1285 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:111 +-msgid "File descriptor in bad state" +-msgstr "Deskryptor pliku w zym stanie" ++#: nis/nis_print_group_entry.c:141 ++msgid " Recursive members:\n" ++msgstr " Czonkowie rekursywni:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1293 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:112 +-msgid "Remote address changed" +-msgstr "Zmieni si adres drugiego koca" ++#: nis/nis_print_group_entry.c:146 ++msgid " No recursive members\n" ++msgstr " Brak rekursywnych czonkw\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1301 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:113 +-msgid "Can not access a needed shared library" +-msgstr "Brak dostpu do wymaganej biblioteki dzielonej" ++#: nis/nis_print_group_entry.c:149 nis/nis_print_group_entry.c:165 ++msgid " Explicit nonmembers:\n" ++msgstr " Nie-czonkowie zadeklarowani:\n" ++ ++#: nis/nis_print_group_entry.c:154 ++msgid " No explicit nonmembers\n" ++msgstr " Brak zadeklarowanych nie-czonkw\n" ++ ++#: nis/nis_print_group_entry.c:157 ++msgid " Implicit nonmembers:\n" ++msgstr " Nie-czonkowie domniemani:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1309 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:114 +-msgid "Accessing a corrupted shared library" +-msgstr "Prba uycia uszkodzonej biblioteki dzielonej" ++#: nis/nis_print_group_entry.c:162 ++msgid " No implicit nonmembers\n" ++msgstr " Brak domniemanych nie-czonkw\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1317 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:115 +-msgid ".lib section in a.out corrupted" +-msgstr "Sekcja .lib w a.out jest uszkodzona" ++#: nis/nis_print_group_entry.c:170 ++msgid " No recursive nonmembers\n" ++msgstr " Brak rekursywnych nie-czonkw\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1325 +-msgid "Attempting to link in too many shared libraries" +-msgstr "Prba czenia ze zbyt wieloma bibliotekami dzielonymi" ++#: nis/nss_nisplus/nisplus-publickey.c:101 ++#: nis/nss_nisplus/nisplus-publickey.c:183 ++#, c-format ++msgid "DES entry for netname %s not unique\n" ++msgstr "Pozycja DES dla sieci %s nie jest unikalna\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1333 +-msgid "Cannot exec a shared library directly" +-msgstr "Nie mona bezporednio uruchomi biblioteki dzielonej" ++#: nis/nss_nisplus/nisplus-publickey.c:220 ++#, c-format ++msgid "netname2user: missing group id list in `%s'." ++msgstr "netname2user: brak listy identyfikatorw grup w `%s'." + +-#: stdio-common/../sysdeps/gnu/errlist.c:1341 +-msgid "Streams pipe error" +-msgstr "Bd potoku biblioteki strumieni" ++#: nis/nss_nisplus/nisplus-publickey.c:302 ++#: nis/nss_nisplus/nisplus-publickey.c:308 ++#: nis/nss_nisplus/nisplus-publickey.c:373 ++#: nis/nss_nisplus/nisplus-publickey.c:382 ++#, c-format ++msgid "netname2user: (nis+ lookup): %s\n" ++msgstr "netname2user: (odwzorowanie nis+): %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1349 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:165 +-msgid "Structure needs cleaning" +-msgstr "Struktura wymaga wyczyszczenia" ++#: nis/nss_nisplus/nisplus-publickey.c:321 ++#, c-format ++msgid "netname2user: DES entry for %s in directory %s not unique" ++msgstr "netname2user: wpis DES dla %s w katalogu %s nie jest unikalny" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1357 +-msgid "Not a XENIX named type file" +-msgstr "Nie jest XENIXowym plikiem nazwanego typu" ++# XXX principal = nadzorca, troche lame -PK ++#: nis/nss_nisplus/nisplus-publickey.c:339 ++#, c-format ++msgid "netname2user: principal name `%s' too long" ++msgstr "name2user: nazwa nadzorcy `%s' jest zbyt duga" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1365 +-msgid "No XENIX semaphores available" +-msgstr "Brak dostpnych semaforw XENIXowych" ++#: nis/nss_nisplus/nisplus-publickey.c:395 ++#, c-format ++msgid "netname2user: LOCAL entry for %s in directory %s not unique" ++msgstr "netname2user: wpis LOKALNY dla %s w katalogu %s nie jest unikalny" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1373 +-msgid "Is a named type file" +-msgstr "Jest plikiem nazwanym" ++#: nis/nss_nisplus/nisplus-publickey.c:402 ++msgid "netname2user: should not have uid 0" ++msgstr "netname2user: UID 0 nie powinien wystpi" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1381 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:170 +-msgid "Remote I/O error" +-msgstr "Bd we/wy w odlegym systemie" ++#: nis/ypclnt.c:825 ++msgid "Request arguments bad" ++msgstr "Argumenty dania s bdne" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1389 +-msgid "No medium found" +-msgstr "Brak medium" ++#: nis/ypclnt.c:828 ++msgid "RPC failure on NIS operation" ++msgstr "Bd RPC podczas operacji NIS" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1397 +-msgid "Wrong medium type" +-msgstr "Niewaciwy typ medium" ++#: nis/ypclnt.c:831 ++msgid "Can't bind to server which serves this domain" ++msgstr "Nie mona poczy si z serwerem dla tej domeny" + +-#: stdio-common/../sysdeps/unix/siglist.c:26 +-msgid "Signal 0" +-msgstr "Sygna 0" ++#: nis/ypclnt.c:834 ++msgid "No such map in server's domain" ++msgstr "Brak takiej mapy w domenie serwera" + +-#: stdio-common/../sysdeps/unix/siglist.c:32 +-msgid "IOT trap" +-msgstr "Puapka IOT" ++#: nis/ypclnt.c:837 ++msgid "No such key in map" ++msgstr "Brak takiego klucza w mapie" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:30 +-msgid "Error 0" +-msgstr "Bd 0" ++#: nis/ypclnt.c:840 ++msgid "Internal NIS error" ++msgstr "Bd wewntrzny NIS" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:31 +-#: nis/nis_error.c:40 +-msgid "Not owner" +-msgstr "Nie jest wacicielem" ++#: nis/ypclnt.c:843 ++msgid "Local resource allocation failure" ++msgstr "Wystpi bd podczas przydzielania lokalnych zasobw" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:35 +-msgid "I/O error" +-msgstr "Bd we/wy" ++#: nis/ypclnt.c:846 ++msgid "No more records in map database" ++msgstr "Nie ma wicej rekordw w mapie" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:37 +-msgid "Arg list too long" +-msgstr "Lista argumentw za duga" ++#: nis/ypclnt.c:849 ++msgid "Can't communicate with portmapper" ++msgstr "Komunikacja z portmapperem jest niemoliwa" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:39 +-msgid "Bad file number" +-msgstr "Bdny numer pliku" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:42 +-msgid "Not enough space" +-msgstr "Za mao miejsca" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:46 +-msgid "Device busy" +-msgstr "Urzdzenie zajte" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:48 +-msgid "Cross-device link" +-msgstr "Dowizanie midzy urzdzeniami" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:53 +-msgid "File table overflow" +-msgstr "Przepenienie tablicy plikw" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:63 +-msgid "Argument out of domain" +-msgstr "Argument spoza dziedziny" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:64 +-msgid "Result too large" +-msgstr "Wynik za duy" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:75 +-msgid "Deadlock situation detected/avoided" +-msgstr "Wykryto/uniknito sytuacji zakleszczenia" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:76 +-msgid "No record locks available" +-msgstr "Brak dostpnych blokad rekordw" ++#: nis/ypclnt.c:852 ++msgid "Can't communicate with ypbind" ++msgstr "Komunikacja z ypbind jest niemoliwa" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:79 +-msgid "Disc quota exceeded" +-msgstr "Przekroczony limit dyskowy" ++#: nis/ypclnt.c:855 ++msgid "Can't communicate with ypserv" ++msgstr "Komunikacja z ypserv jest niemoliwa" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:80 +-msgid "Bad exchange descriptor" +-msgstr "Bdny deskryptor wymiany" ++#: nis/ypclnt.c:858 ++msgid "Local domain name not set" ++msgstr "Lokalna domena nie jest ustawiona" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:81 +-msgid "Bad request descriptor" +-msgstr "Bdny deskryptor dania" ++#: nis/ypclnt.c:861 ++msgid "NIS map database is bad" ++msgstr "Mapa NIS zawiera bdy" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:82 +-msgid "Message tables full" +-msgstr "Przepenienie tablicy komunikatw" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:83 +-msgid "Anode table overflow" +-msgstr "Przepenienie tablicy anod" ++#: nis/ypclnt.c:864 ++msgid "NIS client/server version mismatch - can't supply service" ++msgstr "Niezgodno wersji midzy klientem i serwerem NIS - usuga niemoliwa" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:84 +-msgid "Bad request code" +-msgstr "Zy kod dania" ++#: nis/ypclnt.c:870 ++msgid "Database is busy" ++msgstr "Baza danych jest zajta" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:86 +-msgid "File locking deadlock" +-msgstr "Podczas blokowania pliku wystpio zakleszczenie" ++#: nis/ypclnt.c:873 ++msgid "Unknown NIS error code" ++msgstr "Nieznany kod bdu NIS" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:88 +-msgid "Error 58" +-msgstr "Bd 58" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:89 +-msgid "Error 59" +-msgstr "Bd 59" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:90 +-msgid "Not a stream device" +-msgstr "Nie jest urzdzeniem strumieniowym" ++#: nis/ypclnt.c:913 ++msgid "Internal ypbind error" ++msgstr "Bd wewntrzny ypbind" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:93 +-msgid "Out of stream resources" +-msgstr "Brak dodatkowych strumieni" ++#: nis/ypclnt.c:916 ++msgid "Domain not bound" ++msgstr "Domena nie zostaa zwizana" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:102 +-msgid "Error 72" +-msgstr "Bd 72" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:103 +-msgid "Error 73" +-msgstr "Bd 73" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:105 +-msgid "Error 75" +-msgstr "Bd 75" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:106 +-msgid "Error 76" +-msgstr "Bd 76" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:107 +-msgid "Not a data message" +-msgstr "Nie jest komunikatem danych" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:116 +-msgid "Attempting to link in more shared libraries than system limit" +-msgstr "Prba czenia z wiksz liczb bibliotek dzielonych ni wynosi limit" ++#: nis/ypclnt.c:919 ++msgid "System resource allocation failure" ++msgstr "Wystpi bd podczas przydzielania zasobw systemowych" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:117 +-msgid "Can not exec a shared library directly" +-msgstr "Nie mona bezporednio uruchomi biblioteki dzielonej" ++#: nis/ypclnt.c:922 ++msgid "Unknown ypbind error" ++msgstr "Nieznany bd ypbind" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:118 +-msgid "Illegal byte sequence" +-msgstr "Bdna sekwencja bajtw" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:119 +-msgid "Operation not applicable" +-msgstr "Operacja nie moe by zastosowana" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:120 +-msgid "Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS" +-msgstr "Liczba dowiza symbolicznych przy dostpie do pliku przekracza MAXSYMLINKS" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:121 +-msgid "Error 91" +-msgstr "Bd 91" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:122 +-msgid "Error 92" +-msgstr "Bd 92" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:129 +-msgid "Option not supported by protocol" +-msgstr "Opcja nie obsugiwana przez protok" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:130 +-msgid "Error 100" +-msgstr "Bd 100" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:131 +-msgid "Error 101" +-msgstr "Bd 101" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:132 +-msgid "Error 102" +-msgstr "Bd 102" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:133 +-msgid "Error 103" +-msgstr "Bd 103" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:134 +-msgid "Error 104" +-msgstr "Bd 104" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:135 +-msgid "Error 105" +-msgstr "Bd 105" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:136 +-msgid "Error 106" +-msgstr "Bd 106" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:137 +-msgid "Error 107" +-msgstr "Bd 107" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:138 +-msgid "Error 108" +-msgstr "Bd 108" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:139 +-msgid "Error 109" +-msgstr "Bd 109" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:140 +-msgid "Error 110" +-msgstr "Bd 110" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:141 +-msgid "Error 111" +-msgstr "Bd 111" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:142 +-msgid "Error 112" +-msgstr "Bd 112" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:143 +-msgid "Error 113" +-msgstr "Bd 113" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:144 +-msgid "Error 114" +-msgstr "Bd 114" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:145 +-msgid "Error 115" +-msgstr "Bd 115" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:146 +-msgid "Error 116" +-msgstr "Bd 116" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:147 +-msgid "Error 117" +-msgstr "Bd 117" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:148 +-msgid "Error 118" +-msgstr "Bd 118" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:149 +-msgid "Error 119" +-msgstr "Bd 119" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:152 +-msgid "Operation not supported on transport endpoint" +-msgstr "Operacja nie obsugiwana przez drugi koniec" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:154 +-msgid "Address family not supported by protocol family" +-msgstr "Rodzina adresw nie obsugiwana przez rodzin protokow" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:159 +-msgid "Network dropped connection because of reset" +-msgstr "Sie przerwaa poczenie z powodu resetu" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:166 +-msgid "Error 136" +-msgstr "Bd 136" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:167 +-msgid "Not a name file" +-msgstr "Nie jest plikiem nazwy" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:168 +-msgid "Not available" +-msgstr "Niedostpne" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:169 +-msgid "Is a name file" +-msgstr "Nie jest plikiem nazwy" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:171 +-msgid "Reserved for future use" +-msgstr "Zarezerwowane do przyszego wykorzystania" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:172 +-msgid "Error 142" +-msgstr "Bd 142" ++#: nis/ypclnt.c:963 ++msgid "yp_update: cannot convert host to netname\n" ++msgstr "yp_update: nie mona przekonwertowa nazwy hosta na nazw sieci\n" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:173 +-msgid "Cannot send after socket shutdown" +-msgstr "Wysyanie po zamkniciu gniazda jest niemoliwe" ++#: nis/ypclnt.c:981 ++msgid "yp_update: cannot get server address\n" ++msgstr "yp_update: nie mona uzyska adresu serwera\n" + +-#: stdio-common/psignal.c:63 ++#: nscd/aicache.c:76 nscd/hstcache.c:461 + #, c-format +-msgid "%s%sUnknown signal %d\n" +-msgstr "%s%sNieznany sygna %d\n" ++msgid "Haven't found \"%s\" in hosts cache!" ++msgstr "Nie znaleziono \"%s\" w buforze hostw!" + +-#: dlfcn/dlinfo.c:51 +-msgid "RTLD_SELF used in code not dynamically loaded" +-msgstr "RTLD_SELF wystpio w kodzie nie adowanym dynamicznie" ++#: nscd/aicache.c:78 nscd/hstcache.c:463 ++#, c-format ++msgid "Reloading \"%s\" in hosts cache!" ++msgstr "Przeadowywanie \"%s\" w buforze hostw!" + +-#: dlfcn/dlinfo.c:61 +-msgid "unsupported dlinfo request" +-msgstr "nieobsugiwane danie dlinfo" ++#: nscd/cache.c:126 ++#, c-format ++msgid "add new entry \"%s\" of type %s for %s to cache%s" ++msgstr "dodanie nowego wpisu \"%s\" typu %s dla %s do bufora%s" + +-#: malloc/mcheck.c:346 +-msgid "memory is consistent, library is buggy\n" +-msgstr "pami jest spjna, biblioteka zawiera bdy\n" ++#: nscd/cache.c:233 nscd/connections.c:750 ++#, c-format ++msgid "cannot stat() file `%s': %s" ++msgstr "znalezienie pliku bazy danych `%s' jest niemoliwe: %s" + +-#: malloc/mcheck.c:349 +-msgid "memory clobbered before allocated block\n" +-msgstr "pami zostaa uszkodzona przed przydzielonym blokiem\n" ++#: nscd/cache.c:262 ++#, c-format ++msgid "pruning %s cache; time %ld" ++msgstr "czyszczenie bufora %s; czas %ld" + +-#: malloc/mcheck.c:352 +-msgid "memory clobbered past end of allocated block\n" +-msgstr "pami zostaa uszkodzona za przydzielonym blokiem\n" ++#: nscd/cache.c:289 ++#, c-format ++msgid "considering %s entry \"%s\", timeout %" ++msgstr "rozwaanie wpisu %s \"%s\", limit czasu %" + +-#: malloc/mcheck.c:355 +-msgid "block freed twice\n" +-msgstr "blok zwalniany dwa razy\n" ++#: nscd/connections.c:469 nscd/connections.c:481 nscd/connections.c:493 ++#: nscd/connections.c:512 ++#, c-format ++msgid "invalid persistent database file \"%s\": %s" ++msgstr "nieprawidowy plik trwaej bazy danych \"%s\": %s" + +-#: malloc/mcheck.c:358 +-msgid "bogus mcheck_status, library is buggy\n" +-msgstr "bdny mcheck_status, biblioteka zawiera bdy\n" ++#: nscd/connections.c:483 ++msgid "header size does not match" ++msgstr "rozmiar nagwka si nie zgadza" + +-#: malloc/memusagestat.c:53 +-msgid "Name output file" +-msgstr "Nazwa pliku wyjciowego" ++#: nscd/connections.c:495 ++msgid "file size does not match" ++msgstr "rozmiar pliku si nie zgadza" + +-#: malloc/memusagestat.c:54 +-msgid "Title string used in output graphic" +-msgstr "acuch tytuowy uywany w wynikowym wykresie" ++#: nscd/connections.c:514 ++msgid "verification failed" ++msgstr "weryfikacja nie powioda si" + +-#: malloc/memusagestat.c:55 +-msgid "Generate output linear to time (default is linear to number of function calls)" +-msgstr "Generowanie wyjcia liniowo po czasie (domylnie: liniowo po liczbie wywoa funkcji)" ++#: nscd/connections.c:528 ++#, c-format ++msgid "suggested size of table for database %s larger than the persistent database's table" ++msgstr "sugerowany rozmiar tablicy dla bazy danych %s wikszy od bufora trwaej bazy danych" + +-#: malloc/memusagestat.c:57 +-msgid "Also draw graph for total memory consumption" +-msgstr "Narysowanie take wykresu cakowitego uycia pamici" ++#: nscd/connections.c:538 nscd/connections.c:619 ++#, c-format ++msgid "cannot create read-only descriptor for \"%s\"; no mmap" ++msgstr "nie mona utworzy deskryptora tylko dla odczytu dla \"%s\"; brak mmap" + +-#: malloc/memusagestat.c:58 +-msgid "make output graphic VALUE pixel wide" +-msgstr "stworzenie wykresu szerokoci VALUE pikseli" ++#: nscd/connections.c:598 ++#, c-format ++msgid "database for %s corrupted or simultaneously used; remove %s manually if necessary and restart" ++msgstr "baza danych dla %s uszkodzona lub jednoczenie uywana; w razie potrzeby trzeba rcznie usun %s i zrestartowa" + +-#: malloc/memusagestat.c:59 +-msgid "make output graphic VALUE pixel high" +-msgstr "stworzenie wykresu szerokoci VALUE pikseli" ++#: nscd/connections.c:605 ++#, c-format ++msgid "cannot create %s; no persistent database used" ++msgstr "nie mona utworzy %s; trwaa baza danych nie uywana" + +-#: malloc/memusagestat.c:64 +-msgid "Generate graphic from memory profiling data" +-msgstr "Wygenerowanie wykresu z danych profilowania pamici" ++#: nscd/connections.c:608 ++#, c-format ++msgid "cannot create %s; no sharing possible" ++msgstr "nie mona utworzy %s; wspdzielenie niemoliwe" + +-#: malloc/memusagestat.c:67 +-msgid "DATAFILE [OUTFILE]" +-msgstr "PLIK-DANYCH [PLIK-WYJCIOWY]" ++#: nscd/connections.c:679 ++#, c-format ++msgid "cannot write to database file %s: %s" ++msgstr "nie mona zapisa do pliku bazy danych %s: %s" + +-#: string/strerror.c:43 posix/../sysdeps/posix/gai_strerror.c:57 +-msgid "Unknown error" +-msgstr "Nieznany bd" ++#: nscd/connections.c:713 ++#, c-format ++msgid "cannot set socket to close on exec: %s; disabling paranoia mode" ++msgstr "nie mona ustawi gniazda do zamknicia przy exec: %s; wyczono tryb paranoiczny" + +-#: string/strsignal.c:69 ++#: nscd/connections.c:763 + #, c-format +-msgid "Real-time signal %d" +-msgstr "Sygna czasu rzeczywistego %d" ++msgid "cannot open socket: %s" ++msgstr "nie mona otworzy gniazda: %s" + +-#: string/strsignal.c:73 ++#: nscd/connections.c:780 + #, c-format +-msgid "Unknown signal %d" +-msgstr "Nieznany sygna %d" ++msgid "cannot change socket to nonblocking mode: %s" ++msgstr "nie mona przestawi gniazda w tryb nieblokujcy: %s" + +-#: timezone/zdump.c:176 ++#: nscd/connections.c:788 + #, c-format +-msgid "%s: usage is %s [ --version ] [ -v ] [ -c cutoff ] zonename ...\n" +-msgstr "%s: skadnia: %s [ --version ] [ -v ] [ -c rok ] nazwa_strefy...\n" ++msgid "cannot set socket to close on exec: %s" ++msgstr "nie mona ustawi gniazda do zamknicia przy exec: %s" + +-#: timezone/zdump.c:269 +-msgid "Error writing to standard output" +-msgstr "Bd podczas pisania na standardowe wyjcie" ++#: nscd/connections.c:799 ++#, c-format ++msgid "cannot enable socket to accept connections: %s" ++msgstr "nie mona otworzy gniazda do przyjmowania pocze: %s" + +-#: timezone/zic.c:361 ++#: nscd/connections.c:892 + #, c-format +-msgid "%s: Memory exhausted: %s\n" +-msgstr "%s: Brak pamici: %s\n" ++msgid "provide access to FD %d, for %s" ++msgstr "udostpnianie FD %d dla %s" + +-#: timezone/zic.c:386 misc/error.c:129 misc/error.c:157 +-msgid "Unknown system error" +-msgstr "Nieznany bd systemowy" ++#: nscd/connections.c:904 ++#, c-format ++msgid "cannot handle old request version %d; current version is %d" ++msgstr "nie mona obsuy da w starej wersji %d; aktualna wersja to %d" + +-#: timezone/zic.c:420 ++#: nscd/connections.c:954 nscd/connections.c:1007 + #, c-format +-msgid "\"%s\", line %d: %s" +-msgstr "\"%s\", linia %d: %s" ++msgid "cannot write result: %s" ++msgstr "nie mona zapisa wyniku: %s" + +-#: timezone/zic.c:423 ++#: nscd/connections.c:1082 + #, c-format +-msgid " (rule from \"%s\", line %d)" +-msgstr " (regua z \"%s\", linia %d)" ++msgid "error getting caller's id: %s" ++msgstr "bd podczas pobierania identyfikatorw wywoujcych: %s" + +-#: timezone/zic.c:435 +-msgid "warning: " +-msgstr "uwaga: " ++#: nscd/connections.c:1140 nscd/connections.c:1154 ++#, c-format ++msgid "cannot open /proc/self/cmdline: %s; disabling paranoia mode" ++msgstr "nie mona otworzy /proc/self/cmdline: %s; wyczono tryb paranoiczny" + +-#: timezone/zic.c:445 ++#: nscd/connections.c:1194 + #, c-format +-msgid "" +-"%s: usage is %s [ --version ] [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n" +-"\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" +-msgstr "" +-"%s: skadnia: %s [ --version ] [ -s ] [ -v ] [ -l czas_lokalny ] \\\n" +-"\t[ -p reguy_POSIX ] [ -d katalog ] [ -L sek_przestpne ] \\\n" +-"\t[ -y yearistype ] [ plik ...]\n" ++msgid "cannot change to old UID: %s; disabling paranoia mode" ++msgstr "nie mona zmieni na stary UID: %s; wyczono tryb paranoiczny" + +-#: timezone/zic.c:492 ++#: nscd/connections.c:1204 + #, c-format +-msgid "%s: More than one -d option specified\n" +-msgstr "%s: Podano wicej ni jedn opcj -d\n" ++msgid "cannot change to old GID: %s; disabling paranoia mode" ++msgstr "nie mona zmieni na stary GID: %s; wyczono tryb paranoiczny" + +-#: timezone/zic.c:502 ++#: nscd/connections.c:1217 + #, c-format +-msgid "%s: More than one -l option specified\n" +-msgstr "%s: Podano wicej ni jedn opcj -l\n" ++msgid "cannot change to old working directory: %s; disabling paranoia mode" ++msgstr "nie mona przej do starego katalog roboczego: %s; wyczono tryb paranoiczny" + +-#: timezone/zic.c:512 ++#: nscd/connections.c:1245 + #, c-format +-msgid "%s: More than one -p option specified\n" +-msgstr "%s: Podano wicej ni jedn opcj -p\n" ++msgid "re-exec failed: %s; disabling paranoia mode" ++msgstr "ponowne wywoanie nie powiodo si: %s; wyczono tryb paranoiczny" + +-#: timezone/zic.c:522 ++#: nscd/connections.c:1254 + #, c-format +-msgid "%s: More than one -y option specified\n" +-msgstr "%s: Podano wicej ni jedn opcj -y\n" ++msgid "cannot change current working directory to \"/\": %s" ++msgstr "nie mona zmieni biecego katalogu na \"/\": %s" + +-#: timezone/zic.c:532 ++#: nscd/connections.c:1372 + #, c-format +-msgid "%s: More than one -L option specified\n" +-msgstr "%s: Podano wicej ni jedn opcj -L\n" ++msgid "short read while reading request: %s" ++msgstr "skrcony odczyt podczas czytania dania: `%s'" + +-#: timezone/zic.c:639 ++#: nscd/connections.c:1404 + #, c-format +-msgid "%s: Can't unlink %s: %s\n" +-msgstr "%s: Nie mona usun %s: %s\n" ++msgid "key length in request too long: %d" ++msgstr "dugo klucza w daniu zbyt dua: %d" + +-#: timezone/zic.c:646 +-msgid "hard link failed, symbolic link used" +-msgstr "stworzenie dowizania zwykego nie powiodo si, uyto symbolicznego" ++#: nscd/connections.c:1417 ++#, c-format ++msgid "short read while reading request key: %s" ++msgstr "skrcony odczyt podczas czytania klucza dania: %s" + +-#: timezone/zic.c:654 ++#: nscd/connections.c:1426 + #, c-format +-msgid "%s: Can't link from %s to %s: %s\n" +-msgstr "%s: Nie mona dowiza %s do %s: %s\n" ++msgid "handle_request: request received (Version = %d) from PID %ld" ++msgstr "handle_request: odebrano danie (Wersja = %d) od procesu %ld" + +-#: timezone/zic.c:752 timezone/zic.c:754 +-msgid "same rule name in multiple files" +-msgstr "ta sama nazwa nazwa reguy w rnych plikach" ++#: nscd/connections.c:1431 ++#, c-format ++msgid "handle_request: request received (Version = %d)" ++msgstr "handle_request: odebrano danie (Wersja = %d)" + +-#: timezone/zic.c:795 +-msgid "unruly zone" +-msgstr "strefa bez regu" ++#: nscd/connections.c:1792 ++#, c-format ++msgid "could only start %d threads; terminating" ++msgstr "mona uruchomi tylko %d wtkw; zakoczenie" + +-#: timezone/zic.c:802 ++#: nscd/connections.c:1840 nscd/connections.c:1841 nscd/connections.c:1858 ++#: nscd/connections.c:1867 nscd/connections.c:1885 nscd/connections.c:1896 ++#: nscd/connections.c:1907 + #, c-format +-msgid "%s in ruleless zone" +-msgstr "%s w strefie dla ktrej nie zdefiniowano regu" ++msgid "Failed to run nscd as user '%s'" ++msgstr "Uruchomienie nscd jako uytkownik '%s' nie powiodo si" + +-#: timezone/zic.c:823 +-msgid "standard input" +-msgstr "standardowe wejcie" ++#: nscd/connections.c:1859 ++#, c-format ++msgid "initial getgrouplist failed" ++msgstr "pocztkowe getgrouplist nie powiodo si" + +-#: timezone/zic.c:828 ++#: nscd/connections.c:1868 + #, c-format +-msgid "%s: Can't open %s: %s\n" +-msgstr "%s: Nie mona otworzy %s: %s\n" ++msgid "getgrouplist failed" ++msgstr "getgrouplist nie powiodo si" + +-#: timezone/zic.c:839 +-msgid "line too long" +-msgstr "za duga linia" ++#: nscd/connections.c:1886 ++#, c-format ++msgid "setgroups failed" ++msgstr "setgroups nie powiodo si" ++ ++#: nscd/grpcache.c:400 nscd/hstcache.c:411 nscd/initgrcache.c:411 ++#: nscd/pwdcache.c:395 ++#, c-format ++msgid "short write in %s: %s" ++msgstr "bd zapisu w %s: %s" + +-#: timezone/zic.c:859 +-msgid "input line of unknown type" +-msgstr "nieznany typ linii wejciowej" ++#: nscd/grpcache.c:443 nscd/initgrcache.c:77 ++#, c-format ++msgid "Haven't found \"%s\" in group cache!" ++msgstr "Nie znaleziono \"%s\" w buforze grup!" + +-#: timezone/zic.c:875 ++#: nscd/grpcache.c:445 nscd/initgrcache.c:79 + #, c-format +-msgid "%s: Leap line in non leap seconds file %s\n" +-msgstr "%s: linia Leap nie znajduje si w pliku sekund przestpnych %s\n" ++msgid "Reloading \"%s\" in group cache!" ++msgstr "Przeadowywanie \"%s\" w buforze grup!" + +-#: timezone/zic.c:882 timezone/zic.c:1297 timezone/zic.c:1322 ++#: nscd/grpcache.c:536 + #, c-format +-msgid "%s: panic: Invalid l_value %d\n" +-msgstr "%s: panika: Bdna l-warto %d\n" ++msgid "Invalid numeric gid \"%s\"!" ++msgstr "Nieprawidowy liczbowy gid \"%s\"!" + +-#: timezone/zic.c:890 ++#: nscd/mem.c:382 + #, c-format +-msgid "%s: Error reading %s\n" +-msgstr "%s: Bd odczytu %s\n" ++msgid "freed %zu bytes in %s cache" ++msgstr "zwolniono %zu bajtw w buforze %s" + +-#: timezone/zic.c:897 ++#: nscd/mem.c:511 + #, c-format +-msgid "%s: Error closing %s: %s\n" +-msgstr "%s: Bd podczas zamykania %s: %s\n" ++msgid "no more memory for database '%s'" ++msgstr "nie ma wicej pamici dla bazy danych '%s'" + +-#: timezone/zic.c:902 +-msgid "expected continuation line not found" +-msgstr "brak spodziewanej linii kontynuacji" ++#: nscd/nscd.c:97 ++msgid "Read configuration data from NAME" ++msgstr "Odczyt konfiguracji z pliku NAZWA" + +-#: timezone/zic.c:958 +-msgid "wrong number of fields on Rule line" +-msgstr "za liczba pl w linii Rule" ++#: nscd/nscd.c:99 ++msgid "Do not fork and display messages on the current tty" ++msgstr "Nie przechodzenie w to i wywietlanie komunikatw na biecym terminalu" + +-#: timezone/zic.c:962 +-msgid "nameless rule" +-msgstr "bezimienna regua" ++#: nscd/nscd.c:100 ++msgid "NUMBER" ++msgstr "LICZBA" + +-#: timezone/zic.c:967 +-msgid "invalid saved time" +-msgstr "bdny czas oszczdnoci" ++#: nscd/nscd.c:100 ++msgid "Start NUMBER threads" ++msgstr "Uruchomienie takiej LICZBY wtkw" + +-#: timezone/zic.c:986 +-msgid "wrong number of fields on Zone line" +-msgstr "za liczba pl w linii Zone" ++#: nscd/nscd.c:101 ++msgid "Shut the server down" ++msgstr "Zakoczenie pracy serwera" ++ ++#: nscd/nscd.c:102 ++msgid "Print current configuration statistic" ++msgstr "Wywietlenie aktualnych statystyk konfiguracji" ++ ++#: nscd/nscd.c:103 ++msgid "TABLE" ++msgstr "TABLICA" ++ ++#: nscd/nscd.c:104 ++msgid "Invalidate the specified cache" ++msgstr "Uniewanienie podanego bufora" ++ ++#: nscd/nscd.c:105 ++msgid "TABLE,yes" ++msgstr "TABLICA,yes" ++ ++#: nscd/nscd.c:106 ++msgid "Use separate cache for each user" ++msgstr "Uycie oddzielnego bufora dla kadego uytkownika" ++ ++# XXX moze zostawic oryginal albo zrobic ladniej -PK ++#: nscd/nscd.c:111 ++msgid "Name Service Cache Daemon." ++msgstr "Demon buforujcy usugi odwzorowania nazw." + +-#: timezone/zic.c:992 ++#: nscd/nscd.c:143 nss/getent.c:858 nss/makedb.c:123 + #, c-format +-msgid "\"Zone %s\" line and -l option are mutually exclusive" +-msgstr "Linia \"Zone %s\" i opcja -l wykluczaj si wzajemnie" ++msgid "wrong number of arguments" ++msgstr "za liczba argumentw" + +-#: timezone/zic.c:1000 ++#: nscd/nscd.c:153 + #, c-format +-msgid "\"Zone %s\" line and -p option are mutually exclusive" +-msgstr "Linia \"Zone %s\" i opcja -p wykluczaj si wzajemnie" ++msgid "failure while reading configuration file; this is fatal" ++msgstr "niepowodzenie podczas odczytu pliku konfiguracyjnego; koniec pracy" + +-#: timezone/zic.c:1012 ++#: nscd/nscd.c:162 + #, c-format +-msgid "duplicate zone name %s (file \"%s\", line %d)" +-msgstr "powtrzona nazwa strefy %s (plik \"%s\", linia %d)" ++msgid "already running" ++msgstr "jest ju uruchomiony" + +-#: timezone/zic.c:1028 +-msgid "wrong number of fields on Zone continuation line" +-msgstr "za liczba pl w linii kontynuacji Zone" ++#: nscd/nscd.c:177 nscd/nscd.c:232 ++#, c-format ++msgid "cannot fork" ++msgstr "nie mona wykona fork" + +-#: timezone/zic.c:1068 +-msgid "invalid UTC offset" +-msgstr "nieprawidowe przesunicie UTC" ++#: nscd/nscd.c:240 ++#, c-format ++msgid "cannot change current working cirectory to \"/\"" ++msgstr "nie mona zmieni biecego katalogu na \"/\"" + +-#: timezone/zic.c:1071 +-msgid "invalid abbreviation format" +-msgstr "nieprawidowy format skrtu" ++#: nscd/nscd.c:248 ++msgid "Could not create log file" ++msgstr "Nie mona utworzy pliku dziennika" + +-#: timezone/zic.c:1097 +-msgid "Zone continuation line end time is not after end time of previous line" +-msgstr "Czas kocowy linii kontynuacji Zone nie jest po czasie kocowym poprzedniej linii" ++#: nscd/nscd.c:301 nscd/nscd.c:326 nscd/nscd_stat.c:172 ++#, c-format ++msgid "Only root is allowed to use this option!" ++msgstr "Tylko root moe uywa tej opcji!" + +-#: timezone/zic.c:1124 +-msgid "wrong number of fields on Leap line" +-msgstr "za liczba pl w linii Leap" ++#: nscd/nscd.c:359 nscd/nscd_stat.c:191 ++#, c-format ++msgid "write incomplete" ++msgstr "zapis nie by kompletny" + +-#: timezone/zic.c:1133 +-msgid "invalid leaping year" +-msgstr "nieprawidowy rok przestpny" ++#: nscd/nscd.c:370 ++#, c-format ++msgid "cannot read invalidate ACK" ++msgstr "nie mona odczyta ACK dla uniewanienia" + +-#: timezone/zic.c:1148 timezone/zic.c:1252 +-msgid "invalid month name" +-msgstr "nieprawidowa nazwa miesica" ++#: nscd/nscd.c:376 ++#, c-format ++msgid "invalidation failed" ++msgstr "uniewanienie nie powiodo si" + +-#: timezone/zic.c:1161 timezone/zic.c:1374 timezone/zic.c:1388 +-msgid "invalid day of month" +-msgstr "nieprawidowy dzie miesica" ++#: nscd/nscd.c:386 ++#, c-format ++msgid "secure services not implemented anymore" ++msgstr "bezpieczne usugi nie s ju zaimplementowane" + +-#: timezone/zic.c:1166 +-msgid "time before zero" +-msgstr "czas przed zerem" ++#: nscd/nscd_conf.c:55 ++#, c-format ++msgid "database %s is not supported\n" ++msgstr "baza danych %s nie jest obsugiwana\n" + +-#: timezone/zic.c:1170 +-msgid "time too small" +-msgstr "czas zbyt may" ++#: nscd/nscd_conf.c:106 ++#, c-format ++msgid "Parse error: %s" ++msgstr "Bd analizowania: %s" + +-#: timezone/zic.c:1174 +-msgid "time too large" +-msgstr "czas zbyt duy" ++#: nscd/nscd_conf.c:191 ++#, c-format ++msgid "Must specify user name for server-user option" ++msgstr "Trzeba poda nazw uytkownika dla opcji server-user" + +-#: timezone/zic.c:1178 timezone/zic.c:1281 +-msgid "invalid time of day" +-msgstr "nieprawidowa pora dnia" ++#: nscd/nscd_conf.c:198 ++#, c-format ++msgid "Must specify user name for stat-user option" ++msgstr "Trzeba poda nazw uytkownika dla opcji stat-user" + +-#: timezone/zic.c:1197 +-msgid "illegal CORRECTION field on Leap line" +-msgstr "bdne pole CORRECTION w linii Leap" ++#: nscd/nscd_conf.c:242 ++#, c-format ++msgid "invalid value for 'reload-count': %u" ++msgstr "bdna warto dla 'reload-count': %u" + +-#: timezone/zic.c:1201 +-msgid "illegal Rolling/Stationary field on Leap line" +-msgstr "bdne pole Rolling/Stationary w linii Leap" ++#: nscd/nscd_conf.c:257 ++#, c-format ++msgid "Must specify value for restart-interval option" ++msgstr "Trzeba poda warto dla opcji restart-interval" + +-#: timezone/zic.c:1216 +-msgid "wrong number of fields on Link line" +-msgstr "za liczba pl w linii Link" ++#: nscd/nscd_conf.c:271 ++#, c-format ++msgid "Unknown option: %s %s %s" ++msgstr "Nieznana opcja: %s %s %s" + +-#: timezone/zic.c:1220 +-msgid "blank FROM field on Link line" +-msgstr "puste pole FROM w linii Link" ++#: nscd/nscd_conf.c:284 ++#, c-format ++msgid "cannot get current working directory: %s; disabling paranoia mode" ++msgstr "nie mona pobra biecego katalogu: %s; wyczono tryb paranoiczny" + +-#: timezone/zic.c:1224 +-msgid "blank TO field on Link line" +-msgstr "puste pole TO w linii Link" ++#: nscd/nscd_conf.c:304 ++#, c-format ++msgid "maximum file size for %s database too small" ++msgstr "maksymalny rozmiar pliku dla bazy danych %s jest zbyt may" + +-#: timezone/zic.c:1301 +-msgid "invalid starting year" +-msgstr "nieprawidowy rok pocztkowy" ++#: nscd/nscd_stat.c:141 ++#, c-format ++msgid "cannot write statistics: %s" ++msgstr "nie mona zapisa statystyk: %s" + +-#: timezone/zic.c:1305 +-msgid "starting year too low to be represented" +-msgstr "rok pocztkowy jest zbyt may" ++#: nscd/nscd_stat.c:156 ++msgid "yes" ++msgstr "tak" ++ ++#: nscd/nscd_stat.c:157 ++msgid "no" ++msgstr "nie" + +-#: timezone/zic.c:1307 +-msgid "starting year too high to be represented" +-msgstr "rok pocztkowy jest zbyt duy" ++#: nscd/nscd_stat.c:168 ++#, c-format ++msgid "Only root or %s is allowed to use this option!" ++msgstr "Tylko root lub %s moe uywa tej opcji!" + +-#: timezone/zic.c:1326 +-msgid "invalid ending year" +-msgstr "nieprawidowy rok kocowy" ++#: nscd/nscd_stat.c:179 ++#, c-format ++msgid "nscd not running!\n" ++msgstr "nscd nie jest uruchomiony!\n" + +-#: timezone/zic.c:1330 +-msgid "ending year too low to be represented" +-msgstr "rok kocowy jest zbyt may" ++#: nscd/nscd_stat.c:203 ++#, c-format ++msgid "cannot read statistics data" ++msgstr "nie mona odczyta danych statystycznych" + +-#: timezone/zic.c:1332 +-msgid "ending year too high to be represented" +-msgstr "rok kocowy jest zbyt duy" ++#: nscd/nscd_stat.c:206 ++#, c-format ++msgid "" ++"nscd configuration:\n" ++"\n" ++"%15d server debug level\n" ++msgstr "" ++"konfiguracja nscd:\n" ++"\n" ++"%15d poziom komunikatw diagnostycznych\n" + +-#: timezone/zic.c:1335 +-msgid "starting year greater than ending year" +-msgstr "rok pocztkowy jest pniejszy ni kocowy" ++#: nscd/nscd_stat.c:230 ++#, c-format ++msgid "%3ud %2uh %2um %2lus server runtime\n" ++msgstr "%3ud %2uh %2um %2lus czasu dziaania serwera\n" + +-#: timezone/zic.c:1342 +-msgid "typed single year" +-msgstr "podano pojedynczy rok" ++#: nscd/nscd_stat.c:233 ++#, c-format ++msgid " %2uh %2um %2lus server runtime\n" ++msgstr " %2uh %2um %2lus czasu dziaania serwera\n" + +-#: timezone/zic.c:1379 +-msgid "invalid weekday name" +-msgstr "nieprawidowa nazwa dnia tygodnia" ++#: nscd/nscd_stat.c:235 ++#, c-format ++msgid " %2um %2lus server runtime\n" ++msgstr " %2um %2lus czasu dziaania serwera\n" + +-#: timezone/zic.c:1494 ++#: nscd/nscd_stat.c:237 + #, c-format +-msgid "%s: Can't remove %s: %s\n" +-msgstr "%s: Nie mona usun %s: %s\n" ++msgid " %2lus server runtime\n" ++msgstr " %2lus czasu dziaania serwera\n" + +-#: timezone/zic.c:1504 ++#: nscd/nscd_stat.c:239 + #, c-format +-msgid "%s: Can't create %s: %s\n" +-msgstr "%s: Nie mona utworzy %s: %s\n" ++msgid "" ++"%15d current number of threads\n" ++"%15d maximum number of threads\n" ++"%15lu number of times clients had to wait\n" ++"%15s paranoia mode enabled\n" ++"%15lu restart internal\n" ++msgstr "" ++"%15d aktualna liczba wtkw\n" ++"%15d maksymalna liczba wtkw\n" ++"%15lu razy klienci musieli czeka\n" ++"%15s tryb paranoiczny wczony\n" ++"%15lu midzy restartami\n" + +-#: timezone/zic.c:1570 ++#: nscd/nscd_stat.c:273 + #, c-format +-msgid "%s: Error writing %s\n" +-msgstr "%s: Bd podczas zapisu do %s\n" ++msgid "" ++"\n" ++"%s cache:\n" ++"\n" ++"%15s cache is enabled\n" ++"%15s cache is persistent\n" ++"%15s cache is shared\n" ++"%15zu suggested size\n" ++"%15zu total data pool size\n" ++"%15zu used data pool size\n" ++"%15lu seconds time to live for positive entries\n" ++"%15lu seconds time to live for negative entries\n" ++"%15 cache hits on positive entries\n" ++"%15 cache hits on negative entries\n" ++"%15 cache misses on positive entries\n" ++"%15 cache misses on negative entries\n" ++"%15lu%% cache hit rate\n" ++"%15zu current number of cached values\n" ++"%15zu maximum number of cached values\n" ++"%15zu maximum chain length searched\n" ++"%15 number of delays on rdlock\n" ++"%15 number of delays on wrlock\n" ++"%15 memory allocations failed\n" ++"%15s check /etc/%s for changes\n" ++msgstr "" ++"\n" ++"bufor %s:\n" ++"\n" ++"%15s bufor wczony\n" ++"%15s bufor trway\n" ++"%15s bufor wspdzielony\n" ++"%15zu zalecany rozmiar\n" ++"%15zu cakowity rozmiar puli danych\n" ++"%15zu uywany rozmiar puli danych\n" ++"%15lu sekund czasu przez ktry bd utrzymywane wpisy pozytywne\n" ++"%15lu sekund czasu przez ktry bd utrzymywane wpisy negatywne\n" ++"%15 trafionych wpisw pozytywnych\n" ++"%15 trafionych wpisw negatywnych\n" ++"%15 nie trafionych wpisw pozytywnych\n" ++"%15 nie trafionych wpisw negatywnych\n" ++"%15lu%% trafie\n" ++"%15zu aktualnie pamitanych wartoci\n" ++"%15zu maksymalnie pamitanych wartoci\n" ++"%15zu maksymalna dugo szukanego acucha\n" ++"%15 opnie na rdlock\n" ++"%15 opnie na wrlock\n" ++"%15 przydziele pamici nie powiodo si\n" ++"%15s sprawdzanie zmian w /etc/%s\n" + +-# jak ladnie przetlumaczyc ten until time? -PK +-#: timezone/zic.c:1760 +-msgid "can't determine time zone abbreviation to use just after until time" +-msgstr "nie mona okreli skrtu strefy czasowej po kocu przedziau czasu" ++#: nscd/pwdcache.c:438 ++#, c-format ++msgid "Haven't found \"%s\" in password cache!" ++msgstr "Nie znaleziono \"%s\" w buforze hase!" + +-#: timezone/zic.c:1803 +-msgid "too many transitions?!" +-msgstr "za duo konwersji?!" ++#: nscd/pwdcache.c:440 ++#, c-format ++msgid "Reloading \"%s\" in password cache!" ++msgstr "Przeadowywanie \"%s\" w buforze hase!" + +-#: timezone/zic.c:1822 +-msgid "internal error - addtype called with bad isdst" +-msgstr "bd wewntrzny - addtype wywoane z bdnym isdst" ++#: nscd/pwdcache.c:532 ++#, c-format ++msgid "Invalid numeric uid \"%s\"!" ++msgstr "Nieprawidowy liczbowy uid \"%s\"!" + +-#: timezone/zic.c:1826 +-msgid "internal error - addtype called with bad ttisstd" +-msgstr "bd wewntrzny - addtype wywoane z bdnym ttisstd" ++#: nscd/selinux.c:151 ++#, c-format ++msgid "Failed opening connection to the audit subsystem: %m" ++msgstr "Nie udao si otworzy poczenia do podsystemu audytu: %m" + +-#: timezone/zic.c:1830 +-msgid "internal error - addtype called with bad ttisgmt" +-msgstr "bd wewntrzny - addtype wywoane z bdnym ttisgmt" ++#: nscd/selinux.c:172 ++msgid "Failed to set keep-capabilities" ++msgstr "Nie udao si ustawi keep-capabilities" + +-#: timezone/zic.c:1849 +-msgid "too many local time types" +-msgstr "za duo lokalnych typw czasu" ++#: nscd/selinux.c:173 nscd/selinux.c:232 ++#, c-format ++msgid "prctl(KEEPCAPS) failed" ++msgstr "prctl(KEEPCAPS) nie powiodo si" + +-#: timezone/zic.c:1877 +-msgid "too many leap seconds" +-msgstr "za duo sekund przestpnych" ++#: nscd/selinux.c:187 ++msgid "Failed to initialize drop of capabilities" ++msgstr "Nie udao si zainicjowa porzucenia capabilities" + +-#: timezone/zic.c:1883 +-msgid "repeated leap second moment" +-msgstr "powtrzona chwila wystpowania sekund przestpnych" ++#: nscd/selinux.c:188 ++#, c-format ++msgid "cap_init failed" ++msgstr "cap_init nie powiodo si" + +-#: timezone/zic.c:1935 +-msgid "Wild result from command execution" +-msgstr "Osobliwy wynik wykonania polecenia" ++#: nscd/selinux.c:205 ++msgid "Failed to drop capabilities\n" ++msgstr "Nie udao si porzuci capabilities\n" + +-#: timezone/zic.c:1936 ++#: nscd/selinux.c:206 nscd/selinux.c:223 + #, c-format +-msgid "%s: command was '%s', result was %d\n" +-msgstr "%s: polecenie `%s' zwrcio %d\n" +- +-#: timezone/zic.c:2031 +-msgid "Odd number of quotation marks" +-msgstr "Nieparzysta liczba cudzysoww" ++msgid "cap_set_proc failed" ++msgstr "cap_set_proc nie powiodo si" + +-#: timezone/zic.c:2051 timezone/zic.c:2070 +-msgid "time overflow" +-msgstr "przepenienie czasu" ++#: nscd/selinux.c:222 ++msgid "Failed to drop capabilities" ++msgstr "Nie udao si porzuci capabilities" + +-#: timezone/zic.c:2117 +-msgid "use of 2/29 in non leap-year" +-msgstr "uycie 2/29 w roku nieprzestpnym" ++#: nscd/selinux.c:231 ++msgid "Failed to unset keep-capabilities" ++msgstr "Nie udao si wyczy keep-capabilities" + +-#: timezone/zic.c:2151 +-msgid "no day in month matches rule" +-msgstr "aden z dni miesica nie pasuje do reguy" ++#: nscd/selinux.c:247 ++msgid "Failed to determine if kernel supports SELinux" ++msgstr "Nie udao si okreli, czy jdro obsuguje SELinuksa" + +-#: timezone/zic.c:2175 +-msgid "too many, or too long, time zone abbreviations" +-msgstr "za dugie lub za duo skrtw stref czasowych" ++#: nscd/selinux.c:262 ++#, c-format ++msgid "Failed to start AVC thread" ++msgstr "Nie udao si uruchomi wtku AVC" + +-#: timezone/zic.c:2216 ++#: nscd/selinux.c:284 + #, c-format +-msgid "%s: Can't create directory %s: %s\n" +-msgstr "%s: Nie mona utworzy katalogu %s: %s\n" ++msgid "Failed to create AVC lock" ++msgstr "Nie udao si utworzy blokady AVC" + +-#: timezone/zic.c:2238 ++#: nscd/selinux.c:324 + #, c-format +-msgid "%s: %d did not sign extend correctly\n" +-msgstr "%s: %d niepoprawnie rozszerzy znak\n" ++msgid "Failed to start AVC" ++msgstr "Nie udao si uruchomi AVC" ++ ++#: nscd/selinux.c:326 ++msgid "Access Vector Cache (AVC) started" ++msgstr "Access Vector Cache (AVC) uruchomione" ++ ++#: nscd/selinux.c:347 ++msgid "Error getting context of socket peer" ++msgstr "Bd podczas pobierania kontekstu drugiej strony gniazda" ++ ++#: nscd/selinux.c:352 ++msgid "Error getting context of nscd" ++msgstr "Bd podczas pobierania kontekstu nscd" + +-#: posix/../sysdeps/generic/wordexp.c:1797 +-msgid "parameter null or not set" +-msgstr "parametr pusty lub nie ustawiony" ++#: nscd/selinux.c:358 ++msgid "Error getting sid from context" ++msgstr "Bd podczas pobierania sid z kontekstu" + +-#: posix/../sysdeps/posix/gai_strerror.c:31 +-msgid "Address family for hostname not supported" +-msgstr "Rodzina adresw dla tej nazwy hosta nie jest obsugiwana" ++#: nscd/selinux.c:390 ++#, c-format ++msgid "" ++"\n" ++"SELinux AVC Statistics:\n" ++"\n" ++"%15u entry lookups\n" ++"%15u entry hits\n" ++"%15u entry misses\n" ++"%15u entry discards\n" ++"%15u CAV lookups\n" ++"%15u CAV hits\n" ++"%15u CAV probes\n" ++"%15u CAV misses\n" ++msgstr "" ++"\n" ++"Statystyki SELinux AVC:\n" ++"\n" ++"%15u wyszukiwa wpisw\n" ++"%15u wpisw trafionych\n" ++"%15u wpisw nie trafionych\n" ++"%15u usuni wpisw\n" ++"%15u wyszukiwa CAV\n" ++"%15u CAV trafionych\n" ++"%15u prb CAV\n" ++"%15u CAV nie trafionych\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:32 +-msgid "Temporary failure in name resolution" +-msgstr "Odwzorowanie nazwy jest chwilowo niemoliwe" ++#: nss/getent.c:52 ++msgid "database [key ...]" ++msgstr "baza [klucz ...]" + +-#: posix/../sysdeps/posix/gai_strerror.c:33 +-msgid "Bad value for ai_flags" +-msgstr "Bdna warto dla ai_flags" ++#: nss/getent.c:57 ++msgid "Service configuration to be used" ++msgstr "Uycie tej konfiguracji usugi rozwizywania nazw" + +-#: posix/../sysdeps/posix/gai_strerror.c:34 +-msgid "Non-recoverable failure in name resolution" +-msgstr "Wystpi krytyczny bd w odwzorowaniu nazw" ++#: nss/getent.c:62 ++msgid "" ++"Get entries from administrative database. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Pobranie wpisw z administracyjnej bazy danych. Instrukcje dotyczce zgaszania bdw znajduj si pod adresem:\n" ++".\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:35 +-msgid "ai_family not supported" +-msgstr "ai_family zawiera nie obsugiwan rodzin protokow" ++#: nss/getent.c:145 nss/getent.c:394 ++#, c-format ++msgid "Enumeration not supported on %s\n" ++msgstr "Wyliczanie nie obsugiwane dla %s\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:36 +-msgid "Memory allocation failure" +-msgstr "Wystpi bd przydzielania pamici" ++#: nss/getent.c:782 ++#, c-format ++msgid "Unknown database name" ++msgstr "Nieznana baza danych" + +-#: posix/../sysdeps/posix/gai_strerror.c:37 +-msgid "No address associated with hostname" +-msgstr "Brak adresu zwizanego z nazw hosta" ++#: nss/getent.c:808 ++msgid "Supported databases:\n" ++msgstr "Obsugiwane bazy danych:\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:38 +-msgid "Name or service not known" +-msgstr "Ta nazwa lub usuga jest nieznana" ++#: nss/getent.c:868 ++#, c-format ++msgid "Unknown database: %s\n" ++msgstr "Nieznana baza `%s'\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:39 +-msgid "Servname not supported for ai_socktype" +-msgstr "Nazwa nie obsugiwana dla ai_socktype" ++#: nss/makedb.c:60 ++msgid "Convert key to lower case" ++msgstr "Przeksztacenie klucza do maych liter" ++ ++#: nss/makedb.c:63 ++msgid "Do not print messages while building database" ++msgstr "Nie wypisywanie komunikatw podczas tworzenia bazy danych" ++ ++#: nss/makedb.c:65 ++msgid "Print content of database file, one entry a line" ++msgstr "Wypisanie zawartoci pliku bazy danych po jednym wpisie w linii" ++ ++#: nss/makedb.c:70 ++msgid "Create simple DB database from textual input." ++msgstr "Utworzenie prostej bazy danych DB z wejcia tekstowego." + +-#: posix/../sysdeps/posix/gai_strerror.c:40 +-msgid "ai_socktype not supported" +-msgstr "ai_socktype zawiera nie obsugiwany typ gniazda" ++#: nss/makedb.c:73 ++msgid "" ++"INPUT-FILE OUTPUT-FILE\n" ++"-o OUTPUT-FILE INPUT-FILE\n" ++"-u INPUT-FILE" ++msgstr "" ++"PLIK-WEJCIOWY PLIK-WYJCIOWY\n" ++"-o PLIK-WYJCIOWY PLIK-WEJCIOWY\n" ++"-u PLIK-WEJCIOWY" + +-#: posix/../sysdeps/posix/gai_strerror.c:41 +-msgid "System error" +-msgstr "Bd systemowy" ++#: nss/makedb.c:142 ++#, c-format ++msgid "No usable database library found." ++msgstr "Nie znaleziono uywalnej biblioteki bazy danych." + +-#: posix/../sysdeps/posix/gai_strerror.c:42 +-msgid "Processing request in progress" +-msgstr "danie przetworzenia jest ju wykonywane" ++#: nss/makedb.c:149 ++#, c-format ++msgid "cannot open database file `%s': %s" ++msgstr "nie udao si otworzy pliku bazy danych `%s': %s" + +-#: posix/../sysdeps/posix/gai_strerror.c:43 +-msgid "Request canceled" +-msgstr "danie anulowane" ++#: nss/makedb.c:151 ++msgid "incorrectly formatted file" ++msgstr "niepoprawnie sformatowany plik" + +-#: posix/../sysdeps/posix/gai_strerror.c:44 +-msgid "Request not canceled" +-msgstr "danie nie anulowane" ++#: nss/makedb.c:331 ++msgid "duplicate key" ++msgstr "powtrzony klucz" + +-#: posix/../sysdeps/posix/gai_strerror.c:45 +-msgid "All requests done" +-msgstr "Wszystkie dania wykonane" ++#: nss/makedb.c:337 ++#, c-format ++msgid "while writing database file" ++msgstr "podczas zapisu pliku bazy danych" + +-#: posix/../sysdeps/posix/gai_strerror.c:46 +-msgid "Interrupted by a signal" +-msgstr "Przerwane przez sygna" ++#: nss/makedb.c:348 ++#, c-format ++msgid "problems while reading `%s'" ++msgstr "problemy podczas odczytu `%s'" ++ ++#: nss/makedb.c:368 nss/makedb.c:385 ++#, c-format ++msgid "while reading database" ++msgstr "podczas odczytu bazy danych" + +-#: posix/getconf.c:892 ++#: posix/getconf.c:940 + #, c-format + msgid "Usage: %s [-v specification] variable_name [pathname]\n" + msgstr "Skadnia: %s [-v specyfikacja] nazwa_zmiennej [cieka]\n" + +-#: posix/getconf.c:950 ++#: posix/getconf.c:943 ++#, c-format ++msgid " %s -a [pathname]\n" ++msgstr " %s -a [cieka]\n" ++ ++#: posix/getconf.c:1062 + #, c-format + msgid "unknown specification \"%s\"" + msgstr "nieznana specyfikacja \"%s\"" + +-#: posix/getconf.c:979 posix/getconf.c:995 ++#: posix/getconf.c:1090 ++#, c-format ++msgid "Couldn't execute %s" ++msgstr "Nie mona wykona %s" ++ ++#: posix/getconf.c:1130 posix/getconf.c:1146 + msgid "undefined" + msgstr "niezdefiniowana" + +-#: posix/getconf.c:1017 ++#: posix/getconf.c:1168 + #, c-format + msgid "Unrecognized variable `%s'" + msgstr "Nierozpoznana zmienna `%s'" + +-#: posix/getopt.c:692 posix/getopt.c:711 ++#: posix/getopt.c:571 posix/getopt.c:587 + #, c-format + msgid "%s: option `%s' is ambiguous\n" + msgstr "%s: opcja `%s' jest niejednoznaczna\n" + +-#: posix/getopt.c:744 posix/getopt.c:748 ++#: posix/getopt.c:620 posix/getopt.c:624 + #, c-format + msgid "%s: option `--%s' doesn't allow an argument\n" + msgstr "%s: opcja `--%s' nie moe mie argumentw\n" + +-#: posix/getopt.c:757 posix/getopt.c:762 ++#: posix/getopt.c:633 posix/getopt.c:638 + #, c-format + msgid "%s: option `%c%s' doesn't allow an argument\n" + msgstr "%s: opcja `%c%s' nie moe mie argumentw\n" + +-#: posix/getopt.c:807 posix/getopt.c:829 posix/getopt.c:1159 +-#: posix/getopt.c:1181 ++#: posix/getopt.c:681 posix/getopt.c:700 posix/getopt.c:1016 ++#: posix/getopt.c:1035 + #, c-format + msgid "%s: option `%s' requires an argument\n" + msgstr "%s: opcja `%s' musi mie argument\n" + +-#: posix/getopt.c:867 posix/getopt.c:870 ++#: posix/getopt.c:738 posix/getopt.c:741 + #, c-format + msgid "%s: unrecognized option `--%s'\n" + msgstr "%s: nieznana opcja `--%s'\n" + +-#: posix/getopt.c:878 posix/getopt.c:881 ++#: posix/getopt.c:749 posix/getopt.c:752 + #, c-format + msgid "%s: unrecognized option `%c%s'\n" + msgstr "%s: nieznana opcja `%c%s'\n" + +-#: posix/getopt.c:936 posix/getopt.c:939 ++#: posix/getopt.c:804 posix/getopt.c:807 + #, c-format + msgid "%s: illegal option -- %c\n" + msgstr "%s: niewaciwa opcja -- %c\n" + +-#: posix/getopt.c:945 posix/getopt.c:948 ++#: posix/getopt.c:813 posix/getopt.c:816 + #, c-format + msgid "%s: invalid option -- %c\n" + msgstr "%s: bdna opcja -- %c\n" + +-#: posix/getopt.c:1003 posix/getopt.c:1022 posix/getopt.c:1234 +-#: posix/getopt.c:1255 ++#: posix/getopt.c:868 posix/getopt.c:884 posix/getopt.c:1088 ++#: posix/getopt.c:1106 + #, c-format + msgid "%s: option requires an argument -- %c\n" + msgstr "%s: opcja musi mie argument -- %c\n" + +-#: posix/getopt.c:1074 posix/getopt.c:1093 ++#: posix/getopt.c:937 posix/getopt.c:953 + #, c-format + msgid "%s: option `-W %s' is ambiguous\n" + msgstr "%s: opcja `-W %s' jest niejednoznaczna\n" + +-#: posix/getopt.c:1117 posix/getopt.c:1138 ++#: posix/getopt.c:977 posix/getopt.c:995 + #, c-format + msgid "%s: option `-W %s' doesn't allow an argument\n" + msgstr "%s: opcja `-W %s' nie moe mie argumentw\n" + +-#: posix/regcomp.c:150 ++#: posix/regcomp.c:135 + msgid "No match" + msgstr "Nic nie pasuje" + +-#: posix/regcomp.c:153 ++#: posix/regcomp.c:138 + msgid "Invalid regular expression" + msgstr "Bdne wyraenie regularne" + +-#: posix/regcomp.c:156 ++#: posix/regcomp.c:141 + msgid "Invalid collation character" + msgstr "Bdny znak sortowany" + +-#: posix/regcomp.c:159 ++#: posix/regcomp.c:144 + msgid "Invalid character class name" + msgstr "Bdna nazwa klasy znaku" + +-#: posix/regcomp.c:162 ++#: posix/regcomp.c:147 + msgid "Trailing backslash" + msgstr "Koczcy znak `\\'" + +-#: posix/regcomp.c:165 ++#: posix/regcomp.c:150 + msgid "Invalid back reference" + msgstr "Bdny odnonik wstecz" + +-#: posix/regcomp.c:168 ++#: posix/regcomp.c:153 + msgid "Unmatched [ or [^" + msgstr "Niesparowane [ lub [^" + +-#: posix/regcomp.c:171 ++#: posix/regcomp.c:156 + msgid "Unmatched ( or \\(" + msgstr "Niesparowane ( lub \\(" + +-#: posix/regcomp.c:174 ++#: posix/regcomp.c:159 + msgid "Unmatched \\{" + msgstr "Niesparowane \\{" + +-#: posix/regcomp.c:177 ++#: posix/regcomp.c:162 + msgid "Invalid content of \\{\\}" + msgstr "Bdna zawarto \\{\\}" + +-#: posix/regcomp.c:180 ++#: posix/regcomp.c:165 + msgid "Invalid range end" + msgstr "Bdny koniec zakresu" + +-#: posix/regcomp.c:183 ++#: posix/regcomp.c:168 + msgid "Memory exhausted" + msgstr "Pami wyczerpana" + +-#: posix/regcomp.c:186 ++#: posix/regcomp.c:171 + msgid "Invalid preceding regular expression" + msgstr "Bdne poprzedzajce wyraenie regularne" + +-#: posix/regcomp.c:189 ++#: posix/regcomp.c:174 + msgid "Premature end of regular expression" + msgstr "Niespodziewany koniec wyraenia regularnego" + +-#: posix/regcomp.c:192 ++#: posix/regcomp.c:177 + msgid "Regular expression too big" + msgstr "Wyraenie regularne jest za due" + +-#: posix/regcomp.c:195 ++#: posix/regcomp.c:180 + msgid "Unmatched ) or \\)" + msgstr "Niesparowane ) lub \\)" + +-#: posix/regcomp.c:661 ++#: posix/regcomp.c:660 + msgid "No previous regular expression" + msgstr "Brak wyraenia regularnego" + +-#: argp/argp-help.c:224 +-#, c-format +-msgid "%.*s: ARGP_HELP_FMT parameter requires a value" +-msgstr "%.*s: parametr ARGP_HELP_FMT wymaga podania wartoci" +- +-#: argp/argp-help.c:233 +-#, c-format +-msgid "%.*s: Unknown ARGP_HELP_FMT parameter" +-msgstr "%.*s: Nieznany parametr ARGP_HELP_FMT" +- +-#: argp/argp-help.c:245 +-#, c-format +-msgid "Garbage in ARGP_HELP_FMT: %s" +-msgstr "Bdne dane w ARGP_HELP_FMT: %s" +- +-#: argp/argp-help.c:1205 +-msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." +-msgstr "Argumenty obowizkowe lub opcjonalne dla dugich opcji s rwnie obowizkowe lub opcjonalne dla odpowiednich krtkich opcji." +- +-#: argp/argp-help.c:1592 +-msgid "Usage:" +-msgstr "Skadnia:" +- +-#: argp/argp-help.c:1596 +-msgid " or: " +-msgstr " lub: " +- +-#: argp/argp-help.c:1608 +-msgid " [OPTION...]" +-msgstr " [OPCJA...]" +- +-#: argp/argp-help.c:1635 +-#, c-format +-msgid "Try `%s --help' or `%s --usage' for more information.\n" +-msgstr "Polecenie `%s --help' lub `%s --usage' pozwoli uzyska wicej informacji.\n" +- +-#: argp/argp-help.c:1663 +-#, c-format +-msgid "Report bugs to %s.\n" +-msgstr "Prosimy zgasza bdy na adres %s.\n" +- +-#: argp/argp-parse.c:115 +-msgid "Give this help list" +-msgstr "Wywietlenie tego tekstu pomocy" +- +-#: argp/argp-parse.c:116 +-msgid "Give a short usage message" +-msgstr "Wywietlenie krtkiej informacji o skadni polecenia" +- +-#: argp/argp-parse.c:117 +-msgid "Set the program name" +-msgstr "Okrelenie nazwy programu" +- +-#: argp/argp-parse.c:119 +-msgid "Hang for SECS seconds (default 3600)" +-msgstr "Zatrzymanie na SECS sekund (domylnie 3600)" +- +-#: argp/argp-parse.c:180 +-msgid "Print program version" +-msgstr "Wywietlenie wersji programu" +- +-#: argp/argp-parse.c:196 +-msgid "(PROGRAM ERROR) No version known!?" +-msgstr "(BD PROGRAMU) Nieznana wersja?!" +- +-#: argp/argp-parse.c:672 +-#, c-format +-msgid "%s: Too many arguments\n" +-msgstr "%s: Za duo argumentw\n" +- +-#: argp/argp-parse.c:813 +-msgid "(PROGRAM ERROR) Option should have been recognized!?" +-msgstr "(BD PROGRAMU) Opcja powinna zosta rozpoznana?!" ++#: posix/wordexp.c:1798 ++msgid "parameter null or not set" ++msgstr "parametr pusty lub nie ustawiony" + + #: resolv/herror.c:68 + msgid "Resolver Error 0 (no error)" +@@ -3743,199 +4484,71 @@ + msgid "No address associated with name" + msgstr "Brak adresu zwizanego z nazw" + +-#: resolv/herror.c:108 ++#: resolv/herror.c:107 + msgid "Resolver internal error" + msgstr "Bd wewntrzny biblioteki rozwizujcej nazwy" + +-#: resolv/herror.c:111 ++#: resolv/herror.c:110 + msgid "Unknown resolver error" + msgstr "Nieznany bd biblioteki rozwizujcej nazwy" + +-#: resolv/res_hconf.c:147 +-#, c-format +-msgid "%s: line %d: expected service, found `%s'\n" +-msgstr "%s: linia %d: oczekiwano usugi, napotkano `%s'\n" +- +-#: resolv/res_hconf.c:165 +-#, c-format +-msgid "%s: line %d: cannot specify more than %d services" +-msgstr "%s: linia %d: nie mona poda wicej ni %d usug" +- +-#: resolv/res_hconf.c:191 +-#, c-format +-msgid "%s: line %d: list delimiter not followed by keyword" +-msgstr "%s: linia %d: brak sowa kluczowego po ograniczniku listy" +- +-#: resolv/res_hconf.c:231 ++#: resolv/res_hconf.c:124 + #, c-format + msgid "%s: line %d: cannot specify more than %d trim domains" + msgstr "%s: linia %d: nie mona poda wicej ni %d prawidowych domen" + +-#: resolv/res_hconf.c:256 ++#: resolv/res_hconf.c:145 + #, c-format + msgid "%s: line %d: list delimiter not followed by domain" + msgstr "%s: linia %d: brak domeny po ograniczniku listy" + +-#: resolv/res_hconf.c:319 ++#: resolv/res_hconf.c:204 + #, c-format + msgid "%s: line %d: expected `on' or `off', found `%s'\n" + msgstr "%s: linia %d: oczekiwano `on' lub `off', napotkano `%s'\n" + +-#: resolv/res_hconf.c:366 ++#: resolv/res_hconf.c:247 + #, c-format + msgid "%s: line %d: bad command `%s'\n" + msgstr "%s: linia %d: bdne polecenie `%s'\n" + +-#: resolv/res_hconf.c:395 ++#: resolv/res_hconf.c:282 + #, c-format + msgid "%s: line %d: ignoring trailing garbage `%s'\n" + msgstr "%s: linia %d: zignorowano kocowe mieci `%s'\n" + +-#: nss/getent.c:51 +-msgid "database [key ...]" +-msgstr "baza [klucz ...]" +- +-#: nss/getent.c:56 +-msgid "Service configuration to be used" +-msgstr "Uycie tej konfiguracji usugi rozwizywania nazw" +- +-#: nss/getent.c:136 nss/getent.c:375 +-#, c-format +-msgid "Enumeration not supported on %s\n" +-msgstr "Wyliczanie nie obsugiwane dla %s\n" +- +-#: nss/getent.c:800 +-msgid "getent - get entries from administrative database." +-msgstr "getent - wywietlenie wpisw z baz administracyjnych." +- +-#: nss/getent.c:801 +-msgid "Supported databases:" +-msgstr "Obsugiwane bazy danych:" +- +-#: nss/getent.c:858 nscd/nscd.c:131 nscd/nscd_nischeck.c:64 +-msgid "wrong number of arguments" +-msgstr "za liczba argumentw" +- +-#: nss/getent.c:868 +-#, c-format +-msgid "Unknown database: %s\n" +-msgstr "Nieznana baza `%s'\n" +- +-#: debug/pcprofiledump.c:52 +-msgid "Don't buffer output" +-msgstr "Nie buforowanie wyjcia" +- +-#: debug/pcprofiledump.c:57 +-msgid "Dump information generated by PC profiling." +-msgstr "Zrzut informacji wygenerowanych przez profilowanie PC." +- +-#: debug/pcprofiledump.c:60 +-msgid "[FILE]" +-msgstr "[PLIK]" +- +-#: debug/pcprofiledump.c:100 +-msgid "cannot open input file" +-msgstr "nie mona otworzy pliku wejciowego" +- +-#: debug/pcprofiledump.c:106 +-msgid "cannot read header" +-msgstr "nie mona odczyta nagwka" +- +-#: debug/pcprofiledump.c:170 +-msgid "invalid pointer size" +-msgstr "nieprawidowy rozmiar wskanika" +- +-#: inet/rcmd.c:163 inet/rcmd.c:166 +-msgid "rcmd: Cannot allocate memory\n" +-msgstr "rcmd: Nie mona przydzieli pamici\n" +- +-#: inet/rcmd.c:185 inet/rcmd.c:188 +-msgid "rcmd: socket: All ports in use\n" +-msgstr "rcmd: socket: Wszystkie porty zajte\n" +- +-#: inet/rcmd.c:222 +-#, c-format +-msgid "connect to address %s: " +-msgstr "poczenie do adresu %s: " +- +-#: inet/rcmd.c:240 +-#, c-format +-msgid "Trying %s...\n" +-msgstr "Prbowanie %s...\n" +- +-#: inet/rcmd.c:289 +-#, c-format +-msgid "rcmd: write (setting up stderr): %m\n" +-msgstr "rcmd: write (podczas ustawiania stderr): %m\n" +- +-#: inet/rcmd.c:310 +-#, c-format +-msgid "rcmd: poll (setting up stderr): %m\n" +-msgstr "rcmd: poll (podczas ustawiania stderr): %m\n" +- +-#: inet/rcmd.c:313 +-msgid "poll: protocol failure in circuit setup\n" +-msgstr "poll: bd protokou podczas zestawiania ptli\n" +- +-#: inet/rcmd.c:358 +-msgid "socket: protocol failure in circuit setup\n" +-msgstr "socket: bd protokou podczas zestawiania ptli\n" +- +-#: inet/rcmd.c:387 ++#: stdio-common/psignal.c:51 + #, c-format +-msgid "rcmd: %s: short read" +-msgstr "rcmd: %s: odczyt skrcony" +- +-#: inet/rcmd.c:549 +-msgid "lstat failed" +-msgstr "lstat nie powiodo si" +- +-#: inet/rcmd.c:551 +-msgid "not regular file" +-msgstr "nie jest zwykym plikiem" +- +-#: inet/rcmd.c:556 +-msgid "cannot open" +-msgstr "nie mona otworzy" +- +-#: inet/rcmd.c:558 +-msgid "fstat failed" +-msgstr "fstat nie powiodo si" +- +-#: inet/rcmd.c:560 +-msgid "bad owner" +-msgstr "nieodpowiedni waciciel" +- +-#: inet/rcmd.c:562 +-msgid "writeable by other than owner" +-msgstr "zapisywalny nie tylko przez waciciela" ++msgid "%s%sUnknown signal %d\n" ++msgstr "%s%sNieznany sygna %d\n" + +-#: inet/rcmd.c:564 +-msgid "hard linked somewhere" +-msgstr "gdzie twardo dowizany" ++#: stdio-common/psignal.c:52 ++msgid "Unknown signal" ++msgstr "Nieznany sygna" + +-#: inet/ruserpass.c:170 inet/ruserpass.c:193 +-msgid "out of memory" +-msgstr "brak pamici" ++#: string/_strerror.c:45 sysdeps/mach/_strerror.c:87 ++msgid "Unknown error " ++msgstr "Nieznany bd " + +-#: inet/ruserpass.c:184 +-msgid "Error: .netrc file is readable by others." +-msgstr "Bd: plik .netrc moe by czytany przez innych." ++#: string/strerror.c:43 ++msgid "Unknown error" ++msgstr "Nieznany bd" + +-#: inet/ruserpass.c:185 +-msgid "Remove password or make file unreadable by others." +-msgstr "Naley usun haso lub uczyni plik niedostpnym dla innych." ++#: string/strsignal.c:65 ++#, c-format ++msgid "Real-time signal %d" ++msgstr "Sygna czasu rzeczywistego %d" + +-#: inet/ruserpass.c:277 ++#: string/strsignal.c:69 + #, c-format +-msgid "Unknown .netrc keyword %s" +-msgstr "Nieznane sowo kluczowe w .netrc: %s" ++msgid "Unknown signal %d" ++msgstr "Nieznany sygna %d" + +-#: sunrpc/auth_unix.c:115 sunrpc/auth_unix.c:118 ++#: sunrpc/auth_unix.c:114 + msgid "authunix_create: out of memory\n" + msgstr "authunix_create: brak pamici\n" + +-#: sunrpc/auth_unix.c:318 ++#: sunrpc/auth_unix.c:350 + msgid "auth_none.c - Fatal marshalling problem" + msgstr "auth_none.c - Krytyczny problem z przeczaniem" + +@@ -3953,111 +4566,111 @@ + msgid "(unknown authentication error - %d)" + msgstr "(nieznany bd uwierzytelnienia - %d)" + +-#: sunrpc/clnt_perr.c:177 ++#: sunrpc/clnt_perr.c:172 + msgid "RPC: Success" + msgstr "RPC: Sukces" + +-#: sunrpc/clnt_perr.c:180 ++#: sunrpc/clnt_perr.c:175 + msgid "RPC: Can't encode arguments" + msgstr "RPC: Nie mona zakodowa argumentw" + +-#: sunrpc/clnt_perr.c:184 ++#: sunrpc/clnt_perr.c:179 + msgid "RPC: Can't decode result" + msgstr "RPC: Nie mona zdekodowa wyniku" + +-#: sunrpc/clnt_perr.c:188 ++#: sunrpc/clnt_perr.c:183 + msgid "RPC: Unable to send" + msgstr "RPC: Niemoliwe wysyanie" + +-#: sunrpc/clnt_perr.c:192 ++#: sunrpc/clnt_perr.c:187 + msgid "RPC: Unable to receive" + msgstr "RPC: Niemoliwy odbir" + +-#: sunrpc/clnt_perr.c:196 ++#: sunrpc/clnt_perr.c:191 + msgid "RPC: Timed out" + msgstr "RPC: Czas oczekiwania przekroczony" + +-#: sunrpc/clnt_perr.c:200 ++#: sunrpc/clnt_perr.c:195 + msgid "RPC: Incompatible versions of RPC" + msgstr "RPC: Niekompatybilne wersje RPC" + +-#: sunrpc/clnt_perr.c:204 ++#: sunrpc/clnt_perr.c:199 + msgid "RPC: Authentication error" + msgstr "RPC: Bd uwierzytelniania" + +-#: sunrpc/clnt_perr.c:208 ++#: sunrpc/clnt_perr.c:203 + msgid "RPC: Program unavailable" + msgstr "RPC: Niedostpny program" + +-#: sunrpc/clnt_perr.c:212 ++#: sunrpc/clnt_perr.c:207 + msgid "RPC: Program/version mismatch" + msgstr "RPC: Niezgodno programu/wersji" + +-#: sunrpc/clnt_perr.c:216 ++#: sunrpc/clnt_perr.c:211 + msgid "RPC: Procedure unavailable" + msgstr "RPC: Niedostpna procedura" + +-#: sunrpc/clnt_perr.c:220 ++#: sunrpc/clnt_perr.c:215 + msgid "RPC: Server can't decode arguments" + msgstr "RPC: Serwer nie moe zdekodowa argumentw" + +-#: sunrpc/clnt_perr.c:224 ++#: sunrpc/clnt_perr.c:219 + msgid "RPC: Remote system error" + msgstr "RPC: Bd w odlegym systemie" + +-#: sunrpc/clnt_perr.c:228 ++#: sunrpc/clnt_perr.c:223 + msgid "RPC: Unknown host" + msgstr "RPC: Nieznany host" + +-#: sunrpc/clnt_perr.c:232 ++#: sunrpc/clnt_perr.c:227 + msgid "RPC: Unknown protocol" + msgstr "RCP: Nieznany protok" + +-#: sunrpc/clnt_perr.c:236 ++#: sunrpc/clnt_perr.c:231 + msgid "RPC: Port mapper failure" + msgstr "RPC: Awaria portmappera" + +-#: sunrpc/clnt_perr.c:240 ++#: sunrpc/clnt_perr.c:235 + msgid "RPC: Program not registered" + msgstr "RPC: Nie zarejestrowany program" + +-#: sunrpc/clnt_perr.c:244 ++#: sunrpc/clnt_perr.c:239 + msgid "RPC: Failed (unspecified error)" + msgstr "RPC: Nieudane (niesprecyzowany bd)" + +-#: sunrpc/clnt_perr.c:285 ++#: sunrpc/clnt_perr.c:280 + msgid "RPC: (unknown error code)" + msgstr "RPC: (nieznany kod bdu)" + +-#: sunrpc/clnt_perr.c:357 ++#: sunrpc/clnt_perr.c:342 + msgid "Authentication OK" + msgstr "Uwierzytelnienie poprawne" + +-#: sunrpc/clnt_perr.c:360 ++#: sunrpc/clnt_perr.c:345 + msgid "Invalid client credential" + msgstr "Bdne uwierzytelnienie klienta" + +-#: sunrpc/clnt_perr.c:364 ++#: sunrpc/clnt_perr.c:349 + msgid "Server rejected credential" + msgstr "Serwer odrzuci wierzytelno" + +-#: sunrpc/clnt_perr.c:368 ++#: sunrpc/clnt_perr.c:353 + msgid "Invalid client verifier" + msgstr "Bdny weryfikator klienta" + +-#: sunrpc/clnt_perr.c:372 ++#: sunrpc/clnt_perr.c:357 + msgid "Server rejected verifier" + msgstr "Serwer odrzuci weryfikacj" + +-#: sunrpc/clnt_perr.c:376 ++#: sunrpc/clnt_perr.c:361 + msgid "Client credential too weak" + msgstr "Wierzytelno klienta jest zbyt maa" + +-#: sunrpc/clnt_perr.c:380 ++#: sunrpc/clnt_perr.c:365 + msgid "Invalid server verifier" + msgstr "Bdny weryfikator serwera" + +-#: sunrpc/clnt_perr.c:384 ++#: sunrpc/clnt_perr.c:369 + msgid "Failed (unspecified error)" + msgstr "Nieudane (nieustalony bd)" + +@@ -4065,192 +4678,176 @@ + msgid "clnt_raw.c - Fatal header serialization error." + msgstr "clnt_raw.c - Krytyczny bd serializacji nagwka." + +-#: sunrpc/clnt_tcp.c:134 sunrpc/clnt_tcp.c:137 ++#: sunrpc/clnt_tcp.c:131 + msgid "clnttcp_create: out of memory\n" + msgstr "clnttcp_create: brak pamici\n" + +-#: sunrpc/clnt_udp.c:141 sunrpc/clnt_udp.c:144 ++#: sunrpc/clnt_udp.c:139 + msgid "clntudp_create: out of memory\n" + msgstr "clntudp_create: brak pamici\n" + +-#: sunrpc/clnt_unix.c:131 sunrpc/clnt_unix.c:134 ++#: sunrpc/clnt_unix.c:128 + msgid "clntunix_create: out of memory\n" + msgstr "clntunix_create: brak pamici\n" + +-#: sunrpc/get_myaddr.c:78 +-msgid "get_myaddress: ioctl (get interface configuration)" +-msgstr "get_myaddress: ioctl (odczyt konfiguracji interfejsu)" +- +-#: sunrpc/pm_getmaps.c:74 ++#: sunrpc/pm_getmaps.c:83 + msgid "pmap_getmaps rpc problem" + msgstr "problem rpc pmap_getmaps" + +-#: sunrpc/pmap_clnt.c:72 +-msgid "__get_myaddress: ioctl (get interface configuration)" +-msgstr "__get_myaddress: ioctl (odczyt konfiguracji interfejsu)" +- +-#: sunrpc/pmap_clnt.c:137 ++#: sunrpc/pmap_clnt.c:129 + msgid "Cannot register service" + msgstr "Nie mona zarejestrowa usugi" + +-#: sunrpc/pmap_rmt.c:190 +-msgid "broadcast: ioctl (get interface configuration)" +-msgstr "rozgoszenie: ioctl (odczyt konfiguracji interfejsu)" +- +-#: sunrpc/pmap_rmt.c:199 +-msgid "broadcast: ioctl (get interface flags)" +-msgstr "rozgoszenie: ioctl (odczyt flag interjesu)" +- +-#: sunrpc/pmap_rmt.c:269 ++#: sunrpc/pmap_rmt.c:248 + msgid "Cannot create socket for broadcast rpc" + msgstr "Nie mona utworzy gniazda dla rozgaszania rpc" + +-#: sunrpc/pmap_rmt.c:276 ++#: sunrpc/pmap_rmt.c:255 + msgid "Cannot set socket option SO_BROADCAST" + msgstr "Nie mona ustawi opcji gniazda SO_BROADCAST" + +-#: sunrpc/pmap_rmt.c:328 ++#: sunrpc/pmap_rmt.c:307 + msgid "Cannot send broadcast packet" + msgstr "Nie mona wysa pakietu rozgoszeniowego" + +-#: sunrpc/pmap_rmt.c:353 ++#: sunrpc/pmap_rmt.c:332 + msgid "Broadcast poll problem" + msgstr "Problem z nasuchem przy rozgaszaniu" + +-#: sunrpc/pmap_rmt.c:366 ++#: sunrpc/pmap_rmt.c:345 + msgid "Cannot receive reply to broadcast" + msgstr "Nie mona otrzyma odpowiedzi na rozgaszanie" + +-#: sunrpc/rpc_main.c:288 ++#: sunrpc/rpc_main.c:286 + #, c-format + msgid "%s: output would overwrite %s\n" + msgstr "%s: wyjcie nadpisze %s\n" + +-#: sunrpc/rpc_main.c:295 ++#: sunrpc/rpc_main.c:293 + #, c-format + msgid "%s: unable to open %s: %m\n" + msgstr "%s: nie mona otworzy %s: %m\n" + +-#: sunrpc/rpc_main.c:307 ++#: sunrpc/rpc_main.c:305 + #, c-format + msgid "%s: while writing output %s: %m" + msgstr "%s: podczas zapisywania wyjcia do %s: %m" + +-#: sunrpc/rpc_main.c:342 ++#: sunrpc/rpc_main.c:340 + #, c-format + msgid "cannot find C preprocessor: %s \n" + msgstr "nie mona odnale preprocesora C: %s \n" + +-#: sunrpc/rpc_main.c:350 ++#: sunrpc/rpc_main.c:348 + msgid "cannot find any C preprocessor (cpp)\n" + msgstr "nie mona odnale preprocesora C (cpp)\n" + +-#: sunrpc/rpc_main.c:419 ++#: sunrpc/rpc_main.c:417 + #, c-format + msgid "%s: C preprocessor failed with signal %d\n" + msgstr "%s: preprocesor C zakoczy prac z sygnaem %d\n" + +-#: sunrpc/rpc_main.c:422 ++#: sunrpc/rpc_main.c:420 + #, c-format + msgid "%s: C preprocessor failed with exit code %d\n" + msgstr "%s: preprocesor C zakoczy prac z kodem wyjcia %d\n" + +-#: sunrpc/rpc_main.c:462 ++#: sunrpc/rpc_main.c:460 + #, c-format + msgid "illegal nettype :`%s'\n" + msgstr "bdny typ sieci :'%s'\n" + +-#: sunrpc/rpc_main.c:1104 ++#: sunrpc/rpc_main.c:1122 + #, c-format + msgid "rpcgen: too many defines\n" + msgstr "rpcgen: za duo definicji\n" + +-#: sunrpc/rpc_main.c:1116 ++#: sunrpc/rpc_main.c:1134 + #, c-format + msgid "rpcgen: arglist coding error\n" + msgstr "rpcgen: bdne kodowanie arglist\n" + + #. TRANS: the file will not be removed; this is an + #. TRANS: informative message. +-#: sunrpc/rpc_main.c:1149 ++#: sunrpc/rpc_main.c:1167 + #, c-format + msgid "file `%s' already exists and may be overwritten\n" + msgstr "plik `%s' ju istnieje i moe zosta nadpisany\n" + +-#: sunrpc/rpc_main.c:1194 ++#: sunrpc/rpc_main.c:1212 + #, c-format + msgid "Cannot specify more than one input file!\n" + msgstr "Mona poda tylko jeden plik wejciowy!\n" + +-#: sunrpc/rpc_main.c:1364 ++#: sunrpc/rpc_main.c:1382 + msgid "This implementation doesn't support newstyle or MT-safe code!\n" + msgstr "Ta implementacja nie obsuguje kodu w nowym stylu ani bezpiecznego dla wtkw!\n" + +-#: sunrpc/rpc_main.c:1373 ++#: sunrpc/rpc_main.c:1391 + #, c-format + msgid "Cannot use netid flag with inetd flag!\n" + msgstr "Nie mona uywa flagi id_sieci z flag inetd!\n" + +-#: sunrpc/rpc_main.c:1385 ++#: sunrpc/rpc_main.c:1403 + msgid "Cannot use netid flag without TIRPC!\n" + msgstr "Flagi id_sieci mona uywa tylko z TIRPC!\n" + +-#: sunrpc/rpc_main.c:1392 ++#: sunrpc/rpc_main.c:1410 + msgid "Cannot use table flags with newstyle!\n" + msgstr "Nowa skadnia opcji nie pozwala na uywanie flagi table!\n" + +-#: sunrpc/rpc_main.c:1411 ++#: sunrpc/rpc_main.c:1429 + #, c-format + msgid "\"infile\" is required for template generation flags.\n" + msgstr "flagi generowania szablonw wymagaj podania \"pliku_we\".\n" + +-#: sunrpc/rpc_main.c:1416 ++#: sunrpc/rpc_main.c:1434 + #, c-format + msgid "Cannot have more than one file generation flag!\n" + msgstr "Nie mona poda wicej ni jednej flagi generowania pliku!\n" + +-#: sunrpc/rpc_main.c:1425 ++#: sunrpc/rpc_main.c:1443 + #, c-format + msgid "usage: %s infile\n" + msgstr "skadnia: %s plik_we\n" + +-#: sunrpc/rpc_main.c:1426 ++#: sunrpc/rpc_main.c:1444 + #, c-format + msgid "\t%s [-abkCLNTM][-Dname[=value]] [-i size] [-I [-K seconds]] [-Y path] infile\n" + msgstr "\t%s [-abkCLNTM][-Dnazwa[=warto]] [-i rozmiar] [-I [-K sekund]] [-Y cieka] plik_we\n" + +-#: sunrpc/rpc_main.c:1428 ++#: sunrpc/rpc_main.c:1446 + #, c-format + msgid "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o outfile] [infile]\n" + msgstr "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o plik_wy] [plik_we]\n" + +-#: sunrpc/rpc_main.c:1430 ++#: sunrpc/rpc_main.c:1448 + #, c-format + msgid "\t%s [-s nettype]* [-o outfile] [infile]\n" + msgstr "\t%s [-s typ_sieci]* [-o plik_wy] [plik_we]\n" + +-#: sunrpc/rpc_main.c:1431 ++#: sunrpc/rpc_main.c:1449 + #, c-format + msgid "\t%s [-n netid]* [-o outfile] [infile]\n" + msgstr "\t%s [-n id_sieci]* [-o plik_wy] [plik_we]\n" + +-#: sunrpc/rpc_scan.c:116 ++#: sunrpc/rpc_scan.c:114 + msgid "constant or identifier expected" + msgstr "spodziewana staa lub identyfikator" + +-#: sunrpc/rpc_scan.c:312 ++#: sunrpc/rpc_scan.c:310 + msgid "illegal character in file: " + msgstr "bdny znak w pliku: " + +-#: sunrpc/rpc_scan.c:351 sunrpc/rpc_scan.c:377 ++#: sunrpc/rpc_scan.c:349 sunrpc/rpc_scan.c:375 + msgid "unterminated string constant" + msgstr "nie zakoczony acuch znakw" + +-#: sunrpc/rpc_scan.c:383 ++#: sunrpc/rpc_scan.c:381 + msgid "empty char string" + msgstr "pusty acuch znakw" + +-#: sunrpc/rpc_scan.c:525 sunrpc/rpc_scan.c:535 ++#: sunrpc/rpc_scan.c:523 sunrpc/rpc_scan.c:533 + msgid "preprocessor error" + msgstr "bd preprocesora" + +@@ -4343,25 +4940,25 @@ + msgid "can't reassign procedure number %ld\n" + msgstr "nie mona ponownie przypisa procedury numer %ld\n" + +-#: sunrpc/svc_simple.c:96 ++#: sunrpc/svc_simple.c:97 + msgid "couldn't create an rpc server\n" + msgstr "nie mona utworzy serwera rpc\n" + +-#: sunrpc/svc_simple.c:104 ++#: sunrpc/svc_simple.c:105 + #, c-format + msgid "couldn't register prog %ld vers %ld\n" + msgstr "nie mona zarejestrowa programu %ld w wersji %ld\n" + +-#: sunrpc/svc_simple.c:111 ++#: sunrpc/svc_simple.c:113 + msgid "registerrpc: out of memory\n" + msgstr "registerrpc: brak pamici\n" + +-#: sunrpc/svc_simple.c:175 ++#: sunrpc/svc_simple.c:173 + #, c-format + msgid "trouble replying to prog %d\n" + msgstr "problem przy odpowiadaniu programowi %d\n" + +-#: sunrpc/svc_simple.c:183 ++#: sunrpc/svc_simple.c:182 + #, c-format + msgid "never registered prog %d\n" + msgstr "program %d nie by nigdy zarejestrowany\n" +@@ -4374,11 +4971,11 @@ + msgid "svc_tcp.c - cannot getsockname or listen" + msgstr "svc_tcp.c - nie mona wykona getsockname lub listen" + +-#: sunrpc/svc_tcp.c:181 sunrpc/svc_tcp.c:184 ++#: sunrpc/svc_tcp.c:179 + msgid "svctcp_create: out of memory\n" + msgstr "svctcp_create: brak pamici\n" + +-#: sunrpc/svc_tcp.c:225 sunrpc/svc_tcp.c:228 ++#: sunrpc/svc_tcp.c:218 + msgid "svc_tcp: makefd_xprt: out of memory\n" + msgstr "svc_tcp: makefd_xprt: brak pamici\n" + +@@ -4390,39 +4987,39 @@ + msgid "svcudp_create - cannot getsockname" + msgstr "svcudp_create - nie mona wykona getsockname" + +-#: sunrpc/svc_udp.c:154 sunrpc/svc_udp.c:157 ++#: sunrpc/svc_udp.c:152 + msgid "svcudp_create: out of memory\n" + msgstr "svcudp_create: brak pamici\n" + +-#: sunrpc/svc_udp.c:182 sunrpc/svc_udp.c:185 ++#: sunrpc/svc_udp.c:174 + msgid "svcudp_create: xp_pad is too small for IP_PKTINFO\n" + msgstr "svcudp_create: xp_pad jest za mae na IP_PKTINFO\n" + +-#: sunrpc/svc_udp.c:493 ++#: sunrpc/svc_udp.c:474 + msgid "enablecache: cache already enabled" + msgstr "enablecache: bufor jest ju aktywny" + +-#: sunrpc/svc_udp.c:499 ++#: sunrpc/svc_udp.c:480 + msgid "enablecache: could not allocate cache" + msgstr "enablecache: nie mona przydzieli bufora" + +-#: sunrpc/svc_udp.c:507 ++#: sunrpc/svc_udp.c:489 + msgid "enablecache: could not allocate cache data" + msgstr "enablecache: nie mona przydzieli danych bufora" + +-#: sunrpc/svc_udp.c:514 ++#: sunrpc/svc_udp.c:497 + msgid "enablecache: could not allocate cache fifo" + msgstr "enablecache: nie mona przydzieli kolejki dla bufora" + +-#: sunrpc/svc_udp.c:550 ++#: sunrpc/svc_udp.c:532 + msgid "cache_set: victim not found" + msgstr "cache_set: nie znaleziono wpisu moliwego do powtrnego wykorzystania" + +-#: sunrpc/svc_udp.c:561 ++#: sunrpc/svc_udp.c:543 + msgid "cache_set: victim alloc failed" + msgstr "cache_set: przydzielenie pamici dla nowego wpisu jest niemoliwe" + +-#: sunrpc/svc_udp.c:567 ++#: sunrpc/svc_udp.c:550 + msgid "cache_set: could not allocate new rpc_buffer" + msgstr "cache_set: nie mona przydzieli nowego rpc_buffer" + +@@ -4434,1584 +5031,1508 @@ + msgid "svc_unix.c - cannot getsockname or listen" + msgstr "svc_unix.c - nie mona wykona getsockname lub listen" + +-#: sunrpc/svc_unix.c:178 sunrpc/svc_unix.c:181 +-msgid "svcunix_create: out of memory\n" +-msgstr "svcunix_create: brak pamici\n" +- +-#: sunrpc/svc_unix.c:222 sunrpc/svc_unix.c:225 +-msgid "svc_unix: makefd_xprt: out of memory\n" +-msgstr "svc_unix: makefd_xprt: brak pamici\n" +- +-#: sunrpc/xdr.c:570 sunrpc/xdr.c:573 +-msgid "xdr_bytes: out of memory\n" +-msgstr "xdr_bytes: brak pamici\n" +- +-#: sunrpc/xdr.c:728 sunrpc/xdr.c:731 +-msgid "xdr_string: out of memory\n" +-msgstr "xdr_string: brak pamici\n" +- +-#: sunrpc/xdr_array.c:111 sunrpc/xdr_array.c:114 +-msgid "xdr_array: out of memory\n" +-msgstr "xdr_array: brak pamici\n" +- +-#: sunrpc/xdr_rec.c:158 sunrpc/xdr_rec.c:161 +-msgid "xdrrec_create: out of memory\n" +-msgstr "xdrrec_create: brak pamici\n" +- +-#: sunrpc/xdr_ref.c:88 sunrpc/xdr_ref.c:91 +-msgid "xdr_reference: out of memory\n" +-msgstr "xdr_reference: brak pamici\n" +- +-#: nis/nis_callback.c:189 +-msgid "unable to free arguments" +-msgstr "zwolnienie argumentw niemoliwe" +- +-#: nis/nis_error.c:30 +-msgid "Probable success" +-msgstr "Prawdopodobnie sukces" +- +-#: nis/nis_error.c:31 +-msgid "Not found" +-msgstr "Nie znaleziono" +- +-#: nis/nis_error.c:32 +-msgid "Probably not found" +-msgstr "Prawdopodobnie nie znaleziony" +- +-#: nis/nis_error.c:33 +-msgid "Cache expired" +-msgstr "Dezaktualizacja bufora cache" +- +-#: nis/nis_error.c:34 +-msgid "NIS+ servers unreachable" +-msgstr "Serwery NIS+ s niedostpne" +- +-#: nis/nis_error.c:35 +-msgid "Unknown object" +-msgstr "Nieznany obiekt" +- +-#: nis/nis_error.c:36 +-msgid "Server busy, try again" +-msgstr "Serwer zajty, trzeba sprbowa ponownie" +- +-#: nis/nis_error.c:37 +-msgid "Generic system error" +-msgstr "Oglny bd systemowy" +- +-#: nis/nis_error.c:38 +-msgid "First/next chain broken" +-msgstr "acuch pierwszy/nastpny jest uszkodzony" +- +-#: nis/nis_error.c:41 +-msgid "Name not served by this server" +-msgstr "Nazwa nie jest obsugiwana przez ten serwer" +- +-#: nis/nis_error.c:42 +-msgid "Server out of memory" +-msgstr "Brak pamici dla serwera" +- +-#: nis/nis_error.c:43 +-msgid "Object with same name exists" +-msgstr "Istnieje ju obiekt o tej nazwie" +- +-#: nis/nis_error.c:44 +-msgid "Not master server for this domain" +-msgstr "To nie jest serwer nadrzdny dla tej domeny" +- +-#: nis/nis_error.c:45 +-msgid "Invalid object for operation" +-msgstr "Bdny obiekt dla tej operacji" +- +-#: nis/nis_error.c:46 +-msgid "Malformed name, or illegal name" +-msgstr "le sformuowana lub nieprawidowa nazwa" +- +-#: nis/nis_error.c:47 +-msgid "Unable to create callback" +-msgstr "Utworzenie wywoania zwrotnego jest niemoliwe" +- +-# XXX callback? -PK +-#: nis/nis_error.c:48 +-msgid "Results sent to callback proc" +-msgstr "Wyniki zostay wysane do procedury wywoania zwrotnego" +- +-#: nis/nis_error.c:49 +-msgid "Not found, no such name" +-msgstr "Nie znaleziono, brak takiej nazwy" +- +-#: nis/nis_error.c:50 +-msgid "Name/entry isn't unique" +-msgstr "Nazwa/zapis nie jest unikalny" +- +-#: nis/nis_error.c:51 +-msgid "Modification failed" +-msgstr "Modyfikacja nie powioda si" +- +-#: nis/nis_error.c:52 +-msgid "Database for table does not exist" +-msgstr "Brak bazy danych dla tej tabeli" +- +-#: nis/nis_error.c:53 +-msgid "Entry/table type mismatch" +-msgstr "Typy wpisu/tablicy nie pasuj do siebie" +- +-#: nis/nis_error.c:54 +-msgid "Link points to illegal name" +-msgstr "Dowizanie wskazuje na bdn nazw" +- +-#: nis/nis_error.c:55 +-msgid "Partial success" +-msgstr "Czciowy sukces" +- +-#: nis/nis_error.c:56 +-msgid "Too many attributes" +-msgstr "Za duo atrybutw" +- +-#: nis/nis_error.c:57 +-msgid "Error in RPC subsystem" +-msgstr "Bd w podsystemie RPC" +- +-#: nis/nis_error.c:58 +-msgid "Missing or malformed attribute" +-msgstr "Brakujcy lub le sformuowany atrybut" +- +-#: nis/nis_error.c:59 +-msgid "Named object is not searchable" +-msgstr "Wskazany obiekt nie moe by przeszukiwany" +- +-#: nis/nis_error.c:60 +-msgid "Error while talking to callback proc" +-msgstr "Wystpi bd podczas odwoania do procedury wywoania zwrotnego" +- +-#: nis/nis_error.c:61 +-msgid "Non NIS+ namespace encountered" +-msgstr "Napotkano nazwy nie nalece do przestrzeni NIS+" +- +-#: nis/nis_error.c:62 +-msgid "Illegal object type for operation" +-msgstr "Nieprawidowy typ obiektu dla tej operacji" +- +-#: nis/nis_error.c:63 +-msgid "Passed object is not the same object on server" +-msgstr "Uzyskany obiekt nie jest taki sam jak obiekt na serwerze" +- +-#: nis/nis_error.c:64 +-msgid "Modify operation failed" +-msgstr "Operacja modyfikacji nie powioda si" +- +-#: nis/nis_error.c:65 +-msgid "Query illegal for named table" +-msgstr "Bdne zapytanie dla podanej tablicy" +- +-#: nis/nis_error.c:66 +-msgid "Attempt to remove a non-empty table" +-msgstr "Prba skasowania tablicy z zawartoci" +- +-#: nis/nis_error.c:67 +-msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" +-msgstr "Bd podczas dostpu do pliku startowego NIS+. Czy NIS+ jest zainstalowany?" +- +-#: nis/nis_error.c:68 +-msgid "Full resync required for directory" +-msgstr "Katalog wymaga powtrzenia penej synchronizacji" +- +-#: nis/nis_error.c:69 +-msgid "NIS+ operation failed" +-msgstr "Operacja NIS+ nie powioda si" +- +-#: nis/nis_error.c:70 +-msgid "NIS+ service is unavailable or not installed" +-msgstr "Usuga NIS+ jest niedostpna lub nie zostaa zainstalowana" +- +-#: nis/nis_error.c:71 +-msgid "Yes, 42 is the meaning of life" +-msgstr "Tak, 42 jest odpowiedzi na pytanie o sens ycia" +- +-#: nis/nis_error.c:72 +-msgid "Unable to authenticate NIS+ server" +-msgstr "Uwierzytelnienie serwera NIS+ jest niemoliwe" +- +-#: nis/nis_error.c:73 +-msgid "Unable to authenticate NIS+ client" +-msgstr "Uwierzytelnienie klienta NIS+ jest niemoliwe" +- +-#: nis/nis_error.c:74 +-msgid "No file space on server" +-msgstr "Brak miejsca na serwerze" +- +-#: nis/nis_error.c:75 +-msgid "Unable to create process on server" +-msgstr "Utworzenie procesu na serwerze jest niemoliwe" +- +-#: nis/nis_error.c:76 +-msgid "Master server busy, full dump rescheduled." +-msgstr "Serwer nadrzdny jest zajty, peny zrzut danych przesunity na pniej." +- +-#: nis/nis_local_names.c:126 +-#, c-format +-msgid "LOCAL entry for UID %d in directory %s not unique\n" +-msgstr "Wpis LOKALNY dla UID %d w katalogu %s nie jest unikalny\n" +- +-#: nis/nis_print.c:51 +-msgid "UNKNOWN" +-msgstr "NIEZNANY" +- +-#: nis/nis_print.c:109 +-msgid "BOGUS OBJECT\n" +-msgstr "NIEISTNIEJCY OBIEKT\n" +- +-#: nis/nis_print.c:112 +-msgid "NO OBJECT\n" +-msgstr "BRAK OBIEKTU\n" +- +-#: nis/nis_print.c:115 +-msgid "DIRECTORY\n" +-msgstr "KATALOG\n" +- +-#: nis/nis_print.c:118 +-msgid "GROUP\n" +-msgstr "GRUPA\n" +- +-#: nis/nis_print.c:121 +-msgid "TABLE\n" +-msgstr "TABLICA\n" +- +-#: nis/nis_print.c:124 +-msgid "ENTRY\n" +-msgstr "POZYCJA\n" +- +-#: nis/nis_print.c:127 +-msgid "LINK\n" +-msgstr "DOWIZANIE\n" +- +-#: nis/nis_print.c:130 +-msgid "PRIVATE\n" +-msgstr "PRYWATNY\n" +- +-#: nis/nis_print.c:133 +-msgid "(Unknown object)\n" +-msgstr "(Nieznany obiekt)\n" +- +-#: nis/nis_print.c:166 +-#, c-format +-msgid "Name : `%s'\n" +-msgstr "Nazwa : `%s'\n" +- +-#: nis/nis_print.c:167 +-#, c-format +-msgid "Type : %s\n" +-msgstr "Typ : %s\n" +- +-#: nis/nis_print.c:172 +-msgid "Master Server :\n" +-msgstr "Serwer nadrzdny :\n" +- +-#: nis/nis_print.c:174 +-msgid "Replicate :\n" +-msgstr "Replikacja :\n" +- +-#: nis/nis_print.c:175 +-#, c-format +-msgid "\tName : %s\n" +-msgstr "\tNazwa : %s\n" +- +-#: nis/nis_print.c:176 +-msgid "\tPublic Key : " +-msgstr "\tKlucz publiczny : " +- +-#: nis/nis_print.c:180 +-msgid "None.\n" +-msgstr "Brak.\n" +- +-#: nis/nis_print.c:183 +-#, c-format +-msgid "Diffie-Hellmann (%d bits)\n" +-msgstr "Diffie-Hellmann (%d bitw)\n" ++#: sunrpc/svc_unix.c:176 ++msgid "svcunix_create: out of memory\n" ++msgstr "svcunix_create: brak pamici\n" + +-#: nis/nis_print.c:188 +-#, c-format +-msgid "RSA (%d bits)\n" +-msgstr "RSA (%d bitw)\n" ++#: sunrpc/svc_unix.c:215 ++msgid "svc_unix: makefd_xprt: out of memory\n" ++msgstr "svc_unix: makefd_xprt: brak pamici\n" + +-#: nis/nis_print.c:191 +-msgid "Kerberos.\n" +-msgstr "Kerberos.\n" ++#: sunrpc/xdr.c:566 ++msgid "xdr_bytes: out of memory\n" ++msgstr "xdr_bytes: brak pamici\n" + +-#: nis/nis_print.c:194 +-#, c-format +-msgid "Unknown (type = %d, bits = %d)\n" +-msgstr "Nieznany (typ = %d, bity = %d)\n" ++#: sunrpc/xdr.c:718 ++msgid "xdr_string: out of memory\n" ++msgstr "xdr_string: brak pamici\n" + +-#: nis/nis_print.c:205 +-#, c-format +-msgid "\tUniversal addresses (%u)\n" +-msgstr "\tAdresy uniwersalne (%u)\n" ++#: sunrpc/xdr_array.c:106 ++msgid "xdr_array: out of memory\n" ++msgstr "xdr_array: brak pamici\n" + +-#: nis/nis_print.c:227 +-msgid "Time to live : " +-msgstr "Czas ycia : " ++#: sunrpc/xdr_rec.c:156 ++msgid "xdrrec_create: out of memory\n" ++msgstr "xdrrec_create: brak pamici\n" + +-#: nis/nis_print.c:229 +-msgid "Default Access rights :\n" +-msgstr "Domylne prawa dostpu :\n" ++#: sunrpc/xdr_ref.c:86 ++msgid "xdr_reference: out of memory\n" ++msgstr "xdr_reference: brak pamici\n" + +-#: nis/nis_print.c:238 +-#, c-format +-msgid "\tType : %s\n" +-msgstr "\tTyp : %s\n" ++#: sysdeps/generic/siglist.h:29 sysdeps/unix/siglist.c:27 ++msgid "Hangup" ++msgstr "Rozczenie" + +-#: nis/nis_print.c:239 +-msgid "\tAccess rights: " +-msgstr "\tPrawa dostpu: " ++#: sysdeps/generic/siglist.h:30 sysdeps/unix/siglist.c:28 ++msgid "Interrupt" ++msgstr "Przerwanie" + +-#: nis/nis_print.c:252 +-msgid "Group Flags :" +-msgstr "Flagi grupy :" ++# XXX -PK ++#: sysdeps/generic/siglist.h:31 sysdeps/unix/siglist.c:29 ++msgid "Quit" ++msgstr "Wyjcie" + +-#: nis/nis_print.c:255 +-msgid "" +-"\n" +-"Group Members :\n" +-msgstr "" +-"\n" +-"Czonkowie grupy :\n" ++#: sysdeps/generic/siglist.h:32 sysdeps/unix/siglist.c:30 ++msgid "Illegal instruction" ++msgstr "Bdna instrukcja" + +-#: nis/nis_print.c:266 +-#, c-format +-msgid "Table Type : %s\n" +-msgstr "Typ tablicy : %s\n" ++#: sysdeps/generic/siglist.h:33 sysdeps/unix/siglist.c:31 ++msgid "Trace/breakpoint trap" ++msgstr "Puapka debuggera/breakpoint" + +-#: nis/nis_print.c:267 +-#, c-format +-msgid "Number of Columns : %d\n" +-msgstr "Liczba kolumn : %d\n" ++#: sysdeps/generic/siglist.h:34 ++msgid "Aborted" ++msgstr "Przerwane" + +-#: nis/nis_print.c:268 +-#, c-format +-msgid "Character Separator : %c\n" +-msgstr "Separator znakw : %c\n" ++#: sysdeps/generic/siglist.h:35 sysdeps/unix/siglist.c:34 ++msgid "Floating point exception" ++msgstr "Bd w obliczeniach zmiennoprzecinkowych" + +-#: nis/nis_print.c:269 +-#, c-format +-msgid "Search Path : %s\n" +-msgstr "cieka przeszukiwania : %s\n" ++#: sysdeps/generic/siglist.h:36 sysdeps/unix/siglist.c:35 ++msgid "Killed" ++msgstr "Unicestwiony" + +-#: nis/nis_print.c:270 +-msgid "Columns :\n" +-msgstr "Kolumny :\n" ++#: sysdeps/generic/siglist.h:37 sysdeps/unix/siglist.c:36 ++msgid "Bus error" ++msgstr "Bd szyny" + +-#: nis/nis_print.c:273 +-#, c-format +-msgid "\t[%d]\tName : %s\n" +-msgstr "\t[%d]\tNazwa : %s\n" ++#: sysdeps/generic/siglist.h:38 sysdeps/unix/siglist.c:37 ++msgid "Segmentation fault" ++msgstr "Naruszenie ochrony pamici" + +-#: nis/nis_print.c:275 +-msgid "\t\tAttributes : " +-msgstr "\t\tAtrybuty : " ++#. TRANS Broken pipe; there is no process reading from the other end of a pipe. ++#. TRANS Every library function that returns this error code also generates a ++#. TRANS @code{SIGPIPE} signal; this signal terminates the program if not handled ++#. TRANS or blocked. Thus, your program will never actually see @code{EPIPE} ++#. TRANS unless it has handled or blocked @code{SIGPIPE}. ++#: sysdeps/generic/siglist.h:39 sysdeps/gnu/errlist.c:359 ++#: sysdeps/unix/siglist.c:39 ++msgid "Broken pipe" ++msgstr "Przerwany potok" + +-#: nis/nis_print.c:277 +-msgid "\t\tAccess Rights : " +-msgstr "\t\tPrawa dostpu : " ++#: sysdeps/generic/siglist.h:40 sysdeps/unix/siglist.c:40 ++msgid "Alarm clock" ++msgstr "Budzik" + +-#: nis/nis_print.c:286 +-msgid "Linked Object Type : " +-msgstr "Typ dowizanego obiektu : " ++#: sysdeps/generic/siglist.h:41 sysdeps/unix/siglist.c:41 ++msgid "Terminated" ++msgstr "Zakoczony" + +-#: nis/nis_print.c:288 +-#, c-format +-msgid "Linked to : %s\n" +-msgstr "Dowizany do : %s\n" ++#: sysdeps/generic/siglist.h:42 sysdeps/unix/siglist.c:42 ++msgid "Urgent I/O condition" ++msgstr "Nagy wypadek I/O" + +-#: nis/nis_print.c:297 +-#, c-format +-msgid "\tEntry data of type %s\n" +-msgstr "\tDane rekordu typu %s\n" ++#: sysdeps/generic/siglist.h:43 sysdeps/unix/siglist.c:43 ++msgid "Stopped (signal)" ++msgstr "Zatrzymany (sygna)" + +-#: nis/nis_print.c:300 +-#, c-format +-msgid "\t[%u] - [%u bytes] " +-msgstr "\t[%u] - [%u bajtw] " ++#: sysdeps/generic/siglist.h:44 sysdeps/unix/siglist.c:44 ++msgid "Stopped" ++msgstr "Zatrzymany" + +-#: nis/nis_print.c:303 +-msgid "Encrypted data\n" +-msgstr "Zaszyfrowane dane\n" ++#: sysdeps/generic/siglist.h:45 sysdeps/unix/siglist.c:45 ++msgid "Continued" ++msgstr "Kontynuacja" + +-#: nis/nis_print.c:305 +-msgid "Binary data\n" +-msgstr "Dane binarne\n" ++#: sysdeps/generic/siglist.h:46 sysdeps/unix/siglist.c:46 ++msgid "Child exited" ++msgstr "Potomek zakoczy prac" + +-#: nis/nis_print.c:320 +-#, c-format +-msgid "Object Name : %s\n" +-msgstr "Nazwa obiektu : %s\n" ++#: sysdeps/generic/siglist.h:47 sysdeps/unix/siglist.c:47 ++msgid "Stopped (tty input)" ++msgstr "Zatrzymany (wejcie z tty)" + +-#: nis/nis_print.c:321 +-#, c-format +-msgid "Directory : %s\n" +-msgstr "Katalog : %s\n" ++#: sysdeps/generic/siglist.h:48 sysdeps/unix/siglist.c:48 ++msgid "Stopped (tty output)" ++msgstr "Zatrzymany (wyjcie na tty)" + +-#: nis/nis_print.c:322 +-#, c-format +-msgid "Owner : %s\n" +-msgstr "Waciciel : %s\n" ++#: sysdeps/generic/siglist.h:49 sysdeps/unix/siglist.c:49 ++msgid "I/O possible" ++msgstr "We/Wy dozwolone" + +-#: nis/nis_print.c:323 +-#, c-format +-msgid "Group : %s\n" +-msgstr "Grupa : %s\n" ++#: sysdeps/generic/siglist.h:50 sysdeps/unix/siglist.c:50 ++msgid "CPU time limit exceeded" ++msgstr "Przekroczony limit czasu procesora" + +-#: nis/nis_print.c:324 +-msgid "Access Rights : " +-msgstr "Prawa dostpu : " ++#: sysdeps/generic/siglist.h:51 sysdeps/unix/siglist.c:51 ++msgid "File size limit exceeded" ++msgstr "Przekroczony limit wielkoci pliku" + +-#: nis/nis_print.c:326 +-#, c-format +-msgid "" +-"\n" +-"Time to Live : " +-msgstr "" +-"\n" +-"Czas ycia : " ++#: sysdeps/generic/siglist.h:52 sysdeps/unix/siglist.c:52 ++msgid "Virtual timer expired" ++msgstr "Upyn czas stopera wirtualnego" + +-#: nis/nis_print.c:329 +-#, c-format +-msgid "Creation Time : %s" +-msgstr "Czas utworz. : %s" ++#: sysdeps/generic/siglist.h:53 sysdeps/unix/siglist.c:53 ++msgid "Profiling timer expired" ++msgstr "Upyn czas stopera profilujcego" + +-#: nis/nis_print.c:331 +-#, c-format +-msgid "Mod. Time : %s" +-msgstr "Czas modyf. : %s" ++#: sysdeps/generic/siglist.h:54 sysdeps/unix/siglist.c:54 ++msgid "Window changed" ++msgstr "Okno zmienione" + +-#: nis/nis_print.c:332 +-msgid "Object Type : " +-msgstr "Typ obiektu : " ++#: sysdeps/generic/siglist.h:55 sysdeps/unix/siglist.c:56 ++msgid "User defined signal 1" ++msgstr "Sygna uytkownika 1" + +-#: nis/nis_print.c:352 +-#, c-format +-msgid " Data Length = %u\n" +-msgstr " Rozmiar danych = %u\n" ++#: sysdeps/generic/siglist.h:56 sysdeps/unix/siglist.c:57 ++msgid "User defined signal 2" ++msgstr "Sygna uytkownika 2" + +-#: nis/nis_print.c:365 +-#, c-format +-msgid "Status : %s\n" +-msgstr "Stan : %s\n" ++#: sysdeps/generic/siglist.h:60 sysdeps/unix/siglist.c:33 ++msgid "EMT trap" ++msgstr "Puapka EMT" + +-#: nis/nis_print.c:366 +-#, c-format +-msgid "Number of objects : %u\n" +-msgstr "Liczba obiektw : %u\n" ++#: sysdeps/generic/siglist.h:63 sysdeps/unix/siglist.c:38 ++msgid "Bad system call" ++msgstr "Bdne wywoanie systemowe" + +-#: nis/nis_print.c:370 +-#, c-format +-msgid "Object #%d:\n" +-msgstr "Obiekt #%d:\n" ++#: sysdeps/generic/siglist.h:66 ++msgid "Stack fault" ++msgstr "Bd stosu" + +-#: nis/nis_print_group_entry.c:115 +-#, c-format +-msgid "Group entry for \"%s.%s\" group:\n" +-msgstr "Wpis dla grupy \"%s.%s\":\n" ++#: sysdeps/generic/siglist.h:69 ++msgid "Information request" ++msgstr "danie informacji" + +-# XXX nie-czlonkowie brzmi glupio -PK +-#: nis/nis_print_group_entry.c:123 +-msgid " Explicit members:\n" +-msgstr " Czonkowie zadeklarowani:\n" ++#: sysdeps/generic/siglist.h:71 ++msgid "Power failure" ++msgstr "Awaria zasilania" + +-#: nis/nis_print_group_entry.c:128 +-msgid " No explicit members\n" +-msgstr " Brak zadeklarowanych czonkw\n" ++#: sysdeps/generic/siglist.h:74 sysdeps/unix/siglist.c:55 ++msgid "Resource lost" ++msgstr "Zasoby zostay stracone" + +-#: nis/nis_print_group_entry.c:131 +-msgid " Implicit members:\n" +-msgstr " Czonkowie domniemani:\n" ++#. TRANS Operation not permitted; only the owner of the file (or other resource) ++#. TRANS or processes with special privileges can perform the operation. ++#: sysdeps/gnu/errlist.c:25 ++msgid "Operation not permitted" ++msgstr "Operacja niedozwolona" + +-#: nis/nis_print_group_entry.c:136 +-msgid " No implicit members\n" +-msgstr " Brak domniemanych czonkw\n" ++#. TRANS No process matches the specified process ID. ++#: sysdeps/gnu/errlist.c:45 ++msgid "No such process" ++msgstr "Nie ma takiego procesu" + +-#: nis/nis_print_group_entry.c:139 +-msgid " Recursive members:\n" +-msgstr " Czonkowie rekursywni:\n" ++#. TRANS Interrupted function call; an asynchronous signal occurred and prevented ++#. TRANS completion of the call. When this happens, you should try the call ++#. TRANS again. ++#. TRANS ++#. TRANS You can choose to have functions resume after a signal that is handled, ++#. TRANS rather than failing with @code{EINTR}; see @ref{Interrupted ++#. TRANS Primitives}. ++#: sysdeps/gnu/errlist.c:60 ++msgid "Interrupted system call" ++msgstr "Przerwane wywoanie systemowe" + +-#: nis/nis_print_group_entry.c:144 +-msgid " No recursive members\n" +-msgstr " Brak rekursywnych czonkw\n" ++#. TRANS Input/output error; usually used for physical read or write errors. ++#: sysdeps/gnu/errlist.c:69 ++msgid "Input/output error" ++msgstr "Bd wejcia/wyjcia" + +-#: nis/nis_print_group_entry.c:147 nis/nis_print_group_entry.c:163 +-msgid " Explicit nonmembers:\n" +-msgstr " Nie-czonkowie zadeklarowani:\n" ++#. TRANS No such device or address. The system tried to use the device ++#. TRANS represented by a file you specified, and it couldn't find the device. ++#. TRANS This can mean that the device file was installed incorrectly, or that ++#. TRANS the physical device is missing or not correctly attached to the ++#. TRANS computer. ++#: sysdeps/gnu/errlist.c:82 ++msgid "No such device or address" ++msgstr "Nie ma takiego urzdzenia ani adresu" + +-#: nis/nis_print_group_entry.c:152 +-msgid " No explicit nonmembers\n" +-msgstr " Brak zadeklarowanych nie-czonkw\n" ++#. TRANS Argument list too long; used when the arguments passed to a new program ++#. TRANS being executed with one of the @code{exec} functions (@pxref{Executing a ++#. TRANS File}) occupy too much memory space. This condition never arises in the ++#. TRANS GNU system. ++#: sysdeps/gnu/errlist.c:94 ++msgid "Argument list too long" ++msgstr "Lista argumentw za duga" + +-#: nis/nis_print_group_entry.c:155 +-msgid " Implicit nonmembers:\n" +-msgstr " Nie-czonkowie domniemani:\n" ++#. TRANS Invalid executable file format. This condition is detected by the ++#. TRANS @code{exec} functions; see @ref{Executing a File}. ++#: sysdeps/gnu/errlist.c:104 ++msgid "Exec format error" ++msgstr "Bdny format pliku wykonywalnego" + +-#: nis/nis_print_group_entry.c:160 +-msgid " No implicit nonmembers\n" +-msgstr " Brak domniemanych nie-czonkw\n" ++#. TRANS Bad file descriptor; for example, I/O on a descriptor that has been ++#. TRANS closed or reading from a descriptor open only for writing (or vice ++#. TRANS versa). ++#: sysdeps/gnu/errlist.c:115 ++msgid "Bad file descriptor" ++msgstr "Bdny deskryptor pliku" + +-#: nis/nis_print_group_entry.c:168 +-msgid " No recursive nonmembers\n" +-msgstr " Brak rekursywnych nie-czonkw\n" ++#. TRANS There are no child processes. This error happens on operations that are ++#. TRANS supposed to manipulate child processes, when there aren't any processes ++#. TRANS to manipulate. ++#: sysdeps/gnu/errlist.c:126 ++msgid "No child processes" ++msgstr "Brak procesw potomnych" + +-#: nis/nss_nisplus/nisplus-publickey.c:101 +-#: nis/nss_nisplus/nisplus-publickey.c:182 +-#, c-format +-msgid "DES entry for netname %s not unique\n" +-msgstr "Pozycja DES dla sieci %s nie jest unikalna\n" ++#. TRANS Deadlock avoided; allocating a system resource would have resulted in a ++#. TRANS deadlock situation. The system does not guarantee that it will notice ++#. TRANS all such situations. This error means you got lucky and the system ++#. TRANS noticed; it might just hang. @xref{File Locks}, for an example. ++#: sysdeps/gnu/errlist.c:138 ++msgid "Resource deadlock avoided" ++msgstr "Uniknito zakleszczenia zasobw" + +-#: nis/nss_nisplus/nisplus-publickey.c:218 +-#, c-format +-msgid "netname2user: missing group id list in `%s'." +-msgstr "netname2user: brak listy identyfikatorw grup w `%s'." ++#. TRANS No memory available. The system cannot allocate more virtual memory ++#. TRANS because its capacity is full. ++#: sysdeps/gnu/errlist.c:148 ++msgid "Cannot allocate memory" ++msgstr "Nie mona przydzieli pamici" + +-#: nis/nss_nisplus/nisplus-publickey.c:300 +-#: nis/nss_nisplus/nisplus-publickey.c:306 +-#: nis/nss_nisplus/nisplus-publickey.c:370 +-#: nis/nss_nisplus/nisplus-publickey.c:379 +-#, c-format +-msgid "netname2user: (nis+ lookup): %s\n" +-msgstr "netname2user: (odwzorowanie nis+): %s\n" ++#. TRANS Bad address; an invalid pointer was detected. ++#. TRANS In the GNU system, this error never happens; you get a signal instead. ++#: sysdeps/gnu/errlist.c:167 ++msgid "Bad address" ++msgstr "Bdny adres" + +-#: nis/nss_nisplus/nisplus-publickey.c:319 +-#, c-format +-msgid "netname2user: DES entry for %s in directory %s not unique" +-msgstr "netname2user: wpis DES dla %s w katalogu %s nie jest unikalny" ++#. TRANS A file that isn't a block special file was given in a situation that ++#. TRANS requires one. For example, trying to mount an ordinary file as a file ++#. TRANS system in Unix gives this error. ++#: sysdeps/gnu/errlist.c:178 ++msgid "Block device required" ++msgstr "Wymagane urzdzenie blokowe" + +-# XXX principal = nadzorca, troche lame -PK +-#: nis/nss_nisplus/nisplus-publickey.c:337 +-#, c-format +-msgid "netname2user: principal name `%s' too long" +-msgstr "name2user: nazwa nadzorcy `%s' jest zbyt duga" ++#. TRANS Resource busy; a system resource that can't be shared is already in use. ++#. TRANS For example, if you try to delete a file that is the root of a currently ++#. TRANS mounted filesystem, you get this error. ++#: sysdeps/gnu/errlist.c:189 ++msgid "Device or resource busy" ++msgstr "Urzdzenie lub zasoby zajte" + +-#: nis/nss_nisplus/nisplus-publickey.c:392 +-#, c-format +-msgid "netname2user: LOCAL entry for %s in directory %s not unique" +-msgstr "netname2user: wpis LOKALNY dla %s w katalogu %s nie jest unikalny" ++#. TRANS File exists; an existing file was specified in a context where it only ++#. TRANS makes sense to specify a new file. ++#: sysdeps/gnu/errlist.c:199 ++msgid "File exists" ++msgstr "Plik istnieje" + +-#: nis/nss_nisplus/nisplus-publickey.c:399 +-msgid "netname2user: should not have uid 0" +-msgstr "netname2user: UID 0 nie powinien wystpi" ++#. TRANS An attempt to make an improper link across file systems was detected. ++#. TRANS This happens not only when you use @code{link} (@pxref{Hard Links}) but ++#. TRANS also when you rename a file with @code{rename} (@pxref{Renaming Files}). ++#: sysdeps/gnu/errlist.c:210 ++msgid "Invalid cross-device link" ++msgstr "Bdne dowizanie midzy urzdzeniami" + +-#: nis/ypclnt.c:171 +-#, c-format +-msgid "YPBINDPROC_DOMAIN: %s\n" +-msgstr "YPBINDPROC_DOMAIN: %s\n" ++#. TRANS The wrong type of device was given to a function that expects a ++#. TRANS particular sort of device. ++#: sysdeps/gnu/errlist.c:220 ++msgid "No such device" ++msgstr "Nie ma takiego urzdzenia" + +-#: nis/ypclnt.c:780 +-msgid "Request arguments bad" +-msgstr "Argumenty dania s bdne" ++#. TRANS A file that isn't a directory was specified when a directory is required. ++#: sysdeps/gnu/errlist.c:229 ++msgid "Not a directory" ++msgstr "Nie jest katalogiem" + +-#: nis/ypclnt.c:782 +-msgid "RPC failure on NIS operation" +-msgstr "Bd RPC podczas operacji NIS" ++#. TRANS File is a directory; you cannot open a directory for writing, ++#. TRANS or create or remove hard links to it. ++#: sysdeps/gnu/errlist.c:239 ++msgid "Is a directory" ++msgstr "Jest katalogiem" + +-#: nis/ypclnt.c:784 +-msgid "Can't bind to server which serves this domain" +-msgstr "Nie mona poczy si z serwerem dla tej domeny" ++#. TRANS Invalid argument. This is used to indicate various kinds of problems ++#. TRANS with passing the wrong argument to a library function. ++#: sysdeps/gnu/errlist.c:249 ++msgid "Invalid argument" ++msgstr "Zy argument" + +-#: nis/ypclnt.c:786 +-msgid "No such map in server's domain" +-msgstr "Brak takiej mapy w domenie serwera" ++#. TRANS The current process has too many files open and can't open any more. ++#. TRANS Duplicate descriptors do count toward this limit. ++#. TRANS ++#. TRANS In BSD and GNU, the number of open files is controlled by a resource ++#. TRANS limit that can usually be increased. If you get this error, you might ++#. TRANS want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited; ++#. TRANS @pxref{Limits on Resources}. ++#: sysdeps/gnu/errlist.c:264 ++msgid "Too many open files" ++msgstr "Za duo otwartych plikw" + +-#: nis/ypclnt.c:788 +-msgid "No such key in map" +-msgstr "Brak takiego klucza w mapie" ++#. TRANS There are too many distinct file openings in the entire system. Note ++#. TRANS that any number of linked channels count as just one file opening; see ++#. TRANS @ref{Linked Channels}. This error never occurs in the GNU system. ++#: sysdeps/gnu/errlist.c:275 ++msgid "Too many open files in system" ++msgstr "Za duo otwartych plikw w systemie" + +-#: nis/ypclnt.c:790 +-msgid "Internal NIS error" +-msgstr "Bd wewntrzny NIS" ++#. TRANS Inappropriate I/O control operation, such as trying to set terminal ++#. TRANS modes on an ordinary file. ++#: sysdeps/gnu/errlist.c:285 ++msgid "Inappropriate ioctl for device" ++msgstr "Niewaciwy ioctl dla urzdzenia" + +-#: nis/ypclnt.c:792 +-msgid "Local resource allocation failure" +-msgstr "Wystpi bd podczas przydzielania lokalnych zasobw" ++#. TRANS An attempt to execute a file that is currently open for writing, or ++#. TRANS write to a file that is currently being executed. Often using a ++#. TRANS debugger to run a program is considered having it open for writing and ++#. TRANS will cause this error. (The name stands for ``text file busy''.) This ++#. TRANS is not an error in the GNU system; the text is copied as necessary. ++#: sysdeps/gnu/errlist.c:298 ++msgid "Text file busy" ++msgstr "Plik wykonywalny zajty" + +-#: nis/ypclnt.c:794 +-msgid "No more records in map database" +-msgstr "Nie ma wicej rekordw w mapie" ++#. TRANS File too big; the size of a file would be larger than allowed by the system. ++#: sysdeps/gnu/errlist.c:307 ++msgid "File too large" ++msgstr "Plik zbyt duy" + +-#: nis/ypclnt.c:796 +-msgid "Can't communicate with portmapper" +-msgstr "Komunikacja z portmapperem jest niemoliwa" ++#. TRANS No space left on device; write operation on a file failed because the ++#. TRANS disk is full. ++#: sysdeps/gnu/errlist.c:317 ++msgid "No space left on device" ++msgstr "Brak miejsca na urzdzeniu" + +-#: nis/ypclnt.c:798 +-msgid "Can't communicate with ypbind" +-msgstr "Komunikacja z ypbind jest niemoliwa" ++#. TRANS Invalid seek operation (such as on a pipe). ++#: sysdeps/gnu/errlist.c:326 ++msgid "Illegal seek" ++msgstr "Bdne przesunicie" + +-#: nis/ypclnt.c:800 +-msgid "Can't communicate with ypserv" +-msgstr "Komunikacja z ypserv jest niemoliwa" ++#. TRANS An attempt was made to modify something on a read-only file system. ++#: sysdeps/gnu/errlist.c:335 ++msgid "Read-only file system" ++msgstr "System plikw wycznie do odczytu" + +-#: nis/ypclnt.c:802 +-msgid "Local domain name not set" +-msgstr "Lokalna domena nie jest ustawiona" ++#. TRANS Too many links; the link count of a single file would become too large. ++#. TRANS @code{rename} can cause this error if the file being renamed already has ++#. TRANS as many links as it can take (@pxref{Renaming Files}). ++#: sysdeps/gnu/errlist.c:346 ++msgid "Too many links" ++msgstr "Za duo dowiza" + +-#: nis/ypclnt.c:804 +-msgid "NIS map database is bad" +-msgstr "Mapa NIS zawiera bdy" ++#. TRANS Domain error; used by mathematical functions when an argument value does ++#. TRANS not fall into the domain over which the function is defined. ++#: sysdeps/gnu/errlist.c:369 ++msgid "Numerical argument out of domain" ++msgstr "Argument liczbowy spoza dziedziny" + +-#: nis/ypclnt.c:806 +-msgid "NIS client/server version mismatch - can't supply service" +-msgstr "Niezgodno wersji midzy klientem i serwerem NIS - usuga niemoliwa" ++#. TRANS Range error; used by mathematical functions when the result value is ++#. TRANS not representable because of overflow or underflow. ++#: sysdeps/gnu/errlist.c:379 ++msgid "Numerical result out of range" ++msgstr "Wynik liczbowy poza zakresem" + +-#: nis/ypclnt.c:810 +-msgid "Database is busy" +-msgstr "Baza danych jest zajta" ++#. TRANS Resource temporarily unavailable; the call might work if you try again ++#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN}; ++#. TRANS they are always the same in the GNU C library. ++#. TRANS ++#. TRANS This error can happen in a few different situations: ++#. TRANS ++#. TRANS @itemize @bullet ++#. TRANS @item ++#. TRANS An operation that would block was attempted on an object that has ++#. TRANS non-blocking mode selected. Trying the same operation again will block ++#. TRANS until some external condition makes it possible to read, write, or ++#. TRANS connect (whatever the operation). You can use @code{select} to find out ++#. TRANS when the operation will be possible; @pxref{Waiting for I/O}. ++#. TRANS ++#. TRANS @strong{Portability Note:} In many older Unix systems, this condition ++#. TRANS was indicated by @code{EWOULDBLOCK}, which was a distinct error code ++#. TRANS different from @code{EAGAIN}. To make your program portable, you should ++#. TRANS check for both codes and treat them the same. ++#. TRANS ++#. TRANS @item ++#. TRANS A temporary resource shortage made an operation impossible. @code{fork} ++#. TRANS can return this error. It indicates that the shortage is expected to ++#. TRANS pass, so your program can try the call again later and it may succeed. ++#. TRANS It is probably a good idea to delay for a few seconds before trying it ++#. TRANS again, to allow time for other processes to release scarce resources. ++#. TRANS Such shortages are usually fairly serious and affect the whole system, ++#. TRANS so usually an interactive program should report the error to the user ++#. TRANS and return to its command loop. ++#. TRANS @end itemize ++#: sysdeps/gnu/errlist.c:416 ++msgid "Resource temporarily unavailable" ++msgstr "Zasoby chwilowo niedostpne" + +-#: nis/ypclnt.c:812 +-msgid "Unknown NIS error code" +-msgstr "Nieznany kod bdu NIS" ++#. TRANS In the GNU C library, this is another name for @code{EAGAIN} (above). ++#. TRANS The values are always the same, on every operating system. ++#. TRANS ++#. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a ++#. TRANS separate error code. ++#: sysdeps/gnu/errlist.c:429 ++msgid "Operation would block" ++msgstr "Operacja spowodowaaby blokad" + +-#: nis/ypclnt.c:854 +-msgid "Internal ypbind error" +-msgstr "Bd wewntrzny ypbind" ++#. TRANS An operation that cannot complete immediately was initiated on an object ++#. TRANS that has non-blocking mode selected. Some functions that must always ++#. TRANS block (such as @code{connect}; @pxref{Connecting}) never return ++#. TRANS @code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that ++#. TRANS the operation has begun and will take some time. Attempts to manipulate ++#. TRANS the object before the call completes return @code{EALREADY}. You can ++#. TRANS use the @code{select} function to find out when the pending operation ++#. TRANS has completed; @pxref{Waiting for I/O}. ++#: sysdeps/gnu/errlist.c:445 ++msgid "Operation now in progress" ++msgstr "Operacja jest wanie wykonywana" + +-#: nis/ypclnt.c:856 +-msgid "Domain not bound" +-msgstr "Domena nie zostaa zwizana" ++#. TRANS An operation is already in progress on an object that has non-blocking ++#. TRANS mode selected. ++#: sysdeps/gnu/errlist.c:455 ++msgid "Operation already in progress" ++msgstr "Operacja jest ju wykonywana" + +-#: nis/ypclnt.c:858 +-msgid "System resource allocation failure" +-msgstr "Wystpi bd podczas przydzielania zasobw systemowych" ++#. TRANS A file that isn't a socket was specified when a socket is required. ++#: sysdeps/gnu/errlist.c:464 ++msgid "Socket operation on non-socket" ++msgstr "Operacja na obiekcie, ktry nie jest gniazdem" + +-#: nis/ypclnt.c:860 +-msgid "Unknown ypbind error" +-msgstr "Nieznany bd ypbind" ++#. TRANS The size of a message sent on a socket was larger than the supported ++#. TRANS maximum size. ++#: sysdeps/gnu/errlist.c:474 ++msgid "Message too long" ++msgstr "Komunikat za dugi" + +-#: nis/ypclnt.c:899 +-msgid "yp_update: cannot convert host to netname\n" +-msgstr "yp_update: nie mona przekonwertowa nazwy hosta na nazw sieci\n" ++#. TRANS The socket type does not support the requested communications protocol. ++#: sysdeps/gnu/errlist.c:483 ++msgid "Protocol wrong type for socket" ++msgstr "Typ protokou nie pasuje do gniazda" + +-#: nis/ypclnt.c:911 +-msgid "yp_update: cannot get server address\n" +-msgstr "yp_update: nie mona uzyska adresu serwera\n" ++#. TRANS You specified a socket option that doesn't make sense for the ++#. TRANS particular protocol being used by the socket. @xref{Socket Options}. ++#: sysdeps/gnu/errlist.c:493 ++msgid "Protocol not available" ++msgstr "Protok niedostpny" + +-#: nscd/cache.c:94 +-msgid "while allocating hash table entry" +-msgstr "bd podczas wstawiania do tablicy mieszajcej" ++#. TRANS The socket domain does not support the requested communications protocol ++#. TRANS (perhaps because the requested protocol is completely invalid). ++#. TRANS @xref{Creating a Socket}. ++#: sysdeps/gnu/errlist.c:504 ++msgid "Protocol not supported" ++msgstr "Protok nie obsugiwany" + +-#: nscd/cache.c:162 nscd/connections.c:184 +-#, c-format +-msgid "cannot stat() file `%s': %s" +-msgstr "znalezienie pliku bazy danych `%s' jest niemoliwe: %s" ++#. TRANS The socket type is not supported. ++#: sysdeps/gnu/errlist.c:513 ++msgid "Socket type not supported" ++msgstr "Nie obsugiwany typ gniazda" + +-#: nscd/connections.c:150 +-msgid "Cannot run nscd in secure mode as unprivileged user" +-msgstr "Nie mona uruchomi nscd w trybie bezpiecznym jako uytkownik nieuprzywilejowany" ++#. TRANS The operation you requested is not supported. Some socket functions ++#. TRANS don't make sense for all types of sockets, and others may not be ++#. TRANS implemented for all communications protocols. In the GNU system, this ++#. TRANS error can happen for many calls when the object does not support the ++#. TRANS particular operation; it is a generic indication that the server knows ++#. TRANS nothing to do for that call. ++#: sysdeps/gnu/errlist.c:527 ++msgid "Operation not supported" ++msgstr "Operacja nie obsugiwana" + +-#: nscd/connections.c:172 +-#, c-format +-msgid "while allocating cache: %s" +-msgstr "podczas przydzielania bufora: %s" ++#. TRANS The socket communications protocol family you requested is not supported. ++#: sysdeps/gnu/errlist.c:536 ++msgid "Protocol family not supported" ++msgstr "Nie obsugiwana rodzina protokow" + +-#: nscd/connections.c:197 +-#, c-format +-msgid "cannot open socket: %s" +-msgstr "nie mona otworzy gniazda: %s" ++#. TRANS The address family specified for a socket is not supported; it is ++#. TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}. ++#: sysdeps/gnu/errlist.c:546 ++msgid "Address family not supported by protocol" ++msgstr "Rodzina adresw nie obsugiwana przez protok" + +-#: nscd/connections.c:215 +-#, c-format +-msgid "cannot enable socket to accept connections: %s" +-msgstr "nie mona otworzy gniazda do przyjmowania pocze: %s" ++#. TRANS The requested socket address is already in use. @xref{Socket Addresses}. ++#: sysdeps/gnu/errlist.c:555 ++msgid "Address already in use" ++msgstr "Adres jest ju w uyciu" + +-#: nscd/connections.c:260 +-#, c-format +-msgid "cannot handle old request version %d; current version is %d" +-msgstr "nie mona obsuy da w starej wersji %d; aktualna wersja to %d" ++#. TRANS The requested socket address is not available; for example, you tried ++#. TRANS to give a socket a name that doesn't match the local host name. ++#. TRANS @xref{Socket Addresses}. ++#: sysdeps/gnu/errlist.c:566 ++msgid "Cannot assign requested address" ++msgstr "Nie mona przypisa danego adresu" + +-#: nscd/connections.c:298 nscd/connections.c:324 +-#, c-format +-msgid "cannot write result: %s" +-msgstr "nie mona zapisa wyniku: %s" ++#. TRANS A socket operation failed because the network was down. ++#: sysdeps/gnu/errlist.c:575 ++msgid "Network is down" ++msgstr "Sie jest wyczona" + +-#: nscd/connections.c:392 nscd/connections.c:514 +-#, c-format +-msgid "error getting caller's id: %s" +-msgstr "bd podczas pobierania identyfikatorw wywoujcych: %s" ++#. TRANS A socket operation failed because the subnet containing the remote host ++#. TRANS was unreachable. ++#: sysdeps/gnu/errlist.c:585 ++msgid "Network is unreachable" ++msgstr "Sie jest niedostpna" + +-#: nscd/connections.c:485 +-#, c-format +-msgid "while accepting connection: %s" +-msgstr "podczas przyjmowania poczenia: %s" ++#. TRANS A network connection was reset because the remote host crashed. ++#: sysdeps/gnu/errlist.c:594 ++msgid "Network dropped connection on reset" ++msgstr "Sie przerwaa poczenie po resecie" + +-#: nscd/connections.c:498 +-#, c-format +-msgid "short read while reading request: %s" +-msgstr "skrcony odczyt podczas czytania dania: `%s'" ++#. TRANS A network connection was aborted locally. ++#: sysdeps/gnu/errlist.c:603 ++msgid "Software caused connection abort" ++msgstr "Oprogramowanie spowodowao przerwanie poczenia" + +-#: nscd/connections.c:542 +-#, c-format +-msgid "key length in request too long: %d" +-msgstr "dugo klucza w daniu zbyt dua: %d" ++#. TRANS A network connection was closed for reasons outside the control of the ++#. TRANS local host, such as by the remote machine rebooting or an unrecoverable ++#. TRANS protocol violation. ++#: sysdeps/gnu/errlist.c:614 ++msgid "Connection reset by peer" ++msgstr "Poczenie zerwane przez drug stron" + +-#: nscd/connections.c:556 +-#, c-format +-msgid "short read while reading request key: %s" +-msgstr "skrcony odczyt podczas czytania klucza dania: %s" ++#. TRANS The kernel's buffers for I/O operations are all in use. In GNU, this ++#. TRANS error is always synonymous with @code{ENOMEM}; you may get one or the ++#. TRANS other from network operations. ++#: sysdeps/gnu/errlist.c:625 ++msgid "No buffer space available" ++msgstr "Brak miejsca w buforze" + +-#: nscd/connections.c:566 +-#, c-format +-msgid "handle_request: request received (Version = %d) from PID %ld" +-msgstr "handle_request: odebrano danie (Wersja = %d) od procesu %ld" ++#. TRANS You tried to connect a socket that is already connected. ++#. TRANS @xref{Connecting}. ++#: sysdeps/gnu/errlist.c:635 ++msgid "Transport endpoint is already connected" ++msgstr "Drugi koniec jest ju poczony" + +-#: nscd/connections.c:571 +-#, c-format +-msgid "handle_request: request received (Version = %d)" +-msgstr "handle_request: odebrano danie (Wersja = %d)" ++#. TRANS The socket is not connected to anything. You get this error when you ++#. TRANS try to transmit data over a socket, without first specifying a ++#. TRANS destination for the data. For a connectionless socket (for datagram ++#. TRANS protocols, such as UDP), you get @code{EDESTADDRREQ} instead. ++#: sysdeps/gnu/errlist.c:647 ++msgid "Transport endpoint is not connected" ++msgstr "Drugi koniec nie jest poczony" + +-#: nscd/connections.c:635 nscd/connections.c:636 nscd/connections.c:655 +-#: nscd/connections.c:668 nscd/connections.c:674 nscd/connections.c:681 +-#, c-format +-msgid "Failed to run nscd as user '%s'" +-msgstr "Uruchomienie nscd jako uytkownik '%s' nie powiodo si" ++#. TRANS No default destination address was set for the socket. You get this ++#. TRANS error when you try to transmit data over a connectionless socket, ++#. TRANS without first specifying a destination for the data with @code{connect}. ++#: sysdeps/gnu/errlist.c:658 ++msgid "Destination address required" ++msgstr "Wymagany jest adres docelowy" + +-#: nscd/connections.c:656 +-msgid "getgrouplist failed" +-msgstr "getgrouplist nie powiodo si" ++#. TRANS The socket has already been shut down. ++#: sysdeps/gnu/errlist.c:667 ++msgid "Cannot send after transport endpoint shutdown" ++msgstr "Wysyanie po zamkniciu gniazda jest niemoliwe" + +-#: nscd/connections.c:669 +-msgid "setgroups failed" +-msgstr "setgroups nie powiodo" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:676 ++msgid "Too many references: cannot splice" ++msgstr "Za duo odniesie: dowizanie niemoliwe" + +-#: nscd/grpcache.c:103 nscd/hstcache.c:111 nscd/pwdcache.c:109 +-msgid "while allocating key copy" +-msgstr "podczas przydzielania kopii klucza" ++#. TRANS A socket operation with a specified timeout received no response during ++#. TRANS the timeout period. ++#: sysdeps/gnu/errlist.c:686 ++msgid "Connection timed out" ++msgstr "Przekroczony czas oczekiwania na poczenie" + +-#: nscd/grpcache.c:153 nscd/hstcache.c:168 nscd/pwdcache.c:146 +-msgid "while allocating cache entry" +-msgstr "podczas przydzielania elementu bufora" ++#. TRANS A remote host refused to allow the network connection (typically because ++#. TRANS it is not running the requested service). ++#: sysdeps/gnu/errlist.c:696 ++msgid "Connection refused" ++msgstr "Poczenie odrzucone" + +-#: nscd/grpcache.c:197 nscd/hstcache.c:283 nscd/pwdcache.c:193 +-#, c-format +-msgid "short write in %s: %s" +-msgstr "bd zapisu w %s: %s" ++#. TRANS Too many levels of symbolic links were encountered in looking up a file name. ++#. TRANS This often indicates a cycle of symbolic links. ++#: sysdeps/gnu/errlist.c:706 ++msgid "Too many levels of symbolic links" ++msgstr "Za due zagniedenie dowiza symbolicznych" + +-#: nscd/grpcache.c:219 +-#, c-format +-msgid "Haven't found \"%s\" in group cache!" +-msgstr "Nie znaleziono \"%s\" w buforze grup!" ++#. TRANS Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for ++#. TRANS Files}) or host name too long (in @code{gethostname} or ++#. TRANS @code{sethostname}; @pxref{Host Identification}). ++#: sysdeps/gnu/errlist.c:717 ++msgid "File name too long" ++msgstr "Za duga nazwa pliku" + +-#: nscd/grpcache.c:285 +-#, c-format +-msgid "Invalid numeric gid \"%s\"!" +-msgstr "Nieprawidowy liczbowy gid \"%s\"!" ++#. TRANS The remote host for a requested network connection is down. ++#: sysdeps/gnu/errlist.c:726 ++msgid "Host is down" ++msgstr "Urzdzenie jest wyczone" + +-#: nscd/grpcache.c:292 +-#, c-format +-msgid "Haven't found \"%d\" in group cache!" +-msgstr "Nie znaleziono \"%d\" w buforze grup!" ++#. TRANS The remote host for a requested network connection is not reachable. ++#: sysdeps/gnu/errlist.c:735 ++msgid "No route to host" ++msgstr "Brak trasy do hosta" + +-#: nscd/hstcache.c:305 nscd/hstcache.c:371 nscd/hstcache.c:436 +-#: nscd/hstcache.c:501 +-#, c-format +-msgid "Haven't found \"%s\" in hosts cache!" +-msgstr "Nie znaleziono \"%s\" w buforze hostw!" ++#. TRANS Directory not empty, where an empty directory was expected. Typically, ++#. TRANS this error occurs when you are trying to delete a directory. ++#: sysdeps/gnu/errlist.c:745 ++msgid "Directory not empty" ++msgstr "Katalog nie jest pusty" + +-#: nscd/nscd.c:89 +-msgid "Read configuration data from NAME" +-msgstr "Odczyt konfiguracji z pliku NAZWA" ++#. TRANS This means that the per-user limit on new process would be exceeded by ++#. TRANS an attempted @code{fork}. @xref{Limits on Resources}, for details on ++#. TRANS the @code{RLIMIT_NPROC} limit. ++#: sysdeps/gnu/errlist.c:756 ++msgid "Too many processes" ++msgstr "Za duo procesw" + +-#: nscd/nscd.c:91 +-msgid "Do not fork and display messages on the current tty" +-msgstr "Nie przechodzenie w to i wywietlanie komunikatw na biecym terminalu" ++#. TRANS The file quota system is confused because there are too many users. ++#. TRANS @c This can probably happen in a GNU system when using NFS. ++#: sysdeps/gnu/errlist.c:766 ++msgid "Too many users" ++msgstr "Za duo uytkownikw" + +-#: nscd/nscd.c:92 +-msgid "NUMBER" +-msgstr "LICZBA" ++#. TRANS The user's disk quota was exceeded. ++#: sysdeps/gnu/errlist.c:775 ++msgid "Disk quota exceeded" ++msgstr "Przekroczony limit dyskowy" + +-#: nscd/nscd.c:92 +-msgid "Start NUMBER threads" +-msgstr "Uruchomienie takiej LICZBY wtkw" ++#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS ++#. TRANS system which is due to file system rearrangements on the server host. ++#. TRANS Repairing this condition usually requires unmounting and remounting ++#. TRANS the NFS file system on the local host. ++#: sysdeps/gnu/errlist.c:787 ++msgid "Stale NFS file handle" ++msgstr "Nieaktualny uchwyt pliku NFS" + +-#: nscd/nscd.c:93 +-msgid "Shut the server down" +-msgstr "Zakoczenie pracy serwera" ++# to imho jest bardziej zrozumiale - zwlaszcza ze to sie czasem zdarza ++# jak sie uruchomi mountd bez -r -PK ++#. TRANS An attempt was made to NFS-mount a remote file system with a file name that ++#. TRANS already specifies an NFS-mounted file. ++#. TRANS (This is an error on some operating systems, but we expect it to work ++#. TRANS properly on the GNU system, making this error code impossible.) ++#: sysdeps/gnu/errlist.c:799 ++msgid "Object is remote" ++msgstr "Zdalny obiekt jest obiektem podmontowanym przez NFS" + +-#: nscd/nscd.c:94 +-msgid "Print current configuration statistic" +-msgstr "Wywietlenie aktualnych statystyk konfiguracji" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:808 ++msgid "RPC struct is bad" ++msgstr "Struktura RPC jest bdna" + +-#: nscd/nscd.c:95 +-msgid "TABLE" +-msgstr "TABLICA" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:817 ++msgid "RPC version wrong" ++msgstr "Za wersja RPC" + +-#: nscd/nscd.c:96 +-msgid "Invalidate the specified cache" +-msgstr "Uniewanienie podanego bufora" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:826 ++msgid "RPC program not available" ++msgstr "Program RPC niedostpny" + +-#: nscd/nscd.c:97 +-msgid "TABLE,yes" +-msgstr "TABLICA,yes" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:835 ++msgid "RPC program version wrong" ++msgstr "Za wersja programu RPC" + +-#: nscd/nscd.c:97 +-msgid "Use separate cache for each user" +-msgstr "Uycie oddzielnego bufora dla kadego uytkownika" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:844 ++msgid "RPC bad procedure for program" ++msgstr "Za procedura RPC dla programu" + +-# XXX moze zostawic oryginal albo zrobic ladniej -PK +-#: nscd/nscd.c:102 +-msgid "Name Service Cache Daemon." +-msgstr "Demon buforujcy usugi odwzorowania nazw." ++#. TRANS No locks available. This is used by the file locking facilities; see ++#. TRANS @ref{File Locks}. This error is never generated by the GNU system, but ++#. TRANS it can result from an operation to an NFS server running another ++#. TRANS operating system. ++#: sysdeps/gnu/errlist.c:856 ++msgid "No locks available" ++msgstr "Brak dostpnych blokad" + +-#: nscd/nscd.c:141 +-msgid "cannot read configuration file; this is fatal" +-msgstr "nie mona przeczyta pliku konfiguracyjnego; koniec pracy" ++#. TRANS Inappropriate file type or format. The file was the wrong type for the ++#. TRANS operation, or a data file had the wrong format. ++#. TRANS ++#. TRANS On some systems @code{chmod} returns this error if you try to set the ++#. TRANS sticky bit on a non-directory file; @pxref{Setting Permissions}. ++#: sysdeps/gnu/errlist.c:869 ++msgid "Inappropriate file type or format" ++msgstr "Niewaciwy typ lub format pliku" + +-#: nscd/nscd.c:152 +-msgid "already running" +-msgstr "jest ju uruchomiony" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:878 ++msgid "Authentication error" ++msgstr "Bd uwierzytelnienia" + +-#: nscd/nscd.c:270 nscd/nscd.c:294 nscd/nscd_stat.c:132 +-msgid "Only root is allowed to use this option!" +-msgstr "Tylko root moe uywa tej opcji!" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:887 ++msgid "Need authenticator" ++msgstr "Wymagane uwierzytelnienie" + +-#: nscd/nscd_conf.c:88 +-#, c-format +-msgid "Parse error: %s" +-msgstr "Bd analizowania: %s" ++#. TRANS Function not implemented. This indicates that the function called is ++#. TRANS not implemented at all, either in the C library itself or in the ++#. TRANS operating system. When you get this error, you can be sure that this ++#. TRANS particular function will always fail with @code{ENOSYS} unless you ++#. TRANS install a new version of the C library or the operating system. ++#: sysdeps/gnu/errlist.c:900 ++msgid "Function not implemented" ++msgstr "Nie zaimplementowana funkcja" + +-#: nscd/nscd_conf.c:171 +-#, c-format +-msgid "Could not create log file \"%s\"" +-msgstr "Nie mona utworzy pliku dziennika \"%s\"" ++#. TRANS Not supported. A function returns this error when certain parameter ++#. TRANS values are valid, but the functionality they request is not available. ++#. TRANS This can mean that the function does not implement a particular command ++#. TRANS or option value or flag bit at all. For functions that operate on some ++#. TRANS object given in a parameter, such as a file descriptor or a port, it ++#. TRANS might instead mean that only @emph{that specific object} (file ++#. TRANS descriptor, port, etc.) is unable to support the other parameters given; ++#. TRANS different file descriptors might support different ranges of parameter ++#. TRANS values. ++#. TRANS ++#. TRANS If the entire function is not available at all in the implementation, ++#. TRANS it returns @code{ENOSYS} instead. ++#: sysdeps/gnu/errlist.c:920 ++msgid "Not supported" ++msgstr "Nie obsugiwane" + +-#: nscd/nscd_conf.c:187 +-msgid "Must specify user name for server-user option" +-msgstr "Trzeba poda nazw uytkownika dla opcji server-user" ++#. TRANS While decoding a multibyte character the function came along an invalid ++#. TRANS or an incomplete sequence of bytes or the given wide character is invalid. ++#: sysdeps/gnu/errlist.c:930 ++msgid "Invalid or incomplete multibyte or wide character" ++msgstr "Bdny lub niepeny znak wielobajtowy" + +-#: nscd/nscd_conf.c:194 +-msgid "Must specify user name for stat-user option" +-msgstr "Trzeba poda nazw uytkownika dla opcji stat-user" ++#. TRANS In the GNU system, servers supporting the @code{term} protocol return ++#. TRANS this error for certain operations when the caller is not in the ++#. TRANS foreground process group of the terminal. Users do not usually see this ++#. TRANS error because functions such as @code{read} and @code{write} translate ++#. TRANS it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control}, ++#. TRANS for information on process groups and these signals. ++#: sysdeps/gnu/errlist.c:944 ++msgid "Inappropriate operation for background process" ++msgstr "Dziaanie niedopuszczalne dla procesu w tle" + +-#: nscd/nscd_conf.c:205 +-#, c-format +-msgid "Unknown option: %s %s %s" +-msgstr "Nieznana opcja: %s %s %s" ++#. TRANS In the GNU system, opening a file returns this error when the file is ++#. TRANS translated by a program and the translator program dies while starting ++#. TRANS up, before it has connected to the file. ++#: sysdeps/gnu/errlist.c:955 ++msgid "Translator died" ++msgstr "Translator przerwa prac" + +-#: nscd/nscd_stat.c:103 +-#, c-format +-msgid "cannot write statistics: %s" +-msgstr "nie mona zapisa statystyk: %s" ++#. TRANS The experienced user will know what is wrong. ++#. TRANS @c This error code is a joke. Its perror text is part of the joke. ++#. TRANS @c Don't change it. ++#: sysdeps/gnu/errlist.c:966 ++msgid "?" ++msgstr "?" + +-#: nscd/nscd_stat.c:128 +-#, c-format +-msgid "Only root or %s is allowed to use this option!" +-msgstr "Tylko root lub %s moe uywa tej opcji!" ++#. TRANS You did @strong{what}? ++#: sysdeps/gnu/errlist.c:975 ++msgid "You really blew it this time" ++msgstr "Tym razem dae popali" + +-#: nscd/nscd_stat.c:139 +-msgid "nscd not running!\n" +-msgstr "nscd nie jest uruchomiony!\n" ++#. TRANS Go home and have a glass of warm, dairy-fresh milk. ++#: sysdeps/gnu/errlist.c:984 ++msgid "Computer bought the farm" ++msgstr "Komputer wyjecha na wakacje" + +-#: nscd/nscd_stat.c:150 +-msgid "write incomplete" +-msgstr "zapis nie by kompletny" ++#. TRANS This error code has no purpose. ++#: sysdeps/gnu/errlist.c:993 ++msgid "Gratuitous error" ++msgstr "Nieoczekiwany bd" + +-#: nscd/nscd_stat.c:162 +-msgid "cannot read statistics data" +-msgstr "nie mona odczyta danych statystycznych" ++#: sysdeps/gnu/errlist.c:1001 ++msgid "Bad message" ++msgstr "Bdny komunikat" + +-#: nscd/nscd_stat.c:165 +-#, c-format +-msgid "" +-"nscd configuration:\n" +-"\n" +-"%15d server debug level\n" +-msgstr "" +-"konfiguracja nscd:\n" +-"\n" +-"%15d poziom komunikatw diagnostycznych\n" ++#: sysdeps/gnu/errlist.c:1009 ++msgid "Identifier removed" ++msgstr "Identyfikator zosta usunity" + +-#: nscd/nscd_stat.c:189 +-#, c-format +-msgid "%3ud %2uh %2um %2lus server runtime\n" +-msgstr "%3ud %2uh %2um %2lus czasu dziaania serwera\n" ++# wydaje mi sie ze tu chodzi o wyczerpanie TTL i stad 'zbyt' -PK ++#: sysdeps/gnu/errlist.c:1017 ++msgid "Multihop attempted" ++msgstr "Prba przejcia przez zbyt wiele ruterw" + +-#: nscd/nscd_stat.c:192 +-#, c-format +-msgid " %2uh %2um %2lus server runtime\n" +-msgstr " %2uh %2um %2lus czasu dziaania serwera\n" ++#: sysdeps/gnu/errlist.c:1025 ++msgid "No data available" ++msgstr "Brak danych" + +-#: nscd/nscd_stat.c:194 +-#, c-format +-msgid " %2um %2lus server runtime\n" +-msgstr " %2um %2lus czasu dziaania serwera\n" ++#: sysdeps/gnu/errlist.c:1033 ++msgid "Link has been severed" ++msgstr "Poczenie zostao przerwane" + +-#: nscd/nscd_stat.c:196 +-#, c-format +-msgid " %2lus server runtime\n" +-msgstr " %2lus czasu dziaania serwera\n" ++#: sysdeps/gnu/errlist.c:1041 ++msgid "No message of desired type" ++msgstr "Brak komunikatu o podanym typie" + +-#: nscd/nscd_stat.c:198 +-#, c-format +-msgid "%15lu number of times clients had to wait\n" +-msgstr "%15lu razy klienci musieli czeka\n" ++#: sysdeps/gnu/errlist.c:1049 ++msgid "Out of streams resources" ++msgstr "Brak dodatkowych strumieni" + +-#: nscd/nscd_stat.c:213 nscd/nscd_stat.c:215 +-msgid " no" +-msgstr " nie" ++#: sysdeps/gnu/errlist.c:1057 ++msgid "Device not a stream" ++msgstr "Urzdzenie nie jest strumieniem" + +-#: nscd/nscd_stat.c:213 nscd/nscd_stat.c:215 +-msgid " yes" +-msgstr " tak" ++#: sysdeps/gnu/errlist.c:1065 ++msgid "Value too large for defined data type" ++msgstr "Warto za dua dla zdefiniowanego typu danych" + +-#: nscd/nscd_stat.c:221 +-#, c-format +-msgid "" +-"\n" +-"%s cache:\n" +-"\n" +-"%15s cache is enabled\n" +-"%15Zu suggested size\n" +-"%15lu seconds time to live for positive entries\n" +-"%15lu seconds time to live for negative entries\n" +-"%15lu cache hits on positive entries\n" +-"%15lu cache hits on negative entries\n" +-"%15lu cache misses on positive entries\n" +-"%15lu cache misses on negative entries\n" +-"%15lu%% cache hit rate\n" +-"%15lu current number of cached values\n" +-"%15lu maximum number of cached values\n" +-"%15lu maximum chain length searched\n" +-"%15lu number of delays on rdlock\n" +-"%15lu number of delays on wrlock\n" +-"%15s check /etc/%s for changes\n" +-msgstr "" +-"\n" +-"bufor %s:\n" +-"\n" +-"%15s bufor wczony\n" +-"%15Zu zalecany rozmiar\n" +-"%15lu sekund czasu przez ktry bd utrzymywane wpisy pozytywne\n" +-"%15lu sekund czasu przez ktry bd utrzymywane wpisy negatywne\n" +-"%15lu trafionych wpisw pozytywnych\n" +-"%15lu trafionych wpisw negatywnych\n" +-"%15lu nie trafionych wpisw pozytywnych\n" +-"%15lu nie trafionych wpisw negatywnych\n" +-"%15lu%% trafie\n" +-"%15lu aktualnie pamitanych wartoci\n" +-"%15lu maksymalnie pamitanych wartoci\n" +-"%15lu maksymalna dugo szukanego acucha\n" +-"%15lu opnie na rdlock\n" +-"%15lu opnie na wrlock\n" +-"%15s sprawdzanie zmian w /etc/%s\n" ++#: sysdeps/gnu/errlist.c:1073 ++msgid "Protocol error" ++msgstr "Bd protokou" + +-#: nscd/pwdcache.c:215 +-#, c-format +-msgid "Haven't found \"%s\" in password cache!" +-msgstr "Nie znaleziono \"%s\" w buforze hase!" ++#: sysdeps/gnu/errlist.c:1081 ++msgid "Timer expired" ++msgstr "Upyn czas stopera" + +-#: nscd/pwdcache.c:281 +-#, c-format +-msgid "Invalid numeric uid \"%s\"!" +-msgstr "Nieprawidowy liczbowy uid \"%s\"!" ++#. TRANS Operation canceled; an asynchronous operation was canceled before it ++#. TRANS completed. @xref{Asynchronous I/O}. When you call @code{aio_cancel}, ++#. TRANS the normal result is for the operations affected to complete with this ++#. TRANS error; @pxref{Cancel AIO Operations}. ++#: sysdeps/gnu/errlist.c:1093 ++msgid "Operation canceled" ++msgstr "Operacja anulowana" + +-#: nscd/pwdcache.c:288 +-#, c-format +-msgid "Haven't found \"%d\" in password cache!" +-msgstr "Nie znaleziono \"%d\" w buforze hase!" ++#: sysdeps/gnu/errlist.c:1101 ++msgid "Interrupted system call should be restarted" ++msgstr "Naley wznowi przerwane wywoanie systemowe" + +-#: elf/../sysdeps/generic/dl-sysdep.c:422 +-msgid "cannot create capability list" +-msgstr "nie mona utworzy listy uprawnie" ++#: sysdeps/gnu/errlist.c:1109 ++msgid "Channel number out of range" ++msgstr "Numer kanau poza zakresem" + +-#: elf/../sysdeps/generic/readelflib.c:35 +-#, c-format +-msgid "file %s is truncated\n" +-msgstr "plik %s jest skrcony\n" ++#: sysdeps/gnu/errlist.c:1117 ++msgid "Level 2 not synchronized" ++msgstr "Poziom 2 nie zsynchronizowany" + +-#: elf/../sysdeps/generic/readelflib.c:67 +-#, c-format +-msgid "%s is a 32 bit ELF file.\n" +-msgstr "%s jest 32-bitowym plikiem ELF.\n" ++#: sysdeps/gnu/errlist.c:1125 ++msgid "Level 3 halted" ++msgstr "Poziom 3 zatrzymany" + +-#: elf/../sysdeps/generic/readelflib.c:69 +-#, c-format +-msgid "%s is a 64 bit ELF file.\n" +-msgstr "%s jest 64-bitowym plikiem ELF.\n" ++#: sysdeps/gnu/errlist.c:1133 ++msgid "Level 3 reset" ++msgstr "Poziom 3 wyzerowany" + +-#: elf/../sysdeps/generic/readelflib.c:71 +-#, c-format +-msgid "Unknown ELFCLASS in file %s.\n" +-msgstr "Nieznana ELFCLASS w pliku %s.\n" ++#: sysdeps/gnu/errlist.c:1141 ++msgid "Link number out of range" ++msgstr "Numer dowizania poza zakresem" + +-#: elf/../sysdeps/generic/readelflib.c:78 +-#, c-format +-msgid "%s is not a shared object file (Type: %d).\n" +-msgstr "%s nie jest plikiem obiektu dzielonego (Typ: %d).\n" ++#: sysdeps/gnu/errlist.c:1149 ++msgid "Protocol driver not attached" ++msgstr "Sterownik protokou nie jest podczony" + +-#: elf/../sysdeps/generic/readelflib.c:109 +-msgid "more than one dynamic segment\n" +-msgstr "wicej ni jeden segment dynamiczny\n" ++#: sysdeps/gnu/errlist.c:1157 ++msgid "No CSI structure available" ++msgstr "Struktura CSI niedostpna" + +-#: elf/../sysdeps/unix/sysv/linux/i386/readelflib.c:49 +-#, c-format +-msgid "%s is for unknown machine %d.\n" +-msgstr "%s jest dla nieznanej maszyny %d.\n" ++#: sysdeps/gnu/errlist.c:1165 ++msgid "Level 2 halted" ++msgstr "Poziom 2 zatrzymany" + +-#: elf/cache.c:70 +-msgid "unknown" +-msgstr "nieznany" ++#: sysdeps/gnu/errlist.c:1173 ++msgid "Invalid exchange" ++msgstr "Bdna wymiana" + +-#: elf/cache.c:111 +-msgid "Unknown OS" +-msgstr "Nieznany system" ++#: sysdeps/gnu/errlist.c:1181 ++msgid "Invalid request descriptor" ++msgstr "Bdny deskryptor dania" + +-#: elf/cache.c:116 +-#, c-format +-msgid ", OS ABI: %s %d.%d.%d" +-msgstr ", ABI systemu: %s %d.%d.%d" ++#: sysdeps/gnu/errlist.c:1189 ++msgid "Exchange full" ++msgstr "Przepeniona wymiana" + +-#: elf/cache.c:142 elf/ldconfig.c:1078 +-#, c-format +-msgid "Can't open cache file %s\n" +-msgstr "Nie mona otworzy pliku bufora %s\n" ++#: sysdeps/gnu/errlist.c:1197 ++msgid "No anode" ++msgstr "Brak anody" + +-#: elf/cache.c:154 +-msgid "mmap of cache file failed.\n" +-msgstr "mmap pliku bufora nie powiodo si.\n" ++#: sysdeps/gnu/errlist.c:1205 ++msgid "Invalid request code" ++msgstr "Zy kod dania" + +-#: elf/cache.c:158 elf/cache.c:168 +-msgid "File is not a cache file.\n" +-msgstr "Plik nie jest plikiem bufora.\n" ++#: sysdeps/gnu/errlist.c:1213 ++msgid "Invalid slot" ++msgstr "Bdny kana" + +-#: elf/cache.c:201 elf/cache.c:211 +-#, c-format +-msgid "%d libs found in cache `%s'\n" +-msgstr "Znaleziono %d bibliotek w buforze `%s'\n" ++#: sysdeps/gnu/errlist.c:1221 ++msgid "File locking deadlock error" ++msgstr "Podczas blokowania pliku wystpio zakleszczenie" + +-#: elf/cache.c:410 +-#, c-format +-msgid "Can't remove old temporary cache file %s" +-msgstr "Nie mona usun starego tymczasowego pliku bufora %s" ++#: sysdeps/gnu/errlist.c:1229 ++msgid "Bad font file format" ++msgstr "Bdny format pliku fontu" + +-#: elf/cache.c:417 +-#, c-format +-msgid "Can't create temporary cache file %s" +-msgstr "Nie mona utworzy tymczasowego pliku bufora %s" ++#: sysdeps/gnu/errlist.c:1237 ++msgid "Machine is not on the network" ++msgstr "Maszyna nie znajduje si w tej sieci" + +-#: elf/cache.c:425 elf/cache.c:434 elf/cache.c:438 +-msgid "Writing of cache data failed" +-msgstr "Zapis danych bufora nie powid si" ++#: sysdeps/gnu/errlist.c:1245 ++msgid "Package not installed" ++msgstr "Pakiet nie jest zainstalowany" + +-#: elf/cache.c:442 +-msgid "Writing of cache data failed." +-msgstr "Zapis danych bufora nie powid si." ++#: sysdeps/gnu/errlist.c:1253 ++msgid "Advertise error" ++msgstr "Bd podczas ogaszania" + +-#: elf/cache.c:449 +-#, c-format +-msgid "Changing access rights of %s to %#o failed" +-msgstr "Zmiana praw dostpu %s na %#o nie powioda si" ++#: sysdeps/gnu/errlist.c:1261 ++msgid "Srmount error" ++msgstr "Bd srmount" + +-#: elf/cache.c:454 +-#, c-format +-msgid "Renaming of %s to %s failed" +-msgstr "Zmiana nazwy %s na %s nie powioda si" ++#: sysdeps/gnu/errlist.c:1269 ++msgid "Communication error on send" ++msgstr "Bd komunikacji podczas wysyania" + +-#: elf/dl-close.c:128 +-msgid "shared object not open" +-msgstr "obiekt dzielony nie jest otwarty" ++#: sysdeps/gnu/errlist.c:1277 ++msgid "RFS specific error" ++msgstr "Bd RFS" + +-#: elf/dl-close.c:531 elf/dl-open.c:454 +-msgid "TLS generation counter wrapped! Please send report with the 'glibcbug' script." +-msgstr "Licznik generacji TLS przekrci si! Prosz wysa raport skryptem 'glibcbug'." ++#: sysdeps/gnu/errlist.c:1285 ++msgid "Name not unique on network" ++msgstr "Nazwa nie jest unikalna w sieci" + +-#: elf/dl-deps.c:111 elf/dl-open.c:183 +-msgid "DST not allowed in SUID/SGID programs" +-msgstr "DST nie dozwolone dla programw SUID/SGID" ++#: sysdeps/gnu/errlist.c:1293 ++msgid "File descriptor in bad state" ++msgstr "Deskryptor pliku w zym stanie" + +-#: elf/dl-deps.c:124 +-msgid "empty dynamics string token substitution" +-msgstr "puste dynamiczne podstawienie znaku acucha" ++#: sysdeps/gnu/errlist.c:1301 ++msgid "Remote address changed" ++msgstr "Zmieni si adres drugiego koca" + +-#: elf/dl-deps.c:130 +-#, c-format +-msgid "cannot load auxiliary `%s' because of empty dynamic string token substitution\n" +-msgstr "nie mona wczyta pomocniczego `%s' z powodu pustego dynamicznego podstawienia\n" ++#: sysdeps/gnu/errlist.c:1309 ++msgid "Can not access a needed shared library" ++msgstr "Brak dostpu do wymaganej biblioteki dzielonej" + +-#: elf/dl-deps.c:461 +-msgid "cannot allocate dependency list" +-msgstr "nie mona przydzieli pamici dla listy zalenoci" ++#: sysdeps/gnu/errlist.c:1317 ++msgid "Accessing a corrupted shared library" ++msgstr "Prba uycia uszkodzonej biblioteki dzielonej" + +-#: elf/dl-deps.c:494 elf/dl-deps.c:549 +-msgid "cannot allocate symbol search list" +-msgstr "nie mona przydzieli pamici dla listy przeszukiwania symboli" ++#: sysdeps/gnu/errlist.c:1325 ++msgid ".lib section in a.out corrupted" ++msgstr "Sekcja .lib w a.out jest uszkodzona" + +-#: elf/dl-deps.c:534 +-msgid "Filters not supported with LD_TRACE_PRELINKING" +-msgstr "Filtry nie s obsugiwane z LD_TRACE_PRELINKING" ++#: sysdeps/gnu/errlist.c:1333 ++msgid "Attempting to link in too many shared libraries" ++msgstr "Prba czenia ze zbyt wieloma bibliotekami dzielonymi" + +-#: elf/dl-error.c:75 +-msgid "DYNAMIC LINKER BUG!!!" +-msgstr "BD DYNAMICZNEGO LINKERA!!!" ++#: sysdeps/gnu/errlist.c:1341 ++msgid "Cannot exec a shared library directly" ++msgstr "Nie mona bezporednio uruchomi biblioteki dzielonej" + +-#: elf/dl-error.c:108 +-msgid "error while loading shared libraries" +-msgstr "bd podczas wczytywania bibliotek dzielonych" ++#: sysdeps/gnu/errlist.c:1349 ++msgid "Streams pipe error" ++msgstr "Bd potoku biblioteki strumieni" + +-#: elf/dl-load.c:347 +-msgid "cannot allocate name record" +-msgstr "nie mona przydzieli pamici dla rekordu nazwy" ++#: sysdeps/gnu/errlist.c:1357 ++msgid "Structure needs cleaning" ++msgstr "Struktura wymaga wyczyszczenia" + +-#: elf/dl-load.c:449 elf/dl-load.c:528 elf/dl-load.c:648 elf/dl-load.c:743 +-msgid "cannot create cache for search path" +-msgstr "nie mona utworzy bufora dla cieki przeszukiwania" ++#: sysdeps/gnu/errlist.c:1365 ++msgid "Not a XENIX named type file" ++msgstr "Nie jest XENIXowym plikiem nazwanego typu" + +-#: elf/dl-load.c:551 +-msgid "cannot create RUNPATH/RPATH copy" +-msgstr "nie mona utworzy kopii RUNPATH/RPATH" ++#: sysdeps/gnu/errlist.c:1373 ++msgid "No XENIX semaphores available" ++msgstr "Brak dostpnych semaforw XENIXowych" + +-#: elf/dl-load.c:634 +-msgid "cannot create search path array" +-msgstr "nie mona utworzy tablicy cieki przeszukiwania" ++#: sysdeps/gnu/errlist.c:1381 ++msgid "Is a named type file" ++msgstr "Jest plikiem nazwanym" + +-#: elf/dl-load.c:830 +-msgid "cannot stat shared object" +-msgstr "nie mona wykona stat na obiekcie dzielonym" ++#: sysdeps/gnu/errlist.c:1389 ++msgid "Remote I/O error" ++msgstr "Bd we/wy w odlegym systemie" + +-#: elf/dl-load.c:874 +-msgid "cannot open zero fill device" +-msgstr "nie mona otworzy urzdzenia wypeniajcego zerami" ++#: sysdeps/gnu/errlist.c:1397 ++msgid "No medium found" ++msgstr "Brak medium" + +-#: elf/dl-load.c:883 elf/dl-load.c:1929 +-msgid "cannot create shared object descriptor" +-msgstr "nie mona utworzy deskryptora obiektu dzielonego" ++#: sysdeps/gnu/errlist.c:1405 ++msgid "Wrong medium type" ++msgstr "Niewaciwy typ medium" + +-#: elf/dl-load.c:902 elf/dl-load.c:1470 elf/dl-load.c:1553 +-msgid "cannot read file data" +-msgstr "nie mona odczyta danych z pliku" ++#: sysdeps/gnu/errlist.c:1413 ++msgid "Required key not available" ++msgstr "Wymagany klucz niedostpny" ++ ++#: sysdeps/gnu/errlist.c:1421 ++msgid "Key has expired" ++msgstr "Klucz wygas" ++ ++#: sysdeps/gnu/errlist.c:1429 ++msgid "Key has been revoked" ++msgstr "Klucz zosta uniewaniony" ++ ++#: sysdeps/gnu/errlist.c:1437 ++msgid "Key was rejected by service" ++msgstr "Klucz zosta odrzucony przez usug" ++ ++#: sysdeps/gnu/errlist.c:1445 ++msgid "Owner died" ++msgstr "Waciciel zmar" ++ ++#: sysdeps/gnu/errlist.c:1453 ++msgid "State not recoverable" ++msgstr "Stan bez moliwoci wyjcia" + +-#: elf/dl-load.c:946 +-msgid "ELF load command alignment not page-aligned" +-msgstr "wyrwnanie polecenia wczytania ELF nie wyrwnane do granicy stron" ++#: sysdeps/mach/_strerror.c:57 ++msgid "Error in unknown error system: " ++msgstr "Bd w nieznanym systemie bdw: " + +-#: elf/dl-load.c:953 +-msgid "ELF load command address/offset not properly aligned" +-msgstr "adres/przesunicie polecenia wczytania ELF niewaciwie wyrwnane" ++#: sysdeps/posix/gai_strerror-strs.h:1 ++msgid "Address family for hostname not supported" ++msgstr "Rodzina adresw dla tej nazwy hosta nie jest obsugiwana" + +-#: elf/dl-load.c:1037 +-msgid "cannot allocate TLS data structures for initial thread" +-msgstr "nie mona przydzieli struktur danych TLS dla pocztkowego wtku" ++#: sysdeps/posix/gai_strerror-strs.h:2 ++msgid "Temporary failure in name resolution" ++msgstr "Odwzorowanie nazwy jest chwilowo niemoliwe" + +-#: elf/dl-load.c:1061 +-msgid "cannot handle TLS data" +-msgstr "nie mona obsuy danych TLS" ++#: sysdeps/posix/gai_strerror-strs.h:3 ++msgid "Bad value for ai_flags" ++msgstr "Bdna warto dla ai_flags" + +-#: elf/dl-load.c:1075 +-msgid "object file has no loadable segments" +-msgstr "plik obiektu nie ma segmentw adowalnych" ++#: sysdeps/posix/gai_strerror-strs.h:4 ++msgid "Non-recoverable failure in name resolution" ++msgstr "Wystpi krytyczny bd w odwzorowaniu nazw" + +-#: elf/dl-load.c:1110 +-msgid "failed to map segment from shared object" +-msgstr "odwzorowanie segmentu z obiektu dzielonego nie powiodo si" ++#: sysdeps/posix/gai_strerror-strs.h:5 ++msgid "ai_family not supported" ++msgstr "ai_family zawiera nie obsugiwan rodzin protokow" + +-#: elf/dl-load.c:1135 +-msgid "cannot dynamically load executable" +-msgstr "nie mona dynamicznie wczyta pliku wykonywalnego" ++#: sysdeps/posix/gai_strerror-strs.h:6 ++msgid "Memory allocation failure" ++msgstr "Wystpi bd przydzielania pamici" + +-#: elf/dl-load.c:1191 +-msgid "cannot change memory protections" +-msgstr "nie mona zmieni ochrony pamici" ++#: sysdeps/posix/gai_strerror-strs.h:7 ++msgid "No address associated with hostname" ++msgstr "Brak adresu zwizanego z nazw hosta" + +-#: elf/dl-load.c:1210 +-msgid "cannot map zero-fill pages" +-msgstr "nie mona odwzorowa stron wypenionych zerami" ++#: sysdeps/posix/gai_strerror-strs.h:8 ++msgid "Name or service not known" ++msgstr "Ta nazwa lub usuga jest nieznana" + +-#: elf/dl-load.c:1228 +-msgid "cannot allocate memory for program header" +-msgstr "nie mona przydzieli pamici na nagwek programu" ++#: sysdeps/posix/gai_strerror-strs.h:9 ++msgid "Servname not supported for ai_socktype" ++msgstr "Nazwa nie obsugiwana dla ai_socktype" + +-#: elf/dl-load.c:1259 +-msgid "object file has no dynamic section" +-msgstr "plik obiektu nie ma sekcji dynamicznej" ++#: sysdeps/posix/gai_strerror-strs.h:10 ++msgid "ai_socktype not supported" ++msgstr "ai_socktype zawiera nie obsugiwany typ gniazda" + +-#: elf/dl-load.c:1299 +-msgid "shared object cannot be dlopen()ed" +-msgstr "obiekt dzielony nie moe by otwarty przez dlopen()" ++#: sysdeps/posix/gai_strerror-strs.h:11 ++msgid "System error" ++msgstr "Bd systemowy" + +-#: elf/dl-load.c:1322 +-msgid "cannot create searchlist" +-msgstr "nie mona utworzy listy przeszukiwa" ++#: sysdeps/posix/gai_strerror-strs.h:12 ++msgid "Processing request in progress" ++msgstr "danie przetworzenia jest ju wykonywane" + +-#: elf/dl-load.c:1352 +-msgid "cannot enable executable stack as shared object requires" +-msgstr "nie mona wczy wykonywalnego stosu wymaganego przez obiekt dzielony" ++#: sysdeps/posix/gai_strerror-strs.h:13 ++msgid "Request canceled" ++msgstr "danie anulowane" + +-#: elf/dl-load.c:1470 +-msgid "file too short" +-msgstr "plik za krtki" ++#: sysdeps/posix/gai_strerror-strs.h:14 ++msgid "Request not canceled" ++msgstr "danie nie anulowane" + +-#: elf/dl-load.c:1493 +-msgid "invalid ELF header" +-msgstr "nieprawidowy nagwek ELF" ++#: sysdeps/posix/gai_strerror-strs.h:15 ++msgid "All requests done" ++msgstr "Wszystkie dania wykonane" + +-#: elf/dl-load.c:1502 +-msgid "ELF file data encoding not big-endian" +-msgstr "kodowanie danych w pliku ELF nie jest big-endian" ++#: sysdeps/posix/gai_strerror-strs.h:16 ++msgid "Interrupted by a signal" ++msgstr "Przerwane przez sygna" + +-#: elf/dl-load.c:1504 +-msgid "ELF file data encoding not little-endian" +-msgstr "kodowanie danych w pliku ELF nie jest little-endian" ++#: sysdeps/posix/gai_strerror-strs.h:17 ++msgid "Parameter string not correctly encoded" ++msgstr "acuch parametru niepoprawnie zakodowany" + +-#: elf/dl-load.c:1508 +-msgid "ELF file version ident does not match current one" +-msgstr "identyfikator wersji pliku ELF nie zgadza si z aktualnym" ++#: sysdeps/unix/siglist.c:26 ++msgid "Signal 0" ++msgstr "Sygna 0" + +-#: elf/dl-load.c:1512 +-msgid "ELF file OS ABI invalid" +-msgstr "niepoprawne ABI systemu w pliku ELF" ++#: sysdeps/unix/siglist.c:32 ++msgid "IOT trap" ++msgstr "Puapka IOT" + +-#: elf/dl-load.c:1514 +-msgid "ELF file ABI version invalid" +-msgstr "niepoprawna wersja ABI w pliku ELF" ++#: sysdeps/unix/sysv/linux/i386/readelflib.c:49 ++#, c-format ++msgid "%s is for unknown machine %d.\n" ++msgstr "%s jest dla nieznanej maszyny %d.\n" + +-#: elf/dl-load.c:1517 +-msgid "internal error" +-msgstr "bd wewntrzny" ++#: sysdeps/unix/sysv/linux/ia64/makecontext.c:63 ++#, c-format ++msgid "makecontext: does not know how to handle more than 8 arguments\n" ++msgstr "makecontext: nie wiadomo jak obsuy wicej ni 8 argumentw\n" + +-#: elf/dl-load.c:1524 +-msgid "ELF file version does not match current one" +-msgstr "wersja pliku ELF nie zgadza si z aktualn" ++#: sysdeps/unix/sysv/linux/lddlibc4.c:64 ++#, c-format ++msgid "cannot open `%s'" ++msgstr "nie mona otworzy `%s'" + +-#: elf/dl-load.c:1532 +-msgid "ELF file's phentsize not the expected size" +-msgstr "phentsize w pliku ELF nie jest oczekiwanym rozmiarem" ++#: sysdeps/unix/sysv/linux/lddlibc4.c:68 ++#, c-format ++msgid "cannot read header from `%s'" ++msgstr "nie mona przeczyta nagwka z `%s'" + +-#: elf/dl-load.c:1538 +-msgid "only ET_DYN and ET_EXEC can be loaded" +-msgstr "tylko ET_DYN i ET_EXEC mog by wczytane" ++#: timezone/zdump.c:215 ++msgid "lacks alphabetic at start" ++msgstr "nie zaczyna si od litery" + +-#: elf/dl-load.c:1944 +-msgid "cannot open shared object file" +-msgstr "nie mona otworzy pliku obiektu dzielonego" ++#: timezone/zdump.c:217 ++msgid "has fewer than 3 alphabetics" ++msgstr "ma mniej ni 3 litery" + +-#: elf/dl-lookup.c:265 elf/dl-lookup.c:443 +-msgid "relocation error" +-msgstr "bd relokacji" ++#: timezone/zdump.c:219 ++msgid "has more than 6 alphabetics" ++msgstr "ma wicej ni 6 liter" + +-#: elf/dl-open.c:111 +-msgid "cannot extend global scope" +-msgstr "nie mona rozszerzy zakresu globalnego" ++#: timezone/zdump.c:227 ++msgid "differs from POSIX standard" ++msgstr "rni si od standardu POSIX" + +-#: elf/dl-open.c:214 +-msgid "empty dynamic string token substitution" +-msgstr "puste dynamiczne podstawienie znaku acucha" ++#: timezone/zdump.c:233 ++#, c-format ++msgid "%s: warning: zone \"%s\" abbreviation \"%s\" %s\n" ++msgstr "%s: uwaga: skrt strefy \"%s\" \"%s\" %s\n" + +-#: elf/dl-open.c:361 elf/dl-open.c:372 +-msgid "cannot create scope list" +-msgstr "nie mona utworzy listy zakresw" ++#: timezone/zdump.c:284 ++#, c-format ++msgid "%s: usage is %s [ --version ] [ -v ] [ -c [loyear,]hiyear ] zonename ...\n" ++msgstr "%s: skadnia: %s [ --version ] [ -v ] [ -c [rokpocz,]rokkoc ] nazwa_strefy...\n" + +-#: elf/dl-open.c:434 +-msgid "cannot create TLS data structures" +-msgstr "nie mona utworzy struktur danych TLS" ++#: timezone/zdump.c:301 ++#, c-format ++msgid "%s: wild -c argument %s\n" ++msgstr "%s: niepoprawny argument -c %s\n" + +-#: elf/dl-open.c:496 +-msgid "invalid mode for dlopen()" +-msgstr "bdny typ dla dlopen()" ++#: timezone/zdump.c:392 ++msgid "Error writing to standard output" ++msgstr "Bd podczas pisania na standardowe wyjcie" + +-#: elf/dl-reloc.c:57 +-msgid "cannot allocate memory in static TLS block" +-msgstr "nie mona przydzieli pamici w statycznym bloku TLS" ++#: timezone/zdump.c:415 ++#, c-format ++msgid "%s: use of -v on system with floating time_t other than float or double\n" ++msgstr "%s: uycie -v na systemie ze zmiennoprzecinkowym time_t innym ni float lub double\n" + +-#: elf/dl-reloc.c:176 +-msgid "cannot make segment writable for relocation" +-msgstr "nie mona uczyni segmentu zapisywalnym w celu relokacji" ++#: timezone/zic.c:371 ++#, c-format ++msgid "%s: Memory exhausted: %s\n" ++msgstr "%s: Brak pamici: %s\n" + +-#: elf/dl-reloc.c:277 ++#: timezone/zic.c:430 + #, c-format +-msgid "%s: profiler found no PLTREL in object %s\n" +-msgstr "%s: profiler nie znalaz PLTREL w obiekcie %s\n" ++msgid "\"%s\", line %d: %s" ++msgstr "\"%s\", linia %d: %s" + +-#: elf/dl-reloc.c:289 ++#: timezone/zic.c:433 + #, c-format +-msgid "%s: profiler out of memory shadowing PLTREL of %s\n" +-msgstr "%s: brak pamici profilera podczas przykrywania PLTREL z %s\n" ++msgid " (rule from \"%s\", line %d)" ++msgstr " (regua z \"%s\", linia %d)" + +-#: elf/dl-reloc.c:304 +-msgid "cannot restore segment prot after reloc" +-msgstr "nie mona odtworzy ochrony segmentu po relokacji" ++#: timezone/zic.c:445 ++msgid "warning: " ++msgstr "uwaga: " + +-#: elf/dl-sym.c:74 elf/dl-sym.c:145 +-msgid "RTLD_NEXT used in code not dynamically loaded" +-msgstr "RTLD_NEXT wystpio w kodzie nie adowanym dynamicznie" ++#: timezone/zic.c:455 ++#, c-format ++msgid "" ++"%s: usage is %s [ --version ] [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n" ++"\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" ++msgstr "" ++"%s: skadnia: %s [ --version ] [ -s ] [ -v ] [ -l czas_lokalny ] \\\n" ++"\t[ -p reguy_POSIX ] [ -d katalog ] [ -L sek_przestpne ] \\\n" ++"\t[ -y yearistype ] [ plik ...]\n" + +-#: elf/dl-version.c:303 +-msgid "cannot allocate version reference table" +-msgstr "nie mona przydzieli tablicy odniesie do wersji" ++#: timezone/zic.c:503 ++#, c-format ++msgid "%s: More than one -d option specified\n" ++msgstr "%s: Podano wicej ni jedn opcj -d\n" + +-#: elf/ldconfig.c:122 +-msgid "Print cache" +-msgstr "Wypisanie zawartoci bufora" ++#: timezone/zic.c:513 ++#, c-format ++msgid "%s: More than one -l option specified\n" ++msgstr "%s: Podano wicej ni jedn opcj -l\n" + +-#: elf/ldconfig.c:123 +-msgid "Generate verbose messages" +-msgstr "Wywietlanie wikszej liczby komunikatw" ++#: timezone/zic.c:523 ++#, c-format ++msgid "%s: More than one -p option specified\n" ++msgstr "%s: Podano wicej ni jedn opcj -p\n" + +-#: elf/ldconfig.c:124 +-msgid "Don't build cache" +-msgstr "Nie budowanie bufora" ++#: timezone/zic.c:533 ++#, c-format ++msgid "%s: More than one -y option specified\n" ++msgstr "%s: Podano wicej ni jedn opcj -y\n" + +-#: elf/ldconfig.c:125 +-msgid "Don't generate links" +-msgstr "Nie tworzenie dowiza" ++#: timezone/zic.c:543 ++#, c-format ++msgid "%s: More than one -L option specified\n" ++msgstr "%s: Podano wicej ni jedn opcj -L\n" + +-#: elf/ldconfig.c:126 +-msgid "Change to and use ROOT as root directory" +-msgstr "Przejcie do i uywanie ROOT jako gwnego katalogu" ++#: timezone/zic.c:592 ++msgid "link to link" ++msgstr "dowizanie do dowizania" + +-#: elf/ldconfig.c:127 +-msgid "Use CACHE as cache file" +-msgstr "Uycie CACHE jako pliku bufora" ++#: timezone/zic.c:657 ++msgid "hard link failed, symbolic link used" ++msgstr "stworzenie dowizania zwykego nie powiodo si, uyto symbolicznego" + +-#: elf/ldconfig.c:128 +-msgid "Use CONF as configuration file" +-msgstr "Uycie CONF jako pliku konfiguracyjnego" ++#: timezone/zic.c:665 ++#, c-format ++msgid "%s: Can't link from %s to %s: %s\n" ++msgstr "%s: Nie mona dowiza %s do %s: %s\n" + +-#: elf/ldconfig.c:129 +-msgid "Only process directories specified on the command line. Don't build cache." +-msgstr "Przetwarzanie wycznie katalogw podanych z linii polece; nie budowanie bufora." ++#: timezone/zic.c:774 timezone/zic.c:776 ++msgid "same rule name in multiple files" ++msgstr "ta sama nazwa nazwa reguy w rnych plikach" + +-#: elf/ldconfig.c:130 +-msgid "Manually link individual libraries." +-msgstr "Rczne tworzenie dowiza do pojedynczych bibliotek." ++#: timezone/zic.c:817 ++msgid "unruly zone" ++msgstr "strefa bez regu" + +-#: elf/ldconfig.c:131 +-msgid "Format to use: new, old or compat (default)" +-msgstr "Uywany format: new, old lub compat (domylny)" ++#: timezone/zic.c:824 ++#, c-format ++msgid "%s in ruleless zone" ++msgstr "%s w strefie dla ktrej nie zdefiniowano regu" + +-#: elf/ldconfig.c:139 +-msgid "Configure Dynamic Linker Run Time Bindings." +-msgstr "Konfiguracja powiza dynamicznego linkera." ++#: timezone/zic.c:845 ++msgid "standard input" ++msgstr "standardowe wejcie" + +-#: elf/ldconfig.c:297 ++#: timezone/zic.c:850 + #, c-format +-msgid "Path `%s' given more than once" +-msgstr "cieka `%s' podana wicej ni raz" ++msgid "%s: Can't open %s: %s\n" ++msgstr "%s: Nie mona otworzy %s: %s\n" + +-#: elf/ldconfig.c:341 +-#, c-format +-msgid "%s is not a known library type" +-msgstr "%s nie jest znanym rodzajem biblioteki" ++#: timezone/zic.c:861 ++msgid "line too long" ++msgstr "za duga linia" + +-#: elf/ldconfig.c:361 +-#, c-format +-msgid "Can't stat %s" +-msgstr "Nie mona wykona stat na %s" ++#: timezone/zic.c:881 ++msgid "input line of unknown type" ++msgstr "nieznany typ linii wejciowej" + +-#: elf/ldconfig.c:431 ++#: timezone/zic.c:897 + #, c-format +-msgid "Can't stat %s\n" +-msgstr "Nie mona wykona stat na %s\n" ++msgid "%s: Leap line in non leap seconds file %s\n" ++msgstr "%s: linia Leap nie znajduje si w pliku sekund przestpnych %s\n" + +-#: elf/ldconfig.c:441 ++#: timezone/zic.c:904 timezone/zic.c:1325 timezone/zic.c:1350 + #, c-format +-msgid "%s is not a symbolic link\n" +-msgstr "%s nie jest dowizaniem symbolicznym\n" ++msgid "%s: panic: Invalid l_value %d\n" ++msgstr "%s: panika: Bdna l-warto %d\n" + +-#: elf/ldconfig.c:460 ++#: timezone/zic.c:912 + #, c-format +-msgid "Can't unlink %s" +-msgstr "Nie mona usun %s" ++msgid "%s: Error reading %s\n" ++msgstr "%s: Bd odczytu %s\n" + +-#: elf/ldconfig.c:466 ++#: timezone/zic.c:919 + #, c-format +-msgid "Can't link %s to %s" +-msgstr "Nie mona dowiza %s do %s" ++msgid "%s: Error closing %s: %s\n" ++msgstr "%s: Bd podczas zamykania %s: %s\n" + +-#: elf/ldconfig.c:472 +-msgid " (changed)\n" +-msgstr " (zmieniono)\n" ++#: timezone/zic.c:924 ++msgid "expected continuation line not found" ++msgstr "brak spodziewanej linii kontynuacji" + +-#: elf/ldconfig.c:474 +-msgid " (SKIPPED)\n" +-msgstr " (POMINITO)\n" ++#: timezone/zic.c:968 ++msgid "24:00 not handled by pre-1998 versions of zic" ++msgstr "24:00 nie bya obsugiwana przez wersje zic sprzed 1998 roku" + +-#: elf/ldconfig.c:529 +-#, c-format +-msgid "Can't find %s" +-msgstr "Nie mona znale %s" ++#: timezone/zic.c:982 ++msgid "wrong number of fields on Rule line" ++msgstr "za liczba pl w linii Rule" + +-#: elf/ldconfig.c:545 +-#, c-format +-msgid "Can't lstat %s" +-msgstr "Nie mona wykona lstat na %s" ++#: timezone/zic.c:986 ++msgid "nameless rule" ++msgstr "bezimienna regua" + +-#: elf/ldconfig.c:552 +-#, c-format +-msgid "Ignored file %s since it is not a regular file." +-msgstr "Zignorowano plik %s poniewa nie jest zwykym plikiem." ++#: timezone/zic.c:991 ++msgid "invalid saved time" ++msgstr "bdny czas oszczdnoci" + +-#: elf/ldconfig.c:560 +-#, c-format +-msgid "No link created since soname could not be found for %s" +-msgstr "Nie utworzono dowizania poniewa nie znaleziono soname dla %s" ++#: timezone/zic.c:1010 ++msgid "wrong number of fields on Zone line" ++msgstr "za liczba pl w linii Zone" + +-#: elf/ldconfig.c:651 ++#: timezone/zic.c:1016 + #, c-format +-msgid "Can't open directory %s" +-msgstr "Nie mona otworzy katalogu %s" ++msgid "\"Zone %s\" line and -l option are mutually exclusive" ++msgstr "Linia \"Zone %s\" i opcja -l wykluczaj si wzajemnie" + +-#: elf/ldconfig.c:706 elf/ldconfig.c:753 ++#: timezone/zic.c:1024 + #, c-format +-msgid "Cannot lstat %s" +-msgstr "Nie mona wykona lstat na %s" ++msgid "\"Zone %s\" line and -p option are mutually exclusive" ++msgstr "Linia \"Zone %s\" i opcja -p wykluczaj si wzajemnie" + +-#: elf/ldconfig.c:718 ++#: timezone/zic.c:1036 + #, c-format +-msgid "Cannot stat %s" +-msgstr "Nie mona wykona stat na %s" ++msgid "duplicate zone name %s (file \"%s\", line %d)" ++msgstr "powtrzona nazwa strefy %s (plik \"%s\", linia %d)" + +-#: elf/ldconfig.c:775 elf/readlib.c:92 +-#, c-format +-msgid "Input file %s not found.\n" +-msgstr "Nie znaleziono pliku wejciowego %s.\n" ++#: timezone/zic.c:1052 ++msgid "wrong number of fields on Zone continuation line" ++msgstr "za liczba pl w linii kontynuacji Zone" + +-#: elf/ldconfig.c:826 +-#, c-format +-msgid "libc5 library %s in wrong directory" +-msgstr "biblioteka libc5 %s w zym katalogu" ++#: timezone/zic.c:1092 ++msgid "invalid UTC offset" ++msgstr "nieprawidowe przesunicie UTC" + +-#: elf/ldconfig.c:829 +-#, c-format +-msgid "libc6 library %s in wrong directory" +-msgstr "biblioteka libc6 %s w zym katalogu" ++#: timezone/zic.c:1095 ++msgid "invalid abbreviation format" ++msgstr "nieprawidowy format skrtu" + +-#: elf/ldconfig.c:832 +-#, c-format +-msgid "libc4 library %s in wrong directory" +-msgstr "biblioteka libc4 %s w zym katalogu" ++#: timezone/zic.c:1122 ++msgid "Zone continuation line end time is not after end time of previous line" ++msgstr "Czas kocowy linii kontynuacji Zone nie jest po czasie kocowym poprzedniej linii" + +-#: elf/ldconfig.c:859 +-#, c-format +-msgid "libraries %s and %s in directory %s have same soname but different type." +-msgstr "biblioteki %s i %s w katalogu %s maj to samo soname ale inny rodzaj." ++#: timezone/zic.c:1150 ++msgid "wrong number of fields on Leap line" ++msgstr "za liczba pl w linii Leap" + +-#: elf/ldconfig.c:962 +-#, c-format +-msgid "Can't open configuration file %s" +-msgstr "Nie mona otworzy pliku konfiguracyjnego %s" ++#: timezone/zic.c:1159 ++msgid "invalid leaping year" ++msgstr "nieprawidowy rok przestpny" + +-#: elf/ldconfig.c:1033 +-#, c-format +-msgid "relative path `%s' used to build cache" +-msgstr "uyto wzgldnej cieki `%s' do utworzenia bufora" ++#: timezone/zic.c:1174 timezone/zic.c:1280 ++msgid "invalid month name" ++msgstr "nieprawidowa nazwa miesica" + +-#: elf/ldconfig.c:1057 +-msgid "Can't chdir to /" +-msgstr "Nie mona przej do katalogu /" ++#: timezone/zic.c:1187 timezone/zic.c:1402 timezone/zic.c:1416 ++msgid "invalid day of month" ++msgstr "nieprawidowy dzie miesica" + +-#: elf/ldconfig.c:1099 +-#, c-format +-msgid "Can't open cache file directory %s\n" +-msgstr "Nie mona otworzy katalogu pliku bufora %s\n" ++#: timezone/zic.c:1192 ++msgid "time before zero" ++msgstr "czas przed zerem" + +-#: elf/readlib.c:98 +-#, c-format +-msgid "Cannot fstat file %s.\n" +-msgstr "Nie mona wykona fstat na pliku %s.\n" ++#: timezone/zic.c:1196 ++msgid "time too small" ++msgstr "czas zbyt may" + +-#: elf/readlib.c:108 +-#, c-format +-msgid "File %s is too small, not checked." +-msgstr "Plik %s jest za may, nie sprawdzony." ++#: timezone/zic.c:1200 ++msgid "time too large" ++msgstr "czas zbyt duy" + +-#: elf/readlib.c:117 +-#, c-format +-msgid "Cannot mmap file %s.\n" +-msgstr "Nie mona wykona mmap pliku %s.\n" ++#: timezone/zic.c:1204 timezone/zic.c:1309 ++msgid "invalid time of day" ++msgstr "nieprawidowa pora dnia" + +-#: elf/readlib.c:155 +-#, c-format +-msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n" +-msgstr "%s nie jest plikiem ELF - ma ze bajty magiczne na pocztku.\n" ++#: timezone/zic.c:1223 ++msgid "illegal CORRECTION field on Leap line" ++msgstr "bdne pole CORRECTION w linii Leap" + +-#: elf/sprof.c:72 +-msgid "Output selection:" +-msgstr "Wybr wyjcia:" ++#: timezone/zic.c:1228 ++msgid "illegal Rolling/Stationary field on Leap line" ++msgstr "bdne pole Rolling/Stationary w linii Leap" + +-# XXX poprawic -PK +-#: elf/sprof.c:74 +-msgid "print list of count paths and their number of use" +-msgstr "wypisanie listy cieek zliczania i ich licznikw uycia" ++#: timezone/zic.c:1244 ++msgid "wrong number of fields on Link line" ++msgstr "za liczba pl w linii Link" + +-#: elf/sprof.c:76 +-msgid "generate flat profile with counts and ticks" +-msgstr "generowanie prostego profilu z licznikami i czasami" ++#: timezone/zic.c:1248 ++msgid "blank FROM field on Link line" ++msgstr "puste pole FROM w linii Link" + +-#: elf/sprof.c:77 +-msgid "generate call graph" +-msgstr "generowanie wykresu wywoa" ++#: timezone/zic.c:1252 ++msgid "blank TO field on Link line" ++msgstr "puste pole TO w linii Link" + +-#: elf/sprof.c:84 +-msgid "Read and display shared object profiling data" +-msgstr "Odczyt i wywietlenie danych profilujcych obiektu dzielonego" ++#: timezone/zic.c:1329 ++msgid "invalid starting year" ++msgstr "nieprawidowy rok pocztkowy" + +-#: elf/sprof.c:87 +-msgid "SHOBJ [PROFDATA]" +-msgstr "OBIEKT_DZIELONY [DANE_PROFILUJCE]" ++#: timezone/zic.c:1333 ++msgid "starting year too low to be represented" ++msgstr "rok pocztkowy jest zbyt may" + +-#: elf/sprof.c:398 +-#, c-format +-msgid "failed to load shared object `%s'" +-msgstr "zaadowanie dzielonego obiektu `%s' nie powiodo si" ++#: timezone/zic.c:1335 ++msgid "starting year too high to be represented" ++msgstr "rok pocztkowy jest zbyt duy" + +-#: elf/sprof.c:407 +-msgid "cannot create internal descriptors" +-msgstr "nie mona utworzy wewntrznych deskryptorw" ++#: timezone/zic.c:1354 ++msgid "invalid ending year" ++msgstr "nieprawidowy rok kocowy" ++ ++#: timezone/zic.c:1358 ++msgid "ending year too low to be represented" ++msgstr "rok kocowy jest zbyt may" ++ ++#: timezone/zic.c:1360 ++msgid "ending year too high to be represented" ++msgstr "rok kocowy jest zbyt duy" ++ ++#: timezone/zic.c:1363 ++msgid "starting year greater than ending year" ++msgstr "rok pocztkowy jest pniejszy ni kocowy" ++ ++#: timezone/zic.c:1370 ++msgid "typed single year" ++msgstr "podano pojedynczy rok" ++ ++#: timezone/zic.c:1407 ++msgid "invalid weekday name" ++msgstr "nieprawidowa nazwa dnia tygodnia" + +-#: elf/sprof.c:526 ++#: timezone/zic.c:1521 + #, c-format +-msgid "Reopening shared object `%s' failed" +-msgstr "Ponowne otwarcie obiektu dzielonego `%s' nie powiodo si" ++msgid "%s: Can't remove %s: %s\n" ++msgstr "%s: Nie mona usun %s: %s\n" + +-#: elf/sprof.c:534 +-msgid "mapping of section headers failed" +-msgstr "odwzorowanie nagwkw sekcji nie powiodo si" +- +-#: elf/sprof.c:544 +-msgid "mapping of section header string table failed" +-msgstr "odwzorowanie tablicy nagwkw sekcji nie powiodo si" ++#: timezone/zic.c:1531 ++#, c-format ++msgid "%s: Can't create %s: %s\n" ++msgstr "%s: Nie mona utworzy %s: %s\n" + +-#: elf/sprof.c:564 ++#: timezone/zic.c:1598 + #, c-format +-msgid "*** The file `%s' is stripped: no detailed analysis possible\n" +-msgstr "*** Symbole z pliku `%s' zostay usunite, dokadna analiza jest niemoliwa\n" ++msgid "%s: Error writing %s\n" ++msgstr "%s: Bd podczas zapisu do %s\n" + +-#: elf/sprof.c:594 +-msgid "failed to load symbol data" +-msgstr "zaadowanie danych o symbolach nie powiodo si" ++# jak ladnie przetlumaczyc ten until time? -PK ++#: timezone/zic.c:1789 ++msgid "can't determine time zone abbreviation to use just after until time" ++msgstr "nie mona okreli skrtu strefy czasowej po kocu przedziau czasu" + +-#: elf/sprof.c:664 +-msgid "cannot load profiling data" +-msgstr "nie mona zaadowa danych do profilowania" ++#: timezone/zic.c:1832 ++msgid "too many transitions?!" ++msgstr "za duo konwersji?!" + +-#: elf/sprof.c:673 +-msgid "while stat'ing profiling data file" +-msgstr "podczas wykonywania stat na pliku z danymi profilujcymi" ++#: timezone/zic.c:1851 ++msgid "internal error - addtype called with bad isdst" ++msgstr "bd wewntrzny - addtype wywoane z bdnym isdst" ++ ++#: timezone/zic.c:1855 ++msgid "internal error - addtype called with bad ttisstd" ++msgstr "bd wewntrzny - addtype wywoane z bdnym ttisstd" ++ ++#: timezone/zic.c:1859 ++msgid "internal error - addtype called with bad ttisgmt" ++msgstr "bd wewntrzny - addtype wywoane z bdnym ttisgmt" ++ ++#: timezone/zic.c:1878 ++msgid "too many local time types" ++msgstr "za duo lokalnych typw czasu" ++ ++#: timezone/zic.c:1906 ++msgid "too many leap seconds" ++msgstr "za duo sekund przestpnych" ++ ++#: timezone/zic.c:1912 ++msgid "repeated leap second moment" ++msgstr "powtrzona chwila wystpowania sekund przestpnych" ++ ++#: timezone/zic.c:1964 ++msgid "Wild result from command execution" ++msgstr "Osobliwy wynik wykonania polecenia" + +-#: elf/sprof.c:681 ++#: timezone/zic.c:1965 + #, c-format +-msgid "profiling data file `%s' does not match shared object `%s'" +-msgstr "dane profilujce w pliku `%s' nie pasuj do obiektu dzielonego `%s'" ++msgid "%s: command was '%s', result was %d\n" ++msgstr "%s: polecenie `%s' zwrcio %d\n" + +-#: elf/sprof.c:692 +-msgid "failed to mmap the profiling data file" +-msgstr "wykonanie mmap danych profilujcych nie powiodo si" ++#: timezone/zic.c:2062 ++msgid "Odd number of quotation marks" ++msgstr "Nieparzysta liczba cudzysoww" + +-#: elf/sprof.c:700 +-msgid "error while closing the profiling data file" +-msgstr "bd podczas zamykania pliku z danymi profilujcymi" ++#: timezone/zic.c:2083 timezone/zic.c:2102 ++msgid "time overflow" ++msgstr "przepenienie czasu" + +-#: elf/sprof.c:709 elf/sprof.c:779 +-msgid "cannot create internal descriptor" +-msgstr "nie mona utworzy wewntrznego deskryptora" ++#: timezone/zic.c:2149 ++msgid "use of 2/29 in non leap-year" ++msgstr "uycie 2/29 w roku nieprzestpnym" + +-#: elf/sprof.c:755 ++#: timezone/zic.c:2184 ++msgid "rule goes past start/end of month--will not work with pre-2004 versions of zic" ++msgstr "regua przekracza pocztek/koniec miesica - nie zadziaa z wersjami zic sprzed 2004 roku" ++ ++#: timezone/zic.c:2218 ++msgid "time zone abbreviation lacks alphabetic at start" ++msgstr "skrt nazwy strefy czasowej nie zaczyna si od litery" ++ ++#: timezone/zic.c:2220 ++msgid "time zone abbreviation has more than 3 alphabetics" ++msgstr "skrt nazwy strefy czasowej ma mniej ni 3 litery" ++ ++#: timezone/zic.c:2222 ++msgid "time zone abbreviation has too many alphabetics" ++msgstr "skrt nazwy strefy czasowej ma zbyt duo liter" ++ ++#: timezone/zic.c:2232 ++msgid "time zone abbreviation differs from POSIX standard" ++msgstr "skrt nazwy strefy czasowej rni si od standardu POSIX" ++ ++#: timezone/zic.c:2244 ++msgid "too many, or too long, time zone abbreviations" ++msgstr "za dugie lub za duo skrtw stref czasowych" ++ ++#: timezone/zic.c:2285 + #, c-format +-msgid "`%s' is no correct profile data file for `%s'" +-msgstr "`%s' nie jest poprawnym plikiem danych profilujcych dla `%s'" ++msgid "%s: Can't create directory %s: %s\n" ++msgstr "%s: Nie mona utworzy katalogu %s: %s\n" + +-#: elf/sprof.c:936 elf/sprof.c:988 +-msgid "cannot allocate symbol data" +-msgstr "nie mona przydzieli pamici dla symboli" ++#: timezone/zic.c:2307 ++#, c-format ++msgid "%s: %d did not sign extend correctly\n" ++msgstr "%s: %d niepoprawnie rozszerzy znak\n" +diff -urN --exclude=CVS glibc-2_5/libc/po/sv.po glibc-2_5-branch/libc/po/sv.po +--- glibc-2_5/libc/po/sv.po 2006-09-21 06:16:48.000000000 +0200 ++++ glibc-2_5-branch/libc/po/sv.po 2007-03-20 14:22:26.000000000 +0100 +@@ -1,3718 +1,4459 @@ + # GNU libc message catalog for swedish +-# Copyright 1996, 1998, 2001, 2002, 2003 Free Software Foundation, Inc. +-# Jan Djrv , 1996, 1998, 2001, 2002, 2003. +-# Revision: 1.48 ++# Copyright © 1996, 1998, 2001, 2002, 2003, 2006 Free Software Foundation, Inc. ++# Jan Djärv , 1996, 1998, 2001, 2002, 2003, 2006. ++# Revision: 1.52 + # + msgid "" + msgstr "" +-"Project-Id-Version: libc 2.3.3\n" +-"POT-Creation-Date: 2004-08-05 09:16+0200\n" +-"PO-Revision-Date: 2004-08-08 09:44+0200\n" +-"Last-Translator: Jan Djrv \n" +-"Language-Team: Swedish \n" ++"Project-Id-Version: libc 2.5\n" ++"POT-Creation-Date: 2006-09-29 11:38-0700\n" ++"PO-Revision-Date: 2006-11-09 13:51+0100\n" ++"Last-Translator: Jan Djärv \n" ++"Language-Team: Swedish \n" + "MIME-Version: 1.0\n" +-"Content-Type: text/plain; charset=iso-8859-1\n" ++"Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" + +-#: sysdeps/generic/siglist.h:29 stdio-common/../sysdeps/unix/siglist.c:27 +-msgid "Hangup" +-msgstr "Avringd" ++#: argp/argp-help.c:227 ++#, c-format ++msgid "%.*s: ARGP_HELP_FMT parameter requires a value" ++msgstr "%.*s: parameter till ARGP_HELP_FMT kräver ett värde" + +-#: sysdeps/generic/siglist.h:30 stdio-common/../sysdeps/unix/siglist.c:28 +-msgid "Interrupt" +-msgstr "Avbruten (SIGINT)" ++#: argp/argp-help.c:237 ++#, c-format ++msgid "%.*s: Unknown ARGP_HELP_FMT parameter" ++msgstr "%.*s: Parameter till ARGP_HELP_FMT okänd" + +-#: sysdeps/generic/siglist.h:31 stdio-common/../sysdeps/unix/siglist.c:29 +-msgid "Quit" +-msgstr "Lmnad" ++#: argp/argp-help.c:250 ++#, c-format ++msgid "Garbage in ARGP_HELP_FMT: %s" ++msgstr "Skräp i ARGP_HELP_FMT: %s" + +-#: sysdeps/generic/siglist.h:32 stdio-common/../sysdeps/unix/siglist.c:30 +-msgid "Illegal instruction" +-msgstr "Otillten instruktion" ++#: argp/argp-help.c:1214 ++msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." ++msgstr "Obligatoriska respektive valfria argument för långa flaggor är obligatoriska repektive valfria även för korta." + +-#: sysdeps/generic/siglist.h:33 stdio-common/../sysdeps/unix/siglist.c:31 +-msgid "Trace/breakpoint trap" +-msgstr "Sprningsflla" ++#: argp/argp-help.c:1600 ++msgid "Usage:" ++msgstr "Användning:" + +-#: sysdeps/generic/siglist.h:34 +-msgid "Aborted" +-msgstr "Avbruten (SIGABRT)" ++#: argp/argp-help.c:1604 ++msgid " or: " ++msgstr " eller: " + +-#: sysdeps/generic/siglist.h:35 stdio-common/../sysdeps/unix/siglist.c:34 +-msgid "Floating point exception" +-msgstr "Aritmetiskt fel" ++#: argp/argp-help.c:1616 ++msgid " [OPTION...]" ++msgstr " [FLAGGA...]" + +-#: sysdeps/generic/siglist.h:36 stdio-common/../sysdeps/unix/siglist.c:35 +-msgid "Killed" +-msgstr "Ddad" ++#: argp/argp-help.c:1643 ++#, c-format ++msgid "Try `%s --help' or `%s --usage' for more information.\n" ++msgstr "Försök med \"%s --help\" eller \"%s --usage\" för mer information\n" + +-#: sysdeps/generic/siglist.h:37 stdio-common/../sysdeps/unix/siglist.c:36 +-msgid "Bus error" +-msgstr "Bussfel" ++#: argp/argp-help.c:1671 ++#, c-format ++msgid "Report bugs to %s.\n" ++msgstr "" ++"Rapportera fel till %s.\n" ++"Rapportera fel eller synpunkter på översättningen till .\n" + +-#: sysdeps/generic/siglist.h:38 stdio-common/../sysdeps/unix/siglist.c:37 +-msgid "Segmentation fault" +-msgstr "Segmenteringsfel" ++#: argp/argp-parse.c:102 ++msgid "Give this help list" ++msgstr "Skriv denna hjälplista" + +-#. TRANS Broken pipe; there is no process reading from the other end of a pipe. +-#. TRANS Every library function that returns this error code also generates a +-#. TRANS @code{SIGPIPE} signal; this signal terminates the program if not handled +-#. TRANS or blocked. Thus, your program will never actually see @code{EPIPE} +-#. TRANS unless it has handled or blocked @code{SIGPIPE}. +-#: sysdeps/generic/siglist.h:39 stdio-common/../sysdeps/gnu/errlist.c:351 +-#: stdio-common/../sysdeps/unix/siglist.c:39 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:62 +-msgid "Broken pipe" +-msgstr "Brutet rr" ++#: argp/argp-parse.c:103 ++msgid "Give a short usage message" ++msgstr "Ge ett kort hjälpmeddelande" + +-#: sysdeps/generic/siglist.h:40 stdio-common/../sysdeps/unix/siglist.c:40 +-msgid "Alarm clock" +-msgstr "Alarmklocka" ++#: argp/argp-parse.c:104 ++msgid "Set the program name" ++msgstr "Sätt programnamnet" + +-#: sysdeps/generic/siglist.h:41 stdio-common/../sysdeps/unix/siglist.c:41 +-msgid "Terminated" +-msgstr "Avslutad" ++#: argp/argp-parse.c:106 ++msgid "Hang for SECS seconds (default 3600)" ++msgstr "Vänta i SEK sekunder (standardvärde 3600)" + +-#: sysdeps/generic/siglist.h:42 stdio-common/../sysdeps/unix/siglist.c:42 +-msgid "Urgent I/O condition" +-msgstr "Akut I/O-tillstnd" ++#: argp/argp-parse.c:167 ++msgid "Print program version" ++msgstr "Skriv programversion" + +-#: sysdeps/generic/siglist.h:43 stdio-common/../sysdeps/unix/siglist.c:43 +-msgid "Stopped (signal)" +-msgstr "Stoppad (signal)" ++#: argp/argp-parse.c:183 ++msgid "(PROGRAM ERROR) No version known!?" ++msgstr "(PROGRAMFEL) Ingen version känd!?" + +-#: sysdeps/generic/siglist.h:44 stdio-common/../sysdeps/unix/siglist.c:44 +-msgid "Stopped" +-msgstr "Stoppad" ++#: argp/argp-parse.c:623 ++#, c-format ++msgid "%s: Too many arguments\n" ++msgstr "%s: För många argument\n" + +-#: sysdeps/generic/siglist.h:45 stdio-common/../sysdeps/unix/siglist.c:45 +-msgid "Continued" +-msgstr "terupptagen" ++#: argp/argp-parse.c:766 ++msgid "(PROGRAM ERROR) Option should have been recognized!?" ++msgstr "(PROGRAMFEL) Flagga skulle känts igen!?" + +-#: sysdeps/generic/siglist.h:46 stdio-common/../sysdeps/unix/siglist.c:46 +-msgid "Child exited" +-msgstr "Barnprocess avslutad" ++#: assert/assert-perr.c:57 ++#, c-format ++msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n" ++msgstr "%s%s%s:%u: %s%sOväntat fel: %s.\n" + +-#: sysdeps/generic/siglist.h:47 stdio-common/../sysdeps/unix/siglist.c:47 +-msgid "Stopped (tty input)" +-msgstr "Stoppad (terminallsning)" ++#: assert/assert.c:57 ++#, c-format ++msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" ++msgstr "%s%s%s:%u: %s%sFörsäkran \"%s\" falsk.\n" + +-#: sysdeps/generic/siglist.h:48 stdio-common/../sysdeps/unix/siglist.c:48 +-msgid "Stopped (tty output)" +-msgstr "Stoppad (terminalskrivning)" ++#: catgets/gencat.c:109 catgets/gencat.c:113 nscd/nscd.c:96 nss/makedb.c:61 ++msgid "NAME" ++msgstr "NAMN" + +-#: sysdeps/generic/siglist.h:49 stdio-common/../sysdeps/unix/siglist.c:49 +-msgid "I/O possible" +-msgstr "I/O mjligt" ++#: catgets/gencat.c:110 ++msgid "Create C header file NAME containing symbol definitions" ++msgstr "Skapa C-huvudfil NAMN innehållande symboldefinitioner" + +-#: sysdeps/generic/siglist.h:50 stdio-common/../sysdeps/unix/siglist.c:50 +-msgid "CPU time limit exceeded" +-msgstr "Begrnsning av CPU-tid verskriden" ++#: catgets/gencat.c:112 ++msgid "Do not use existing catalog, force new output file" ++msgstr "Använd inte existerande katalog, gör en ny utfil" + +-#: sysdeps/generic/siglist.h:51 stdio-common/../sysdeps/unix/siglist.c:51 +-msgid "File size limit exceeded" +-msgstr "Begrnsning av filstorlek verskriden" ++#: catgets/gencat.c:113 nss/makedb.c:61 ++msgid "Write output to file NAME" ++msgstr "Skriv resultatet till NAMN" + +-#: sysdeps/generic/siglist.h:52 stdio-common/../sysdeps/unix/siglist.c:52 +-msgid "Virtual timer expired" +-msgstr "Alarmklocka - virtuell tid" ++#: catgets/gencat.c:118 ++msgid "" ++"Generate message catalog. If INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n" ++"is -, output is written to standard output.\n" ++msgstr "" ++"Skapa meddelandekatalog. Om INFIL är - så läses standard in. Om UTFIL\n" ++"är - så skrivs resultatet till standard ut.\n" + +-#: sysdeps/generic/siglist.h:53 stdio-common/../sysdeps/unix/siglist.c:53 +-msgid "Profiling timer expired" +-msgstr "Profileringsklocka" ++#: catgets/gencat.c:123 ++msgid "" ++"-o OUTPUT-FILE [INPUT-FILE]...\n" ++"[OUTPUT-FILE [INPUT-FILE]...]" ++msgstr "" ++"-o UTFIL [INFIL]...\n" ++"[UTFIL [INFIL]...]" + +-#: sysdeps/generic/siglist.h:54 stdio-common/../sysdeps/unix/siglist.c:54 +-msgid "Window changed" +-msgstr "ndrat fnster" ++#: catgets/gencat.c:231 debug/pcprofiledump.c:199 iconv/iconv_prog.c:410 ++#: iconv/iconvconfig.c:379 locale/programs/localedef.c:370 ++#: login/programs/pt_chown.c:88 malloc/memusagestat.c:525 nss/makedb.c:231 ++msgid "" ++"For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"För felrapporteringsinstruktioner, se:\n" ++".\n" ++"Rapportera fel eller synpunkter på översättningen till .\n" ++ ++#: catgets/gencat.c:245 debug/xtrace.sh:64 elf/ldconfig.c:285 ++#: elf/ldd.bash.in:39 elf/sprof.c:355 iconv/iconv_prog.c:425 ++#: iconv/iconvconfig.c:394 locale/programs/locale.c:274 ++#: locale/programs/localedef.c:386 login/programs/pt_chown.c:59 ++#: malloc/memusage.sh:71 nscd/nscd.c:401 nss/getent.c:83 nss/makedb.c:245 ++#: posix/getconf.c:1007 ++#, c-format ++msgid "" ++"Copyright (C) %s Free Software Foundation, Inc.\n" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"Copyright © %s Free Software Foundation, Inc.\n" ++"Detta är fri programvara; se källkoden för kopieringsvillkor. Det finns\n" ++"INGEN garanti; inte ens för SÄLJBARHET eller LÄMPLIGHET FÖR NÅGOT SPECIELLT\n" ++"ÄNDAMÅL.\n" ++ ++#: catgets/gencat.c:250 debug/xtrace.sh:68 elf/ldconfig.c:290 elf/sprof.c:361 ++#: iconv/iconv_prog.c:430 iconv/iconvconfig.c:399 locale/programs/locale.c:279 ++#: locale/programs/localedef.c:391 malloc/memusage.sh:75 nscd/nscd.c:406 ++#: nss/getent.c:88 nss/makedb.c:250 posix/getconf.c:1012 ++#, c-format ++msgid "Written by %s.\n" ++msgstr "Skrivet av %s.\n" + +-#: sysdeps/generic/siglist.h:55 stdio-common/../sysdeps/unix/siglist.c:56 +-msgid "User defined signal 1" +-msgstr "Anvndarsignal 1" ++#: catgets/gencat.c:281 ++msgid "*standard input*" ++msgstr "*standard in*" + +-#: sysdeps/generic/siglist.h:56 stdio-common/../sysdeps/unix/siglist.c:57 +-msgid "User defined signal 2" +-msgstr "Anvndarsignal 2" ++#: catgets/gencat.c:287 iconv/iconv_charmap.c:157 iconv/iconv_prog.c:297 ++#: nss/makedb.c:170 ++#, c-format ++msgid "cannot open input file `%s'" ++msgstr "kan inte öppna infil \"%s\"" + +-#: sysdeps/generic/siglist.h:60 stdio-common/../sysdeps/unix/siglist.c:33 +-msgid "EMT trap" +-msgstr "Emulatorflla" ++#: catgets/gencat.c:416 catgets/gencat.c:493 ++msgid "illegal set number" ++msgstr "otillåtet tal för mängd" + +-#: sysdeps/generic/siglist.h:63 stdio-common/../sysdeps/unix/siglist.c:38 +-msgid "Bad system call" +-msgstr "Felaktigt systemanrop" ++#: catgets/gencat.c:443 ++msgid "duplicate set definition" ++msgstr "dubblerad definition av mängd" + +-#: sysdeps/generic/siglist.h:66 +-msgid "Stack fault" +-msgstr "Stackfel" ++#: catgets/gencat.c:445 catgets/gencat.c:622 catgets/gencat.c:676 ++msgid "this is the first definition" ++msgstr "detta är den första definitionen" + +-#: sysdeps/generic/siglist.h:69 +-msgid "Information request" +-msgstr "Informationsbegran" ++#: catgets/gencat.c:521 ++#, c-format ++msgid "unknown set `%s'" ++msgstr "okänd mängd \"%s\"" + +-#: sysdeps/generic/siglist.h:71 +-msgid "Power failure" +-msgstr "Strmavbrott" ++#: catgets/gencat.c:562 ++msgid "invalid quote character" ++msgstr "ogiltigt citattecken" + +-#: sysdeps/generic/siglist.h:74 stdio-common/../sysdeps/unix/siglist.c:55 +-msgid "Resource lost" +-msgstr "Frlorad resurs" ++#: catgets/gencat.c:575 ++#, c-format ++msgid "unknown directive `%s': line ignored" ++msgstr "okänt direktiv \"%s\": rad ignorerad" + +-#: sysdeps/mach/hurd/mips/dl-machine.c:68 +-#: string/../sysdeps/mach/_strerror.c:57 +-msgid "Error in unknown error system: " +-msgstr "Fel i oknt felsystem: " ++#: catgets/gencat.c:620 ++msgid "duplicated message number" ++msgstr "dubblerat meddelandenummer" + +-#: sysdeps/mach/hurd/mips/dl-machine.c:83 +-#: string/../sysdeps/generic/_strerror.c:44 +-#: string/../sysdeps/mach/_strerror.c:87 +-msgid "Unknown error " +-msgstr "Oknt fel " ++#: catgets/gencat.c:673 ++msgid "duplicated message identifier" ++msgstr "dubblerad meddelandeidentifierare" + +-#: sysdeps/unix/sysv/linux/lddlibc4.c:64 +-#, c-format +-msgid "cannot open `%s'" +-msgstr "kan inte ppna \"%s\"" ++#: catgets/gencat.c:730 ++msgid "invalid character: message ignored" ++msgstr "ogiltigt tecken: meddelandet ignorerat" + +-#: sysdeps/unix/sysv/linux/lddlibc4.c:68 ++#: catgets/gencat.c:773 ++msgid "invalid line" ++msgstr "ogiltig rad" ++ ++#: catgets/gencat.c:827 ++msgid "malformed line ignored" ++msgstr "felaktig rad ignorerad" ++ ++#: catgets/gencat.c:991 catgets/gencat.c:1032 nss/makedb.c:183 + #, c-format +-msgid "cannot read header from `%s'" +-msgstr "kan inte lsa huvud frn \"%s\"" ++msgid "cannot open output file `%s'" ++msgstr "kan inte öppna utfil \"%s\"" ++ ++#: catgets/gencat.c:1194 locale/programs/linereader.c:559 ++msgid "invalid escape sequence" ++msgstr "ogiltig kontrollsekvens" + +-#: iconv/iconv_charmap.c:159 iconv/iconv_prog.c:295 catgets/gencat.c:288 ++#: catgets/gencat.c:1216 ++msgid "unterminated message" ++msgstr "oavslutat meddelande" ++ ++#: catgets/gencat.c:1240 + #, c-format +-msgid "cannot open input file `%s'" +-msgstr "kan inte ppna infil \"%s\"" ++msgid "while opening old catalog file" ++msgstr "när gammal katalogfil öppnades" + +-#: iconv/iconv_charmap.c:177 iconv/iconv_prog.c:313 ++#: catgets/gencat.c:1331 + #, c-format +-msgid "error while closing input `%s'" +-msgstr "fel vid stngning av indata \"%s\"" ++msgid "conversion modules not available" ++msgstr "konverteringsmoduler inte tillgängliga" + +-#: iconv/iconv_charmap.c:443 ++#: catgets/gencat.c:1357 + #, c-format +-msgid "illegal input sequence at position %Zd" +-msgstr "otillten indatasekvens vid position %Zd" ++msgid "cannot determine escape character" ++msgstr "kan inte avgöra kontrolltecken" + +-#: iconv/iconv_charmap.c:462 iconv/iconv_prog.c:506 +-msgid "incomplete character or shift sequence at end of buffer" +-msgstr "ofullstndigt tecken eller skift-sekvens i slutet p buffert" ++#: debug/pcprofiledump.c:52 ++msgid "Don't buffer output" ++msgstr "Buffra inte resultatet" + +-#: iconv/iconv_charmap.c:507 iconv/iconv_charmap.c:543 iconv/iconv_prog.c:549 +-#: iconv/iconv_prog.c:585 +-msgid "error while reading the input" +-msgstr "fel nr indata lstes" ++#: debug/pcprofiledump.c:57 ++msgid "Dump information generated by PC profiling." ++msgstr "Visa information genererad av PC-profilering." + +-#: iconv/iconv_charmap.c:525 iconv/iconv_prog.c:567 +-msgid "unable to allocate buffer for input" +-msgstr "kan inte allokera buffert fr indata" ++#: debug/pcprofiledump.c:60 ++msgid "[FILE]" ++msgstr "[FIL]" + +-#: iconv/iconv_prog.c:61 +-msgid "Input/Output format specification:" +-msgstr "In/ut formatspecifikation:" ++#: debug/pcprofiledump.c:100 ++#, c-format ++msgid "cannot open input file" ++msgstr "kan inte öppna infil" + +-#: iconv/iconv_prog.c:62 +-msgid "encoding of original text" +-msgstr "kodning av originaltexten" ++#: debug/pcprofiledump.c:106 ++#, c-format ++msgid "cannot read header" ++msgstr "kan inte läsa huvud" + +-#: iconv/iconv_prog.c:63 +-msgid "encoding for output" +-msgstr "kodning fr resultatet" ++#: debug/pcprofiledump.c:170 ++#, c-format ++msgid "invalid pointer size" ++msgstr "ogiltig pekarstorlek" + +-#: iconv/iconv_prog.c:64 +-msgid "Information:" +-msgstr "Information:" ++#: debug/xtrace.sh:27 debug/xtrace.sh:45 ++msgid "Usage: xtrace [OPTION]... PROGRAM [PROGRAMOPTION]...\\n" ++msgstr "Användning: xtrace [FLAGGA]... PROGRAM [PROGRAMFLAGGA}...\\n" ++ ++#: debug/xtrace.sh:33 ++msgid "Try `xtrace --help' for more information.\\n" ++msgstr "Försök med \"xtrace --help\" för mer information\\n" ++ ++#: debug/xtrace.sh:39 ++msgid "xtrace: option `$1' requires an argument.\\n" ++msgstr "xtrace: flaggan \"$1\" behöver ett argument\\n" + +-#: iconv/iconv_prog.c:65 +-msgid "list all known coded character sets" +-msgstr "visa alla knda teckenuppsttningar" ++#: debug/xtrace.sh:46 ++msgid "" ++"Trace execution of program by printing currently executed function.\n" ++"\n" ++" --data=FILE Don't run the program, just print the data from FILE.\n" ++"\n" ++" -?,--help Print this help and exit\n" ++" --usage Give a short usage message\n" ++" -V,--version Print version information and exit\n" ++"\n" ++"Mandatory arguments to long options are also mandatory for any corresponding\n" ++"short options.\n" ++"\n" ++"For bug reporting instructions, please see:\n" ++".\\n" ++msgstr "" ++"Spåra exekvering av ett program genom att skriva ut funktionen som exekveras.\n" ++"\n" ++" --data=FIL Kör inte programmet, skriv bara ut data från FIL.\n" ++"\n" ++" -?,--help Visa denna hjälptext och avsluta\n" ++" --usage Visa en kort hjälptext\n" ++" -V,--version Visa versionsinformation och avsluta\n" ++"\n" ++"Obligatoriska argument för långa flaggor är obligatoriska även för\n" ++"motsvarande korta.\n" ++"\n" ++"För felrapporteringsinstruktioner, se:\n" ++".\n" ++"Rapportera fel eller synpunkter på översättningen till .\\n" ++ ++#: debug/xtrace.sh:125 ++msgid "xtrace: unrecognized option `$1'\\n" ++msgstr "xtrace: okänd flagga `$1'\\n" ++ ++#: debug/xtrace.sh:138 ++msgid "No program name given\\n" ++msgstr "Inget programnamn givet\\n" ++ ++#: debug/xtrace.sh:146 ++#, sh-format ++msgid "executable `$program' not found\\n" ++msgstr "program \"$program\" hittades inte\\n" ++ ++#: debug/xtrace.sh:150 ++#, sh-format ++msgid "`$program' is no executable\\n" ++msgstr "`$program' är inte en körbar binär\\n" + +-#: iconv/iconv_prog.c:66 locale/programs/localedef.c:128 +-msgid "Output control:" +-msgstr "Styr utdata:" ++#: dlfcn/dlinfo.c:67 ++msgid "RTLD_SELF used in code not dynamically loaded" ++msgstr "RTLD_SELF används i kod som inte är dynamiskt laddad" + +-#: iconv/iconv_prog.c:67 +-msgid "omit invalid characters from output" +-msgstr "visa inte ogiltiga tecken i utdata" ++#: dlfcn/dlinfo.c:76 ++msgid "unsupported dlinfo request" ++msgstr "dlinfo-begäran som inte stöds" + +-#: iconv/iconv_prog.c:68 +-msgid "output file" +-msgstr "resultatfil" ++#: dlfcn/dlmopen.c:64 ++msgid "invalid namespace" ++msgstr "ogiltig namnrymd" + +-#: iconv/iconv_prog.c:69 +-msgid "suppress warnings" +-msgstr "utelmna varningar" ++#: dlfcn/dlmopen.c:69 ++msgid "invalid mode" ++msgstr "ogiltigt läge" + +-#: iconv/iconv_prog.c:70 +-msgid "print progress information" +-msgstr "skriv information om krning" ++#: dlfcn/dlopen.c:64 ++msgid "invalid mode parameter" ++msgstr "ogiltig lägesparameter" + +-#: iconv/iconv_prog.c:75 +-msgid "Convert encoding of given files from one encoding to another." +-msgstr "Konvertera kodning i angivna infiler frn en kodning till en annan." ++#: elf/cache.c:67 ++msgid "unknown" ++msgstr "okänt" + +-#: iconv/iconv_prog.c:79 +-msgid "[FILE...]" +-msgstr "[FIL...]" ++#: elf/cache.c:110 ++msgid "Unknown OS" ++msgstr "Okänt OS" + +-#: iconv/iconv_prog.c:201 +-msgid "cannot open output file" +-msgstr "kan inte ppna utfil" ++#: elf/cache.c:115 ++#, c-format ++msgid ", OS ABI: %s %d.%d.%d" ++msgstr ", OS ABI: %s %d.%d.%d" + +-#: iconv/iconv_prog.c:243 ++#: elf/cache.c:141 elf/ldconfig.c:1231 + #, c-format +-msgid "conversions from `%s' and to `%s' are not supported" +-msgstr "konvertering frn \"%s\" och till \"%s\" stds ej" ++msgid "Can't open cache file %s\n" ++msgstr "Kan inte öppna cache-fil \"%s\"\n" + +-#: iconv/iconv_prog.c:248 ++#: elf/cache.c:153 + #, c-format +-msgid "conversion from `%s' is not supported" +-msgstr "konvertering frn \"%s\" stds ej" ++msgid "mmap of cache file failed.\n" ++msgstr "minnesmappning av cache-fil misslyckades.\n" + +-#: iconv/iconv_prog.c:255 ++#: elf/cache.c:157 elf/cache.c:167 + #, c-format +-msgid "conversion to `%s' is not supported" +-msgstr "konvertering till \"%s\" stds ej" ++msgid "File is not a cache file.\n" ++msgstr "Filen är inte en cache-fil.\n" + +-#: iconv/iconv_prog.c:259 ++#: elf/cache.c:200 elf/cache.c:210 + #, c-format +-msgid "conversion from `%s' to `%s' is not supported" +-msgstr "konvertering frn \"%s\" till \"%s\" stds ej" ++msgid "%d libs found in cache `%s'\n" ++msgstr "%d bibliotek hittades i cache \"%s\"\n" + +-#: iconv/iconv_prog.c:265 +-msgid "failed to start conversion processing" +-msgstr "misslyckades att starta konverteringsprocessen" ++#: elf/cache.c:409 ++#, c-format ++msgid "Can't remove old temporary cache file %s" ++msgstr "Kan inte ta bort gammal temporär cache-fil %s" + +-#: iconv/iconv_prog.c:360 +-msgid "error while closing output file" +-msgstr "fel vid stngning av utfilen" ++#: elf/cache.c:416 ++#, c-format ++msgid "Can't create temporary cache file %s" ++msgstr "Kan inte skapa temporär cache-fil \"%s\"" + +-#: iconv/iconv_prog.c:409 iconv/iconvconfig.c:357 locale/programs/locale.c:279 +-#: locale/programs/localedef.c:372 catgets/gencat.c:233 +-#: malloc/memusagestat.c:602 debug/pcprofiledump.c:199 +-msgid "Report bugs using the `glibcbug' script to .\n" +-msgstr "" +-"Rapportera fel med programmet \"glibcbug\" till .\n" +-"Rapportera fel p versttningen till .\n" ++#: elf/cache.c:424 elf/cache.c:434 elf/cache.c:438 ++#, c-format ++msgid "Writing of cache data failed" ++msgstr "Skrivning av cache-data misslyckades" + +-#: iconv/iconv_prog.c:423 iconv/iconvconfig.c:371 locale/programs/locale.c:292 +-#: locale/programs/localedef.c:386 catgets/gencat.c:246 posix/getconf.c:913 +-#: nss/getent.c:74 nscd/nscd.c:355 nscd/nscd_nischeck.c:90 elf/ldconfig.c:274 +-#: elf/sprof.c:349 ++#: elf/cache.c:442 + #, c-format +-msgid "" +-"Copyright (C) %s Free Software Foundation, Inc.\n" +-"This is free software; see the source for copying conditions. There is NO\n" +-"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +-msgstr "" +-"Copyright %s Free Software Foundation, Inc.\n" +-"Detta r fri programvara; se kllkoden fr kopieringsvillkor. Det finns\n" +-"INGEN garanti; inte ens fr SLJBARHET eller LMPLIGHET FR NGOT SPECIELLT\n" +-"NDAML.\n" +- +-#: iconv/iconv_prog.c:428 iconv/iconvconfig.c:376 locale/programs/locale.c:297 +-#: locale/programs/localedef.c:391 catgets/gencat.c:251 posix/getconf.c:918 +-#: nss/getent.c:79 nscd/nscd.c:360 nscd/nscd_nischeck.c:95 elf/ldconfig.c:279 +-#: elf/sprof.c:355 +-#, c-format +-msgid "Written by %s.\n" +-msgstr "Skrivet av %s.\n" ++msgid "Writing of cache data failed." ++msgstr "Skrivning av cache-data misslyckades." + +-#: iconv/iconv_prog.c:458 iconv/iconv_prog.c:484 +-msgid "conversion stopped due to problem in writing the output" +-msgstr "konvertering avslutades p grund av problem med att skriva resultatet" ++#: elf/cache.c:449 ++#, c-format ++msgid "Changing access rights of %s to %#o failed" ++msgstr "Misslyckades med att byta åtkomsträttigheter för %s till %#o" + +-#: iconv/iconv_prog.c:502 ++#: elf/cache.c:454 + #, c-format +-msgid "illegal input sequence at position %ld" +-msgstr "otillten indatasekvens vid position %ld" ++msgid "Renaming of %s to %s failed" ++msgstr "Namnbyte på %s till %s misslyckades" + +-#: iconv/iconv_prog.c:510 +-msgid "internal error (illegal descriptor)" +-msgstr "internt fel (otillten deskriptor)" ++#: elf/dl-close.c:116 ++msgid "shared object not open" ++msgstr "delat objekt är inte öppnat" + +-#: iconv/iconv_prog.c:513 +-#, c-format +-msgid "unknown iconv() error %d" +-msgstr "oknt fel frn iconv() %d" ++#: elf/dl-deps.c:112 ++msgid "DST not allowed in SUID/SGID programs" ++msgstr "DST inte tillåten i SUID/SGID-program" + +-#: iconv/iconv_prog.c:756 +-msgid "" +-"The following list contain all the coded character sets known. This does\n" +-"not necessarily mean that all combinations of these names can be used for\n" +-"the FROM and TO command line parameters. One coded character set can be\n" +-"listed with several different names (aliases).\n" +-"\n" +-" " ++#: elf/dl-deps.c:125 ++msgid "empty dynamics string token substitution" ++msgstr "substitution av \"dynamic string token\" är tom" ++ ++#: elf/dl-deps.c:131 ++#, c-format ++msgid "cannot load auxiliary `%s' because of empty dynamic string token substitution\n" + msgstr "" +-"Fljande lista innehller alla teckenuppsttningar som r knda. Detta\n" +-"betyder inte ndvndigtvis att alla kombinationer av dessa namn kan ges\n" +-"som FRN och TILL argument. En teckenuppsttning kan ha flera olika namn\n" +-"(alias).\n" +-"\n" +-" " ++"kan ite ladda extra \"%s\" på grund av att substitution av\n" ++"\"dynamic string token\" är tom\n" + +-#: iconv/iconvconfig.c:110 +-msgid "Create fastloading iconv module configuration file." +-msgstr "Skapa en konfigurationsfil fr snabbladdning av modul \"iconv\"" ++#: elf/dl-deps.c:472 ++msgid "cannot allocate dependency list" ++msgstr "kan inte allokera beroendelista" + +-#: iconv/iconvconfig.c:114 +-msgid "[DIR...]" +-msgstr "[KATALOG...]" ++#: elf/dl-deps.c:505 elf/dl-deps.c:560 ++msgid "cannot allocate symbol search list" ++msgstr "kan inte allokera söklista för symboler" + +-#: iconv/iconvconfig.c:126 +-msgid "Prefix used for all file accesses" +-msgstr "Prefix att anvnda fr alla filtkomster" ++#: elf/dl-deps.c:545 ++msgid "Filters not supported with LD_TRACE_PRELINKING" ++msgstr "Filter stöds ej med LD_TRACE_PRELINKING" + +-#: iconv/iconvconfig.c:327 locale/programs/localedef.c:292 +-msgid "no output file produced because warnings were issued" +-msgstr "ingen utfil skapad p grund av varningar" ++#: elf/dl-error.c:77 ++msgid "DYNAMIC LINKER BUG!!!" ++msgstr "FEL I DYNAMISK LÄNKARE!!!" + +-#: iconv/iconvconfig.c:405 +-msgid "while inserting in search tree" +-msgstr "vid insttning i sktrd" ++#: elf/dl-error.c:124 ++msgid "error while loading shared libraries" ++msgstr "fel när delade bibliotek laddades" + +-#: iconv/iconvconfig.c:1204 +-msgid "cannot generate output file" +-msgstr "kan inte generera utfil" ++#: elf/dl-fptr.c:88 ++msgid "cannot map pages for fdesc table" ++msgstr "kan inte minnesmappa sidor för fdesc-tabell" + +-#: locale/programs/charmap-dir.c:59 +-#, c-format +-msgid "cannot read character map directory `%s'" +-msgstr "kan inte lsa teckenuppsttningskatalog \"%s\"" ++#: elf/dl-fptr.c:192 ++msgid "cannot map pages for fptr table" ++msgstr "kan inte minnesmappa sidor för fptr-tabell" + +-#: locale/programs/charmap.c:136 +-#, c-format +-msgid "character map file `%s' not found" +-msgstr "teckenuppsttningsfil \"%s\" finns inte" ++#: elf/dl-fptr.c:221 ++msgid "internal error: symidx out of range of fptr table" ++msgstr "internt fel: symidx är utanför intervallet för fptr-tabellen" + +-#: locale/programs/charmap.c:194 +-#, c-format +-msgid "default character map file `%s' not found" +-msgstr "standardteckenuppsttningsfil \"%s\" inte hittad" ++#: elf/dl-load.c:372 ++msgid "cannot allocate name record" ++msgstr "kan inte allokera namnpost" + +-#: locale/programs/charmap.c:257 +-#, c-format +-msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n" +-msgstr "teckenuppsttning \"%s\" r inte ASCII-kompatibel, lokal r inte ISO C-kompatibel\n" ++#: elf/dl-load.c:474 elf/dl-load.c:553 elf/dl-load.c:673 elf/dl-load.c:786 ++msgid "cannot create cache for search path" ++msgstr "kan inte skapa cache för sökväg" + +-#: locale/programs/charmap.c:336 +-#, c-format +-msgid "%s: must be greater than \n" +-msgstr "%s: mste vara strre n \n" ++#: elf/dl-load.c:576 ++msgid "cannot create RUNPATH/RPATH copy" ++msgstr "kan inte skapa kopia av RUNPATH/RPATH" + +-#: locale/programs/charmap.c:356 locale/programs/charmap.c:373 +-#: locale/programs/repertoire.c:175 +-#, c-format +-msgid "syntax error in prolog: %s" +-msgstr "syntaxfel i prolog: %s" ++#: elf/dl-load.c:659 ++msgid "cannot create search path array" ++msgstr "kan inte skapa sökvägslista" + +-#: locale/programs/charmap.c:357 +-msgid "invalid definition" +-msgstr "ogiltig definition" ++#: elf/dl-load.c:870 ++msgid "cannot stat shared object" ++msgstr "kan inte ta status på delat objekt" + +-#: locale/programs/charmap.c:374 locale/programs/locfile.c:126 +-#: locale/programs/locfile.c:153 locale/programs/repertoire.c:176 +-msgid "bad argument" +-msgstr "dligt argument" ++#: elf/dl-load.c:940 ++msgid "cannot open zero fill device" ++msgstr "kan inte öppna nollfyllnadsenhet" + +-#: locale/programs/charmap.c:402 +-#, c-format +-msgid "duplicate definition of <%s>" +-msgstr "dubblerad definition av <%s>" ++#: elf/dl-load.c:985 elf/dl-load.c:2215 ++msgid "cannot create shared object descriptor" ++msgstr "kan inte skapa delad objektdeskriptor" + +-#: locale/programs/charmap.c:409 +-#, c-format +-msgid "value for <%s> must be 1 or greater" +-msgstr "vrdet p <%s> mste vara 1 eller strre" ++#: elf/dl-load.c:1004 elf/dl-load.c:1663 elf/dl-load.c:1755 ++msgid "cannot read file data" ++msgstr "kan inte läsa fildata" + +-#: locale/programs/charmap.c:421 +-#, c-format +-msgid "value of <%s> must be greater or equal than the value of <%s>" +-msgstr "vrdet p <%s> mste vara strre eller lika med vrdet p <%s>" ++#: elf/dl-load.c:1048 ++msgid "ELF load command alignment not page-aligned" ++msgstr "ELF-laddkommando är inte på sidgräns" + +-#: locale/programs/charmap.c:444 locale/programs/repertoire.c:184 +-#, c-format +-msgid "argument to <%s> must be a single character" +-msgstr "argumentet till <%s> mste vara ett enskilt tecken" ++#: elf/dl-load.c:1055 ++msgid "ELF load command address/offset not properly aligned" ++msgstr "Address/position för ELF-laddkommando är inte på rätt bytegräns" + +-#: locale/programs/charmap.c:470 +-msgid "character sets with locking states are not supported" +-msgstr "teckenuppsttningar med lsta tillstnd stds ej" ++#: elf/dl-load.c:1139 ++msgid "cannot allocate TLS data structures for initial thread" ++msgstr "kan inte skapa TLS-datastrukturer för första tråden" + +-#: locale/programs/charmap.c:497 locale/programs/charmap.c:551 +-#: locale/programs/charmap.c:583 locale/programs/charmap.c:677 +-#: locale/programs/charmap.c:732 locale/programs/charmap.c:773 +-#: locale/programs/charmap.c:814 +-#, c-format +-msgid "syntax error in %s definition: %s" +-msgstr "syntaxfel i definition av %s: %s" ++#: elf/dl-load.c:1163 ++msgid "cannot handle TLS data" ++msgstr "kan inte hantera TLS-data" + +-#: locale/programs/charmap.c:498 locale/programs/charmap.c:678 +-#: locale/programs/charmap.c:774 locale/programs/repertoire.c:231 +-msgid "no symbolic name given" +-msgstr "inget symboliskt namn givet" ++#: elf/dl-load.c:1182 ++msgid "object file has no loadable segments" ++msgstr "objektfilen har inga laddbara segment" + +-#: locale/programs/charmap.c:552 +-msgid "invalid encoding given" +-msgstr "ogiltig kodning given" ++#: elf/dl-load.c:1218 ++msgid "failed to map segment from shared object" ++msgstr "misslyckades att mappa segment från delat objekt" + +-#: locale/programs/charmap.c:561 +-msgid "too few bytes in character encoding" +-msgstr "fr f byte i teckenkodning" ++#: elf/dl-load.c:1242 ++msgid "cannot dynamically load executable" ++msgstr "kan inte ladda exekverbar fil dynamiskt" + +-#: locale/programs/charmap.c:563 +-msgid "too many bytes in character encoding" +-msgstr "fr mnga tecken i teckenkodning" ++#: elf/dl-load.c:1303 ++msgid "cannot change memory protections" ++msgstr "kan inte ändra minnesskydd" + +-#: locale/programs/charmap.c:585 locale/programs/charmap.c:733 +-#: locale/programs/charmap.c:816 locale/programs/repertoire.c:297 +-msgid "no symbolic name given for end of range" +-msgstr "inget symboliskt namn givet fr slutet av intervallet" ++#: elf/dl-load.c:1322 ++msgid "cannot map zero-fill pages" ++msgstr "kan inte mappa nollfyllda sidor" + +-#: locale/programs/charmap.c:609 locale/programs/locfile.c:818 +-#: locale/programs/repertoire.c:314 +-#, c-format +-msgid "`%1$s' definition does not end with `END %1$s'" +-msgstr "definition av \"%1$s\" slutar inte med \"END %1$s\"" ++#: elf/dl-load.c:1336 ++msgid "object file has no dynamic section" ++msgstr "objektfilen har ingen dynamisk sektion" + +-#: locale/programs/charmap.c:642 +-msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" +-msgstr "endast definition av \"WIDTH\" fr flja definitionen av \"CHARMAP\"" ++#: elf/dl-load.c:1359 ++msgid "shared object cannot be dlopen()ed" ++msgstr "delat objekt kan inte göras dlopen() på" + +-#: locale/programs/charmap.c:650 locale/programs/charmap.c:713 +-#, c-format +-msgid "value for %s must be an integer" +-msgstr "vrdet p %s mste vara heltal" ++#: elf/dl-load.c:1372 ++msgid "cannot allocate memory for program header" ++msgstr "kan inte allokera minne för programhuvud" + +-#: locale/programs/charmap.c:841 +-#, c-format +-msgid "%s: error in state machine" +-msgstr "%s: fel i tillstndsmaskin" ++#: elf/dl-load.c:1389 elf/dl-open.c:174 ++msgid "invalid caller" ++msgstr "ogiltig anropare" + +-#: locale/programs/charmap.c:849 locale/programs/ld-address.c:605 +-#: locale/programs/ld-collate.c:2650 locale/programs/ld-collate.c:3818 +-#: locale/programs/ld-ctype.c:2225 locale/programs/ld-ctype.c:2994 +-#: locale/programs/ld-identification.c:469 +-#: locale/programs/ld-measurement.c:255 locale/programs/ld-messages.c:349 +-#: locale/programs/ld-monetary.c:958 locale/programs/ld-name.c:324 +-#: locale/programs/ld-numeric.c:392 locale/programs/ld-paper.c:258 +-#: locale/programs/ld-telephone.c:330 locale/programs/ld-time.c:1219 +-#: locale/programs/locfile.c:825 locale/programs/repertoire.c:325 +-#, c-format +-msgid "%s: premature end of file" +-msgstr "%s: fr tidigt filslut" ++#: elf/dl-load.c:1428 ++msgid "cannot enable executable stack as shared object requires" ++msgstr "kan inte skapa exekverbar stack som delat objekt kräver" + +-#: locale/programs/charmap.c:868 locale/programs/charmap.c:879 +-#, c-format +-msgid "unknown character `%s'" +-msgstr "oknt tecken \"%s\"" ++#: elf/dl-load.c:1443 ++msgid "cannot close file descriptor" ++msgstr "kan inte stänga filidentifierare" + +-#: locale/programs/charmap.c:887 +-#, c-format +-msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d" +-msgstr "" +-"antal byte fr bytesekvens angivet i brjan respektive slutet av intervallet\n" +-"skiljer sig: %d respektive %d" ++#: elf/dl-load.c:1485 ++msgid "cannot create searchlist" ++msgstr "kan inte skapa söklista" + +-#: locale/programs/charmap.c:991 locale/programs/ld-collate.c:2930 +-#: locale/programs/repertoire.c:420 +-msgid "invalid names for character range" +-msgstr "ogiltiga namn fr teckenintervall" ++#: elf/dl-load.c:1663 ++msgid "file too short" ++msgstr "fil för kort" + +-#: locale/programs/charmap.c:1003 locale/programs/repertoire.c:432 +-msgid "hexadecimal range format should use only capital characters" +-msgstr "hexadecimalt intervallformat br endast anvnda versaler" ++#: elf/dl-load.c:1692 ++msgid "invalid ELF header" ++msgstr "ogiltigt ELF-huvud" + +-#: locale/programs/charmap.c:1021 +-#, c-format +-msgid "<%s> and <%s> are illegal names for range" +-msgstr "<%s> och <%s> r otilltna namn fr intervall" ++#: elf/dl-load.c:1704 ++msgid "ELF file data encoding not big-endian" ++msgstr "Kodning för ELF-fildata är inte rak byteordning" + +-#: locale/programs/charmap.c:1027 +-msgid "upper limit in range is not higher then lower limit" +-msgstr "vre grns i intervall r inte strre n undre grns" ++#: elf/dl-load.c:1706 ++msgid "ELF file data encoding not little-endian" ++msgstr "Kodning för ELF-fildata är inte omvänd byteordning" + +-#: locale/programs/charmap.c:1085 +-msgid "resulting bytes for range not representable." +-msgstr "resulterande byte fr intervall r inte representerbara." ++#: elf/dl-load.c:1710 ++msgid "ELF file version ident does not match current one" ++msgstr "ELF-filens versionsidentitet stämmer inte med nuvarande" + +-#: locale/programs/ld-address.c:134 locale/programs/ld-collate.c:1534 +-#: locale/programs/ld-ctype.c:421 locale/programs/ld-identification.c:134 +-#: locale/programs/ld-measurement.c:95 locale/programs/ld-messages.c:98 +-#: locale/programs/ld-monetary.c:194 locale/programs/ld-name.c:95 +-#: locale/programs/ld-numeric.c:99 locale/programs/ld-paper.c:92 +-#: locale/programs/ld-telephone.c:95 locale/programs/ld-time.c:160 +-#, c-format +-msgid "No definition for %s category found" +-msgstr "Hittade ingen definition fr kategori %s" ++#: elf/dl-load.c:1714 ++msgid "ELF file OS ABI invalid" ++msgstr "ELF-fil har felaktig version på OS-ABI" + +-#: locale/programs/ld-address.c:145 locale/programs/ld-address.c:183 +-#: locale/programs/ld-address.c:201 locale/programs/ld-address.c:228 +-#: locale/programs/ld-address.c:290 locale/programs/ld-address.c:309 +-#: locale/programs/ld-address.c:322 locale/programs/ld-identification.c:147 +-#: locale/programs/ld-measurement.c:106 locale/programs/ld-monetary.c:206 +-#: locale/programs/ld-monetary.c:250 locale/programs/ld-monetary.c:266 +-#: locale/programs/ld-monetary.c:278 locale/programs/ld-name.c:106 +-#: locale/programs/ld-name.c:143 locale/programs/ld-numeric.c:113 +-#: locale/programs/ld-numeric.c:127 locale/programs/ld-paper.c:103 +-#: locale/programs/ld-paper.c:112 locale/programs/ld-telephone.c:106 +-#: locale/programs/ld-telephone.c:163 locale/programs/ld-time.c:176 +-#: locale/programs/ld-time.c:197 +-#, c-format +-msgid "%s: field `%s' not defined" +-msgstr "%s: flt \"%s\" r inte definierat" ++#: elf/dl-load.c:1716 ++msgid "ELF file ABI version invalid" ++msgstr "ELF-fil har felaktig version på ABI" + +-#: locale/programs/ld-address.c:157 locale/programs/ld-address.c:209 +-#: locale/programs/ld-address.c:235 locale/programs/ld-address.c:265 +-#: locale/programs/ld-name.c:118 locale/programs/ld-telephone.c:118 +-#, c-format +-msgid "%s: field `%s' must not be empty" +-msgstr "%s: flt \"%s\" kan inte vara tomt" ++#: elf/dl-load.c:1719 ++msgid "internal error" ++msgstr "internt fel" + +-#: locale/programs/ld-address.c:169 +-#, c-format +-msgid "%s: invalid escape `%%%c' sequence in field `%s'" +-msgstr "%s: ogiltig kontrollsekvens \"%%%c\" i flt \"%s\" " ++#: elf/dl-load.c:1726 ++msgid "ELF file version does not match current one" ++msgstr "ELF-filens version stämmer inte med nuvarande" + +-#: locale/programs/ld-address.c:220 +-#, c-format +-msgid "%s: terminology language code `%s' not defined" +-msgstr "%s: terminologilandskod \"%s\" inte definierad" ++#: elf/dl-load.c:1734 ++msgid "only ET_DYN and ET_EXEC can be loaded" ++msgstr "bara ET_DYN och ET_EXEC kan laddas" + +-#: locale/programs/ld-address.c:247 locale/programs/ld-address.c:276 +-#, c-format +-msgid "%s: language abbreviation `%s' not defined" +-msgstr "%s: sprkfrkortning \"%s\" inte definierad" ++#: elf/dl-load.c:1740 ++msgid "ELF file's phentsize not the expected size" ++msgstr "ELF-filens värde på \"phentsize\" är inte den förväntade" + +-#: locale/programs/ld-address.c:254 locale/programs/ld-address.c:282 +-#: locale/programs/ld-address.c:316 locale/programs/ld-address.c:328 +-#, c-format +-msgid "%s: `%s' value does not match `%s' value" +-msgstr "%s: vrdet p \"%s\" stmmer inte med vrdet p \"%s\"" ++#: elf/dl-load.c:2231 ++msgid "wrong ELF class: ELFCLASS64" ++msgstr "fel ELF-klass: ELFCLASS64" + +-#: locale/programs/ld-address.c:301 +-#, c-format +-msgid "%s: numeric country code `%d' not valid" +-msgstr "%s: numerisk landkod \"%d\" r inte giltig" ++#: elf/dl-load.c:2232 ++msgid "wrong ELF class: ELFCLASS32" ++msgstr "fel ELF-klass: ELFCLASS32" + +-#: locale/programs/ld-address.c:497 locale/programs/ld-address.c:534 +-#: locale/programs/ld-address.c:572 locale/programs/ld-ctype.c:2601 +-#: locale/programs/ld-identification.c:365 +-#: locale/programs/ld-measurement.c:222 locale/programs/ld-messages.c:302 +-#: locale/programs/ld-monetary.c:700 locale/programs/ld-monetary.c:735 +-#: locale/programs/ld-monetary.c:776 locale/programs/ld-name.c:281 +-#: locale/programs/ld-numeric.c:264 locale/programs/ld-paper.c:225 +-#: locale/programs/ld-telephone.c:289 locale/programs/ld-time.c:1108 +-#: locale/programs/ld-time.c:1150 +-#, c-format +-msgid "%s: field `%s' declared more than once" +-msgstr "%s: flt \"%s\" r deklarerad mer n en gng" ++#: elf/dl-load.c:2235 ++msgid "cannot open shared object file" ++msgstr "kan inte öppna delad objektfil" + +-#: locale/programs/ld-address.c:501 locale/programs/ld-address.c:539 +-#: locale/programs/ld-identification.c:369 locale/programs/ld-messages.c:312 +-#: locale/programs/ld-monetary.c:704 locale/programs/ld-monetary.c:739 +-#: locale/programs/ld-name.c:285 locale/programs/ld-numeric.c:268 +-#: locale/programs/ld-telephone.c:293 locale/programs/ld-time.c:1002 +-#: locale/programs/ld-time.c:1071 locale/programs/ld-time.c:1113 +-#, c-format +-msgid "%s: unknown character in field `%s'" +-msgstr "%s: oknt tecken i flt \"%s\"" ++#: elf/dl-lookup.c:261 ++msgid "relocation error" ++msgstr "fel vid relokering" + +-#: locale/programs/ld-address.c:586 locale/programs/ld-collate.c:3800 +-#: locale/programs/ld-ctype.c:2974 locale/programs/ld-identification.c:450 +-#: locale/programs/ld-measurement.c:236 locale/programs/ld-messages.c:331 +-#: locale/programs/ld-monetary.c:940 locale/programs/ld-name.c:306 +-#: locale/programs/ld-numeric.c:374 locale/programs/ld-paper.c:240 +-#: locale/programs/ld-telephone.c:312 locale/programs/ld-time.c:1201 +-#, c-format +-msgid "%s: incomplete `END' line" +-msgstr "%s: ofullstndig \"END\"-rad" ++#: elf/dl-lookup.c:289 ++msgid "symbol lookup error" ++msgstr "fel vid symboluppslagning" + +-#: locale/programs/ld-address.c:589 locale/programs/ld-collate.c:2653 +-#: locale/programs/ld-collate.c:3802 locale/programs/ld-ctype.c:2228 +-#: locale/programs/ld-ctype.c:2977 locale/programs/ld-identification.c:453 +-#: locale/programs/ld-measurement.c:239 locale/programs/ld-messages.c:333 +-#: locale/programs/ld-monetary.c:942 locale/programs/ld-name.c:308 +-#: locale/programs/ld-numeric.c:376 locale/programs/ld-paper.c:242 +-#: locale/programs/ld-telephone.c:314 locale/programs/ld-time.c:1203 +-#, c-format +-msgid "%1$s: definition does not end with `END %1$s'" +-msgstr "%1$s: definition slutar inte med \"END %1$s\"" ++#: elf/dl-open.c:112 ++msgid "cannot extend global scope" ++msgstr "kan inte utöka globalt område" + +-#: locale/programs/ld-address.c:596 locale/programs/ld-collate.c:523 +-#: locale/programs/ld-collate.c:575 locale/programs/ld-collate.c:871 +-#: locale/programs/ld-collate.c:884 locale/programs/ld-collate.c:2640 +-#: locale/programs/ld-collate.c:3809 locale/programs/ld-ctype.c:1956 +-#: locale/programs/ld-ctype.c:2215 locale/programs/ld-ctype.c:2799 +-#: locale/programs/ld-ctype.c:2985 locale/programs/ld-identification.c:460 +-#: locale/programs/ld-measurement.c:246 locale/programs/ld-messages.c:340 +-#: locale/programs/ld-monetary.c:949 locale/programs/ld-name.c:315 +-#: locale/programs/ld-numeric.c:383 locale/programs/ld-paper.c:249 +-#: locale/programs/ld-telephone.c:321 locale/programs/ld-time.c:1210 +-#, c-format +-msgid "%s: syntax error" +-msgstr "%s: syntaxfel" ++#: elf/dl-open.c:237 ++msgid "empty dynamic string token substitution" ++msgstr "substitution av \"dynamic string token\" är tom" + +-#: locale/programs/ld-collate.c:398 +-#, c-format +-msgid "`%.*s' already defined in charmap" +-msgstr "\"%.*s\" redan definerad i teckenuppsttning" ++#: elf/dl-open.c:406 elf/dl-open.c:417 elf/dl-open.c:425 ++msgid "cannot create scope list" ++msgstr "kan inte skapa omfångslista" + +-#: locale/programs/ld-collate.c:407 +-#, c-format +-msgid "`%.*s' already defined in repertoire" +-msgstr "\"%.*s\" redan definierad i repertoar" ++#: elf/dl-open.c:470 ++msgid "TLS generation counter wrapped! Please report this." ++msgstr "Generationsräknare för TLS slog runt! Var snäll och rapportera detta." + +-#: locale/programs/ld-collate.c:414 +-#, c-format +-msgid "`%.*s' already defined as collating symbol" +-msgstr "\"%.*s\" redan definierad som ett kollationssymbol" ++#: elf/dl-open.c:508 ++msgid "invalid mode for dlopen()" ++msgstr "ogiltiga flaggor för dlopen()" + +-#: locale/programs/ld-collate.c:421 +-#, c-format +-msgid "`%.*s' already defined as collating element" +-msgstr "\"%.*s\" redan definierad som ett kollationselement" ++#: elf/dl-open.c:525 ++msgid "no more namespaces available for dlmopen()" ++msgstr "inga fler namnrymder tillgängliga för dlmopen()" + +-#: locale/programs/ld-collate.c:452 locale/programs/ld-collate.c:478 +-#, c-format +-msgid "%s: `forward' and `backward' are mutually excluding each other" +-msgstr "%s: sorteringsordning \"forward\" och \"backward\" r msesidigt uteslutande" ++#: elf/dl-open.c:538 ++msgid "invalid target namespace in dlmopen()" ++msgstr "ogiltig målnamnrymd för dlmopen()" + +-#: locale/programs/ld-collate.c:462 locale/programs/ld-collate.c:488 +-#: locale/programs/ld-collate.c:504 +-#, c-format +-msgid "%s: `%s' mentioned more than once in definition of weight %d" +-msgstr "%s: \"%s\" r nmnd fler n en gng i definitionen av vikt %d" ++#: elf/dl-reloc.c:55 ++msgid "cannot allocate memory in static TLS block" ++msgstr "kan inte allokera minne i statiskt TLS-block" + +-#: locale/programs/ld-collate.c:560 +-#, c-format +-msgid "%s: too many rules; first entry only had %d" +-msgstr "%s: fr mnga regler, frsta delen hade bara %d" ++#: elf/dl-reloc.c:198 ++msgid "cannot make segment writable for relocation" ++msgstr "kan inte göra segment skrivbart för relokering" + +-#: locale/programs/ld-collate.c:596 ++#: elf/dl-reloc.c:279 + #, c-format +-msgid "%s: not enough sorting rules" +-msgstr "%s: inte tillrckligt med sorteringsregler" ++msgid "%s: no PLTREL found in object %s\n" ++msgstr "%s: hittade inga PLTREL i objekt %s\n" + +-#: locale/programs/ld-collate.c:761 ++#: elf/dl-reloc.c:290 + #, c-format +-msgid "%s: empty weight string not allowed" +-msgstr "%s: tomt viktnamn r inte tilltet" ++msgid "%s: out of memory to store relocation results for %s\n" ++msgstr "%s: slut på minne för att lagra relokeringsresultat för %s\n" + +-#: locale/programs/ld-collate.c:856 +-#, c-format +-msgid "%s: weights must use the same ellipsis symbol as the name" +-msgstr "%s: vikter mste anvnda samma intervallsymbol som namn" ++#: elf/dl-reloc.c:306 ++msgid "cannot restore segment prot after reloc" ++msgstr "kan inte återställa segmenträttigheter efter relokering" + +-#: locale/programs/ld-collate.c:912 +-#, c-format +-msgid "%s: too many values" +-msgstr "%s: fr mnga vrden" ++#: elf/dl-reloc.c:331 ++msgid "cannot apply additional memory protection after relocation" ++msgstr "kan inte applicera extra minnesskydd efter relokering" + +-#: locale/programs/ld-collate.c:1031 locale/programs/ld-collate.c:1206 +-#, c-format +-msgid "order for `%.*s' already defined at %s:%Zu" +-msgstr "ordningsfljd fr \"%.*s\" redan definierad vid %s:%Zu" ++#: elf/dl-sym.c:98 ++msgid "RTLD_NEXT used in code not dynamically loaded" ++msgstr "RTLD_NEXT används i kod som inte är dynamiskt laddad" + +-#: locale/programs/ld-collate.c:1081 +-#, c-format +-msgid "%s: the start and the end symbol of a range must stand for characters" +-msgstr "%s: start- och slut-symbol i ett intervall mste representera tecken" ++#: elf/dl-sysdep.c:495 ++msgid "cannot create capability list" ++msgstr "kan inte skapa egenskapslista" + +-#: locale/programs/ld-collate.c:1108 +-#, c-format +-msgid "%s: byte sequences of first and last character must have the same length" +-msgstr "%s: bytesekvens fr frsta och sista tecknet mste ha samma lngd" ++#: elf/dl-tls.c:829 ++msgid "cannot create TLS data structures" ++msgstr "kan inte skapa datastrukturer för TLS" + +-#: locale/programs/ld-collate.c:1150 +-#, c-format +-msgid "%s: byte sequence of first character of sequence is not lower than that of the last character" +-msgstr "%s: bytesekvens fr frsta tecknet r inte mindre n den fr sista tecknet" ++#: elf/dl-version.c:303 ++msgid "cannot allocate version reference table" ++msgstr "kan inte allokera tabell för versionsreferenser" + +-#: locale/programs/ld-collate.c:1275 +-#, c-format +-msgid "%s: symbolic range ellipsis must not directly follow `order_start'" +-msgstr "%s: symboliskt intervall kan inte vara omedelbart efter \"order_start\"" ++#: elf/ldconfig.c:133 ++msgid "Print cache" ++msgstr "Visa cache" + +-#: locale/programs/ld-collate.c:1279 +-#, c-format +-msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'" +-msgstr "%s: symboliskt intervall kan inte omedelbart fljas av \"order_end\"" ++#: elf/ldconfig.c:134 ++msgid "Generate verbose messages" ++msgstr "Använd utförligare meddelanden" + +-#: locale/programs/ld-collate.c:1299 locale/programs/ld-ctype.c:1476 +-#, c-format +-msgid "`%s' and `%.*s' are not valid names for symbolic range" +-msgstr "\"%s\" och \"%.*s\" r otilltna namn fr symboliskt intervall" ++#: elf/ldconfig.c:135 ++msgid "Don't build cache" ++msgstr "Bygg inte cache" + +-#: locale/programs/ld-collate.c:1348 locale/programs/ld-collate.c:3737 +-#, c-format +-msgid "%s: order for `%.*s' already defined at %s:%Zu" +-msgstr "%s: ordningsfljd fr \"%.*s\" redan definierad i %s:%Zu" ++#: elf/ldconfig.c:136 ++msgid "Don't generate links" ++msgstr "Generera inte länkar" + +-#: locale/programs/ld-collate.c:1357 +-#, c-format +-msgid "%s: `%s' must be a character" +-msgstr "%s: \"%s\" mste vara ett enskilt tecken" ++#: elf/ldconfig.c:137 ++msgid "Change to and use ROOT as root directory" ++msgstr "Byt till och använd ROT som rotkatalog" + +-#: locale/programs/ld-collate.c:1550 +-#, c-format +-msgid "%s: `position' must be used for a specific level in all sections or none" +-msgstr "%s: \"position\" mste anvndas fr en given niv i alla sektioner eller inte alls" ++#: elf/ldconfig.c:137 ++msgid "ROOT" ++msgstr "ROT" + +-#: locale/programs/ld-collate.c:1575 +-#, c-format +-msgid "symbol `%s' not defined" +-msgstr "symbol \"%s\" inte definierad" ++#: elf/ldconfig.c:138 ++msgid "CACHE" ++msgstr "CACHE" + +-#: locale/programs/ld-collate.c:1651 locale/programs/ld-collate.c:1757 +-#, c-format +-msgid "symbol `%s' has the same encoding as" +-msgstr "symbol \"%s\" har samma vrde som" ++#: elf/ldconfig.c:138 ++msgid "Use CACHE as cache file" ++msgstr "Använd CACHE som cache-fil" + +-#: locale/programs/ld-collate.c:1655 locale/programs/ld-collate.c:1761 +-#, c-format +-msgid "symbol `%s'" +-msgstr "symbol \"%s\"" ++#: elf/ldconfig.c:139 ++msgid "CONF" ++msgstr "CONF" + +-#: locale/programs/ld-collate.c:1803 +-msgid "no definition of `UNDEFINED'" +-msgstr "ingen definition av \"UNDEFINED\"" ++#: elf/ldconfig.c:139 ++msgid "Use CONF as configuration file" ++msgstr "Använd CONF som konfigurationsfil" + +-#: locale/programs/ld-collate.c:1832 +-msgid "too many errors; giving up" +-msgstr "fr mnga fel, ger upp" ++#: elf/ldconfig.c:140 ++msgid "Only process directories specified on the command line. Don't build cache." ++msgstr "Behandla endast kataloger givna som argument. Bygg inte cache." + +-#: locale/programs/ld-collate.c:2735 +-#, c-format +-msgid "%s: duplicate definition of `%s'" +-msgstr "%s: dubbla definitioner av \"%s\"" ++#: elf/ldconfig.c:141 ++msgid "Manually link individual libraries." ++msgstr "Länka enskilda bibliotek manuellt." + +-#: locale/programs/ld-collate.c:2771 +-#, c-format +-msgid "%s: duplicate declaration of section `%s'" +-msgstr "%s: dubbla deklarationer fr sektion \"%s\"" ++#: elf/ldconfig.c:142 ++msgid "FORMAT" ++msgstr "FORMAT" + +-#: locale/programs/ld-collate.c:2910 +-#, c-format +-msgid "%s: unknown character in collating symbol name" +-msgstr "%s: oknt tecken i namn fr kollationssymbol" ++#: elf/ldconfig.c:142 ++msgid "Format to use: new, old or compat (default)" ++msgstr "Format att använda: \"new\", \"old\" eller \"compat\" (standardvärde)" + +-#: locale/programs/ld-collate.c:3042 +-#, c-format +-msgid "%s: unknown character in equivalent definition name" +-msgstr "%s: oknt tecken i namnet i ekvivalensdefinitionen" ++#: elf/ldconfig.c:150 ++msgid "Configure Dynamic Linker Run Time Bindings." ++msgstr "Konfigurera bindningar för den dynamiska länkaren." + +-#: locale/programs/ld-collate.c:3055 ++#: elf/ldconfig.c:308 + #, c-format +-msgid "%s: unknown character in equivalent definition value" +-msgstr "%s: oknt tecken i vrdet i ekvivalensdefinitionen" ++msgid "Path `%s' given more than once" ++msgstr "Sökväg \"%s\" given mer än en gång" + +-#: locale/programs/ld-collate.c:3065 ++#: elf/ldconfig.c:348 + #, c-format +-msgid "%s: unknown symbol `%s' in equivalent definition" +-msgstr "%s: oknd symbol \"%s\" i ekvivalensdefinition" +- +-#: locale/programs/ld-collate.c:3074 +-msgid "error while adding equivalent collating symbol" +-msgstr "fel nr ekvivalent kollationssymbol lades till" ++msgid "%s is not a known library type" ++msgstr "%s är inte en känd bibliotekstyp" + +-#: locale/programs/ld-collate.c:3104 ++#: elf/ldconfig.c:373 + #, c-format +-msgid "duplicate definition of script `%s'" +-msgstr "dubblerad definition fr skript \"%s\"" ++msgid "Can't stat %s" ++msgstr "Kan inte ta status på %s" + +-#: locale/programs/ld-collate.c:3152 ++#: elf/ldconfig.c:447 + #, c-format +-msgid "%s: unknown section name `%s'" +-msgstr "%s: oknt sektionsnamn \"%s\"" ++msgid "Can't stat %s\n" ++msgstr "Kan inte ta status på %s\n" + +-#: locale/programs/ld-collate.c:3180 ++#: elf/ldconfig.c:457 + #, c-format +-msgid "%s: multiple order definitions for section `%s'" +-msgstr "%s: dubbla definitioner av ordningsfljd i sektion \"%s\"" ++msgid "%s is not a symbolic link\n" ++msgstr "%s är inte en symbolisk länk\n" + +-#: locale/programs/ld-collate.c:3205 ++#: elf/ldconfig.c:476 + #, c-format +-msgid "%s: invalid number of sorting rules" +-msgstr "%s: ogiltigt antal sorteringsregler" ++msgid "Can't unlink %s" ++msgstr "Kan inte ta bort (unlink) %s" + +-#: locale/programs/ld-collate.c:3232 ++#: elf/ldconfig.c:482 + #, c-format +-msgid "%s: multiple order definitions for unnamed section" +-msgstr "%s: flera definitioner av ordningsfljd i namnls sektion" ++msgid "Can't link %s to %s" ++msgstr "Kan inte länka %s till %s" + +-#: locale/programs/ld-collate.c:3286 locale/programs/ld-collate.c:3414 +-#: locale/programs/ld-collate.c:3778 +-#, c-format +-msgid "%s: missing `order_end' keyword" +-msgstr "%s: nyckelord \"order_end\" saknas" ++#: elf/ldconfig.c:488 ++msgid " (changed)\n" ++msgstr " (ändrad)\n" + +-#: locale/programs/ld-collate.c:3347 +-#, c-format +-msgid "%s: order for collating symbol %.*s not yet defined" +-msgstr "%s: ordningsfljd fr kollationssymbol %.*s r inte definierad nnu" ++#: elf/ldconfig.c:490 ++msgid " (SKIPPED)\n" ++msgstr " (HOPPAR ÖVER)\n" + +-#: locale/programs/ld-collate.c:3365 ++#: elf/ldconfig.c:545 + #, c-format +-msgid "%s: order for collating element %.*s not yet defined" +-msgstr "%s: ordningsfljd fr kollationselement %.*s r inte definierad nnu" ++msgid "Can't find %s" ++msgstr "Kan inte hitta %s" + +-#: locale/programs/ld-collate.c:3376 ++#: elf/ldconfig.c:561 + #, c-format +-msgid "%s: cannot reorder after %.*s: symbol not known" +-msgstr "%s: kan inte byta ordning efter %.*s: oknd symbol" ++msgid "Can't lstat %s" ++msgstr "Kan inte ta länkstatus på %s" + +-#: locale/programs/ld-collate.c:3428 locale/programs/ld-collate.c:3790 ++#: elf/ldconfig.c:568 + #, c-format +-msgid "%s: missing `reorder-end' keyword" +-msgstr "%s: nyckelord \"reorder-end\" saknas" ++msgid "Ignored file %s since it is not a regular file." ++msgstr "Ignorerar fil %s eftersom den inte är en vanlig fil" + +-#: locale/programs/ld-collate.c:3462 locale/programs/ld-collate.c:3662 ++#: elf/ldconfig.c:576 + #, c-format +-msgid "%s: section `%.*s' not known" +-msgstr "%s: sektion \"%.*s\" oknd" ++msgid "No link created since soname could not be found for %s" ++msgstr "Ingen länk skapad eftersom \"soname\" inte hittades för %s" + +-#: locale/programs/ld-collate.c:3527 ++#: elf/ldconfig.c:667 + #, c-format +-msgid "%s: bad symbol <%.*s>" +-msgstr "%s: ogiltig symbol: <%.*s>" ++msgid "Can't open directory %s" ++msgstr "Kan inte öppna katalog %s" + +-#: locale/programs/ld-collate.c:3725 ++#: elf/ldconfig.c:735 elf/ldconfig.c:782 + #, c-format +-msgid "%s: cannot have `%s' as end of ellipsis range" +-msgstr "%s: kan inte ha \"%s\" som ndpunkt p ellips" ++msgid "Cannot lstat %s" ++msgstr "Kan inte ta status (lstat) på %s" + +-#: locale/programs/ld-collate.c:3774 ++#: elf/ldconfig.c:747 + #, c-format +-msgid "%s: empty category description not allowed" +-msgstr "%s: tom kategoribeskrivning r inte tilltet" ++msgid "Cannot stat %s" ++msgstr "Kan inte ta status på %s" + +-#: locale/programs/ld-collate.c:3793 ++#: elf/ldconfig.c:804 elf/readlib.c:90 + #, c-format +-msgid "%s: missing `reorder-sections-end' keyword" +-msgstr "%s: nyckelord \"reorder-sections-end\" saknas" +- +-#: locale/programs/ld-ctype.c:440 +-msgid "No character set name specified in charmap" +-msgstr "Inget namn definierat i teckenuppsttning" ++msgid "Input file %s not found.\n" ++msgstr "Hittar inte infil %s.\n" + +-#: locale/programs/ld-ctype.c:469 ++#: elf/ldconfig.c:855 + #, c-format +-msgid "character L'\\u%0*x' in class `%s' must be in class `%s'" +-msgstr "tecken L\"\\u%0*x\" i klass \"%s\" mste vara i klass \"%s\"" ++msgid "libc5 library %s in wrong directory" ++msgstr "libc5-bibliotek %s i fel katalog" + +-#: locale/programs/ld-ctype.c:484 ++#: elf/ldconfig.c:858 + #, c-format +-msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'" +-msgstr "tecken L\"\\u%0*x\" i klass \"%s\" fr inte vara i klass \"%s\"" ++msgid "libc6 library %s in wrong directory" ++msgstr "libc6-bibliotek %s i fel katalog" + +-#: locale/programs/ld-ctype.c:498 locale/programs/ld-ctype.c:556 ++#: elf/ldconfig.c:861 + #, c-format +-msgid "internal error in %s, line %u" +-msgstr "internt fel i %s, rad %u" ++msgid "libc4 library %s in wrong directory" ++msgstr "libc4-bibliotek %s i fel katalog" + +-#: locale/programs/ld-ctype.c:527 ++#: elf/ldconfig.c:888 + #, c-format +-msgid "character '%s' in class `%s' must be in class `%s'" +-msgstr "tecken \"%s\" i klass \"%s\" mste vara i klass \"%s\"" ++msgid "libraries %s and %s in directory %s have same soname but different type." ++msgstr "bibliotek %s och %s i katalog %s har samma \"soname\" men olika typ." + +-#: locale/programs/ld-ctype.c:543 ++#: elf/ldconfig.c:995 + #, c-format +-msgid "character '%s' in class `%s' must not be in class `%s'" +-msgstr "tecken \"%s\" i klass \"%s\" fr inte vara i klass \"%s\"" ++msgid "Can't open configuration file %s" ++msgstr "Kan inte öppna konfigurationsfil %s" + +-#: locale/programs/ld-ctype.c:573 locale/programs/ld-ctype.c:611 ++#: elf/ldconfig.c:1059 + #, c-format +-msgid " character not in class `%s'" +-msgstr "-tecknet r inte i klass \"%s\"" ++msgid "%s:%u: bad syntax in hwcap line" ++msgstr "%s:%u: ogiltig syntax på hwcap-raden" + +-#: locale/programs/ld-ctype.c:585 locale/programs/ld-ctype.c:622 ++#: elf/ldconfig.c:1065 + #, c-format +-msgid " character must not be in class `%s'" +-msgstr "-tecknet fr inte vara i klass \"%s\"" +- +-#: locale/programs/ld-ctype.c:600 +-msgid "character not defined in character map" +-msgstr "tecken inte definierat i teckenuppsttning" ++msgid "%s:%u: hwcap index %lu above maximum %u" ++msgstr "%s:%u: hwcap-index %lu är större än maximum %u" + +-#: locale/programs/ld-ctype.c:714 +-msgid "`digit' category has not entries in groups of ten" +-msgstr "\"digit\"-kategori har inte poster i grupper av tio" +- +-#: locale/programs/ld-ctype.c:763 +-msgid "no input digits defined and none of the standard names in the charmap" +-msgstr "inga siffror fr indata definierade och inga standardnamn finns i teckenuppsttningen" +- +-#: locale/programs/ld-ctype.c:828 +-msgid "not all characters used in `outdigit' are available in the charmap" +-msgstr "alla tecken i \"outdigit\" r inte tillgngliga i teckenuppsttningen" ++#: elf/ldconfig.c:1072 elf/ldconfig.c:1080 ++#, c-format ++msgid "%s:%u: hwcap index %lu already defined as %s" ++msgstr "%s:%u: hwcap-index %lu redan definierat som %s" + +-#: locale/programs/ld-ctype.c:845 +-msgid "not all characters used in `outdigit' are available in the repertoire" +-msgstr "alla tecken i \"outdigit\" r inte tillgngliga i repertoaren" ++#: elf/ldconfig.c:1083 ++#, c-format ++msgid "%s:%u: duplicate hwcap %lu %s" ++msgstr "%s:%u: duplicerad hwcap %lu %s" + +-#: locale/programs/ld-ctype.c:1244 ++#: elf/ldconfig.c:1105 + #, c-format +-msgid "character class `%s' already defined" +-msgstr "teckenklass \"%s\" redan definierad" ++msgid "need absolute file name for configuration file when using -r" ++msgstr "behöver absolut filnamn för konfigurationsfil när -r används" + +-#: locale/programs/ld-ctype.c:1250 ++#: elf/ldconfig.c:1112 locale/programs/xmalloc.c:69 malloc/obstack.c:434 ++#: malloc/obstack.c:436 posix/getconf.c:980 posix/getconf.c:1158 + #, c-format +-msgid "implementation limit: no more than %Zd character classes allowed" +-msgstr "implementationsbegrnsning: inte fler n %Zd teckenklasser tilltna" ++msgid "memory exhausted" ++msgstr "minne slut" + +-#: locale/programs/ld-ctype.c:1276 ++#: elf/ldconfig.c:1142 + #, c-format +-msgid "character map `%s' already defined" +-msgstr "teckenuppsttning \"%s\" redan definierad" ++msgid "%s:%u: cannot read directory %s" ++msgstr "%s:%u: kan inte läsa katalog %s" + +-#: locale/programs/ld-ctype.c:1282 ++#: elf/ldconfig.c:1182 + #, c-format +-msgid "implementation limit: no more than %d character maps allowed" +-msgstr "implementationsbegrnsning: inte fler n %d teckenuppsttningar tilltet" ++msgid "relative path `%s' used to build cache" ++msgstr "relativ sökväg \"%s\" använd för att bygga cache" + +-#: locale/programs/ld-ctype.c:1547 locale/programs/ld-ctype.c:1672 +-#: locale/programs/ld-ctype.c:1778 locale/programs/ld-ctype.c:2464 +-#: locale/programs/ld-ctype.c:3460 ++#: elf/ldconfig.c:1210 + #, c-format +-msgid "%s: field `%s' does not contain exactly ten entries" +-msgstr "%s: flt \"%s\" innehller inte exakt tio poster" ++msgid "Can't chdir to /" ++msgstr "Kan inte byta katalog till /" + +-#: locale/programs/ld-ctype.c:1575 locale/programs/ld-ctype.c:2146 ++#: elf/ldconfig.c:1252 + #, c-format +-msgid "to-value of range is smaller than from-value " +-msgstr "tillvrdet i intervallet r mindre n frnvrdet " ++msgid "Can't open cache file directory %s\n" ++msgstr "Kan inte läsa cache-filkatalog \"%s\"\n" + +-#: locale/programs/ld-ctype.c:1702 +-msgid "start and end character sequence of range must have the same length" +-msgstr "start- och slutteckensekvens fr intervall mste ha samma lngd" ++#: elf/ldd.bash.in:43 ++msgid "Written by %s and %s.\n" ++msgstr "Skrivet av %s och %s.\n" + +-#: locale/programs/ld-ctype.c:1709 +-msgid "to-value character sequence is smaller than from-value sequence" +-msgstr "tillvrdets teckensekvens r mindre n frnvrdets sekvens" ++#: elf/ldd.bash.in:48 ++msgid "" ++"Usage: ldd [OPTION]... FILE...\n" ++" --help print this help and exit\n" ++" --version print version information and exit\n" ++" -d, --data-relocs process data relocations\n" ++" -r, --function-relocs process data and function relocations\n" ++" -u, --unused print unused direct dependencies\n" ++" -v, --verbose print all information\n" ++"For bug reporting instructions, please see:\n" ++"." ++msgstr "" ++"Användning: ldd [OPTION]... FILE...\n" ++" --help visa denna hjälptext och avsluta\n" ++" --version visa versionsinformation och avsluta\n" ++" -d, --data-relocs bearbeta datarelokeringar\n" ++" -r, --function-relocs bearbeta data- och funktionsrelokeringar\n" ++" -u, --unused skriv ut oanvända direkta beroenden\n" ++" -v, --verbose skriv all information\n" ++"För felrapporteringsinstruktioner, se:\n" ++".\n" ++"Rapportera fel eller synpunkter på översättningen till ." ++ ++#: elf/ldd.bash.in:80 ++msgid "ldd: option `$1' is ambiguous" ++msgstr "ldd: flaggan \"$1\" är tvetydig" ++ ++#: elf/ldd.bash.in:87 ++msgid "unrecognized option" ++msgstr "okänd flagga" ++ ++#: elf/ldd.bash.in:88 elf/ldd.bash.in:126 ++msgid "Try `ldd --help' for more information." ++msgstr "Försök med \"ldd --help\" för mer information" ++ ++#: elf/ldd.bash.in:125 ++msgid "missing file arguments" ++msgstr "filargument saknas" + +-#: locale/programs/ld-ctype.c:2066 locale/programs/ld-ctype.c:2117 +-msgid "premature end of `translit_ignore' definition" +-msgstr "fr tidigt slut p definition fr \"translit_ignore\"" ++#. TRANS No such file or directory. This is a ``file doesn't exist'' error ++#. TRANS for ordinary files that are referenced in contexts where they are ++#. TRANS expected to already exist. ++#: elf/ldd.bash.in:148 sysdeps/gnu/errlist.c:36 ++msgid "No such file or directory" ++msgstr "Filen eller katalogen finns inte" + +-#: locale/programs/ld-ctype.c:2072 locale/programs/ld-ctype.c:2123 +-#: locale/programs/ld-ctype.c:2165 +-msgid "syntax error" +-msgstr "syntaxfel" ++#: elf/ldd.bash.in:151 inet/rcmd.c:483 ++msgid "not regular file" ++msgstr "inte en normal fil" + +-#: locale/programs/ld-ctype.c:2296 +-#, c-format +-msgid "%s: syntax error in definition of new character class" +-msgstr "%s: syntaxfel i definition av ny teckenklass" ++#: elf/ldd.bash.in:154 ++msgid "warning: you do not have execution permission for" ++msgstr "varning: du har inte exekveringsrättighet för" ++ ++#: elf/ldd.bash.in:183 ++msgid "\tnot a dynamic executable" ++msgstr "\tinte en dynamisk körbar binär" ++ ++#: elf/ldd.bash.in:191 ++msgid "exited with unknown exit code" ++msgstr "avslutade med okänd slutstatus" ++ ++#: elf/ldd.bash.in:196 ++msgid "error: you do not have read permission for" ++msgstr "fel: du har inte läsrättigheter för" + +-#: locale/programs/ld-ctype.c:2311 ++#: elf/readelflib.c:35 + #, c-format +-msgid "%s: syntax error in definition of new character map" +-msgstr "%s: syntaxfel i definition av ny teckenuppsttning" +- +-#: locale/programs/ld-ctype.c:2486 +-msgid "ellipsis range must be marked by two operands of same type" +-msgstr "intervall mste markeras med tv operander av samma typ" +- +-#: locale/programs/ld-ctype.c:2495 +-msgid "with symbolic name range values the absolute ellipsis `...' must not be used" +-msgstr "med symboliska namn som intervallvrden kan inte absoluta intervallet \"...\" anvndas" +- +-#: locale/programs/ld-ctype.c:2510 +-msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" +-msgstr "med UCS som intervallvrden mste man anvnda symboliska hexadecimala intervallet \"..\"" +- +-#: locale/programs/ld-ctype.c:2524 +-msgid "with character code range values one must use the absolute ellipsis `...'" +-msgstr "med teckenkoder som intervallvrden mste man anvnda absoluta intervallet \"...\"" ++msgid "file %s is truncated\n" ++msgstr "fil %s är trunkerad\n" + +-#: locale/programs/ld-ctype.c:2675 ++#: elf/readelflib.c:67 + #, c-format +-msgid "duplicated definition for mapping `%s'" +-msgstr "dubblerad definition fr mappning \"%s\"" ++msgid "%s is a 32 bit ELF file.\n" ++msgstr "%s är en 32-bitars ELF-fil.\n" + +-#: locale/programs/ld-ctype.c:2761 locale/programs/ld-ctype.c:2905 ++#: elf/readelflib.c:69 + #, c-format +-msgid "%s: `translit_start' section does not end with `translit_end'" +-msgstr "%s: sektion \"translit_start\" avslutas inte med \"translit_end\"" ++msgid "%s is a 64 bit ELF file.\n" ++msgstr "%s är en 64-bitars ELF-fil.\n" + +-#: locale/programs/ld-ctype.c:2856 ++#: elf/readelflib.c:71 + #, c-format +-msgid "%s: duplicate `default_missing' definition" +-msgstr "%s: dubbla definitioner av \"default_missing\"" ++msgid "Unknown ELFCLASS in file %s.\n" ++msgstr "Okänd ELFCLASS in fil %s.\n" + +-#: locale/programs/ld-ctype.c:2861 +-msgid "previous definition was here" +-msgstr "fregende definition var hr" ++#: elf/readelflib.c:78 ++#, c-format ++msgid "%s is not a shared object file (Type: %d).\n" ++msgstr "%s är inte en delad objektfil (typ: %d).\n" + +-#: locale/programs/ld-ctype.c:2883 ++#: elf/readelflib.c:109 + #, c-format +-msgid "%s: no representable `default_missing' definition found" +-msgstr "%s: ingen representerbar definition av \"default_missing\" hittades" ++msgid "more than one dynamic segment\n" ++msgstr "fler än ett dynamiskt segment\n" + +-#: locale/programs/ld-ctype.c:3036 ++#: elf/readlib.c:96 + #, c-format +-msgid "%s: character `%s' not defined in charmap while needed as default value" +-msgstr "%s: tecken \"%s\" inte definierat i teckenuppsttningen men behvs som standardvrde" ++msgid "Cannot fstat file %s.\n" ++msgstr "Kan inte ta status (fstat) på fil %s.\n" + +-#: locale/programs/ld-ctype.c:3041 locale/programs/ld-ctype.c:3125 +-#: locale/programs/ld-ctype.c:3145 locale/programs/ld-ctype.c:3166 +-#: locale/programs/ld-ctype.c:3187 locale/programs/ld-ctype.c:3208 +-#: locale/programs/ld-ctype.c:3229 locale/programs/ld-ctype.c:3269 +-#: locale/programs/ld-ctype.c:3290 locale/programs/ld-ctype.c:3357 ++#: elf/readlib.c:107 + #, c-format +-msgid "%s: character `%s' in charmap not representable with one byte" +-msgstr "%s: tecken \"%s\" i teckenuppsttning kan inte representeras med en byte" ++msgid "File %s is empty, not checked." ++msgstr "Fil %s är tom, inte kontrollerad." + +-#: locale/programs/ld-ctype.c:3120 locale/programs/ld-ctype.c:3140 +-#: locale/programs/ld-ctype.c:3182 locale/programs/ld-ctype.c:3203 +-#: locale/programs/ld-ctype.c:3224 locale/programs/ld-ctype.c:3264 +-#: locale/programs/ld-ctype.c:3285 locale/programs/ld-ctype.c:3352 +-#: locale/programs/ld-ctype.c:3394 locale/programs/ld-ctype.c:3419 ++#: elf/readlib.c:113 + #, c-format +-msgid "%s: character `%s' not defined while needed as default value" +-msgstr "%s: tecken \"%s\" inte definierat men behvs som standardvrde" ++msgid "File %s is too small, not checked." ++msgstr "Fil %s är för liten, inte kontrollerad." + +-#: locale/programs/ld-ctype.c:3161 ++#: elf/readlib.c:123 + #, c-format +-msgid "character `%s' not defined while needed as default value" +-msgstr "tecken \"%s\" inte definierat men behvs som standardvrde" ++msgid "Cannot mmap file %s.\n" ++msgstr "Kan inte minnesmappa (mmap) fil %s.\n" + +-#: locale/programs/ld-ctype.c:3401 locale/programs/ld-ctype.c:3426 ++#: elf/readlib.c:161 + #, c-format +-msgid "%s: character `%s' needed as default value not representable with one byte" +-msgstr "%s: tecken \"%s\" som behvs som standardvrde kan inte representeras med en byte" ++msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n" ++msgstr "%s är inte en ELF-fil, den har inte rätt magiskt tal i början.\n" + +-#: locale/programs/ld-ctype.c:3481 +-msgid "no output digits defined and none of the standard names in the charmap" +-msgstr "inga siffror fr utdata definierade och inga standardnamn finns i teckenuppsttningen" ++#: elf/sprof.c:77 ++msgid "Output selection:" ++msgstr "Val av utdata:" + +-#: locale/programs/ld-ctype.c:3772 +-#, c-format +-msgid "%s: transliteration data from locale `%s' not available" +-msgstr "%s: transkriberingsdata fr lokal \"%s\" r inte tillgnglig" ++#: elf/sprof.c:79 ++msgid "print list of count paths and their number of use" ++msgstr "skriv lista med räknade vägar och antal användningar" + +-#: locale/programs/ld-ctype.c:3868 +-#, c-format +-msgid "%s: table for class \"%s\": %lu bytes\n" +-msgstr "%s: tabell fr klass \"%s\": %lu byte\n" ++#: elf/sprof.c:81 ++msgid "generate flat profile with counts and ticks" ++msgstr "generera platt profil med antal och tider" + +-#: locale/programs/ld-ctype.c:3937 +-#, c-format +-msgid "%s: table for map \"%s\": %lu bytes\n" +-msgstr "%s: tabell fr \"%s\": %lu byte\n" ++#: elf/sprof.c:82 ++msgid "generate call graph" ++msgstr "generera anropsgraf" + +-#: locale/programs/ld-ctype.c:4070 +-#, c-format +-msgid "%s: table for width: %lu bytes\n" +-msgstr "%s: tabell fr teckenstorlek: %lu byte\n" ++#: elf/sprof.c:89 ++msgid "" ++"Read and display shared object profiling data. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Läs och visa profildata för delat objekt. För felrapporteringsinstruktioner, se:\n" ++".\n" ++"Rapportera fel eller synpunkter på översättningen till .\n" + +-#: locale/programs/ld-identification.c:171 +-#, c-format +-msgid "%s: no identification for category `%s'" +-msgstr "%s: ingen idenitifikation fr kategori \"%s\"" ++#: elf/sprof.c:94 ++msgid "SHOBJ [PROFDATA]" ++msgstr "SHOBJ [PROFDATA]" + +-#: locale/programs/ld-identification.c:436 ++#: elf/sprof.c:400 + #, c-format +-msgid "%s: duplicate category version definition" +-msgstr "%s: dubbla definitioner av kategori" ++msgid "failed to load shared object `%s'" ++msgstr "misslyckades med att ladda delat objekt \"%s\"" + +-#: locale/programs/ld-measurement.c:114 ++#: elf/sprof.c:409 + #, c-format +-msgid "%s: invalid value for field `%s'" +-msgstr "%s: ogiltigt vrde fr flt \"%s\"" ++msgid "cannot create internal descriptors" ++msgstr "kan inte skapa interna deskriptorer" + +-#: locale/programs/ld-messages.c:115 locale/programs/ld-messages.c:149 ++#: elf/sprof.c:528 + #, c-format +-msgid "%s: field `%s' undefined" +-msgstr "%s: flt \"%s\" r odefinierat" ++msgid "Reopening shared object `%s' failed" ++msgstr "Öppna delat object \"%s\" igen misslyckades" + +-#: locale/programs/ld-messages.c:122 locale/programs/ld-messages.c:156 ++#: elf/sprof.c:535 elf/sprof.c:629 + #, c-format +-msgid "%s: value for field `%s' must not be an empty string" +-msgstr "%s: vrde p flt \"%s\" fr inte vara en tom strng" ++msgid "reading of section headers failed" ++msgstr "läsning av sektionshuvud misslyckades" + +-#: locale/programs/ld-messages.c:138 locale/programs/ld-messages.c:172 ++#: elf/sprof.c:543 elf/sprof.c:637 + #, c-format +-msgid "%s: no correct regular expression for field `%s': %s" +-msgstr "%s: felaktigt reguljrt uttryck fr flt \"%s\": %s" ++msgid "reading of section header string table failed" ++msgstr "läsning av sektionshuvuds strängtabell misslyckades" + +-#: locale/programs/ld-monetary.c:224 ++#: elf/sprof.c:569 + #, c-format +-msgid "%s: value of field `int_curr_symbol' has wrong length" +-msgstr "%s: vrdet p flt \"int_curr_symbol\" har fel lngd" ++msgid "*** Cannot read debuginfo file name: %m\n" ++msgstr "*** Kan inte läsa fil med felsökningsinformation: %m\n" + +-#: locale/programs/ld-monetary.c:237 ++#: elf/sprof.c:589 + #, c-format +-msgid "%s: value of field `int_curr_symbol' does not correspond to a valid name in ISO 4217" +-msgstr "%s: vrdet p flt \"int_curr_symbol\" stmmer inte med giltiga namn i ISO 4217" ++msgid "cannot determine file name" ++msgstr "kan inte avgöra filnamn" + +-#: locale/programs/ld-monetary.c:256 locale/programs/ld-numeric.c:119 ++#: elf/sprof.c:622 + #, c-format +-msgid "%s: value for field `%s' must not be the empty string" +-msgstr "%s: vrde p flt \"%s\" fr inte vara tom strng" ++msgid "reading of ELF header failed" ++msgstr "läsning av ELF-huvud misslyckades" + +-#: locale/programs/ld-monetary.c:284 locale/programs/ld-monetary.c:314 ++#: elf/sprof.c:658 + #, c-format +-msgid "%s: value for field `%s' must be in range %d...%d" +-msgstr "%s: vrden p flt \"%s\" mste vara i intervallet %d...%d" ++msgid "*** The file `%s' is stripped: no detailed analysis possible\n" ++msgstr "*** Filen \"%s\" är strippad: ingen detaljerad analys är möjlig\n" + +-#: locale/programs/ld-monetary.c:746 locale/programs/ld-numeric.c:275 ++#: elf/sprof.c:688 + #, c-format +-msgid "%s: value for field `%s' must be a single character" +-msgstr "%s: vrdet fr flt \"%s\" mste vara ett enskilt tecken" ++msgid "failed to load symbol data" ++msgstr "misslyckades att ladda symboldata" + +-#: locale/programs/ld-monetary.c:843 locale/programs/ld-numeric.c:319 ++#: elf/sprof.c:755 + #, c-format +-msgid "%s: `-1' must be last entry in `%s' field" +-msgstr "%s: \"-1\" mste vara sista post i flt \"%s\"" ++msgid "cannot load profiling data" ++msgstr "kan inte läsa profildata" + +-#: locale/programs/ld-monetary.c:865 locale/programs/ld-numeric.c:340 ++#: elf/sprof.c:764 + #, c-format +-msgid "%s: values for field `%s' must be smaller than 127" +-msgstr "%s: vrden p flt \"%s\" mste vara mindre n 127" +- +-#: locale/programs/ld-monetary.c:908 +-msgid "conversion rate value cannot be zero" +-msgstr "omvandlingsvrde kan inte vara noll" ++msgid "while stat'ing profiling data file" ++msgstr "när status togs på profildatafilen" + +-#: locale/programs/ld-name.c:130 locale/programs/ld-telephone.c:127 +-#: locale/programs/ld-telephone.c:150 ++#: elf/sprof.c:772 + #, c-format +-msgid "%s: invalid escape sequence in field `%s'" +-msgstr "%s: ogiltig kontrollsekvens i flt \"%s\"" ++msgid "profiling data file `%s' does not match shared object `%s'" ++msgstr "profildatafil \"%s\" stämmer inte för delat objekt \"%s\"" + +-#: locale/programs/ld-time.c:248 ++#: elf/sprof.c:783 + #, c-format +-msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'" +-msgstr "%s: riktningsflagga i strng %Zd i \"era\"-flt r varken \"+\" eller \"-\"" ++msgid "failed to mmap the profiling data file" ++msgstr "misslyckades att mappa (mmap) profildatafilen" + +-#: locale/programs/ld-time.c:259 ++#: elf/sprof.c:791 + #, c-format +-msgid "%s: direction flag in string %Zd in `era' field is not a single character" +-msgstr "%s: riktningsflagga i strng %Zd i \"era\"-flt r inte ett enskilt tecken" ++msgid "error while closing the profiling data file" ++msgstr "fel vid stängning av profildatafilen" + +-#: locale/programs/ld-time.c:272 ++#: elf/sprof.c:800 elf/sprof.c:870 + #, c-format +-msgid "%s: invalid number for offset in string %Zd in `era' field" +-msgstr "%s: ogiltigt tal fr tillggsvrde i strng %Zd i \"era\"-flt" ++msgid "cannot create internal descriptor" ++msgstr "kan inte skapa intern deskriptor" + +-#: locale/programs/ld-time.c:280 ++#: elf/sprof.c:846 + #, c-format +-msgid "%s: garbage at end of offset value in string %Zd in `era' field" +-msgstr "%s: skrp i slutet av tillggsvrde i strng %Zd i \"era\"-flt" ++msgid "`%s' is no correct profile data file for `%s'" ++msgstr "\"%s\" är inte en korrekt profildatafil för \"%s\"" + +-#: locale/programs/ld-time.c:331 ++#: elf/sprof.c:1027 elf/sprof.c:1085 + #, c-format +-msgid "%s: invalid starting date in string %Zd in `era' field" +-msgstr "%s: ogiltigt startdatum i strng %Zd i \"era\"-flt" ++msgid "cannot allocate symbol data" ++msgstr "kan inte allokera symboldata" + +-#: locale/programs/ld-time.c:340 ++#: iconv/iconv_charmap.c:175 iconv/iconv_prog.c:315 + #, c-format +-msgid "%s: garbage at end of starting date in string %Zd in `era' field " +-msgstr "%s: skrp i slutet av startdatum i strng %Zd i \"era\"-flt" ++msgid "error while closing input `%s'" ++msgstr "fel vid stängning av indata \"%s\"" + +-#: locale/programs/ld-time.c:359 ++#: iconv/iconv_charmap.c:449 + #, c-format +-msgid "%s: starting date is invalid in string %Zd in `era' field" +-msgstr "%s: startdatum r ogiltigt i strng %Zd i \"era\"-flt" ++msgid "illegal input sequence at position %Zd" ++msgstr "otillåten indatasekvens vid position %Zd" + +-#: locale/programs/ld-time.c:408 ++#: iconv/iconv_charmap.c:468 iconv/iconv_prog.c:525 + #, c-format +-msgid "%s: invalid stopping date in string %Zd in `era' field" +-msgstr "%s: ogiltigt slutdatum i strng %Zd i \"era\"-flt" ++msgid "incomplete character or shift sequence at end of buffer" ++msgstr "ofullständigt tecken eller skift-sekvens i slutet på buffert" + +-#: locale/programs/ld-time.c:417 ++#: iconv/iconv_charmap.c:513 iconv/iconv_charmap.c:549 iconv/iconv_prog.c:568 ++#: iconv/iconv_prog.c:604 + #, c-format +-msgid "%s: garbage at end of stopping date in string %Zd in `era' field" +-msgstr "%s: skrp i slutet av slutdatum i strng %Zd i \"era\"-flt" ++msgid "error while reading the input" ++msgstr "fel när indata lästes" + +-#: locale/programs/ld-time.c:436 ++#: iconv/iconv_charmap.c:531 iconv/iconv_prog.c:586 + #, c-format +-msgid "%s: stopping date is invalid in string %Zd in `era' field" +-msgstr "%s: slutdatum r ogiltigt i strng %Zd i \"era\"-flt" +- +-#: locale/programs/ld-time.c:445 +-#, c-format +-msgid "%s: missing era name in string %Zd in `era' field" +-msgstr "%s: eranamn i strng %Zd i \"era\"-flt saknas" +- +-#: locale/programs/ld-time.c:457 +-#, c-format +-msgid "%s: missing era format in string %Zd in `era' field" +-msgstr "%s: eraformat i strng %Zd i \"era\"-flt saknas" +- +-#: locale/programs/ld-time.c:486 +-#, c-format +-msgid "%s: third operand for value of field `%s' must not be larger than %d" +-msgstr "%s: tredje operanden fr vrdet av flt \"%s\" kan inte vara strre n %d" ++msgid "unable to allocate buffer for input" ++msgstr "kan inte allokera buffert för indata" + +-#: locale/programs/ld-time.c:494 locale/programs/ld-time.c:502 +-#, c-format +-msgid "%s: values of field `%s' must not be larger than %d" +-msgstr "%s: vrden p flt \"%s\" fr inte vara strre n %d" ++#: iconv/iconv_prog.c:59 ++msgid "Input/Output format specification:" ++msgstr "In/ut formatspecifikation:" + +-#: locale/programs/ld-time.c:510 +-#, c-format +-msgid "%s: values for field `%s' must not be larger than %d" +-msgstr "%s: vrden p flt \"%s\" fr inte vara strre n %d" ++#: iconv/iconv_prog.c:60 ++msgid "encoding of original text" ++msgstr "kodning av originaltexten" + +-#: locale/programs/ld-time.c:986 +-#, c-format +-msgid "%s: too few values for field `%s'" +-msgstr "%s: fr f vrden fr flt \"%s\"" ++#: iconv/iconv_prog.c:61 ++msgid "encoding for output" ++msgstr "kodning för resultatet" + +-#: locale/programs/ld-time.c:1031 +-msgid "extra trailing semicolon" +-msgstr "extra avslutande semikolon" ++#: iconv/iconv_prog.c:62 ++msgid "Information:" ++msgstr "Information:" + +-#: locale/programs/ld-time.c:1034 +-#, c-format +-msgid "%s: too many values for field `%s'" +-msgstr "%s: fr mnga vrden fr flt \"%s\"" ++#: iconv/iconv_prog.c:63 ++msgid "list all known coded character sets" ++msgstr "visa alla kända teckenuppsättningar" + +-#: locale/programs/linereader.c:130 +-msgid "trailing garbage at end of line" +-msgstr "avslutande skrp vid radslutet" ++#: iconv/iconv_prog.c:64 locale/programs/localedef.c:126 ++msgid "Output control:" ++msgstr "Val av utdata:" + +-#: locale/programs/linereader.c:304 +-msgid "garbage at end of number" +-msgstr "skrp i slutet av nummer" ++#: iconv/iconv_prog.c:65 ++msgid "omit invalid characters from output" ++msgstr "visa inte ogiltiga tecken i utdata" + +-#: locale/programs/linereader.c:416 +-msgid "garbage at end of character code specification" +-msgstr "skrp i slutet av teckenkodsspecifikation" ++#: iconv/iconv_prog.c:66 ++msgid "output file" ++msgstr "resultatfil" + +-#: locale/programs/linereader.c:502 +-msgid "unterminated symbolic name" +-msgstr "oavslutat symboliskt namn" ++#: iconv/iconv_prog.c:67 ++msgid "suppress warnings" ++msgstr "utelämna varningar" + +-#: locale/programs/linereader.c:566 catgets/gencat.c:1195 +-msgid "invalid escape sequence" +-msgstr "ogiltig kontrollsekvens" ++#: iconv/iconv_prog.c:68 ++msgid "print progress information" ++msgstr "skriv information om körning" + +-#: locale/programs/linereader.c:629 +-msgid "illegal escape sequence at end of string" +-msgstr "otillten teckensekvens vid strngslut" ++#: iconv/iconv_prog.c:73 ++msgid "Convert encoding of given files from one encoding to another." ++msgstr "Konvertera kodning i angivna infiler från en kodning till en annan." + +-#: locale/programs/linereader.c:633 locale/programs/linereader.c:861 +-msgid "unterminated string" +-msgstr "oavslutad strng" ++#: iconv/iconv_prog.c:77 ++msgid "[FILE...]" ++msgstr "[FIL...]" + +-#: locale/programs/linereader.c:675 +-msgid "non-symbolic character value should not be used" +-msgstr "icke-symboliskt teckenvrde br inte anvndas" ++#: iconv/iconv_prog.c:199 ++#, c-format ++msgid "cannot open output file" ++msgstr "kan inte öppna utfil" + +-#: locale/programs/linereader.c:822 ++#: iconv/iconv_prog.c:241 + #, c-format +-msgid "symbol `%.*s' not in charmap" +-msgstr "symbol \"%.*s\" finns inte i teckenuppsttning" ++msgid "conversions from `%s' and to `%s' are not supported" ++msgstr "konvertering från \"%s\" och till \"%s\" stöds ej" + +-#: locale/programs/linereader.c:843 ++#: iconv/iconv_prog.c:246 + #, c-format +-msgid "symbol `%.*s' not in repertoire map" +-msgstr "symbol \"%.*s\" finns inte i repertoartabell" ++msgid "conversion from `%s' is not supported" ++msgstr "konvertering från \"%s\" stöds ej" + +-#: locale/programs/locale.c:75 +-msgid "System information:" +-msgstr "Systeminformation:" ++#: iconv/iconv_prog.c:253 ++#, c-format ++msgid "conversion to `%s' is not supported" ++msgstr "konvertering till \"%s\" stöds ej" + +-#: locale/programs/locale.c:77 +-msgid "Write names of available locales" +-msgstr "Skriv namn p tillgngliga lokaler" ++#: iconv/iconv_prog.c:257 ++#, c-format ++msgid "conversion from `%s' to `%s' is not supported" ++msgstr "konvertering från \"%s\" till \"%s\" stöds ej" + +-#: locale/programs/locale.c:79 +-msgid "Write names of available charmaps" +-msgstr "Skriv namn p tillgngliga teckenuppsttningar" ++#: iconv/iconv_prog.c:267 ++#, c-format ++msgid "failed to start conversion processing" ++msgstr "misslyckades att starta konverteringsprocessen" + +-#: locale/programs/locale.c:80 +-msgid "Modify output format:" +-msgstr "ndra utdataformat:" ++#: iconv/iconv_prog.c:361 ++#, c-format ++msgid "error while closing output file" ++msgstr "fel vid stängning av utfilen" + +-#: locale/programs/locale.c:81 +-msgid "Write names of selected categories" +-msgstr "Skriv namn p valda kategorier" ++#: iconv/iconv_prog.c:470 iconv/iconv_prog.c:496 ++#, c-format ++msgid "conversion stopped due to problem in writing the output" ++msgstr "konvertering avslutades på grund av problem med att skriva resultatet" + +-#: locale/programs/locale.c:82 +-msgid "Write names of selected keywords" +-msgstr "Skriv namn p valda nyckelord" ++#: iconv/iconv_prog.c:521 ++#, c-format ++msgid "illegal input sequence at position %ld" ++msgstr "otillåten indatasekvens vid position %ld" + +-#: locale/programs/locale.c:83 +-msgid "Print more information" +-msgstr "Skriv mer information" ++#: iconv/iconv_prog.c:529 ++#, c-format ++msgid "internal error (illegal descriptor)" ++msgstr "internt fel (otillåten deskriptor)" + +-#: locale/programs/locale.c:88 +-msgid "Get locale-specific information." +-msgstr "Hmta lokal-specifik information" ++#: iconv/iconv_prog.c:532 ++#, c-format ++msgid "unknown iconv() error %d" ++msgstr "okänt fel från iconv() %d" + +-#: locale/programs/locale.c:91 ++#: iconv/iconv_prog.c:778 + msgid "" +-"NAME\n" +-"[-a|-m]" ++"The following list contain all the coded character sets known. This does\n" ++"not necessarily mean that all combinations of these names can be used for\n" ++"the FROM and TO command line parameters. One coded character set can be\n" ++"listed with several different names (aliases).\n" ++"\n" ++" " + msgstr "" +-"NAMN\n" +-"[-a|-m]" ++"Följande lista innehåller alla teckenuppsättningar som är kända. Detta\n" ++"betyder inte nödvändigtvis att alla kombinationer av dessa namn kan ges\n" ++"som FRÅN och TILL argument. En teckenuppsättning kan ha flera olika namn\n" ++"(alias).\n" ++"\n" ++" " + +-#: locale/programs/locale.c:195 +-msgid "Cannot set LC_CTYPE to default locale" +-msgstr "Kan inte stta LC_CTYPE till standardlokalen" ++#: iconv/iconvconfig.c:109 ++msgid "Create fastloading iconv module configuration file." ++msgstr "Skapa en snabbladdande modulkonfigurationsfil för iconv." + +-#: locale/programs/locale.c:197 +-msgid "Cannot set LC_MESSAGES to default locale" +-msgstr "Kan inte stta LC_MESSAGES till standardlokalen" ++#: iconv/iconvconfig.c:113 ++msgid "[DIR...]" ++msgstr "[KATALOG...]" + +-#: locale/programs/locale.c:210 +-msgid "Cannot set LC_COLLATE to default locale" +-msgstr "Kan inte stta LC_COLLATE till standardlokalen" ++#: iconv/iconvconfig.c:126 ++msgid "Prefix used for all file accesses" ++msgstr "Prefix att använda för alla filåtkomster" + +-#: locale/programs/locale.c:226 +-msgid "Cannot set LC_ALL to default locale" +-msgstr "Kan inte stta LC_ALL till standardlokalen" ++#: iconv/iconvconfig.c:127 ++msgid "Put output in FILE instead of installed location (--prefix does not apply to FILE)" ++msgstr "Spara utdata i FIL istället för installationsplatsen (--prefix gäller inte för FIL)" + +-#: locale/programs/locale.c:517 +-msgid "while preparing output" +-msgstr "nr utdata frbereddes" ++#: iconv/iconvconfig.c:131 ++msgid "Do not search standard directories, only those on the command line" ++msgstr "Sök inte i standardkatalogerna, bara i de som ges på kommandoraden" + +-#: locale/programs/localedef.c:121 +-msgid "Input Files:" +-msgstr "Infiler:" ++#: iconv/iconvconfig.c:300 ++#, c-format ++msgid "Directory arguments required when using --nostdlib" ++msgstr "Katalogargument krävs när --nostdlib används" + +-#: locale/programs/localedef.c:123 +-msgid "Symbolic character names defined in FILE" +-msgstr "Symboliska teckennamn definierade i FILE" ++#: iconv/iconvconfig.c:342 locale/programs/localedef.c:290 ++#, c-format ++msgid "no output file produced because warnings were issued" ++msgstr "ingen utfil skapad på grund av varningar" + +-#: locale/programs/localedef.c:124 +-msgid "Source definitions are found in FILE" +-msgstr "Klldefinitioner finns i FILE" ++#: iconv/iconvconfig.c:428 ++#, c-format ++msgid "while inserting in search tree" ++msgstr "vid insättning i sökträd" + +-#: locale/programs/localedef.c:126 +-msgid "FILE contains mapping from symbolic names to UCS4 values" +-msgstr "FIL innehller avbildning frn symboliska namn till UCS4-vrden" ++#: iconv/iconvconfig.c:1236 ++#, c-format ++msgid "cannot generate output file" ++msgstr "kan inte generera utfil" + +-#: locale/programs/localedef.c:130 +-msgid "Create output even if warning messages were issued" +-msgstr "Skapa utfil ven om varningsmeddelanden genererades" ++#: inet/rcmd.c:157 ++msgid "rcmd: Cannot allocate memory\n" ++msgstr "rcmd: Kan inte allokera minne\n" + +-#: locale/programs/localedef.c:131 +-msgid "Create old-style tables" +-msgstr "Skapa tabeller i gammal stil" ++#: inet/rcmd.c:172 ++msgid "rcmd: socket: All ports in use\n" ++msgstr "rcmd: uttag (socket): Alla portar används\n" + +-#: locale/programs/localedef.c:132 +-msgid "Optional output file prefix" +-msgstr "Valfri utfilsprefix" ++#: inet/rcmd.c:200 ++#, c-format ++msgid "connect to address %s: " ++msgstr "anslut till adress %s: " + +-#: locale/programs/localedef.c:133 +-msgid "Be strictly POSIX conform" +-msgstr "Var strikt POSIX-konform" ++#: inet/rcmd.c:213 ++#, c-format ++msgid "Trying %s...\n" ++msgstr "Provar %s...\n" + +-#: locale/programs/localedef.c:135 +-msgid "Suppress warnings and information messages" +-msgstr "Undertryck varningar och informationsmeddelanden" ++#: inet/rcmd.c:249 ++#, c-format ++msgid "rcmd: write (setting up stderr): %m\n" ++msgstr "rcmd: write: (sätter upp standard fel): %m\n" + +-#: locale/programs/localedef.c:136 +-msgid "Print more messages" +-msgstr "Skriv mer meddelanden" ++#: inet/rcmd.c:265 ++#, c-format ++msgid "rcmd: poll (setting up stderr): %m\n" ++msgstr "rcmd: poll (sätter upp standard fel): %m\n" + +-#: locale/programs/localedef.c:137 +-msgid "Archive control:" +-msgstr "Arkivkontroll:" ++#: inet/rcmd.c:268 ++msgid "poll: protocol failure in circuit setup\n" ++msgstr "poll: protokollfel i förbindelseuppsättning\n" + +-#: locale/programs/localedef.c:139 +-msgid "Don't add new data to archive" +-msgstr "Lgg inte till nya data till arkivet" ++#: inet/rcmd.c:301 ++msgid "socket: protocol failure in circuit setup\n" ++msgstr "uttag (socket): protokollfel i förbindelseuppsättning\n" + +-#: locale/programs/localedef.c:141 +-msgid "Add locales named by parameters to archive" +-msgstr "Lgg till lokaler namngivna av parametrar till arkivet" ++#: inet/rcmd.c:325 ++#, c-format ++msgid "rcmd: %s: short read" ++msgstr "rcmd: %s: läsning gav för lite data" + +-#: locale/programs/localedef.c:142 +-msgid "Replace existing archive content" +-msgstr "Erstt befintligt arkivinnehll" ++#: inet/rcmd.c:481 ++msgid "lstat failed" ++msgstr "misslyckades ta status (lstat)" + +-#: locale/programs/localedef.c:144 +-msgid "Remove locales named by parameters from archive" +-msgstr "Ta bort lokaler namngivna av parametrar frn arkivet" ++#: inet/rcmd.c:488 ++msgid "cannot open" ++msgstr "kan inte öppna" + +-#: locale/programs/localedef.c:145 +-msgid "List content of archive" +-msgstr "Visa innehllet i arkivet" ++#: inet/rcmd.c:490 ++msgid "fstat failed" ++msgstr "misslyckades ta status (fstat)" + +-#: locale/programs/localedef.c:147 +-msgid "locale.alias file to consult when making archive" +-msgstr "locale.alias-fil som ska anvndas nr arkivet skapas" ++#: inet/rcmd.c:492 ++msgid "bad owner" ++msgstr "olämplig ägare" + +-#: locale/programs/localedef.c:152 +-msgid "Compile locale specification" +-msgstr "Kompilera lokalspecifikation" ++#: inet/rcmd.c:494 ++msgid "writeable by other than owner" ++msgstr "skrivbar för andra än ägaren" + +-#: locale/programs/localedef.c:155 +-msgid "" +-"NAME\n" +-"[--add-to-archive|--delete-from-archive] FILE...\n" +-"--list-archive [FILE]" +-msgstr "" +-"NAMN\n" +-"[--add-to-archive|--delete-from-archive] FIL...\n" +-"--list-archive [FIL]" ++#: inet/rcmd.c:496 ++msgid "hard linked somewhere" ++msgstr "hårdlänkad någonstans" + +-#: locale/programs/localedef.c:233 +-msgid "cannot create directory for output files" +-msgstr "kan inte skapa katalog fr utfiler" ++#: inet/ruserpass.c:170 inet/ruserpass.c:193 ++msgid "out of memory" ++msgstr "minnet slut" + +-#: locale/programs/localedef.c:244 +-msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" +-msgstr "FATALT: systemet definierar inte \"_POSIX2_LOCALEDEF\"" ++#: inet/ruserpass.c:184 ++msgid "Error: .netrc file is readable by others." ++msgstr "Fel: .netrc kan läsas av andra." ++ ++#: inet/ruserpass.c:185 ++msgid "Remove password or make file unreadable by others." ++msgstr "Ta bort lösenord eller gör filen oläsbar för andra" + +-#: locale/programs/localedef.c:258 locale/programs/localedef.c:274 +-#: locale/programs/localedef.c:599 locale/programs/localedef.c:619 ++#: inet/ruserpass.c:277 + #, c-format +-msgid "cannot open locale definition file `%s'" +-msgstr "kan inte ppna lokaldefinitionsfil \"%s\"" ++msgid "Unknown .netrc keyword %s" ++msgstr "Okänt .netrc-nyckelord %s" ++ ++#: libidn/nfkc.c:464 ++msgid "Character out of range for UTF-8" ++msgstr "Tecken utanför intervallet för UTF-8" + +-#: locale/programs/localedef.c:286 ++#: locale/programs/charmap-dir.c:57 + #, c-format +-msgid "cannot write output files to `%s'" +-msgstr "kan inte skriva utfiler till \"%s\"" ++msgid "cannot read character map directory `%s'" ++msgstr "kan inte läsa teckenuppsättningskatalog \"%s\"" + +-#: locale/programs/localedef.c:367 ++#: locale/programs/charmap.c:137 + #, c-format +-msgid "" +-"System's directory for character maps : %s\n" +-" repertoire maps: %s\n" +-" locale path : %s\n" +-"%s" +-msgstr "" +-"Systemets kataloger fr teckentabeller: %s\n" +-" repertoartabeller: %s\n" +-" lokal-skvg : %s\n" +-"%s" ++msgid "character map file `%s' not found" ++msgstr "teckenuppsättningsfil \"%s\" finns inte" + +-#: locale/programs/localedef.c:567 +-msgid "circular dependencies between locale definitions" +-msgstr "cirkulrt beroende mellan lokaldefinitioner" ++#: locale/programs/charmap.c:194 ++#, c-format ++msgid "default character map file `%s' not found" ++msgstr "standardteckenuppsättningsfil \"%s\" inte hittad" + +-#: locale/programs/localedef.c:573 ++#: locale/programs/charmap.c:257 + #, c-format +-msgid "cannot add already read locale `%s' a second time" +-msgstr "kan inte lgga till en redan inlst lokal \"%s\" en andra gng" ++msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n" ++msgstr "teckenuppsättning \"%s\" är inte ASCII-kompatibel, lokal är inte ISO C-kompatibel\n" + +-#: locale/programs/locarchive.c:89 locale/programs/locarchive.c:259 +-msgid "cannot create temporary file" +-msgstr "kan inte skapa temporrfil" ++#: locale/programs/charmap.c:336 ++#, c-format ++msgid "%s: must be greater than \n" ++msgstr "%s: måste vara större än \n" + +-#: locale/programs/locarchive.c:118 locale/programs/locarchive.c:305 +-msgid "cannot initialize archive file" +-msgstr "kan inte initiera arkivfil" ++#: locale/programs/charmap.c:356 locale/programs/charmap.c:373 ++#: locale/programs/repertoire.c:174 ++#, c-format ++msgid "syntax error in prolog: %s" ++msgstr "syntaxfel i prolog: %s" + +-#: locale/programs/locarchive.c:125 locale/programs/locarchive.c:312 +-msgid "cannot resize archive file" +-msgstr "kan inte byta storlek p arkivfil" ++#: locale/programs/charmap.c:357 ++msgid "invalid definition" ++msgstr "ogiltig definition" + +-#: locale/programs/locarchive.c:134 locale/programs/locarchive.c:321 +-#: locale/programs/locarchive.c:511 +-msgid "cannot map archive header" +-msgstr "kan inte lsa arkivhuvud med mmap" ++#: locale/programs/charmap.c:374 locale/programs/locfile.c:125 ++#: locale/programs/locfile.c:152 locale/programs/repertoire.c:175 ++msgid "bad argument" ++msgstr "dåligt argument" + +-#: locale/programs/locarchive.c:156 +-msgid "failed to create new locale archive" +-msgstr "misslyckades med att skapa nytt lokalarkiv" ++#: locale/programs/charmap.c:402 ++#, c-format ++msgid "duplicate definition of <%s>" ++msgstr "dubblerad definition av <%s>" + +-#: locale/programs/locarchive.c:168 +-msgid "cannot change mode of new locale archive" +-msgstr "kan inte ndra tkomstlge p nytt lokalarkiv" ++#: locale/programs/charmap.c:409 ++#, c-format ++msgid "value for <%s> must be 1 or greater" ++msgstr "värdet på <%s> måste vara 1 eller större" + +-#: locale/programs/locarchive.c:253 +-msgid "cannot map locale archive file" +-msgstr "kan inte ppna lokalarkivfil med mmap" ++#: locale/programs/charmap.c:421 ++#, c-format ++msgid "value of <%s> must be greater or equal than the value of <%s>" ++msgstr "värdet på <%s> måste vara större eller lika med värdet på <%s>" + +-#: locale/programs/locarchive.c:329 +-msgid "cannot lock new archive" +-msgstr "kan inte lsa nytt arkiv" ++#: locale/programs/charmap.c:444 locale/programs/repertoire.c:183 ++#, c-format ++msgid "argument to <%s> must be a single character" ++msgstr "argumentet till <%s> måste vara ett enskilt tecken" + +-#: locale/programs/locarchive.c:380 +-msgid "cannot extend locale archive file" +-msgstr "kan inte utka lokalarkivfil" ++#: locale/programs/charmap.c:470 ++msgid "character sets with locking states are not supported" ++msgstr "teckenuppsättningar med låsta tillstånd stöds ej" + +-#: locale/programs/locarchive.c:389 +-msgid "cannot change mode of resized locale archive" +-msgstr "kan inte ndra tkomstlge p storleksndrat lokalarkiv" ++#: locale/programs/charmap.c:497 locale/programs/charmap.c:551 ++#: locale/programs/charmap.c:583 locale/programs/charmap.c:677 ++#: locale/programs/charmap.c:732 locale/programs/charmap.c:773 ++#: locale/programs/charmap.c:814 ++#, c-format ++msgid "syntax error in %s definition: %s" ++msgstr "syntaxfel i definition av %s: %s" + +-#: locale/programs/locarchive.c:397 +-msgid "cannot rename new archive" +-msgstr "kan inte byta namn p nytt arkiv" ++#: locale/programs/charmap.c:498 locale/programs/charmap.c:678 ++#: locale/programs/charmap.c:774 locale/programs/repertoire.c:230 ++msgid "no symbolic name given" ++msgstr "inget symboliskt namn givet" + +-#: locale/programs/locarchive.c:450 ++#: locale/programs/charmap.c:552 ++msgid "invalid encoding given" ++msgstr "ogiltig kodning given" ++ ++#: locale/programs/charmap.c:561 ++msgid "too few bytes in character encoding" ++msgstr "för få byte i teckenkodning" ++ ++#: locale/programs/charmap.c:563 ++msgid "too many bytes in character encoding" ++msgstr "för många tecken i teckenkodning" ++ ++#: locale/programs/charmap.c:585 locale/programs/charmap.c:733 ++#: locale/programs/charmap.c:816 locale/programs/repertoire.c:296 ++msgid "no symbolic name given for end of range" ++msgstr "inget symboliskt namn givet för slutet av intervallet" ++ ++#: locale/programs/charmap.c:609 locale/programs/locfile.c:818 ++#: locale/programs/repertoire.c:313 + #, c-format +-msgid "cannot open locale archive \"%s\"" +-msgstr "kan inte ppna lokalarkiv \"%s\"" ++msgid "`%1$s' definition does not end with `END %1$s'" ++msgstr "definition av \"%1$s\" slutar inte med \"END %1$s\"" ++ ++#: locale/programs/charmap.c:642 ++msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" ++msgstr "endast definition av \"WIDTH\" får följa definitionen av \"CHARMAP\"" + +-#: locale/programs/locarchive.c:455 ++#: locale/programs/charmap.c:650 locale/programs/charmap.c:713 + #, c-format +-msgid "cannot stat locale archive \"%s\"" +-msgstr "kan inte ta status p lokalarkiv \"%s\"" ++msgid "value for %s must be an integer" ++msgstr "värdet på %s måste vara heltal" + +-#: locale/programs/locarchive.c:474 ++#: locale/programs/charmap.c:841 + #, c-format +-msgid "cannot lock locale archive \"%s\"" +-msgstr "kan inte lsa lokalarkiv \"%s\"" ++msgid "%s: error in state machine" ++msgstr "%s: fel i tillståndsmaskin" + +-#: locale/programs/locarchive.c:497 +-msgid "cannot read archive header" +-msgstr "kan inte lsa arkivhuvud" ++#: locale/programs/charmap.c:849 locale/programs/ld-address.c:615 ++#: locale/programs/ld-collate.c:2650 locale/programs/ld-collate.c:3820 ++#: locale/programs/ld-ctype.c:2224 locale/programs/ld-ctype.c:2996 ++#: locale/programs/ld-identification.c:467 ++#: locale/programs/ld-measurement.c:253 locale/programs/ld-messages.c:347 ++#: locale/programs/ld-monetary.c:956 locale/programs/ld-name.c:322 ++#: locale/programs/ld-numeric.c:383 locale/programs/ld-paper.c:256 ++#: locale/programs/ld-telephone.c:328 locale/programs/ld-time.c:1236 ++#: locale/programs/locfile.c:825 locale/programs/repertoire.c:324 ++#, c-format ++msgid "%s: premature end of file" ++msgstr "%s: för tidigt filslut" + +-#: locale/programs/locarchive.c:557 ++#: locale/programs/charmap.c:868 locale/programs/charmap.c:879 + #, c-format +-msgid "locale '%s' already exists" +-msgstr "lokal \"%s\" finns redan" ++msgid "unknown character `%s'" ++msgstr "okänt tecken \"%s\"" + +-#: locale/programs/locarchive.c:788 locale/programs/locarchive.c:803 +-#: locale/programs/locarchive.c:815 locale/programs/locarchive.c:827 +-#: locale/programs/locfile.c:343 +-msgid "cannot add to locale archive" +-msgstr "kan inte lgga till till lokalarkiv" ++#: locale/programs/charmap.c:887 ++#, c-format ++msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d" ++msgstr "" ++"antal byte för bytesekvens angivet i början respektive slutet av intervallet\n" ++"skiljer sig: %d respektive %d" ++ ++#: locale/programs/charmap.c:992 locale/programs/ld-collate.c:2933 ++#: locale/programs/repertoire.c:419 ++msgid "invalid names for character range" ++msgstr "ogiltiga namn för teckenintervall" + +-#: locale/programs/locarchive.c:982 ++#: locale/programs/charmap.c:1004 locale/programs/repertoire.c:431 ++msgid "hexadecimal range format should use only capital characters" ++msgstr "hexadecimalt intervallformat bör endast använda versaler" ++ ++#: locale/programs/charmap.c:1022 + #, c-format +-msgid "locale alias file `%s' not found" +-msgstr "fil \"%s\" fr lokalalias hittas inte" ++msgid "<%s> and <%s> are illegal names for range" ++msgstr "<%s> och <%s> är otillåtna namn för intervall" ++ ++#: locale/programs/charmap.c:1028 ++msgid "upper limit in range is not higher then lower limit" ++msgstr "övre gräns i intervall är inte större än undre gräns" ++ ++#: locale/programs/charmap.c:1086 ++msgid "resulting bytes for range not representable." ++msgstr "resulterande byte för intervall är inte representerbara." + +-#: locale/programs/locarchive.c:1126 ++#: locale/programs/ld-address.c:132 locale/programs/ld-collate.c:1532 ++#: locale/programs/ld-ctype.c:419 locale/programs/ld-identification.c:132 ++#: locale/programs/ld-measurement.c:93 locale/programs/ld-messages.c:96 ++#: locale/programs/ld-monetary.c:192 locale/programs/ld-name.c:93 ++#: locale/programs/ld-numeric.c:97 locale/programs/ld-paper.c:90 ++#: locale/programs/ld-telephone.c:93 locale/programs/ld-time.c:158 + #, c-format +-msgid "Adding %s\n" +-msgstr "Lgger till %s\n" ++msgid "No definition for %s category found" ++msgstr "Hittade ingen definition för kategori %s" + +-#: locale/programs/locarchive.c:1132 ++#: locale/programs/ld-address.c:143 locale/programs/ld-address.c:181 ++#: locale/programs/ld-address.c:199 locale/programs/ld-address.c:228 ++#: locale/programs/ld-address.c:300 locale/programs/ld-address.c:319 ++#: locale/programs/ld-address.c:332 locale/programs/ld-identification.c:145 ++#: locale/programs/ld-measurement.c:104 locale/programs/ld-monetary.c:204 ++#: locale/programs/ld-monetary.c:248 locale/programs/ld-monetary.c:264 ++#: locale/programs/ld-monetary.c:276 locale/programs/ld-name.c:104 ++#: locale/programs/ld-name.c:141 locale/programs/ld-numeric.c:111 ++#: locale/programs/ld-numeric.c:125 locale/programs/ld-paper.c:101 ++#: locale/programs/ld-paper.c:110 locale/programs/ld-telephone.c:104 ++#: locale/programs/ld-telephone.c:161 locale/programs/ld-time.c:174 ++#: locale/programs/ld-time.c:195 + #, c-format +-msgid "stat of \"%s\" failed: %s: ignored" +-msgstr "ta status p \"%s\" misslyckades: %s: ignorerad" ++msgid "%s: field `%s' not defined" ++msgstr "%s: fält \"%s\" är inte definierat" + +-#: locale/programs/locarchive.c:1138 ++#: locale/programs/ld-address.c:155 locale/programs/ld-address.c:207 ++#: locale/programs/ld-address.c:237 locale/programs/ld-address.c:275 ++#: locale/programs/ld-name.c:116 locale/programs/ld-telephone.c:116 + #, c-format +-msgid "\"%s\" is no directory; ignored" +-msgstr "\"%s\" r inte en katalog, ignorerad" ++msgid "%s: field `%s' must not be empty" ++msgstr "%s: fält \"%s\" kan inte vara tomt" + +-#: locale/programs/locarchive.c:1145 ++#: locale/programs/ld-address.c:167 + #, c-format +-msgid "cannot open directory \"%s\": %s: ignored" +-msgstr "kan inte ppna katalog \"%s\": %s: ignorerad" ++msgid "%s: invalid escape `%%%c' sequence in field `%s'" ++msgstr "%s: ogiltig kontrollsekvens \"%%%c\" i fält \"%s\" " + +-#: locale/programs/locarchive.c:1217 ++#: locale/programs/ld-address.c:218 + #, c-format +-msgid "incomplete set of locale files in \"%s\"" +-msgstr "ofullstndig uppsttning av lokalfiler i \"%s\"" ++msgid "%s: terminology language code `%s' not defined" ++msgstr "%s: terminologilandskod \"%s\" inte definierad" + +-#: locale/programs/locarchive.c:1281 ++#: locale/programs/ld-address.c:243 + #, c-format +-msgid "cannot read all files in \"%s\": ignored" +-msgstr "kan inte lsa alla filer i \"%s\": ignorerad" ++msgid "%s: field `%s' must not be defined" ++msgstr "%s: fält \"%s\" får inte definieras" + +-#: locale/programs/locarchive.c:1351 ++#: locale/programs/ld-address.c:257 locale/programs/ld-address.c:286 + #, c-format +-msgid "locale \"%s\" not in archive" +-msgstr "lokal \"%s\" finns inte i arkivet" ++msgid "%s: language abbreviation `%s' not defined" ++msgstr "%s: språkförkortning \"%s\" inte definierad" + +-#: locale/programs/locfile.c:132 ++#: locale/programs/ld-address.c:264 locale/programs/ld-address.c:292 ++#: locale/programs/ld-address.c:326 locale/programs/ld-address.c:338 + #, c-format +-msgid "argument to `%s' must be a single character" +-msgstr "argumentet till \"%s\" mste vara ett enskilt tecken" ++msgid "%s: `%s' value does not match `%s' value" ++msgstr "%s: värdet på \"%s\" stämmer inte med värdet på \"%s\"" + +-#: locale/programs/locfile.c:251 +-msgid "syntax error: not inside a locale definition section" +-msgstr "syntaxfel: inte inne i en lokaldefinition" ++#: locale/programs/ld-address.c:311 ++#, c-format ++msgid "%s: numeric country code `%d' not valid" ++msgstr "%s: numerisk landkod \"%d\" är inte giltig" + +-#: locale/programs/locfile.c:625 ++#: locale/programs/ld-address.c:507 locale/programs/ld-address.c:544 ++#: locale/programs/ld-address.c:582 locale/programs/ld-ctype.c:2603 ++#: locale/programs/ld-identification.c:363 ++#: locale/programs/ld-measurement.c:220 locale/programs/ld-messages.c:300 ++#: locale/programs/ld-monetary.c:698 locale/programs/ld-monetary.c:733 ++#: locale/programs/ld-monetary.c:774 locale/programs/ld-name.c:279 ++#: locale/programs/ld-numeric.c:262 locale/programs/ld-paper.c:223 ++#: locale/programs/ld-telephone.c:287 locale/programs/ld-time.c:1125 ++#: locale/programs/ld-time.c:1167 + #, c-format +-msgid "cannot open output file `%s' for category `%s'" +-msgstr "kan inte ppna utfil \"%s\" fr kategori \"%s\"" ++msgid "%s: field `%s' declared more than once" ++msgstr "%s: fält \"%s\" är deklarerad mer än en gång" + +-#: locale/programs/locfile.c:649 ++#: locale/programs/ld-address.c:511 locale/programs/ld-address.c:549 ++#: locale/programs/ld-identification.c:367 locale/programs/ld-messages.c:310 ++#: locale/programs/ld-monetary.c:702 locale/programs/ld-monetary.c:737 ++#: locale/programs/ld-name.c:283 locale/programs/ld-numeric.c:266 ++#: locale/programs/ld-telephone.c:291 locale/programs/ld-time.c:1019 ++#: locale/programs/ld-time.c:1088 locale/programs/ld-time.c:1130 + #, c-format +-msgid "failure while writing data for category `%s'" +-msgstr "misslyckades skriva data fr kategori \"%s\"" ++msgid "%s: unknown character in field `%s'" ++msgstr "%s: okänt tecken i fält \"%s\"" + +-#: locale/programs/locfile.c:745 ++#: locale/programs/ld-address.c:596 locale/programs/ld-collate.c:3802 ++#: locale/programs/ld-ctype.c:2976 locale/programs/ld-identification.c:448 ++#: locale/programs/ld-measurement.c:234 locale/programs/ld-messages.c:329 ++#: locale/programs/ld-monetary.c:938 locale/programs/ld-name.c:304 ++#: locale/programs/ld-numeric.c:365 locale/programs/ld-paper.c:238 ++#: locale/programs/ld-telephone.c:310 locale/programs/ld-time.c:1218 + #, c-format +-msgid "cannot create output file `%s' for category `%s'" +-msgstr "kan inte skapa utfil \"%s\" fr kategori \"%s\"" ++msgid "%s: incomplete `END' line" ++msgstr "%s: ofullständig \"END\"-rad" + +-#: locale/programs/locfile.c:781 +-msgid "expect string argument for `copy'" +-msgstr "frvntar strngargument fr \"copy\"" ++#: locale/programs/ld-address.c:599 locale/programs/ld-collate.c:2653 ++#: locale/programs/ld-collate.c:3804 locale/programs/ld-ctype.c:2227 ++#: locale/programs/ld-ctype.c:2979 locale/programs/ld-identification.c:451 ++#: locale/programs/ld-measurement.c:237 locale/programs/ld-messages.c:331 ++#: locale/programs/ld-monetary.c:940 locale/programs/ld-name.c:306 ++#: locale/programs/ld-numeric.c:367 locale/programs/ld-paper.c:240 ++#: locale/programs/ld-telephone.c:312 locale/programs/ld-time.c:1220 ++#, c-format ++msgid "%1$s: definition does not end with `END %1$s'" ++msgstr "%1$s: definition slutar inte med \"END %1$s\"" + +-#: locale/programs/locfile.c:785 +-msgid "locale name should consist only of portable characters" +-msgstr "lokalnamn fr endast best av portabla tecken" ++#: locale/programs/ld-address.c:606 locale/programs/ld-collate.c:521 ++#: locale/programs/ld-collate.c:573 locale/programs/ld-collate.c:869 ++#: locale/programs/ld-collate.c:882 locale/programs/ld-collate.c:2640 ++#: locale/programs/ld-collate.c:3811 locale/programs/ld-ctype.c:1955 ++#: locale/programs/ld-ctype.c:2214 locale/programs/ld-ctype.c:2801 ++#: locale/programs/ld-ctype.c:2987 locale/programs/ld-identification.c:458 ++#: locale/programs/ld-measurement.c:244 locale/programs/ld-messages.c:338 ++#: locale/programs/ld-monetary.c:947 locale/programs/ld-name.c:313 ++#: locale/programs/ld-numeric.c:374 locale/programs/ld-paper.c:247 ++#: locale/programs/ld-telephone.c:319 locale/programs/ld-time.c:1227 ++#, c-format ++msgid "%s: syntax error" ++msgstr "%s: syntaxfel" + +-#: locale/programs/locfile.c:804 +-msgid "no other keyword shall be specified when `copy' is used" +-msgstr "inget annat nyckelord fr anges nr \"copy\" anvnds" ++#: locale/programs/ld-collate.c:396 ++#, c-format ++msgid "`%.*s' already defined in charmap" ++msgstr "\"%.*s\" redan definerad i teckenuppsättning" + +-#: locale/programs/repertoire.c:230 locale/programs/repertoire.c:271 +-#: locale/programs/repertoire.c:296 ++#: locale/programs/ld-collate.c:405 + #, c-format +-msgid "syntax error in repertoire map definition: %s" +-msgstr "syntaxfel i repertoartabellsdefinition: %s" ++msgid "`%.*s' already defined in repertoire" ++msgstr "\"%.*s\" redan definierad i repertoar" + +-#: locale/programs/repertoire.c:272 +-msgid "no or value given" +-msgstr "inget eller vrde angivet" ++#: locale/programs/ld-collate.c:412 ++#, c-format ++msgid "`%.*s' already defined as collating symbol" ++msgstr "\"%.*s\" redan definierad som ett kollationssymbol" + +-#: locale/programs/repertoire.c:332 +-msgid "cannot save new repertoire map" +-msgstr "kan inte skra repertoartabell" ++#: locale/programs/ld-collate.c:419 ++#, c-format ++msgid "`%.*s' already defined as collating element" ++msgstr "\"%.*s\" redan definierad som ett kollationselement" + +-#: locale/programs/repertoire.c:343 ++#: locale/programs/ld-collate.c:450 locale/programs/ld-collate.c:476 + #, c-format +-msgid "repertoire map file `%s' not found" +-msgstr "hittar inte repertoartabell \"%s\"" ++msgid "%s: `forward' and `backward' are mutually excluding each other" ++msgstr "%s: sorteringsordning \"forward\" och \"backward\" är ömsesidigt uteslutande" + +-#: locale/programs/repertoire.c:450 ++#: locale/programs/ld-collate.c:460 locale/programs/ld-collate.c:486 ++#: locale/programs/ld-collate.c:502 + #, c-format +-msgid "<%s> and <%s> are invalid names for range" +-msgstr "<%s> och <%s> r ogiltiga namn fr intervall" ++msgid "%s: `%s' mentioned more than once in definition of weight %d" ++msgstr "%s: \"%s\" är nämnd fler än en gång i definitionen av vikt %d" + +-#: locale/programs/repertoire.c:457 +-msgid "upper limit in range is not smaller then lower limit" +-msgstr "vre grns i intervall r inte mindre n undre grns" ++#: locale/programs/ld-collate.c:558 ++#, c-format ++msgid "%s: too many rules; first entry only had %d" ++msgstr "%s: för många regler, första delen hade bara %d" + +-#: locale/programs/xmalloc.c:70 malloc/obstack.c:505 malloc/obstack.c:508 +-#: posix/getconf.c:1007 +-msgid "memory exhausted" +-msgstr "minne slut" ++#: locale/programs/ld-collate.c:594 ++#, c-format ++msgid "%s: not enough sorting rules" ++msgstr "%s: inte tillräckligt med sorteringsregler" + +-#: assert/assert-perr.c:57 ++#: locale/programs/ld-collate.c:759 + #, c-format +-msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n" +-msgstr "%s%s%s:%u: %s%sOvntat fel: %s.\n" ++msgid "%s: empty weight string not allowed" ++msgstr "%s: tomt viktnamn är inte tillåtet" + +-#: assert/assert.c:56 ++#: locale/programs/ld-collate.c:854 + #, c-format +-msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" +-msgstr "%s%s%s:%u: %s%sFrskran \"%s\" falsk.\n" ++msgid "%s: weights must use the same ellipsis symbol as the name" ++msgstr "%s: vikter måste använda samma intervallsymbol som namn" + +-#: intl/tst-codeset.c:40 intl/tst-codeset.c:50 +-msgid "cheese" +-msgstr "ost" ++#: locale/programs/ld-collate.c:910 ++#, c-format ++msgid "%s: too many values" ++msgstr "%s: för många värden" + +-#: intl/tst-gettext2.c:37 +-msgid "First string for testing." +-msgstr "Frsta strngen fr test." ++#: locale/programs/ld-collate.c:1029 locale/programs/ld-collate.c:1204 ++#, c-format ++msgid "order for `%.*s' already defined at %s:%Zu" ++msgstr "ordningsföljd för \"%.*s\" redan definierad vid %s:%Zu" + +-#: intl/tst-gettext2.c:38 +-msgid "Another string for testing." +-msgstr "En till strng fr test." ++#: locale/programs/ld-collate.c:1079 ++#, c-format ++msgid "%s: the start and the end symbol of a range must stand for characters" ++msgstr "%s: start- och slut-symbol i ett intervall måste representera tecken" + +-#: catgets/gencat.c:111 catgets/gencat.c:115 nscd/nscd.c:88 +-msgid "NAME" +-msgstr "NAMN" ++#: locale/programs/ld-collate.c:1106 ++#, c-format ++msgid "%s: byte sequences of first and last character must have the same length" ++msgstr "%s: bytesekvens för första och sista tecknet måste ha samma längd" + +-#: catgets/gencat.c:112 +-msgid "Create C header file NAME containing symbol definitions" +-msgstr "Skapa C-huvudfil NAMN innehllande symboldefinitioner" ++#: locale/programs/ld-collate.c:1148 ++#, c-format ++msgid "%s: byte sequence of first character of sequence is not lower than that of the last character" ++msgstr "%s: bytesekvens för första tecknet är inte mindre än den för sista tecknet" + +-#: catgets/gencat.c:114 +-msgid "Do not use existing catalog, force new output file" +-msgstr "Anvnd inte existerande katalog, gr en ny utfil" ++#: locale/programs/ld-collate.c:1273 ++#, c-format ++msgid "%s: symbolic range ellipsis must not directly follow `order_start'" ++msgstr "%s: symboliskt intervall kan inte vara omedelbart efter \"order_start\"" + +-#: catgets/gencat.c:115 +-msgid "Write output to file NAME" +-msgstr "Skriv resultatet till NAMN" ++#: locale/programs/ld-collate.c:1277 ++#, c-format ++msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'" ++msgstr "%s: symboliskt intervall kan inte omedelbart följas av \"order_end\"" + +-#: catgets/gencat.c:120 +-msgid "" +-"Generate message catalog. If INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n" +-"is -, output is written to standard output.\n" +-msgstr "" +-"Skapa meddelandekatalog. Om INFIL r - s lses standard in. Om UTFIL\n" +-"r - s skrivs resultatet till standard ut.\n" ++#: locale/programs/ld-collate.c:1297 locale/programs/ld-ctype.c:1475 ++#, c-format ++msgid "`%s' and `%.*s' are not valid names for symbolic range" ++msgstr "\"%s\" och \"%.*s\" är otillåtna namn för symboliskt intervall" + +-#: catgets/gencat.c:125 +-msgid "" +-"-o OUTPUT-FILE [INPUT-FILE]...\n" +-"[OUTPUT-FILE [INPUT-FILE]...]" +-msgstr "" +-"-o UTFIL [INFIL]...\n" +-"[UTFIL [INFIL]...]" ++#: locale/programs/ld-collate.c:1346 locale/programs/ld-collate.c:3739 ++#, c-format ++msgid "%s: order for `%.*s' already defined at %s:%Zu" ++msgstr "%s: ordningsföljd för \"%.*s\" redan definierad i %s:%Zu" + +-#: catgets/gencat.c:282 +-msgid "*standard input*" +-msgstr "*standard in*" ++#: locale/programs/ld-collate.c:1355 ++#, c-format ++msgid "%s: `%s' must be a character" ++msgstr "%s: \"%s\" måste vara ett enskilt tecken" + +-#: catgets/gencat.c:417 catgets/gencat.c:494 +-msgid "illegal set number" +-msgstr "otilltet tal fr mngd" ++#: locale/programs/ld-collate.c:1548 ++#, c-format ++msgid "%s: `position' must be used for a specific level in all sections or none" ++msgstr "%s: \"position\" måste användas för en given nivå i alla sektioner eller inte alls" + +-#: catgets/gencat.c:444 +-msgid "duplicate set definition" +-msgstr "dubblerad definition av mngd" ++#: locale/programs/ld-collate.c:1573 ++#, c-format ++msgid "symbol `%s' not defined" ++msgstr "symbol \"%s\" inte definierad" + +-#: catgets/gencat.c:446 catgets/gencat.c:623 catgets/gencat.c:677 +-msgid "this is the first definition" +-msgstr "detta r den frsta definitionen" ++#: locale/programs/ld-collate.c:1649 locale/programs/ld-collate.c:1755 ++#, c-format ++msgid "symbol `%s' has the same encoding as" ++msgstr "symbol \"%s\" har samma värde som" + +-#: catgets/gencat.c:522 ++#: locale/programs/ld-collate.c:1653 locale/programs/ld-collate.c:1759 + #, c-format +-msgid "unknown set `%s'" +-msgstr "oknd mngd \"%s\"" ++msgid "symbol `%s'" ++msgstr "symbol \"%s\"" + +-#: catgets/gencat.c:563 +-msgid "invalid quote character" +-msgstr "ogiltigt citattecken" ++#: locale/programs/ld-collate.c:1801 ++#, c-format ++msgid "no definition of `UNDEFINED'" ++msgstr "ingen definition av \"UNDEFINED\"" + +-#: catgets/gencat.c:576 ++#: locale/programs/ld-collate.c:1830 + #, c-format +-msgid "unknown directive `%s': line ignored" +-msgstr "oknt direktiv \"%s\": rad ignorerad" ++msgid "too many errors; giving up" ++msgstr "för många fel, ger upp" + +-#: catgets/gencat.c:621 +-msgid "duplicated message number" +-msgstr "dubblerat meddelandenummer" ++#: locale/programs/ld-collate.c:2738 ++#, c-format ++msgid "%s: duplicate definition of `%s'" ++msgstr "%s: dubbla definitioner av \"%s\"" + +-#: catgets/gencat.c:674 +-msgid "duplicated message identifier" +-msgstr "dubblerad meddelandeidentifierare" ++#: locale/programs/ld-collate.c:2774 ++#, c-format ++msgid "%s: duplicate declaration of section `%s'" ++msgstr "%s: dubbla deklarationer för sektion \"%s\"" + +-#: catgets/gencat.c:731 +-msgid "invalid character: message ignored" +-msgstr "ogiltigt tecken: meddelandet ignorerat" ++#: locale/programs/ld-collate.c:2913 ++#, c-format ++msgid "%s: unknown character in collating symbol name" ++msgstr "%s: okänt tecken i namn för kollationssymbol" + +-#: catgets/gencat.c:774 +-msgid "invalid line" +-msgstr "ogiltig rad" ++#: locale/programs/ld-collate.c:3045 ++#, c-format ++msgid "%s: unknown character in equivalent definition name" ++msgstr "%s: okänt tecken i namnet i ekvivalensdefinitionen" + +-#: catgets/gencat.c:828 +-msgid "malformed line ignored" +-msgstr "felaktig rad ignorerad" ++#: locale/programs/ld-collate.c:3058 ++#, c-format ++msgid "%s: unknown character in equivalent definition value" ++msgstr "%s: okänt tecken i värdet i ekvivalensdefinitionen" + +-#: catgets/gencat.c:992 catgets/gencat.c:1033 ++#: locale/programs/ld-collate.c:3068 + #, c-format +-msgid "cannot open output file `%s'" +-msgstr "kan inte ppna utfil \"%s\"" ++msgid "%s: unknown symbol `%s' in equivalent definition" ++msgstr "%s: okänd symbol \"%s\" i ekvivalensdefinition" + +-#: catgets/gencat.c:1217 +-msgid "unterminated message" +-msgstr "oavslutat meddelande" ++#: locale/programs/ld-collate.c:3077 ++msgid "error while adding equivalent collating symbol" ++msgstr "fel när ekvivalent kollationssymbol lades till" + +-#: catgets/gencat.c:1241 +-msgid "while opening old catalog file" +-msgstr "nr gammal katalogfil ppnades" ++#: locale/programs/ld-collate.c:3107 ++#, c-format ++msgid "duplicate definition of script `%s'" ++msgstr "dubblerad definition för skript \"%s\"" + +-#: catgets/gencat.c:1332 +-msgid "conversion modules not available" +-msgstr "konverteringsmoduler inte tillgngliga" ++#: locale/programs/ld-collate.c:3155 ++#, c-format ++msgid "%s: unknown section name `%s'" ++msgstr "%s: okänt sektionsnamn \"%s\"" + +-#: catgets/gencat.c:1358 +-msgid "cannot determine escape character" +-msgstr "kan inte avgra kontrolltecken" ++#: locale/programs/ld-collate.c:3183 ++#, c-format ++msgid "%s: multiple order definitions for section `%s'" ++msgstr "%s: dubbla definitioner av ordningsföljd i sektion \"%s\"" + +-#: stdlib/../sysdeps/unix/sysv/linux/ia64/makecontext.c:63 ++#: locale/programs/ld-collate.c:3208 + #, c-format +-msgid "makecontext: does not know how to handle more than 8 arguments\n" +-msgstr "makecontext: kan inte hantera mer n 8 argument\n" ++msgid "%s: invalid number of sorting rules" ++msgstr "%s: ogiltigt antal sorteringsregler" + +-#: stdio-common/../sysdeps/gnu/errlist.c:12 posix/regcomp.c:147 +-#: nis/nis_error.c:29 nis/ypclnt.c:778 nis/ypclnt.c:852 +-msgid "Success" +-msgstr "Lyckat" ++#: locale/programs/ld-collate.c:3235 ++#, c-format ++msgid "%s: multiple order definitions for unnamed section" ++msgstr "%s: flera definitioner av ordningsföljd i namnlös sektion" + +-#. TRANS Operation not permitted; only the owner of the file (or other resource) +-#. TRANS or processes with special privileges can perform the operation. +-#: stdio-common/../sysdeps/gnu/errlist.c:17 +-msgid "Operation not permitted" +-msgstr "Operationen inte tillten" ++#: locale/programs/ld-collate.c:3289 locale/programs/ld-collate.c:3417 ++#: locale/programs/ld-collate.c:3780 ++#, c-format ++msgid "%s: missing `order_end' keyword" ++msgstr "%s: nyckelord \"order_end\" saknas" + +-#. TRANS No such file or directory. This is a ``file doesn't exist'' error +-#. TRANS for ordinary files that are referenced in contexts where they are +-#. TRANS expected to already exist. +-#: stdio-common/../sysdeps/gnu/errlist.c:28 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:32 +-msgid "No such file or directory" +-msgstr "Filen eller katalogen finns inte" ++#: locale/programs/ld-collate.c:3350 ++#, c-format ++msgid "%s: order for collating symbol %.*s not yet defined" ++msgstr "%s: ordningsföljd för kollationssymbol %.*s är inte definierad ännu" ++ ++#: locale/programs/ld-collate.c:3368 ++#, c-format ++msgid "%s: order for collating element %.*s not yet defined" ++msgstr "%s: ordningsföljd för kollationselement %.*s är inte definierad ännu" ++ ++#: locale/programs/ld-collate.c:3379 ++#, c-format ++msgid "%s: cannot reorder after %.*s: symbol not known" ++msgstr "%s: kan inte byta ordning efter %.*s: okänd symbol" ++ ++#: locale/programs/ld-collate.c:3431 locale/programs/ld-collate.c:3792 ++#, c-format ++msgid "%s: missing `reorder-end' keyword" ++msgstr "%s: nyckelord \"reorder-end\" saknas" ++ ++#: locale/programs/ld-collate.c:3465 locale/programs/ld-collate.c:3664 ++#, c-format ++msgid "%s: section `%.*s' not known" ++msgstr "%s: sektion \"%.*s\" okänd" ++ ++#: locale/programs/ld-collate.c:3530 ++#, c-format ++msgid "%s: bad symbol <%.*s>" ++msgstr "%s: ogiltig symbol: <%.*s>" ++ ++#: locale/programs/ld-collate.c:3727 ++#, c-format ++msgid "%s: cannot have `%s' as end of ellipsis range" ++msgstr "%s: kan inte ha \"%s\" som ändpunkt på ellips" ++ ++#: locale/programs/ld-collate.c:3776 ++#, c-format ++msgid "%s: empty category description not allowed" ++msgstr "%s: tom kategoribeskrivning är inte tillåtet" ++ ++#: locale/programs/ld-collate.c:3795 ++#, c-format ++msgid "%s: missing `reorder-sections-end' keyword" ++msgstr "%s: nyckelord \"reorder-sections-end\" saknas" ++ ++#: locale/programs/ld-ctype.c:438 ++#, c-format ++msgid "No character set name specified in charmap" ++msgstr "Inget namn definierat i teckenuppsättning" ++ ++#: locale/programs/ld-ctype.c:467 ++#, c-format ++msgid "character L'\\u%0*x' in class `%s' must be in class `%s'" ++msgstr "tecken L\"\\u%0*x\" i klass \"%s\" måste vara i klass \"%s\"" ++ ++#: locale/programs/ld-ctype.c:482 ++#, c-format ++msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'" ++msgstr "tecken L\"\\u%0*x\" i klass \"%s\" får inte vara i klass \"%s\"" ++ ++#: locale/programs/ld-ctype.c:496 locale/programs/ld-ctype.c:554 ++#, c-format ++msgid "internal error in %s, line %u" ++msgstr "internt fel i %s, rad %u" ++ ++#: locale/programs/ld-ctype.c:525 ++#, c-format ++msgid "character '%s' in class `%s' must be in class `%s'" ++msgstr "tecken \"%s\" i klass \"%s\" måste vara i klass \"%s\"" ++ ++#: locale/programs/ld-ctype.c:541 ++#, c-format ++msgid "character '%s' in class `%s' must not be in class `%s'" ++msgstr "tecken \"%s\" i klass \"%s\" får inte vara i klass \"%s\"" ++ ++#: locale/programs/ld-ctype.c:571 locale/programs/ld-ctype.c:609 ++#, c-format ++msgid " character not in class `%s'" ++msgstr "-tecknet är inte i klass \"%s\"" ++ ++#: locale/programs/ld-ctype.c:583 locale/programs/ld-ctype.c:620 ++#, c-format ++msgid " character must not be in class `%s'" ++msgstr "-tecknet får inte vara i klass \"%s\"" ++ ++#: locale/programs/ld-ctype.c:598 ++#, c-format ++msgid "character not defined in character map" ++msgstr "tecken inte definierat i teckenuppsättning" ++ ++#: locale/programs/ld-ctype.c:712 ++#, c-format ++msgid "`digit' category has not entries in groups of ten" ++msgstr "\"digit\"-kategori har inte poster i grupper av tio" ++ ++#: locale/programs/ld-ctype.c:761 ++#, c-format ++msgid "no input digits defined and none of the standard names in the charmap" ++msgstr "inga siffror för indata definierade och inga standardnamn finns i teckenuppsättningen" ++ ++#: locale/programs/ld-ctype.c:826 ++#, c-format ++msgid "not all characters used in `outdigit' are available in the charmap" ++msgstr "alla tecken i \"outdigit\" är inte tillgängliga i teckenuppsättningen" ++ ++#: locale/programs/ld-ctype.c:843 ++#, c-format ++msgid "not all characters used in `outdigit' are available in the repertoire" ++msgstr "alla tecken i \"outdigit\" är inte tillgängliga i repertoaren" ++ ++#: locale/programs/ld-ctype.c:1243 ++#, c-format ++msgid "character class `%s' already defined" ++msgstr "teckenklass \"%s\" redan definierad" ++ ++#: locale/programs/ld-ctype.c:1249 ++#, c-format ++msgid "implementation limit: no more than %Zd character classes allowed" ++msgstr "implementationsbegränsning: inte fler än %Zd teckenklasser tillåtna" ++ ++#: locale/programs/ld-ctype.c:1275 ++#, c-format ++msgid "character map `%s' already defined" ++msgstr "teckenuppsättning \"%s\" redan definierad" ++ ++#: locale/programs/ld-ctype.c:1281 ++#, c-format ++msgid "implementation limit: no more than %d character maps allowed" ++msgstr "implementationsbegränsning: inte fler än %d teckenuppsättningar tillåtet" ++ ++#: locale/programs/ld-ctype.c:1546 locale/programs/ld-ctype.c:1671 ++#: locale/programs/ld-ctype.c:1777 locale/programs/ld-ctype.c:2466 ++#: locale/programs/ld-ctype.c:3462 ++#, c-format ++msgid "%s: field `%s' does not contain exactly ten entries" ++msgstr "%s: fält \"%s\" innehåller inte exakt tio poster" ++ ++#: locale/programs/ld-ctype.c:1574 locale/programs/ld-ctype.c:2145 ++#, c-format ++msgid "to-value of range is smaller than from-value " ++msgstr "tillvärdet i intervallet är mindre än frånvärdet " ++ ++#: locale/programs/ld-ctype.c:1701 ++msgid "start and end character sequence of range must have the same length" ++msgstr "start- och slutteckensekvens för intervall måste ha samma längd" ++ ++#: locale/programs/ld-ctype.c:1708 ++msgid "to-value character sequence is smaller than from-value sequence" ++msgstr "tillvärdets teckensekvens är mindre än frånvärdets sekvens" ++ ++#: locale/programs/ld-ctype.c:2065 locale/programs/ld-ctype.c:2116 ++msgid "premature end of `translit_ignore' definition" ++msgstr "för tidigt slut på definition för \"translit_ignore\"" ++ ++#: locale/programs/ld-ctype.c:2071 locale/programs/ld-ctype.c:2122 ++#: locale/programs/ld-ctype.c:2164 ++msgid "syntax error" ++msgstr "syntaxfel" ++ ++#: locale/programs/ld-ctype.c:2298 ++#, c-format ++msgid "%s: syntax error in definition of new character class" ++msgstr "%s: syntaxfel i definition av ny teckenklass" ++ ++#: locale/programs/ld-ctype.c:2313 ++#, c-format ++msgid "%s: syntax error in definition of new character map" ++msgstr "%s: syntaxfel i definition av ny teckenuppsättning" ++ ++#: locale/programs/ld-ctype.c:2488 ++msgid "ellipsis range must be marked by two operands of same type" ++msgstr "intervall måste markeras med två operander av samma typ" ++ ++#: locale/programs/ld-ctype.c:2497 ++msgid "with symbolic name range values the absolute ellipsis `...' must not be used" ++msgstr "med symboliska namn som intervallvärden kan inte absoluta intervallet \"...\" användas" ++ ++#: locale/programs/ld-ctype.c:2512 ++msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" ++msgstr "med UCS som intervallvärden måste man använda symboliska hexadecimala intervallet \"..\"" ++ ++#: locale/programs/ld-ctype.c:2526 ++msgid "with character code range values one must use the absolute ellipsis `...'" ++msgstr "med teckenkoder som intervallvärden måste man använda absoluta intervallet \"...\"" ++ ++#: locale/programs/ld-ctype.c:2677 ++#, c-format ++msgid "duplicated definition for mapping `%s'" ++msgstr "dubblerad definition för mappning \"%s\"" ++ ++#: locale/programs/ld-ctype.c:2763 locale/programs/ld-ctype.c:2907 ++#, c-format ++msgid "%s: `translit_start' section does not end with `translit_end'" ++msgstr "%s: sektion \"translit_start\" avslutas inte med \"translit_end\"" ++ ++#: locale/programs/ld-ctype.c:2858 ++#, c-format ++msgid "%s: duplicate `default_missing' definition" ++msgstr "%s: dubbla definitioner av \"default_missing\"" ++ ++#: locale/programs/ld-ctype.c:2863 ++msgid "previous definition was here" ++msgstr "föregående definition var här" ++ ++#: locale/programs/ld-ctype.c:2885 ++#, c-format ++msgid "%s: no representable `default_missing' definition found" ++msgstr "%s: ingen representerbar definition av \"default_missing\" hittades" ++ ++#: locale/programs/ld-ctype.c:3038 ++#, c-format ++msgid "%s: character `%s' not defined in charmap while needed as default value" ++msgstr "%s: tecken \"%s\" inte definierat i teckenuppsättningen men behövs som standardvärde" ++ ++#: locale/programs/ld-ctype.c:3043 locale/programs/ld-ctype.c:3127 ++#: locale/programs/ld-ctype.c:3147 locale/programs/ld-ctype.c:3168 ++#: locale/programs/ld-ctype.c:3189 locale/programs/ld-ctype.c:3210 ++#: locale/programs/ld-ctype.c:3231 locale/programs/ld-ctype.c:3271 ++#: locale/programs/ld-ctype.c:3292 locale/programs/ld-ctype.c:3359 ++#, c-format ++msgid "%s: character `%s' in charmap not representable with one byte" ++msgstr "%s: tecken \"%s\" i teckenuppsättning kan inte representeras med en byte" ++ ++#: locale/programs/ld-ctype.c:3122 locale/programs/ld-ctype.c:3142 ++#: locale/programs/ld-ctype.c:3184 locale/programs/ld-ctype.c:3205 ++#: locale/programs/ld-ctype.c:3226 locale/programs/ld-ctype.c:3266 ++#: locale/programs/ld-ctype.c:3287 locale/programs/ld-ctype.c:3354 ++#: locale/programs/ld-ctype.c:3396 locale/programs/ld-ctype.c:3421 ++#, c-format ++msgid "%s: character `%s' not defined while needed as default value" ++msgstr "%s: tecken \"%s\" inte definierat men behövs som standardvärde" ++ ++#: locale/programs/ld-ctype.c:3163 ++#, c-format ++msgid "character `%s' not defined while needed as default value" ++msgstr "tecken \"%s\" inte definierat men behövs som standardvärde" ++ ++#: locale/programs/ld-ctype.c:3403 locale/programs/ld-ctype.c:3428 ++#, c-format ++msgid "%s: character `%s' needed as default value not representable with one byte" ++msgstr "%s: tecken \"%s\" som behövs som standardvärde kan inte representeras med en byte" ++ ++#: locale/programs/ld-ctype.c:3483 ++#, c-format ++msgid "no output digits defined and none of the standard names in the charmap" ++msgstr "inga siffror för utdata definierade och inga standardnamn finns i teckenuppsättningen" ++ ++#: locale/programs/ld-ctype.c:3774 ++#, c-format ++msgid "%s: transliteration data from locale `%s' not available" ++msgstr "%s: transkriberingsdata för lokal \"%s\" är inte tillgänglig" ++ ++#: locale/programs/ld-ctype.c:3875 ++#, c-format ++msgid "%s: table for class \"%s\": %lu bytes\n" ++msgstr "%s: tabell för klass \"%s\": %lu byte\n" ++ ++#: locale/programs/ld-ctype.c:3944 ++#, c-format ++msgid "%s: table for map \"%s\": %lu bytes\n" ++msgstr "%s: tabell för \"%s\": %lu byte\n" ++ ++#: locale/programs/ld-ctype.c:4077 ++#, c-format ++msgid "%s: table for width: %lu bytes\n" ++msgstr "%s: tabell för teckenstorlek: %lu byte\n" ++ ++#: locale/programs/ld-identification.c:169 ++#, c-format ++msgid "%s: no identification for category `%s'" ++msgstr "%s: ingen idenitifikation för kategori \"%s\"" ++ ++#: locale/programs/ld-identification.c:434 ++#, c-format ++msgid "%s: duplicate category version definition" ++msgstr "%s: dubbla definitioner av kategori" ++ ++#: locale/programs/ld-measurement.c:112 ++#, c-format ++msgid "%s: invalid value for field `%s'" ++msgstr "%s: ogiltigt värde för fält \"%s\"" ++ ++#: locale/programs/ld-messages.c:113 locale/programs/ld-messages.c:147 ++#, c-format ++msgid "%s: field `%s' undefined" ++msgstr "%s: fält \"%s\" är odefinierat" ++ ++#: locale/programs/ld-messages.c:120 locale/programs/ld-messages.c:154 ++#, c-format ++msgid "%s: value for field `%s' must not be an empty string" ++msgstr "%s: värde på fält \"%s\" får inte vara en tom sträng" ++ ++#: locale/programs/ld-messages.c:136 locale/programs/ld-messages.c:170 ++#, c-format ++msgid "%s: no correct regular expression for field `%s': %s" ++msgstr "%s: felaktigt reguljärt uttryck för fält \"%s\": %s" ++ ++#: locale/programs/ld-monetary.c:222 ++#, c-format ++msgid "%s: value of field `int_curr_symbol' has wrong length" ++msgstr "%s: värdet på fält \"int_curr_symbol\" har fel längd" ++ ++#: locale/programs/ld-monetary.c:235 ++#, c-format ++msgid "%s: value of field `int_curr_symbol' does not correspond to a valid name in ISO 4217" ++msgstr "%s: värdet på fält \"int_curr_symbol\" stämmer inte med giltiga namn i ISO 4217" ++ ++#: locale/programs/ld-monetary.c:254 locale/programs/ld-numeric.c:117 ++#, c-format ++msgid "%s: value for field `%s' must not be the empty string" ++msgstr "%s: värde på fält \"%s\" får inte vara tom sträng" ++ ++#: locale/programs/ld-monetary.c:282 locale/programs/ld-monetary.c:312 ++#, c-format ++msgid "%s: value for field `%s' must be in range %d...%d" ++msgstr "%s: värden på fält \"%s\" måste vara i intervallet %d...%d" ++ ++#: locale/programs/ld-monetary.c:744 locale/programs/ld-numeric.c:273 ++#, c-format ++msgid "%s: value for field `%s' must be a single character" ++msgstr "%s: värdet för fält \"%s\" måste vara ett enskilt tecken" ++ ++#: locale/programs/ld-monetary.c:841 locale/programs/ld-numeric.c:317 ++#, c-format ++msgid "%s: `-1' must be last entry in `%s' field" ++msgstr "%s: \"-1\" måste vara sista post i fält \"%s\"" ++ ++#: locale/programs/ld-monetary.c:863 locale/programs/ld-numeric.c:334 ++#, c-format ++msgid "%s: values for field `%s' must be smaller than 127" ++msgstr "%s: värden på fält \"%s\" måste vara mindre än 127" ++ ++#: locale/programs/ld-monetary.c:906 ++msgid "conversion rate value cannot be zero" ++msgstr "omvandlingsvärde kan inte vara noll" ++ ++#: locale/programs/ld-name.c:128 locale/programs/ld-telephone.c:125 ++#: locale/programs/ld-telephone.c:148 ++#, c-format ++msgid "%s: invalid escape sequence in field `%s'" ++msgstr "%s: ogiltig kontrollsekvens i fält \"%s\"" ++ ++#: locale/programs/ld-time.c:246 ++#, c-format ++msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'" ++msgstr "%s: riktningsflagga i sträng %Zd i \"era\"-fält är varken \"+\" eller \"-\"" ++ ++#: locale/programs/ld-time.c:257 ++#, c-format ++msgid "%s: direction flag in string %Zd in `era' field is not a single character" ++msgstr "%s: riktningsflagga i sträng %Zd i \"era\"-fält är inte ett enskilt tecken" ++ ++#: locale/programs/ld-time.c:270 ++#, c-format ++msgid "%s: invalid number for offset in string %Zd in `era' field" ++msgstr "%s: ogiltigt tal för tilläggsvärde i sträng %Zd i \"era\"-fält" ++ ++#: locale/programs/ld-time.c:278 ++#, c-format ++msgid "%s: garbage at end of offset value in string %Zd in `era' field" ++msgstr "%s: skräp i slutet av tilläggsvärde i sträng %Zd i \"era\"-fält" ++ ++#: locale/programs/ld-time.c:329 ++#, c-format ++msgid "%s: invalid starting date in string %Zd in `era' field" ++msgstr "%s: ogiltigt startdatum i sträng %Zd i \"era\"-fält" ++ ++#: locale/programs/ld-time.c:338 ++#, c-format ++msgid "%s: garbage at end of starting date in string %Zd in `era' field " ++msgstr "%s: skräp i slutet av startdatum i sträng %Zd i \"era\"-fält" ++ ++#: locale/programs/ld-time.c:357 ++#, c-format ++msgid "%s: starting date is invalid in string %Zd in `era' field" ++msgstr "%s: startdatum är ogiltigt i sträng %Zd i \"era\"-fält" ++ ++#: locale/programs/ld-time.c:406 ++#, c-format ++msgid "%s: invalid stopping date in string %Zd in `era' field" ++msgstr "%s: ogiltigt slutdatum i sträng %Zd i \"era\"-fält" ++ ++#: locale/programs/ld-time.c:415 ++#, c-format ++msgid "%s: garbage at end of stopping date in string %Zd in `era' field" ++msgstr "%s: skräp i slutet av slutdatum i sträng %Zd i \"era\"-fält" ++ ++#: locale/programs/ld-time.c:434 ++#, c-format ++msgid "%s: stopping date is invalid in string %Zd in `era' field" ++msgstr "%s: slutdatum är ogiltigt i sträng %Zd i \"era\"-fält" ++ ++#: locale/programs/ld-time.c:443 ++#, c-format ++msgid "%s: missing era name in string %Zd in `era' field" ++msgstr "%s: eranamn i sträng %Zd i \"era\"-fält saknas" ++ ++#: locale/programs/ld-time.c:455 ++#, c-format ++msgid "%s: missing era format in string %Zd in `era' field" ++msgstr "%s: eraformat i sträng %Zd i \"era\"-fält saknas" ++ ++#: locale/programs/ld-time.c:496 ++#, c-format ++msgid "%s: third operand for value of field `%s' must not be larger than %d" ++msgstr "%s: tredje operanden för värdet av fält \"%s\" kan inte vara större än %d" ++ ++#: locale/programs/ld-time.c:504 locale/programs/ld-time.c:512 ++#, c-format ++msgid "%s: values of field `%s' must not be larger than %d" ++msgstr "%s: värden på fält \"%s\" får inte vara större än %d" ++ ++#: locale/programs/ld-time.c:520 ++#, c-format ++msgid "%s: values for field `%s' must not be larger than %d" ++msgstr "%s: värden på fält \"%s\" får inte vara större än %d" ++ ++#: locale/programs/ld-time.c:1003 ++#, c-format ++msgid "%s: too few values for field `%s'" ++msgstr "%s: för få värden för fält \"%s\"" ++ ++#: locale/programs/ld-time.c:1048 ++msgid "extra trailing semicolon" ++msgstr "extra avslutande semikolon" ++ ++#: locale/programs/ld-time.c:1051 ++#, c-format ++msgid "%s: too many values for field `%s'" ++msgstr "%s: för många värden för fält \"%s\"" ++ ++#: locale/programs/linereader.c:129 ++msgid "trailing garbage at end of line" ++msgstr "avslutande skräp vid radslutet" ++ ++#: locale/programs/linereader.c:297 ++msgid "garbage at end of number" ++msgstr "skräp i slutet av nummer" ++ ++#: locale/programs/linereader.c:409 ++msgid "garbage at end of character code specification" ++msgstr "skräp i slutet av teckenkodsspecifikation" ++ ++#: locale/programs/linereader.c:495 ++msgid "unterminated symbolic name" ++msgstr "oavslutat symboliskt namn" ++ ++#: locale/programs/linereader.c:622 ++msgid "illegal escape sequence at end of string" ++msgstr "otillåten teckensekvens vid strängslut" ++ ++#: locale/programs/linereader.c:626 locale/programs/linereader.c:854 ++msgid "unterminated string" ++msgstr "oavslutad sträng" ++ ++#: locale/programs/linereader.c:668 ++msgid "non-symbolic character value should not be used" ++msgstr "icke-symboliskt teckenvärde bör inte användas" ++ ++#: locale/programs/linereader.c:815 ++#, c-format ++msgid "symbol `%.*s' not in charmap" ++msgstr "symbol \"%.*s\" finns inte i teckenuppsättning" ++ ++#: locale/programs/linereader.c:836 ++#, c-format ++msgid "symbol `%.*s' not in repertoire map" ++msgstr "symbol \"%.*s\" finns inte i repertoartabell" ++ ++#: locale/programs/locale.c:73 ++msgid "System information:" ++msgstr "Systeminformation:" ++ ++#: locale/programs/locale.c:75 ++msgid "Write names of available locales" ++msgstr "Skriv namn på tillgängliga lokaler" ++ ++#: locale/programs/locale.c:77 ++msgid "Write names of available charmaps" ++msgstr "Skriv namn på tillgängliga teckenuppsättningar" ++ ++#: locale/programs/locale.c:78 ++msgid "Modify output format:" ++msgstr "Ändra utdataformat:" ++ ++#: locale/programs/locale.c:79 ++msgid "Write names of selected categories" ++msgstr "Skriv namn på valda kategorier" ++ ++#: locale/programs/locale.c:80 ++msgid "Write names of selected keywords" ++msgstr "Skriv namn på valda nyckelord" ++ ++#: locale/programs/locale.c:81 ++msgid "Print more information" ++msgstr "Skriv mer information" ++ ++#: locale/programs/locale.c:86 ++msgid "" ++"Get locale-specific information. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Hämta lokalspecifik information. För felrapporteringsinstruktioner, se:\n" ++".\n" ++"Rapportera fel eller synpunkter på översättningen till .\n" ++ ++#: locale/programs/locale.c:91 ++msgid "" ++"NAME\n" ++"[-a|-m]" ++msgstr "" ++"NAMN\n" ++"[-a|-m]" ++ ++#: locale/programs/locale.c:192 ++#, c-format ++msgid "Cannot set LC_CTYPE to default locale" ++msgstr "Kan inte sätta LC_CTYPE till standardlokalen" ++ ++#: locale/programs/locale.c:194 ++#, c-format ++msgid "Cannot set LC_MESSAGES to default locale" ++msgstr "Kan inte sätta LC_MESSAGES till standardlokalen" ++ ++#: locale/programs/locale.c:207 ++#, c-format ++msgid "Cannot set LC_COLLATE to default locale" ++msgstr "Kan inte sätta LC_COLLATE till standardlokalen" ++ ++#: locale/programs/locale.c:223 ++#, c-format ++msgid "Cannot set LC_ALL to default locale" ++msgstr "Kan inte sätta LC_ALL till standardlokalen" ++ ++#: locale/programs/locale.c:499 ++#, c-format ++msgid "while preparing output" ++msgstr "när utdata förbereddes" ++ ++#: locale/programs/localedef.c:119 ++msgid "Input Files:" ++msgstr "Infiler:" ++ ++#: locale/programs/localedef.c:121 ++msgid "Symbolic character names defined in FILE" ++msgstr "Symboliska teckennamn definierade i FILE" ++ ++#: locale/programs/localedef.c:122 ++msgid "Source definitions are found in FILE" ++msgstr "Källdefinitioner finns i FILE" ++ ++#: locale/programs/localedef.c:124 ++msgid "FILE contains mapping from symbolic names to UCS4 values" ++msgstr "FIL innehåller avbildning från symboliska namn till UCS4-värden" ++ ++#: locale/programs/localedef.c:128 ++msgid "Create output even if warning messages were issued" ++msgstr "Skapa utfil även om varningsmeddelanden genererades" ++ ++#: locale/programs/localedef.c:129 ++msgid "Create old-style tables" ++msgstr "Skapa tabeller i gammal stil" ++ ++#: locale/programs/localedef.c:130 ++msgid "Optional output file prefix" ++msgstr "Valfri utfilsprefix" ++ ++#: locale/programs/localedef.c:131 ++msgid "Be strictly POSIX conform" ++msgstr "Var strikt POSIX-konform" ++ ++#: locale/programs/localedef.c:133 ++msgid "Suppress warnings and information messages" ++msgstr "Undertryck varningar och informationsmeddelanden" ++ ++#: locale/programs/localedef.c:134 ++msgid "Print more messages" ++msgstr "Skriv mer meddelanden" ++ ++#: locale/programs/localedef.c:135 ++msgid "Archive control:" ++msgstr "Arkivkontroll:" ++ ++#: locale/programs/localedef.c:137 ++msgid "Don't add new data to archive" ++msgstr "Lägg inte till nya data till arkivet" ++ ++#: locale/programs/localedef.c:139 ++msgid "Add locales named by parameters to archive" ++msgstr "Lägg till lokaler namngivna av parametrar till arkivet" ++ ++#: locale/programs/localedef.c:140 ++msgid "Replace existing archive content" ++msgstr "Ersätt befintligt arkivinnehåll" ++ ++#: locale/programs/localedef.c:142 ++msgid "Remove locales named by parameters from archive" ++msgstr "Ta bort lokaler namngivna av parametrar från arkivet" ++ ++#: locale/programs/localedef.c:143 ++msgid "List content of archive" ++msgstr "Visa innehållet i arkivet" ++ ++#: locale/programs/localedef.c:145 ++msgid "locale.alias file to consult when making archive" ++msgstr "locale.alias-fil som ska användas när arkivet skapas" ++ ++#: locale/programs/localedef.c:150 ++msgid "Compile locale specification" ++msgstr "Kompilera lokalspecifikation" ++ ++#: locale/programs/localedef.c:153 ++msgid "" ++"NAME\n" ++"[--add-to-archive|--delete-from-archive] FILE...\n" ++"--list-archive [FILE]" ++msgstr "" ++"NAMN\n" ++"[--add-to-archive|--delete-from-archive] FIL...\n" ++"--list-archive [FIL]" ++ ++#: locale/programs/localedef.c:231 ++#, c-format ++msgid "cannot create directory for output files" ++msgstr "kan inte skapa katalog för utfiler" ++ ++#: locale/programs/localedef.c:242 ++#, c-format ++msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" ++msgstr "FATALT: systemet definierar inte \"_POSIX2_LOCALEDEF\"" ++ ++#: locale/programs/localedef.c:256 locale/programs/localedef.c:272 ++#: locale/programs/localedef.c:598 locale/programs/localedef.c:618 ++#, c-format ++msgid "cannot open locale definition file `%s'" ++msgstr "kan inte öppna lokaldefinitionsfil \"%s\"" ++ ++#: locale/programs/localedef.c:284 ++#, c-format ++msgid "cannot write output files to `%s'" ++msgstr "kan inte skriva utfiler till \"%s\"" ++ ++#: locale/programs/localedef.c:365 ++#, c-format ++msgid "" ++"System's directory for character maps : %s\n" ++" repertoire maps: %s\n" ++" locale path : %s\n" ++"%s" ++msgstr "" ++"Systemets kataloger för teckentabeller: %s\n" ++" repertoartabeller: %s\n" ++" lokal-sökväg : %s\n" ++"%s" ++ ++#: locale/programs/localedef.c:566 ++#, c-format ++msgid "circular dependencies between locale definitions" ++msgstr "cirkulärt beroende mellan lokaldefinitioner" ++ ++#: locale/programs/localedef.c:572 ++#, c-format ++msgid "cannot add already read locale `%s' a second time" ++msgstr "kan inte lägga till en redan inläst lokal \"%s\" en andra gång" ++ ++#: locale/programs/locarchive.c:87 locale/programs/locarchive.c:256 ++#, c-format ++msgid "cannot create temporary file" ++msgstr "kan inte skapa temporärfil" ++ ++#: locale/programs/locarchive.c:116 locale/programs/locarchive.c:302 ++#, c-format ++msgid "cannot initialize archive file" ++msgstr "kan inte initiera arkivfil" ++ ++#: locale/programs/locarchive.c:123 locale/programs/locarchive.c:309 ++#, c-format ++msgid "cannot resize archive file" ++msgstr "kan inte byta storlek på arkivfil" ++ ++#: locale/programs/locarchive.c:132 locale/programs/locarchive.c:318 ++#: locale/programs/locarchive.c:506 ++#, c-format ++msgid "cannot map archive header" ++msgstr "kan inte läsa arkivhuvud med mmap" ++ ++#: locale/programs/locarchive.c:154 ++#, c-format ++msgid "failed to create new locale archive" ++msgstr "misslyckades med att skapa nytt lokalarkiv" ++ ++#: locale/programs/locarchive.c:166 ++#, c-format ++msgid "cannot change mode of new locale archive" ++msgstr "kan inte ändra åtkomstläge på nytt lokalarkiv" ++ ++#: locale/programs/locarchive.c:250 ++#, c-format ++msgid "cannot map locale archive file" ++msgstr "kan inte öppna lokalarkivfil med mmap" ++ ++#: locale/programs/locarchive.c:326 ++#, c-format ++msgid "cannot lock new archive" ++msgstr "kan inte låsa nytt arkiv" ++ ++#: locale/programs/locarchive.c:375 ++#, c-format ++msgid "cannot extend locale archive file" ++msgstr "kan inte utöka lokalarkivfil" ++ ++#: locale/programs/locarchive.c:384 ++#, c-format ++msgid "cannot change mode of resized locale archive" ++msgstr "kan inte ändra åtkomstläge på storleksändrat lokalarkiv" ++ ++#: locale/programs/locarchive.c:392 ++#, c-format ++msgid "cannot rename new archive" ++msgstr "kan inte byta namn på nytt arkiv" ++ ++#: locale/programs/locarchive.c:445 ++#, c-format ++msgid "cannot open locale archive \"%s\"" ++msgstr "kan inte öppna lokalarkiv \"%s\"" ++ ++#: locale/programs/locarchive.c:450 ++#, c-format ++msgid "cannot stat locale archive \"%s\"" ++msgstr "kan inte ta status på lokalarkiv \"%s\"" ++ ++#: locale/programs/locarchive.c:469 ++#, c-format ++msgid "cannot lock locale archive \"%s\"" ++msgstr "kan inte låsa lokalarkiv \"%s\"" ++ ++#: locale/programs/locarchive.c:492 ++#, c-format ++msgid "cannot read archive header" ++msgstr "kan inte läsa arkivhuvud" ++ ++#: locale/programs/locarchive.c:552 ++#, c-format ++msgid "locale '%s' already exists" ++msgstr "lokal \"%s\" finns redan" ++ ++#: locale/programs/locarchive.c:783 locale/programs/locarchive.c:798 ++#: locale/programs/locarchive.c:810 locale/programs/locarchive.c:822 ++#: locale/programs/locfile.c:343 ++#, c-format ++msgid "cannot add to locale archive" ++msgstr "kan inte lägga till till lokalarkiv" ++ ++#: locale/programs/locarchive.c:977 ++#, c-format ++msgid "locale alias file `%s' not found" ++msgstr "fil \"%s\" för lokalalias hittas inte" ++ ++#: locale/programs/locarchive.c:1121 ++#, c-format ++msgid "Adding %s\n" ++msgstr "Lägger till %s\n" ++ ++#: locale/programs/locarchive.c:1127 ++#, c-format ++msgid "stat of \"%s\" failed: %s: ignored" ++msgstr "ta status på \"%s\" misslyckades: %s: ignorerad" ++ ++#: locale/programs/locarchive.c:1133 ++#, c-format ++msgid "\"%s\" is no directory; ignored" ++msgstr "\"%s\" är inte en katalog, ignorerad" ++ ++#: locale/programs/locarchive.c:1140 ++#, c-format ++msgid "cannot open directory \"%s\": %s: ignored" ++msgstr "kan inte öppna katalog \"%s\": %s: ignorerad" ++ ++#: locale/programs/locarchive.c:1212 ++#, c-format ++msgid "incomplete set of locale files in \"%s\"" ++msgstr "ofullständig uppsättning av lokalfiler i \"%s\"" ++ ++#: locale/programs/locarchive.c:1276 ++#, c-format ++msgid "cannot read all files in \"%s\": ignored" ++msgstr "kan inte läsa alla filer i \"%s\": ignorerad" ++ ++#: locale/programs/locarchive.c:1346 ++#, c-format ++msgid "locale \"%s\" not in archive" ++msgstr "lokal \"%s\" finns inte i arkivet" ++ ++#: locale/programs/locfile.c:131 ++#, c-format ++msgid "argument to `%s' must be a single character" ++msgstr "argumentet till \"%s\" måste vara ett enskilt tecken" ++ ++#: locale/programs/locfile.c:251 ++msgid "syntax error: not inside a locale definition section" ++msgstr "syntaxfel: inte inne i en lokaldefinition" ++ ++#: locale/programs/locfile.c:625 ++#, c-format ++msgid "cannot open output file `%s' for category `%s'" ++msgstr "kan inte öppna utfil \"%s\" för kategori \"%s\"" ++ ++#: locale/programs/locfile.c:649 ++#, c-format ++msgid "failure while writing data for category `%s'" ++msgstr "misslyckades skriva data för kategori \"%s\"" ++ ++#: locale/programs/locfile.c:745 ++#, c-format ++msgid "cannot create output file `%s' for category `%s'" ++msgstr "kan inte skapa utfil \"%s\" för kategori \"%s\"" ++ ++#: locale/programs/locfile.c:781 ++msgid "expect string argument for `copy'" ++msgstr "förväntar strängargument för \"copy\"" ++ ++#: locale/programs/locfile.c:785 ++msgid "locale name should consist only of portable characters" ++msgstr "lokalnamn får endast bestå av portabla tecken" ++ ++#: locale/programs/locfile.c:804 ++msgid "no other keyword shall be specified when `copy' is used" ++msgstr "inget annat nyckelord får anges när \"copy\" används" ++ ++#: locale/programs/repertoire.c:229 locale/programs/repertoire.c:270 ++#: locale/programs/repertoire.c:295 ++#, c-format ++msgid "syntax error in repertoire map definition: %s" ++msgstr "syntaxfel i repertoartabellsdefinition: %s" ++ ++#: locale/programs/repertoire.c:271 ++msgid "no or value given" ++msgstr "inget eller värde angivet" ++ ++#: locale/programs/repertoire.c:331 ++#, c-format ++msgid "cannot save new repertoire map" ++msgstr "kan inte spara ny repertoartabell" ++ ++#: locale/programs/repertoire.c:342 ++#, c-format ++msgid "repertoire map file `%s' not found" ++msgstr "hittar inte repertoartabell \"%s\"" ++ ++#: locale/programs/repertoire.c:449 ++#, c-format ++msgid "<%s> and <%s> are invalid names for range" ++msgstr "<%s> och <%s> är ogiltiga namn för intervall" ++ ++#: locale/programs/repertoire.c:456 ++msgid "upper limit in range is not smaller then lower limit" ++msgstr "övre gräns i intervall är inte mindre än undre gräns" ++ ++#: login/programs/pt_chown.c:74 ++#, c-format ++msgid "Set the owner, group and access permission of the slave pseudo terminal corresponding to the master pseudo terminal passed on file descriptor `%d'. This is the helper program for the `grantpt' function. It is not intended to be run directly from the command line.\n" ++msgstr "Sätt ägare, grupp och åtkomsträttigheter på slavpseudoterminalen som motsvaras av mästerpseudoterminalen given av filidentifierare \"%d\". Detta är hjälpprogrammet för funktionen \"grantpt\". Det är inte tänkt att köras direkt från kommandoraden.\n" ++ ++#: login/programs/pt_chown.c:84 ++#, c-format ++msgid "" ++"The owner is set to the current user, the group is set to `%s', and the access permission is set to `%o'.\n" ++"\n" ++"%s" ++msgstr "" ++"Ägaren sätts till nuvarande användare, gruppen sätts till \"%s\" och åtkomsträttigheter sätts till \"%o\".\n" ++"\n" ++"%s" ++ ++#: login/programs/pt_chown.c:161 ++#, c-format ++msgid "too many arguments" ++msgstr "för många argument" ++ ++#: login/programs/pt_chown.c:169 ++#, c-format ++msgid "needs to be installed setuid `root'" ++msgstr "behöver installeras \"setuid root\"" ++ ++#: malloc/mcheck.c:324 ++msgid "memory is consistent, library is buggy\n" ++msgstr "minnet är konsistent, biblioteket är felaktigt\n" + +-#. TRANS No process matches the specified process ID. +-#: stdio-common/../sysdeps/gnu/errlist.c:37 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:33 +-msgid "No such process" +-msgstr "Processen finns inte" ++#: malloc/mcheck.c:327 ++msgid "memory clobbered before allocated block\n" ++msgstr "minnet förstört före allokerat block\n" + +-#. TRANS Interrupted function call; an asynchronous signal occurred and prevented +-#. TRANS completion of the call. When this happens, you should try the call +-#. TRANS again. +-#. TRANS +-#. TRANS You can choose to have functions resume after a signal that is handled, +-#. TRANS rather than failing with @code{EINTR}; see @ref{Interrupted +-#. TRANS Primitives}. +-#: stdio-common/../sysdeps/gnu/errlist.c:52 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:34 +-msgid "Interrupted system call" +-msgstr "Avbrutet systemanrop" ++#: malloc/mcheck.c:330 ++msgid "memory clobbered past end of allocated block\n" ++msgstr "minnet förstört efter slutet på allokerat block\n" + +-#. TRANS Input/output error; usually used for physical read or write errors. +-#: stdio-common/../sysdeps/gnu/errlist.c:61 +-msgid "Input/output error" +-msgstr "In/ut-fel" ++#: malloc/mcheck.c:333 ++msgid "block freed twice\n" ++msgstr "block frigjort två gånger\n" + +-#. TRANS No such device or address. The system tried to use the device +-#. TRANS represented by a file you specified, and it couldn't find the device. +-#. TRANS This can mean that the device file was installed incorrectly, or that +-#. TRANS the physical device is missing or not correctly attached to the +-#. TRANS computer. +-#: stdio-common/../sysdeps/gnu/errlist.c:74 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:36 +-msgid "No such device or address" +-msgstr "Enheten eller adressen finns inte" ++#: malloc/mcheck.c:336 ++msgid "bogus mcheck_status, library is buggy\n" ++msgstr "felaktig mcheck_status, biblioteket är felaktigt\n" + +-#. TRANS Argument list too long; used when the arguments passed to a new program +-#. TRANS being executed with one of the @code{exec} functions (@pxref{Executing a +-#. TRANS File}) occupy too much memory space. This condition never arises in the +-#. TRANS GNU system. +-#: stdio-common/../sysdeps/gnu/errlist.c:86 +-msgid "Argument list too long" +-msgstr "Argumentlistan fr lng" ++#: malloc/memusage.sh:27 ++msgid "Try `memusage --help' for more information." ++msgstr "Försök med \"memusage --help\" för mer information" + +-#. TRANS Invalid executable file format. This condition is detected by the +-#. TRANS @code{exec} functions; see @ref{Executing a File}. +-#: stdio-common/../sysdeps/gnu/errlist.c:96 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:38 +-msgid "Exec format error" +-msgstr "Formatfel p krbar fil" ++#: malloc/memusage.sh:33 ++msgid "memusage: option `$1' requires an argument" ++msgstr "memusage: flaggan \"$1\" behöver ett argument" + +-#. TRANS Bad file descriptor; for example, I/O on a descriptor that has been +-#. TRANS closed or reading from a descriptor open only for writing (or vice +-#. TRANS versa). +-#: stdio-common/../sysdeps/gnu/errlist.c:107 +-msgid "Bad file descriptor" +-msgstr "Felaktig filidentifierare" ++#: malloc/memusage.sh:39 ++msgid "" ++"Usage: memusage [OPTION]... PROGRAM [PROGRAMOPTION]...\n" ++"Profile memory usage of PROGRAM.\n" ++"\n" ++" -n,--progname=NAME Name of the program file to profile\n" ++" -p,--png=FILE Generate PNG graphic and store it in FILE\n" ++" -d,--data=FILE Generate binary data file and store it in FILE\n" ++" -u,--unbuffered Don't buffer output\n" ++" -b,--buffer=SIZE Collect SIZE entries before writing them out\n" ++" --no-timer Don't collect additional information though timer\n" ++" -m,--mmap Also trace mmap & friends\n" ++"\n" ++" -?,--help Print this help and exit\n" ++" --usage Give a short usage message\n" ++" -V,--version Print version information and exit\n" ++"\n" ++" The following options only apply when generating graphical output:\n" ++" -t,--time-based Make graph linear in time\n" ++" -T,--total Also draw graph of total memory use\n" ++" --title=STRING Use STRING as title of the graph\n" ++" -x,--x-size=SIZE Make graphic SIZE pixels wide\n" ++" -y,--y-size=SIZE Make graphic SIZE pixels high\n" ++"\n" ++"Mandatory arguments to long options are also mandatory for any corresponding\n" ++"short options.\n" ++"\n" ++"For bug reporting instructions, please see:\n" ++"." ++msgstr "" ++"UsageAnvändning: memusage [FLAGGA]... PROGRAM [PROGRAMFLAGGA]...\n" ++"Spåra minnesanvändning för PROGRAM.\n" ++"\n" ++" -n,--progname=NAMN Namn på program att spåra\n" ++" -p,--png=FIL Generera PNG-grafik och spara dem i FIL\n" ++" -d,--data=FIL Generera binärdata och spara det i FIL\n" ++" -u,--unbuffered Buffra inte utdata\n" ++" -b,--buffer=ANTAL Samla ANTAL poster innan de skrivs ut\n" ++" --no-timer Samla inte extra information med hjälp av tidur\n" ++" -m,--mmap Spåra även mmap och dess vänner\n" ++"\n" ++" -?,--help Visa denna hjälptext och avsluta\n" ++" --usage Visa en kort hjälptext\n" ++" -V,--version Visa versionsinformation och avluta\n" ++"\n" ++" Följande flaggor gäller bara när grafik genereras:\n" ++" -t,--time-based Gör grafen linjär i tiden\n" ++" -T,--total Generera även en graf över totalt minnesutnyttjande\n" ++" --title=STRÄNG Använd STRÄNG som titel för grafen.\n" ++" -x,--x-size=ANTAL Gör grafiken ANTAL pixlar bred\n" ++" -y,--y-size=ANTAL Gör grafiken ANTAL pixlar hög\n" ++"\n" ++"Obligatoriska argument för långa flaggor är obligatoriska även för\n" ++"motsvarande korta.\n" ++"\n" ++"För felrapporteringsinstruktioner, se:\n" ++".\n" ++"Rapportera fel eller synpunkter på översättningen till ." + +-#. TRANS There are no child processes. This error happens on operations that are +-#. TRANS supposed to manipulate child processes, when there aren't any processes +-#. TRANS to manipulate. +-#: stdio-common/../sysdeps/gnu/errlist.c:118 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:40 +-msgid "No child processes" +-msgstr "Inga barnprocesser" ++#: malloc/memusage.sh:90 ++msgid "" ++"Syntax: memusage [--data=FILE] [--progname=NAME] [--png=FILE] [--unbuffered]\n" ++" [--buffer=SIZE] [--no-timer] [--time-based] [--total]\n" ++" [--title=STRING] [--x-size=SIZE] [--y-size=SIZE]\n" ++" PROGRAM [PROGRAMOPTION]..." ++msgstr "" ++"Syntax: memusage [--data=FIL] [--progname=NAMN] [--png=FIL] [--unbuffered]\n" ++" [--buffer=ANTAL] [--no-timer] [--time-based] [--total]\n" ++" [--title=STRÄNG] [--x-size=ANTAL] [--y-size=ANTAL]\n" ++" PROGRAM [PROGRAMFLAGGA]..." ++ ++#: malloc/memusage.sh:182 ++msgid "memusage: option `${1##*=}' is ambiguous" ++msgstr "memusage: flaggan \"${1##*=}\" är tvetydig" ++ ++#: malloc/memusage.sh:191 ++msgid "memusage: unrecognized option `$1'" ++msgstr "memusage: okänd flagga \"$1\"" ++ ++#: malloc/memusage.sh:204 ++msgid "No program name given" ++msgstr "Inget programnamn givet" + +-#. TRANS Deadlock avoided; allocating a system resource would have resulted in a +-#. TRANS deadlock situation. The system does not guarantee that it will notice +-#. TRANS all such situations. This error means you got lucky and the system +-#. TRANS noticed; it might just hang. @xref{File Locks}, for an example. +-#: stdio-common/../sysdeps/gnu/errlist.c:130 +-msgid "Resource deadlock avoided" +-msgstr "Resursddlge undveks" ++#: malloc/memusagestat.c:53 ++msgid "Name output file" ++msgstr "Namnresultatfil" + +-#. TRANS No memory available. The system cannot allocate more virtual memory +-#. TRANS because its capacity is full. +-#: stdio-common/../sysdeps/gnu/errlist.c:140 +-msgid "Cannot allocate memory" +-msgstr "Kan inte allokera minne" ++#: malloc/memusagestat.c:54 ++msgid "Title string used in output graphic" ++msgstr "Titelsträng att använda i resultatgrafiken" ++ ++#: malloc/memusagestat.c:55 ++msgid "Generate output linear to time (default is linear to number of function calls)" ++msgstr "Generera utdata linjär i tiden (standardvärde är linjär mot anta funktionsanrop)" ++ ++#: malloc/memusagestat.c:57 ++msgid "Also draw graph for total memory consumption" ++msgstr "Visa också en graf av totala minnesåtgången" ++ ++#: malloc/memusagestat.c:58 ++msgid "make output graphic VALUE pixel wide" ++msgstr "gör resultatgrafiken VALUE pixlar bred" ++ ++#: malloc/memusagestat.c:59 ++msgid "make output graphic VALUE pixel high" ++msgstr "gör resultatgrafiken VALUE pixlar hög" ++ ++#: malloc/memusagestat.c:64 ++msgid "Generate graphic from memory profiling data" ++msgstr "Generera grafik från data från minnesprofilering" ++ ++#: malloc/memusagestat.c:67 ++msgid "DATAFILE [OUTFILE]" ++msgstr "DATAFIL [UTFIL]" ++ ++#: misc/error.c:118 timezone/zic.c:396 ++msgid "Unknown system error" ++msgstr "Okänt systemfel" ++ ++#: nis/nis_callback.c:189 ++msgid "unable to free arguments" ++msgstr "kan inte avallokera argument" ++ ++#: nis/nis_error.h:1 nis/ypclnt.c:822 nis/ypclnt.c:910 posix/regcomp.c:132 ++#: sysdeps/gnu/errlist.c:20 ++msgid "Success" ++msgstr "Lyckat" ++ ++#: nis/nis_error.h:2 ++msgid "Probable success" ++msgstr "Troligtvis lyckat" ++ ++#: nis/nis_error.h:3 ++msgid "Not found" ++msgstr "Inte funnet" ++ ++#: nis/nis_error.h:4 ++msgid "Probably not found" ++msgstr "Förmodligen inte funnen" ++ ++#: nis/nis_error.h:5 ++msgid "Cache expired" ++msgstr "Cache gick ur tiden" ++ ++#: nis/nis_error.h:6 ++msgid "NIS+ servers unreachable" ++msgstr "NIS+ servers kan inte nås" ++ ++#: nis/nis_error.h:7 ++msgid "Unknown object" ++msgstr "Okänt objekt" ++ ++#: nis/nis_error.h:8 ++msgid "Server busy, try again" ++msgstr "Server upptagen, försök igen" ++ ++#: nis/nis_error.h:9 ++msgid "Generic system error" ++msgstr "Generiskt systemfel" ++ ++#: nis/nis_error.h:10 ++msgid "First/next chain broken" ++msgstr "Första/Nästa-kedja bruten" + + #. TRANS Permission denied; the file permissions do not allow the attempted operation. +-#: stdio-common/../sysdeps/gnu/errlist.c:149 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:43 +-#: nis/nis_error.c:39 nis/ypclnt.c:808 ++#: nis/nis_error.h:11 nis/ypclnt.c:867 sysdeps/gnu/errlist.c:157 + msgid "Permission denied" +-msgstr "tkomst nekas" ++msgstr "Åtkomst nekas" + +-#. TRANS Bad address; an invalid pointer was detected. +-#. TRANS In the GNU system, this error never happens; you get a signal instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:159 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:44 +-msgid "Bad address" +-msgstr "Felaktig adress" ++#: nis/nis_error.h:12 ++msgid "Not owner" ++msgstr "Inte ägare" + +-#. TRANS A file that isn't a block special file was given in a situation that +-#. TRANS requires one. For example, trying to mount an ordinary file as a file +-#. TRANS system in Unix gives this error. +-#: stdio-common/../sysdeps/gnu/errlist.c:170 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:45 +-msgid "Block device required" +-msgstr "Blockspecialfil krvs" ++#: nis/nis_error.h:13 ++msgid "Name not served by this server" ++msgstr "Namn hanteras inte av denna server" + +-#. TRANS Resource busy; a system resource that can't be shared is already in use. +-#. TRANS For example, if you try to delete a file that is the root of a currently +-#. TRANS mounted filesystem, you get this error. +-#: stdio-common/../sysdeps/gnu/errlist.c:181 +-msgid "Device or resource busy" +-msgstr "Enhet eller resurs upptagen" ++#: nis/nis_error.h:14 ++msgid "Server out of memory" ++msgstr "Server har slut på minne" + +-#. TRANS File exists; an existing file was specified in a context where it only +-#. TRANS makes sense to specify a new file. +-#: stdio-common/../sysdeps/gnu/errlist.c:191 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:47 +-msgid "File exists" +-msgstr "Filen existerar" ++#: nis/nis_error.h:15 ++msgid "Object with same name exists" ++msgstr "Objekt med samma namn existerar" + +-#. TRANS An attempt to make an improper link across file systems was detected. +-#. TRANS This happens not only when you use @code{link} (@pxref{Hard Links}) but +-#. TRANS also when you rename a file with @code{rename} (@pxref{Renaming Files}). +-#: stdio-common/../sysdeps/gnu/errlist.c:202 +-msgid "Invalid cross-device link" +-msgstr "Ogiltig lnk ver skilda enheter" ++#: nis/nis_error.h:16 ++msgid "Not master server for this domain" ++msgstr "Ingen huvudserver för denna domän" + +-#. TRANS The wrong type of device was given to a function that expects a +-#. TRANS particular sort of device. +-#: stdio-common/../sysdeps/gnu/errlist.c:212 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:49 +-msgid "No such device" +-msgstr "Enheten finns inte" ++#: nis/nis_error.h:17 ++msgid "Invalid object for operation" ++msgstr "Ogiltigt objekt för operationen" + +-#. TRANS A file that isn't a directory was specified when a directory is required. +-#: stdio-common/../sysdeps/gnu/errlist.c:221 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:50 +-msgid "Not a directory" +-msgstr "Inte en katalog" ++#: nis/nis_error.h:18 ++msgid "Malformed name, or illegal name" ++msgstr "Felaktigt namn eller otillåtet namn" + +-#. TRANS File is a directory; you cannot open a directory for writing, +-#. TRANS or create or remove hard links to it. +-#: stdio-common/../sysdeps/gnu/errlist.c:231 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:51 +-msgid "Is a directory" +-msgstr "r en katalog" ++#: nis/nis_error.h:19 ++msgid "Unable to create callback" ++msgstr "Kan inte skapa återanrop" + +-#. TRANS Invalid argument. This is used to indicate various kinds of problems +-#. TRANS with passing the wrong argument to a library function. +-#: stdio-common/../sysdeps/gnu/errlist.c:241 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:52 +-msgid "Invalid argument" +-msgstr "Ogiltigt argument" ++#: nis/nis_error.h:20 ++msgid "Results sent to callback proc" ++msgstr "Resultat är skickade till återanropsprocessen" + +-#. TRANS The current process has too many files open and can't open any more. +-#. TRANS Duplicate descriptors do count toward this limit. +-#. TRANS +-#. TRANS In BSD and GNU, the number of open files is controlled by a resource +-#. TRANS limit that can usually be increased. If you get this error, you might +-#. TRANS want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited; +-#. TRANS @pxref{Limits on Resources}. +-#: stdio-common/../sysdeps/gnu/errlist.c:256 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:54 +-msgid "Too many open files" +-msgstr "Fr mnga ppna filer" ++#: nis/nis_error.h:21 ++msgid "Not found, no such name" ++msgstr "Inte hittad, inget sådant namn" + +-#. TRANS There are too many distinct file openings in the entire system. Note +-#. TRANS that any number of linked channels count as just one file opening; see +-#. TRANS @ref{Linked Channels}. This error never occurs in the GNU system. +-#: stdio-common/../sysdeps/gnu/errlist.c:267 +-msgid "Too many open files in system" +-msgstr "Fr mnga ppna filer i systemet" ++#: nis/nis_error.h:22 ++msgid "Name/entry isn't unique" ++msgstr "Namn/post är inte unik" + +-#. TRANS Inappropriate I/O control operation, such as trying to set terminal +-#. TRANS modes on an ordinary file. +-#: stdio-common/../sysdeps/gnu/errlist.c:277 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:55 +-msgid "Inappropriate ioctl for device" +-msgstr "Olmplig \"ioctl\" fr enhet" ++#: nis/nis_error.h:23 ++msgid "Modification failed" ++msgstr "Ändring misslyckades" + +-#. TRANS An attempt to execute a file that is currently open for writing, or +-#. TRANS write to a file that is currently being executed. Often using a +-#. TRANS debugger to run a program is considered having it open for writing and +-#. TRANS will cause this error. (The name stands for ``text file busy''.) This +-#. TRANS is not an error in the GNU system; the text is copied as necessary. +-#: stdio-common/../sysdeps/gnu/errlist.c:290 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:56 +-msgid "Text file busy" +-msgstr "Kodfil upptagen" ++#: nis/nis_error.h:24 ++msgid "Database for table does not exist" ++msgstr "Databas för tabell existerar inte" + +-#. TRANS File too big; the size of a file would be larger than allowed by the system. +-#: stdio-common/../sysdeps/gnu/errlist.c:299 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:57 +-msgid "File too large" +-msgstr "Fil fr stor" ++#: nis/nis_error.h:25 ++msgid "Entry/table type mismatch" ++msgstr "Post/tabell-typer är inkompatibila" + +-#. TRANS No space left on device; write operation on a file failed because the +-#. TRANS disk is full. +-#: stdio-common/../sysdeps/gnu/errlist.c:309 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:58 +-msgid "No space left on device" +-msgstr "Enheten r full" ++#: nis/nis_error.h:26 ++msgid "Link points to illegal name" ++msgstr "Länk pekar på ett otillåtet namn" + +-#. TRANS Invalid seek operation (such as on a pipe). +-#: stdio-common/../sysdeps/gnu/errlist.c:318 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:59 +-msgid "Illegal seek" +-msgstr "Otillten skning" ++#: nis/nis_error.h:27 ++msgid "Partial success" ++msgstr "Delvis lyckat" + +-#. TRANS An attempt was made to modify something on a read-only file system. +-#: stdio-common/../sysdeps/gnu/errlist.c:327 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:60 +-msgid "Read-only file system" +-msgstr "Filsystemet endast lsbart" ++#: nis/nis_error.h:28 ++msgid "Too many attributes" ++msgstr "För många attribut" + +-#. TRANS Too many links; the link count of a single file would become too large. +-#. TRANS @code{rename} can cause this error if the file being renamed already has +-#. TRANS as many links as it can take (@pxref{Renaming Files}). +-#: stdio-common/../sysdeps/gnu/errlist.c:338 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:61 +-msgid "Too many links" +-msgstr "Fr mnga lnkar" ++#: nis/nis_error.h:29 ++msgid "Error in RPC subsystem" ++msgstr "Fel i RPC-delsystem" + +-#. TRANS Domain error; used by mathematical functions when an argument value does +-#. TRANS not fall into the domain over which the function is defined. +-#: stdio-common/../sysdeps/gnu/errlist.c:361 +-msgid "Numerical argument out of domain" +-msgstr "Numeriskt argument r utanfr omrdet" ++#: nis/nis_error.h:30 ++msgid "Missing or malformed attribute" ++msgstr "Saknat eller felaktigt attribut" + +-#. TRANS Range error; used by mathematical functions when the result value is +-#. TRANS not representable because of overflow or underflow. +-#: stdio-common/../sysdeps/gnu/errlist.c:371 +-msgid "Numerical result out of range" +-msgstr "Numeriskt resultat r utanfr giltigt omrde" ++#: nis/nis_error.h:31 ++msgid "Named object is not searchable" ++msgstr "Namngivet objekt är inte sökbart" + +-#. TRANS Resource temporarily unavailable; the call might work if you try again +-#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN}; +-#. TRANS they are always the same in the GNU C library. +-#. TRANS +-#. TRANS This error can happen in a few different situations: +-#. TRANS +-#. TRANS @itemize @bullet +-#. TRANS @item +-#. TRANS An operation that would block was attempted on an object that has +-#. TRANS non-blocking mode selected. Trying the same operation again will block +-#. TRANS until some external condition makes it possible to read, write, or +-#. TRANS connect (whatever the operation). You can use @code{select} to find out +-#. TRANS when the operation will be possible; @pxref{Waiting for I/O}. +-#. TRANS +-#. TRANS @strong{Portability Note:} In many older Unix systems, this condition +-#. TRANS was indicated by @code{EWOULDBLOCK}, which was a distinct error code +-#. TRANS different from @code{EAGAIN}. To make your program portable, you should +-#. TRANS check for both codes and treat them the same. +-#. TRANS +-#. TRANS @item +-#. TRANS A temporary resource shortage made an operation impossible. @code{fork} +-#. TRANS can return this error. It indicates that the shortage is expected to +-#. TRANS pass, so your program can try the call again later and it may succeed. +-#. TRANS It is probably a good idea to delay for a few seconds before trying it +-#. TRANS again, to allow time for other processes to release scarce resources. +-#. TRANS Such shortages are usually fairly serious and affect the whole system, +-#. TRANS so usually an interactive program should report the error to the user +-#. TRANS and return to its command loop. +-#. TRANS @end itemize +-#: stdio-common/../sysdeps/gnu/errlist.c:408 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:41 +-msgid "Resource temporarily unavailable" +-msgstr "Resursen tillflligt otillgnglig" ++#: nis/nis_error.h:32 ++msgid "Error while talking to callback proc" ++msgstr "Fel vid kommunikation till återanropsprocess" ++ ++#: nis/nis_error.h:33 ++msgid "Non NIS+ namespace encountered" ++msgstr "Icke-NIS+ namnrymd påträffad" + +-#. TRANS In the GNU C library, this is another name for @code{EAGAIN} (above). +-#. TRANS The values are always the same, on every operating system. +-#. TRANS +-#. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a +-#. TRANS separate error code. +-#: stdio-common/../sysdeps/gnu/errlist.c:421 +-msgid "Operation would block" +-msgstr "Operationen skulle blockera" ++#: nis/nis_error.h:34 ++msgid "Illegal object type for operation" ++msgstr "Otillåten objekttyp för operationen" + +-#. TRANS An operation that cannot complete immediately was initiated on an object +-#. TRANS that has non-blocking mode selected. Some functions that must always +-#. TRANS block (such as @code{connect}; @pxref{Connecting}) never return +-#. TRANS @code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that +-#. TRANS the operation has begun and will take some time. Attempts to manipulate +-#. TRANS the object before the call completes return @code{EALREADY}. You can +-#. TRANS use the @code{select} function to find out when the pending operation +-#. TRANS has completed; @pxref{Waiting for I/O}. +-#: stdio-common/../sysdeps/gnu/errlist.c:437 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:180 +-msgid "Operation now in progress" +-msgstr "Operationen pgr nu" ++#: nis/nis_error.h:35 ++msgid "Passed object is not the same object on server" ++msgstr "Skickat objekt är inte samma objekt hos servern" + +-#. TRANS An operation is already in progress on an object that has non-blocking +-#. TRANS mode selected. +-#: stdio-common/../sysdeps/gnu/errlist.c:447 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:179 +-msgid "Operation already in progress" +-msgstr "Operationen pgr redan" ++#: nis/nis_error.h:36 ++msgid "Modify operation failed" ++msgstr "Ändringsoperation misslyckades" + +-#. TRANS A file that isn't a socket was specified when a socket is required. +-#: stdio-common/../sysdeps/gnu/errlist.c:456 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:125 +-msgid "Socket operation on non-socket" +-msgstr "Uttagsoperation p icke-uttag (socket)" ++#: nis/nis_error.h:37 ++msgid "Query illegal for named table" ++msgstr "Fråga otillåten för namngiven tabell" + +-#. TRANS The size of a message sent on a socket was larger than the supported +-#. TRANS maximum size. +-#: stdio-common/../sysdeps/gnu/errlist.c:466 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:127 +-msgid "Message too long" +-msgstr "Meddelandet fr lngt" ++#: nis/nis_error.h:38 ++msgid "Attempt to remove a non-empty table" ++msgstr "Försök att ta bort en tabell som inte är tom" + +-#. TRANS The socket type does not support the requested communications protocol. +-#: stdio-common/../sysdeps/gnu/errlist.c:475 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:128 +-msgid "Protocol wrong type for socket" +-msgstr "Fel protokolltyp fr uttag (socket)" ++#: nis/nis_error.h:39 ++msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" ++msgstr "Fel vid läsande av NIS+ kallstartsfil. Är NIS+ installerad?" + +-#. TRANS You specified a socket option that doesn't make sense for the +-#. TRANS particular protocol being used by the socket. @xref{Socket Options}. +-#: stdio-common/../sysdeps/gnu/errlist.c:485 +-msgid "Protocol not available" +-msgstr "Protokollet inte tillgngligt" ++#: nis/nis_error.h:40 ++msgid "Full resync required for directory" ++msgstr "Fullständig resynkronisering krävs för katalog" + +-#. TRANS The socket domain does not support the requested communications protocol +-#. TRANS (perhaps because the requested protocol is completely invalid). +-#. TRANS @xref{Creating a Socket}. +-#: stdio-common/../sysdeps/gnu/errlist.c:496 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:150 +-msgid "Protocol not supported" +-msgstr "Protokollet stds ej" ++#: nis/nis_error.h:41 ++msgid "NIS+ operation failed" ++msgstr "NIS+ operation misslyckades" + +-#. TRANS The socket type is not supported. +-#: stdio-common/../sysdeps/gnu/errlist.c:505 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:151 +-msgid "Socket type not supported" +-msgstr "Uttagstyp (socket) stds ej" ++#: nis/nis_error.h:42 ++msgid "NIS+ service is unavailable or not installed" ++msgstr "NIS+-tjänst är otillgänglig eller inte installerad" + +-#. TRANS The operation you requested is not supported. Some socket functions +-#. TRANS don't make sense for all types of sockets, and others may not be +-#. TRANS implemented for all communications protocols. In the GNU system, this +-#. TRANS error can happen for many calls when the object does not support the +-#. TRANS particular operation; it is a generic indication that the server knows +-#. TRANS nothing to do for that call. +-#: stdio-common/../sysdeps/gnu/errlist.c:519 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:78 +-msgid "Operation not supported" +-msgstr "Operationen stds ej" ++#: nis/nis_error.h:43 ++msgid "Yes, 42 is the meaning of life" ++msgstr "Ja, meningen med livet är 42" + +-#. TRANS The socket communications protocol family you requested is not supported. +-#: stdio-common/../sysdeps/gnu/errlist.c:528 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:153 +-msgid "Protocol family not supported" +-msgstr "Protokollfamiljen stds ej" ++#: nis/nis_error.h:44 ++msgid "Unable to authenticate NIS+ server" ++msgstr "Kan inte bevisa äkthet hos NIS+ server" + +-#. TRANS The address family specified for a socket is not supported; it is +-#. TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}. +-#: stdio-common/../sysdeps/gnu/errlist.c:538 +-msgid "Address family not supported by protocol" +-msgstr "Adressfamiljen stds inte av protokollet" ++#: nis/nis_error.h:45 ++msgid "Unable to authenticate NIS+ client" ++msgstr "Kan inte bevisa äkthet hos NIS+ klient" + +-#. TRANS The requested socket address is already in use. @xref{Socket Addresses}. +-#: stdio-common/../sysdeps/gnu/errlist.c:547 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:155 +-msgid "Address already in use" +-msgstr "Adressen upptagen" ++#: nis/nis_error.h:46 ++msgid "No file space on server" ++msgstr "Inget filutrymme hos servern" + +-#. TRANS The requested socket address is not available; for example, you tried +-#. TRANS to give a socket a name that doesn't match the local host name. +-#. TRANS @xref{Socket Addresses}. +-#: stdio-common/../sysdeps/gnu/errlist.c:558 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:156 +-msgid "Cannot assign requested address" +-msgstr "Kan inte tilldela begrd adress" ++#: nis/nis_error.h:47 ++msgid "Unable to create process on server" ++msgstr "Kan inte skapa process hos server" + +-#. TRANS A socket operation failed because the network was down. +-#: stdio-common/../sysdeps/gnu/errlist.c:567 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:157 +-msgid "Network is down" +-msgstr "Ntverket r nere" ++#: nis/nis_error.h:48 ++msgid "Master server busy, full dump rescheduled." ++msgstr "Huvudserver är upptagen, full dump omskedulerad." + +-#. TRANS A socket operation failed because the subnet containing the remote host +-#. TRANS was unreachable. +-#: stdio-common/../sysdeps/gnu/errlist.c:577 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:158 +-msgid "Network is unreachable" +-msgstr "Ntverket kan inte ns" ++#: nis/nis_local_names.c:122 ++#, c-format ++msgid "LOCAL entry for UID %d in directory %s not unique\n" ++msgstr "LOCAL-post för UID %d i katalog %s är inte unik\n" + +-#. TRANS A network connection was reset because the remote host crashed. +-#: stdio-common/../sysdeps/gnu/errlist.c:586 +-msgid "Network dropped connection on reset" +-msgstr "Ntverket tog bort frbindelsen vid omstart" ++#: nis/nis_print.c:51 ++msgid "UNKNOWN" ++msgstr "OKÄND" + +-#. TRANS A network connection was aborted locally. +-#: stdio-common/../sysdeps/gnu/errlist.c:595 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:160 +-msgid "Software caused connection abort" +-msgstr "Mjukvara orsakade frbindelsebrott" ++#: nis/nis_print.c:109 ++msgid "BOGUS OBJECT\n" ++msgstr "SKENOBJEKT\n" + +-#. TRANS A network connection was closed for reasons outside the control of the +-#. TRANS local host, such as by the remote machine rebooting or an unrecoverable +-#. TRANS protocol violation. +-#: stdio-common/../sysdeps/gnu/errlist.c:606 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:161 +-msgid "Connection reset by peer" +-msgstr "Frbindelse borttagen av partnern" ++#: nis/nis_print.c:112 ++msgid "NO OBJECT\n" ++msgstr "INGET OBJEKT\n" + +-#. TRANS The kernel's buffers for I/O operations are all in use. In GNU, this +-#. TRANS error is always synonymous with @code{ENOMEM}; you may get one or the +-#. TRANS other from network operations. +-#: stdio-common/../sysdeps/gnu/errlist.c:617 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:162 +-msgid "No buffer space available" +-msgstr "Ingen buffertplats tillgnglig" ++#: nis/nis_print.c:115 ++msgid "DIRECTORY\n" ++msgstr "KATALOG\n" + +-#. TRANS You tried to connect a socket that is already connected. +-#. TRANS @xref{Connecting}. +-#: stdio-common/../sysdeps/gnu/errlist.c:627 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:163 +-msgid "Transport endpoint is already connected" +-msgstr "Transportslutpunkten r redan frbunden" ++#: nis/nis_print.c:118 ++msgid "GROUP\n" ++msgstr "GRUPP\n" + +-#. TRANS The socket is not connected to anything. You get this error when you +-#. TRANS try to transmit data over a socket, without first specifying a +-#. TRANS destination for the data. For a connectionless socket (for datagram +-#. TRANS protocols, such as UDP), you get @code{EDESTADDRREQ} instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:639 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:164 +-msgid "Transport endpoint is not connected" +-msgstr "Transportslutpunkten r inte frbunden" ++#: nis/nis_print.c:121 ++msgid "TABLE\n" ++msgstr "TABELL\n" + +-#. TRANS No default destination address was set for the socket. You get this +-#. TRANS error when you try to transmit data over a connectionless socket, +-#. TRANS without first specifying a destination for the data with @code{connect}. +-#: stdio-common/../sysdeps/gnu/errlist.c:650 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:126 +-msgid "Destination address required" +-msgstr "Destination krvs" ++#: nis/nis_print.c:124 ++msgid "ENTRY\n" ++msgstr "POST\n" + +-#. TRANS The socket has already been shut down. +-#: stdio-common/../sysdeps/gnu/errlist.c:659 +-msgid "Cannot send after transport endpoint shutdown" +-msgstr "Kan inte skicka efter att transportslutpunkten stngts" ++#: nis/nis_print.c:127 ++msgid "LINK\n" ++msgstr "LÄNK\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:668 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:174 +-msgid "Too many references: cannot splice" +-msgstr "Fr mnga referenser: kan inte skarva" ++#: nis/nis_print.c:130 ++msgid "PRIVATE\n" ++msgstr "PRIVAT\n" + +-#. TRANS A socket operation with a specified timeout received no response during +-#. TRANS the timeout period. +-#: stdio-common/../sysdeps/gnu/errlist.c:678 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:175 +-msgid "Connection timed out" +-msgstr "Frbindelsen dog ut (timeout)" ++#: nis/nis_print.c:133 ++msgid "(Unknown object)\n" ++msgstr "(Okänt objekt)\n" + +-#. TRANS A remote host refused to allow the network connection (typically because +-#. TRANS it is not running the requested service). +-#: stdio-common/../sysdeps/gnu/errlist.c:688 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:176 +-msgid "Connection refused" +-msgstr "Frbindelse vgras" ++#: nis/nis_print.c:167 ++#, c-format ++msgid "Name : `%s'\n" ++msgstr "Namn: \"%s\"\n" + +-#. TRANS Too many levels of symbolic links were encountered in looking up a file name. +-#. TRANS This often indicates a cycle of symbolic links. +-#: stdio-common/../sysdeps/gnu/errlist.c:698 +-msgid "Too many levels of symbolic links" +-msgstr "Fr mnga niver av symboliska lnkar" ++#: nis/nis_print.c:168 ++#, c-format ++msgid "Type : %s\n" ++msgstr "Typ: %s\n" + +-#. TRANS Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for +-#. TRANS Files}) or host name too long (in @code{gethostname} or +-#. TRANS @code{sethostname}; @pxref{Host Identification}). +-#: stdio-common/../sysdeps/gnu/errlist.c:709 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:108 +-msgid "File name too long" +-msgstr "Filnamn fr lngt" ++#: nis/nis_print.c:173 ++msgid "Master Server :\n" ++msgstr "Huvudserver:\n" + +-#. TRANS The remote host for a requested network connection is down. +-#: stdio-common/../sysdeps/gnu/errlist.c:718 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:177 +-msgid "Host is down" +-msgstr "Vrddator r nere" ++#: nis/nis_print.c:175 ++msgid "Replicate :\n" ++msgstr "Replikerad:\n" + +-#. TRANS The remote host for a requested network connection is not reachable. +-#: stdio-common/../sysdeps/gnu/errlist.c:727 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:178 +-msgid "No route to host" +-msgstr "Ingen vg till vrd" ++#: nis/nis_print.c:176 ++#, c-format ++msgid "\tName : %s\n" ++msgstr "\tNamn : %s\n" + +-#. TRANS Directory not empty, where an empty directory was expected. Typically, +-#. TRANS this error occurs when you are trying to delete a directory. +-#: stdio-common/../sysdeps/gnu/errlist.c:737 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:123 +-msgid "Directory not empty" +-msgstr "Katalog inte tom" ++#: nis/nis_print.c:177 ++msgid "\tPublic Key : " ++msgstr "\tPublik nyckel: " + +-#. TRANS This means that the per-user limit on new process would be exceeded by +-#. TRANS an attempted @code{fork}. @xref{Limits on Resources}, for details on +-#. TRANS the @code{RLIMIT_NPROC} limit. +-#: stdio-common/../sysdeps/gnu/errlist.c:748 +-msgid "Too many processes" +-msgstr "Fr mnga processer" ++#: nis/nis_print.c:181 ++msgid "None.\n" ++msgstr "Ingen.\n" + +-#. TRANS The file quota system is confused because there are too many users. +-#. TRANS @c This can probably happen in a GNU system when using NFS. +-#: stdio-common/../sysdeps/gnu/errlist.c:758 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:124 +-msgid "Too many users" +-msgstr "Fr mnga anvndare" ++#: nis/nis_print.c:184 ++#, c-format ++msgid "Diffie-Hellmann (%d bits)\n" ++msgstr "Diffie-Hellmann (%d bitar)\n" + +-#. TRANS The user's disk quota was exceeded. +-#: stdio-common/../sysdeps/gnu/errlist.c:767 +-msgid "Disk quota exceeded" +-msgstr "Diskkvot verskriden" ++#: nis/nis_print.c:189 ++#, c-format ++msgid "RSA (%d bits)\n" ++msgstr "RSA (%d bitar)\n" + +-#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS +-#. TRANS system which is due to file system rearrangements on the server host. +-#. TRANS Repairing this condition usually requires unmounting and remounting +-#. TRANS the NFS file system on the local host. +-#: stdio-common/../sysdeps/gnu/errlist.c:779 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:181 +-msgid "Stale NFS file handle" +-msgstr "Frlegat NFS-filhandtag" ++#: nis/nis_print.c:192 ++msgid "Kerberos.\n" ++msgstr "Kerberos.\n" + +-#. TRANS An attempt was made to NFS-mount a remote file system with a file name that +-#. TRANS already specifies an NFS-mounted file. +-#. TRANS (This is an error on some operating systems, but we expect it to work +-#. TRANS properly on the GNU system, making this error code impossible.) +-#: stdio-common/../sysdeps/gnu/errlist.c:791 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:96 +-msgid "Object is remote" +-msgstr "r ett fjrrobjekt" ++#: nis/nis_print.c:195 ++#, c-format ++msgid "Unknown (type = %d, bits = %d)\n" ++msgstr "Okänd (typ = %d, bitar = %d)\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:800 +-msgid "RPC struct is bad" +-msgstr "RPC-struktur dlig" ++#: nis/nis_print.c:206 ++#, c-format ++msgid "\tUniversal addresses (%u)\n" ++msgstr "\tUniversella adresser (%u)\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:809 +-msgid "RPC version wrong" +-msgstr "RPC-version fel" ++#: nis/nis_print.c:228 ++msgid "Time to live : " ++msgstr "Livslängd: " ++ ++#: nis/nis_print.c:230 ++msgid "Default Access rights :\n" ++msgstr "Standard åtkomsträttigheter:\n" ++ ++#: nis/nis_print.c:239 ++#, c-format ++msgid "\tType : %s\n" ++msgstr "\tTyp : %s\n" ++ ++#: nis/nis_print.c:240 ++msgid "\tAccess rights: " ++msgstr "\tRättigheter : " ++ ++#: nis/nis_print.c:254 ++msgid "Group Flags :" ++msgstr "Gruppflaggor: " ++ ++#: nis/nis_print.c:257 ++msgid "" ++"\n" ++"Group Members :\n" ++msgstr "" ++"\n" ++"Gruppmedlemmar:\n" ++ ++#: nis/nis_print.c:269 ++#, c-format ++msgid "Table Type : %s\n" ++msgstr "Tabelltyp : %s\n" ++ ++#: nis/nis_print.c:270 ++#, c-format ++msgid "Number of Columns : %d\n" ++msgstr "Antal kolumner : %d\n" ++ ++#: nis/nis_print.c:271 ++#, c-format ++msgid "Character Separator : %c\n" ++msgstr "Teckenseparator : %c\n" ++ ++#: nis/nis_print.c:272 ++#, c-format ++msgid "Search Path : %s\n" ++msgstr "Sökväg : %s\n" ++ ++#: nis/nis_print.c:273 ++msgid "Columns :\n" ++msgstr "Kolumner :\n" ++ ++#: nis/nis_print.c:276 ++#, c-format ++msgid "\t[%d]\tName : %s\n" ++msgstr "\t[%d]\tNamn : %s\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:818 +-msgid "RPC program not available" +-msgstr "RPC-programmet inte tillgngligt" ++#: nis/nis_print.c:278 ++msgid "\t\tAttributes : " ++msgstr "\t\tAttribut : " + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:827 +-msgid "RPC program version wrong" +-msgstr "RPC-programversion fel" ++#: nis/nis_print.c:280 ++msgid "\t\tAccess Rights : " ++msgstr "\t\tRättigheter : " + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:836 +-msgid "RPC bad procedure for program" +-msgstr "RPC dlig procedur fr program" ++#: nis/nis_print.c:290 ++msgid "Linked Object Type : " ++msgstr "Länkad objekttyp: " + +-#. TRANS No locks available. This is used by the file locking facilities; see +-#. TRANS @ref{File Locks}. This error is never generated by the GNU system, but +-#. TRANS it can result from an operation to an NFS server running another +-#. TRANS operating system. +-#: stdio-common/../sysdeps/gnu/errlist.c:848 +-msgid "No locks available" +-msgstr "Inga ls tillgngliga" ++#: nis/nis_print.c:292 ++#, c-format ++msgid "Linked to : %s\n" ++msgstr "Länkad till: %s\n" + +-#. TRANS Inappropriate file type or format. The file was the wrong type for the +-#. TRANS operation, or a data file had the wrong format. +-#. TRANS +-#. TRANS On some systems @code{chmod} returns this error if you try to set the +-#. TRANS sticky bit on a non-directory file; @pxref{Setting Permissions}. +-#: stdio-common/../sysdeps/gnu/errlist.c:861 +-msgid "Inappropriate file type or format" +-msgstr "Filtyp eller format olmplig" ++#: nis/nis_print.c:302 ++#, c-format ++msgid "\tEntry data of type %s\n" ++msgstr "\tPostdata av typ %s\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:870 +-msgid "Authentication error" +-msgstr "kthetskontroll misslyckades" ++#: nis/nis_print.c:305 ++#, c-format ++msgid "\t[%u] - [%u bytes] " ++msgstr "\t[%u] - [%u byte] " + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:879 +-msgid "Need authenticator" +-msgstr "Behver kthetsintygare" ++#: nis/nis_print.c:308 ++msgid "Encrypted data\n" ++msgstr "Krypterat data\n" + +-#. TRANS Function not implemented. This indicates that the function called is +-#. TRANS not implemented at all, either in the C library itself or in the +-#. TRANS operating system. When you get this error, you can be sure that this +-#. TRANS particular function will always fail with @code{ENOSYS} unless you +-#. TRANS install a new version of the C library or the operating system. +-#: stdio-common/../sysdeps/gnu/errlist.c:892 +-msgid "Function not implemented" +-msgstr "Funktion inte implementerad" ++#: nis/nis_print.c:310 ++msgid "Binary data\n" ++msgstr "Binärdata\n" + +-#. TRANS Not supported. A function returns this error when certain parameter +-#. TRANS values are valid, but the functionality they request is not available. +-#. TRANS This can mean that the function does not implement a particular command +-#. TRANS or option value or flag bit at all. For functions that operate on some +-#. TRANS object given in a parameter, such as a file descriptor or a port, it +-#. TRANS might instead mean that only @emph{that specific object} (file +-#. TRANS descriptor, port, etc.) is unable to support the other parameters given; +-#. TRANS different file descriptors might support different ranges of parameter +-#. TRANS values. +-#. TRANS +-#. TRANS If the entire function is not available at all in the implementation, +-#. TRANS it returns @code{ENOSYS} instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:912 +-msgid "Not supported" +-msgstr "Stds ej" ++#: nis/nis_print.c:326 ++#, c-format ++msgid "Object Name : %s\n" ++msgstr "Objektnamn : %s\n" + +-#. TRANS While decoding a multibyte character the function came along an invalid +-#. TRANS or an incomplete sequence of bytes or the given wide character is invalid. +-#: stdio-common/../sysdeps/gnu/errlist.c:922 +-msgid "Invalid or incomplete multibyte or wide character" +-msgstr "Ogiltig eller inte komplett flerbyte- eller brett tecken" ++#: nis/nis_print.c:327 ++#, c-format ++msgid "Directory : %s\n" ++msgstr "Katalog : %s\n" + +-#. TRANS In the GNU system, servers supporting the @code{term} protocol return +-#. TRANS this error for certain operations when the caller is not in the +-#. TRANS foreground process group of the terminal. Users do not usually see this +-#. TRANS error because functions such as @code{read} and @code{write} translate +-#. TRANS it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control}, +-#. TRANS for information on process groups and these signals. +-#: stdio-common/../sysdeps/gnu/errlist.c:936 +-msgid "Inappropriate operation for background process" +-msgstr "Operation fr bakgrundsprocess olmplig" ++#: nis/nis_print.c:328 ++#, c-format ++msgid "Owner : %s\n" ++msgstr "Ägare : %s\n" + +-#. TRANS In the GNU system, opening a file returns this error when the file is +-#. TRANS translated by a program and the translator program dies while starting +-#. TRANS up, before it has connected to the file. +-#: stdio-common/../sysdeps/gnu/errlist.c:947 +-msgid "Translator died" +-msgstr "versttaren dog" ++#: nis/nis_print.c:329 ++#, c-format ++msgid "Group : %s\n" ++msgstr "Grupp : %s\n" + +-#. TRANS The experienced user will know what is wrong. +-#. TRANS @c This error code is a joke. Its perror text is part of the joke. +-#. TRANS @c Don't change it. +-#: stdio-common/../sysdeps/gnu/errlist.c:958 +-msgid "?" +-msgstr "?" ++#: nis/nis_print.c:330 ++msgid "Access Rights : " ++msgstr "Rättigheter : " + +-#. TRANS You did @strong{what}? +-#: stdio-common/../sysdeps/gnu/errlist.c:967 +-msgid "You really blew it this time" +-msgstr "Du strulade till det den hr gngen" ++#: nis/nis_print.c:332 ++#, c-format ++msgid "" ++"\n" ++"Time to Live : " ++msgstr "" ++"\n" ++"Livslängd : " + +-#. TRANS Go home and have a glass of warm, dairy-fresh milk. +-#: stdio-common/../sysdeps/gnu/errlist.c:976 +-msgid "Computer bought the farm" +-msgstr "Datorn packade ihop" ++#: nis/nis_print.c:335 ++#, c-format ++msgid "Creation Time : %s" ++msgstr "Skapad : %s" + +-#. TRANS This error code has no purpose. +-#: stdio-common/../sysdeps/gnu/errlist.c:985 +-msgid "Gratuitous error" +-msgstr "Omotiverat fel" ++#: nis/nis_print.c:337 ++#, c-format ++msgid "Mod. Time : %s" ++msgstr "Ändr. tid : %s" + +-#: stdio-common/../sysdeps/gnu/errlist.c:993 +-msgid "Bad message" +-msgstr "Felaktigt meddelande" ++#: nis/nis_print.c:338 ++msgid "Object Type : " ++msgstr "Objekttyp : " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1001 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:66 +-msgid "Identifier removed" +-msgstr "Identifierare borttagen" ++#: nis/nis_print.c:358 ++#, c-format ++msgid " Data Length = %u\n" ++msgstr " Datalängd = %u\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1009 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:104 +-msgid "Multihop attempted" +-msgstr "Flerhopp frsktes" ++#: nis/nis_print.c:372 ++#, c-format ++msgid "Status : %s\n" ++msgstr "Status : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1017 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:91 +-msgid "No data available" +-msgstr "Inga data tillgngliga" ++#: nis/nis_print.c:373 ++#, c-format ++msgid "Number of objects : %u\n" ++msgstr "Antal objekt : %u\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1025 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:97 +-msgid "Link has been severed" +-msgstr "Lnken har brutits" ++#: nis/nis_print.c:377 ++#, c-format ++msgid "Object #%d:\n" ++msgstr "Objekt #%d:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1033 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:65 +-msgid "No message of desired type" +-msgstr "Inget meddelande av nskad typ" ++#: nis/nis_print_group_entry.c:117 ++#, c-format ++msgid "Group entry for \"%s.%s\" group:\n" ++msgstr "Grupppost för \"%s.%s\" grupp:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1041 +-msgid "Out of streams resources" +-msgstr "Stream-resurserna r slut" ++#: nis/nis_print_group_entry.c:125 ++msgid " Explicit members:\n" ++msgstr " Explicita medlemmar:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1049 +-msgid "Device not a stream" +-msgstr "Enheten r inte en stream" ++#: nis/nis_print_group_entry.c:130 ++msgid " No explicit members\n" ++msgstr " Inga explicita medlemmar\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1057 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:109 +-msgid "Value too large for defined data type" +-msgstr "Vrdet fr stort fr definierad datatyp" ++#: nis/nis_print_group_entry.c:133 ++msgid " Implicit members:\n" ++msgstr " Implicita medlemmar:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1065 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:101 +-msgid "Protocol error" +-msgstr "Protokollfel" ++#: nis/nis_print_group_entry.c:138 ++msgid " No implicit members\n" ++msgstr " Inga implicita medlemmar\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1073 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:92 +-msgid "Timer expired" +-msgstr "Klockan ringde" ++#: nis/nis_print_group_entry.c:141 ++msgid " Recursive members:\n" ++msgstr " Rekursiva medlemmar:\n" + +-#. TRANS Operation canceled; an asynchronous operation was canceled before it +-#. TRANS completed. @xref{Asynchronous I/O}. When you call @code{aio_cancel}, +-#. TRANS the normal result is for the operations affected to complete with this +-#. TRANS error; @pxref{Cancel AIO Operations}. +-#: stdio-common/../sysdeps/gnu/errlist.c:1085 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:77 +-msgid "Operation canceled" +-msgstr "Operationen avbruten" ++#: nis/nis_print_group_entry.c:146 ++msgid " No recursive members\n" ++msgstr " Inga rekursiva medlemmar\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1093 +-msgid "Interrupted system call should be restarted" +-msgstr "Avbrutet systemanrop borde omstartas" ++#: nis/nis_print_group_entry.c:149 nis/nis_print_group_entry.c:165 ++msgid " Explicit nonmembers:\n" ++msgstr " Explicit icke-medlemmar:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1101 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:67 +-msgid "Channel number out of range" +-msgstr "Kanalnummer utanfr giltigt intervall" ++#: nis/nis_print_group_entry.c:154 ++msgid " No explicit nonmembers\n" ++msgstr " Inga explicita icke-medlemmar\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1109 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:68 +-msgid "Level 2 not synchronized" +-msgstr "Niv 2 inte synkroniserad" ++#: nis/nis_print_group_entry.c:157 ++msgid " Implicit nonmembers:\n" ++msgstr " Implicita icke-medlemmar:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1117 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:69 +-msgid "Level 3 halted" +-msgstr "Niv 3 stannad" ++#: nis/nis_print_group_entry.c:162 ++msgid " No implicit nonmembers\n" ++msgstr " Inga implicita icke-medlemmar\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1125 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:70 +-msgid "Level 3 reset" +-msgstr "Niv 3 omstartad" ++#: nis/nis_print_group_entry.c:170 ++msgid " No recursive nonmembers\n" ++msgstr " Inga rekursiva icke-medlemmar\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1133 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:71 +-msgid "Link number out of range" +-msgstr "Lnkantal utanfr giltigt omrde" ++#: nis/nss_nisplus/nisplus-publickey.c:101 ++#: nis/nss_nisplus/nisplus-publickey.c:183 ++#, c-format ++msgid "DES entry for netname %s not unique\n" ++msgstr "DES-post för nätnamn %s är inte unikt\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1141 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:72 +-msgid "Protocol driver not attached" +-msgstr "Styrprogram fr protokoll inte anslutet" ++#: nis/nss_nisplus/nisplus-publickey.c:220 ++#, c-format ++msgid "netname2user: missing group id list in `%s'." ++msgstr "netname2user: gruppid-lista saknas i \"%s\"." + +-#: stdio-common/../sysdeps/gnu/errlist.c:1149 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:73 +-msgid "No CSI structure available" +-msgstr "Inga CSI-strukturer tillgngliga" ++#: nis/nss_nisplus/nisplus-publickey.c:302 ++#: nis/nss_nisplus/nisplus-publickey.c:308 ++#: nis/nss_nisplus/nisplus-publickey.c:373 ++#: nis/nss_nisplus/nisplus-publickey.c:382 ++#, c-format ++msgid "netname2user: (nis+ lookup): %s\n" ++msgstr "netname2user: (nis+ uppslagning) %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1157 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:74 +-msgid "Level 2 halted" +-msgstr "Niv 2 stannad" ++#: nis/nss_nisplus/nisplus-publickey.c:321 ++#, c-format ++msgid "netname2user: DES entry for %s in directory %s not unique" ++msgstr "netname2user: DES-post för %s i katalog %s är inte unik" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1165 +-msgid "Invalid exchange" +-msgstr "Ogiltig vxel" ++#: nis/nss_nisplus/nisplus-publickey.c:339 ++#, c-format ++msgid "netname2user: principal name `%s' too long" ++msgstr "netname2user: principalnamn \"%s\" för långt" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1173 +-msgid "Invalid request descriptor" +-msgstr "Ogiltig frgedeskriptor" ++#: nis/nss_nisplus/nisplus-publickey.c:395 ++#, c-format ++msgid "netname2user: LOCAL entry for %s in directory %s not unique" ++msgstr "netname2user: LOCAL-post för %s i katalog %s är inte unik" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1181 +-msgid "Exchange full" +-msgstr "Vxeln full" ++#: nis/nss_nisplus/nisplus-publickey.c:402 ++msgid "netname2user: should not have uid 0" ++msgstr "netname2user: borde inte ha uid 0" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1189 +-msgid "No anode" +-msgstr "Ingen anod" ++#: nis/ypclnt.c:825 ++msgid "Request arguments bad" ++msgstr "Argument för förfrågan felaktiga" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1197 +-msgid "Invalid request code" +-msgstr "Ogiltig tkomstkod" ++#: nis/ypclnt.c:828 ++msgid "RPC failure on NIS operation" ++msgstr "RPC-fel vid NIS-operation" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1205 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:85 +-msgid "Invalid slot" +-msgstr "Ogiltig plats" ++#: nis/ypclnt.c:831 ++msgid "Can't bind to server which serves this domain" ++msgstr "Kan inte ansluta till servern som betjänar denna domän" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1213 +-msgid "File locking deadlock error" +-msgstr "Fillsning gav ddlge" ++#: nis/ypclnt.c:834 ++msgid "No such map in server's domain" ++msgstr "Ingen sådan tabell i serverns domän" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1221 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:87 +-msgid "Bad font file format" +-msgstr "Felaktigt format p typsnittsfil" ++#: nis/ypclnt.c:837 ++msgid "No such key in map" ++msgstr "Ingen sådan nyckel i tabellen" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1229 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:94 +-msgid "Machine is not on the network" +-msgstr "Maskinen finns inte p ntverket" ++#: nis/ypclnt.c:840 ++msgid "Internal NIS error" ++msgstr "Internt NIS-fel" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1237 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:95 +-msgid "Package not installed" +-msgstr "Paketet r inte installerat" ++#: nis/ypclnt.c:843 ++msgid "Local resource allocation failure" ++msgstr "Allokeringsfel för lokal resurs" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1245 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:98 +-msgid "Advertise error" +-msgstr "Annonseringsfel" ++#: nis/ypclnt.c:846 ++msgid "No more records in map database" ++msgstr "Inga fler poster i tabelldatabasen" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1253 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:99 +-msgid "Srmount error" +-msgstr "Srmount-fel" ++#: nis/ypclnt.c:849 ++msgid "Can't communicate with portmapper" ++msgstr "Kan inte kommunicera med portmapper" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1261 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:100 +-msgid "Communication error on send" +-msgstr "Kommunikationsfel vid sndning" ++#: nis/ypclnt.c:852 ++msgid "Can't communicate with ypbind" ++msgstr "Kan inte kommunicera med ypbind" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1269 +-msgid "RFS specific error" +-msgstr "RFS-specifikt fel" ++#: nis/ypclnt.c:855 ++msgid "Can't communicate with ypserv" ++msgstr "Kan inte kommunicera med ypserv" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1277 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:110 +-msgid "Name not unique on network" +-msgstr "Namnet inte unikt i ntverket" ++#: nis/ypclnt.c:858 ++msgid "Local domain name not set" ++msgstr "Lokalt domännamn inte satt" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1285 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:111 +-msgid "File descriptor in bad state" +-msgstr "Filidentifierare i felaktigt tillstnd" ++#: nis/ypclnt.c:861 ++msgid "NIS map database is bad" ++msgstr "NIS tabelldatabas är felaktig" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1293 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:112 +-msgid "Remote address changed" +-msgstr "Fjrradress ndrades" ++#: nis/ypclnt.c:864 ++msgid "NIS client/server version mismatch - can't supply service" ++msgstr "NIS versionsskillnad klient/server - kan inte betjäna" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1301 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:113 +-msgid "Can not access a needed shared library" +-msgstr "Kan inte komma t ett ndvndigt delat bibliotek" ++#: nis/ypclnt.c:870 ++msgid "Database is busy" ++msgstr "Databasen är upptagen" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1309 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:114 +-msgid "Accessing a corrupted shared library" +-msgstr "ppnar ett korrupt delat bibliotek" ++#: nis/ypclnt.c:873 ++msgid "Unknown NIS error code" ++msgstr "Okänd NIS-felkod" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1317 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:115 +-msgid ".lib section in a.out corrupted" +-msgstr ".lib-sektion i a.out korrupt" ++#: nis/ypclnt.c:913 ++msgid "Internal ypbind error" ++msgstr "Internt ypbind-fel" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1325 +-msgid "Attempting to link in too many shared libraries" +-msgstr "Frsker att lnka in fr mnga delade bibliotek" ++#: nis/ypclnt.c:916 ++msgid "Domain not bound" ++msgstr "Domän inte bunden" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1333 +-msgid "Cannot exec a shared library directly" +-msgstr "Kan inte kra ett delat bibliotek direkt" ++#: nis/ypclnt.c:919 ++msgid "System resource allocation failure" ++msgstr "Allokeringsfel för systemresurs" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1341 +-msgid "Streams pipe error" +-msgstr "Streams-rrfel" ++#: nis/ypclnt.c:922 ++msgid "Unknown ypbind error" ++msgstr "Okänt ypbind-fel" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1349 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:165 +-msgid "Structure needs cleaning" +-msgstr "Strukturen behver stdas" ++#: nis/ypclnt.c:963 ++msgid "yp_update: cannot convert host to netname\n" ++msgstr "yp_update: kan inte omvandla värd till nätnamn\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1357 +-msgid "Not a XENIX named type file" +-msgstr "Inte en XENIX-namngiven fil" ++#: nis/ypclnt.c:981 ++msgid "yp_update: cannot get server address\n" ++msgstr "yp_update: kan inte hämta serveradress\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1365 +-msgid "No XENIX semaphores available" +-msgstr "Inga XENIX-semaforer tillgngliga" ++#: nscd/aicache.c:76 nscd/hstcache.c:461 ++#, c-format ++msgid "Haven't found \"%s\" in hosts cache!" ++msgstr "Hittar inte \"%s\" i värdcache!" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1373 +-msgid "Is a named type file" +-msgstr "r av typ namnfil" ++#: nscd/aicache.c:78 nscd/hstcache.c:463 ++#, c-format ++msgid "Reloading \"%s\" in hosts cache!" ++msgstr "Omladdar \"%s\" i värdcache!" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1381 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:170 +-msgid "Remote I/O error" +-msgstr "I/O-fel p fjrrmaskin" ++#: nscd/cache.c:126 ++#, c-format ++msgid "add new entry \"%s\" of type %s for %s to cache%s" ++msgstr "lägg till ny post \"%s\" av typen %s för %s till cache%s" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1389 +-msgid "No medium found" +-msgstr "Inget medium funnet" ++#: nscd/cache.c:233 nscd/connections.c:750 ++#, c-format ++msgid "cannot stat() file `%s': %s" ++msgstr "kan inte ta status på fil \"%s\": %s" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1397 +-msgid "Wrong medium type" +-msgstr "Fel typ p mediet" ++#: nscd/cache.c:262 ++#, c-format ++msgid "pruning %s cache; time %ld" ++msgstr "beskär %s cache; tid %ld" + +-#: stdio-common/../sysdeps/unix/siglist.c:26 +-msgid "Signal 0" +-msgstr "Signal 0" ++#: nscd/cache.c:289 ++#, c-format ++msgid "considering %s entry \"%s\", timeout %" ++msgstr "överväger %s post \"%s\", tidsgräns %" + +-#: stdio-common/../sysdeps/unix/siglist.c:32 +-msgid "IOT trap" +-msgstr "IOT-flla" ++#: nscd/connections.c:469 nscd/connections.c:481 nscd/connections.c:493 ++#: nscd/connections.c:512 ++#, c-format ++msgid "invalid persistent database file \"%s\": %s" ++msgstr "ogiltig persistent databasfil \"%s\": %s" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:30 +-msgid "Error 0" +-msgstr "Fel 0" ++#: nscd/connections.c:483 ++msgid "header size does not match" ++msgstr "huvudstorlek stämmer inte" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:31 +-#: nis/nis_error.c:40 +-msgid "Not owner" +-msgstr "Inte gare" ++#: nscd/connections.c:495 ++msgid "file size does not match" ++msgstr "filstorlek stämmer inte" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:35 +-msgid "I/O error" +-msgstr "I/O-fel" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:37 +-msgid "Arg list too long" +-msgstr "Argumentlistan fr lng" ++#: nscd/connections.c:514 ++msgid "verification failed" ++msgstr "verifikation misslyckades" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:39 +-msgid "Bad file number" +-msgstr "Felaktig filidentifierare" ++#: nscd/connections.c:528 ++#, c-format ++msgid "suggested size of table for database %s larger than the persistent database's table" ++msgstr "föreslagen storlek på tabellen för databas %s är större än den persistenta databasens tabell" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:42 +-msgid "Not enough space" +-msgstr "Otillrckligt utrymme" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:46 +-msgid "Device busy" +-msgstr "Enhet upptagen" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:48 +-msgid "Cross-device link" +-msgstr "Lnk mellan tskilda enheter" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:53 +-msgid "File table overflow" +-msgstr "Filtabell fldade ver" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:63 +-msgid "Argument out of domain" +-msgstr "Argument utanfr giltigt omrde" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:64 +-msgid "Result too large" +-msgstr "Resultat fr stort" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:75 +-msgid "Deadlock situation detected/avoided" +-msgstr "Undvek/upptckte ddlgessituation" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:76 +-msgid "No record locks available" +-msgstr "Inga postls tillgngliga" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:79 +-msgid "Disc quota exceeded" +-msgstr "Diskkvot verskriden" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:80 +-msgid "Bad exchange descriptor" +-msgstr "Felaktig \"exchange\"-deskriptor" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:81 +-msgid "Bad request descriptor" +-msgstr "Ogiltig frgedeskriptor" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:82 +-msgid "Message tables full" +-msgstr "Meddelandetabell full" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:83 +-msgid "Anode table overflow" +-msgstr "\"Anode\"-tabell fldar ver" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:84 +-msgid "Bad request code" +-msgstr "Ogiltig tkomstkod" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:86 +-msgid "File locking deadlock" +-msgstr "Fillsning gav ddlge" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:88 +-msgid "Error 58" +-msgstr "Fel 58" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:89 +-msgid "Error 59" +-msgstr "Fel 59" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:90 +-msgid "Not a stream device" +-msgstr "Inte en \"stream\"-enhet" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:93 +-msgid "Out of stream resources" +-msgstr "Stream-resurserna r slut" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:102 +-msgid "Error 72" +-msgstr "Fel 72" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:103 +-msgid "Error 73" +-msgstr "Fel 73" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:105 +-msgid "Error 75" +-msgstr "Fel 75" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:106 +-msgid "Error 76" +-msgstr "Fel 76" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:107 +-msgid "Not a data message" +-msgstr "Inte ett datameddelande" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:116 +-msgid "Attempting to link in more shared libraries than system limit" +-msgstr "Frsk att lnka in fler delade bibliotek n systemgrnsen" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:117 +-msgid "Can not exec a shared library directly" +-msgstr "Kan inte kra ett delat bibliotek direkt" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:118 +-msgid "Illegal byte sequence" +-msgstr "Otillten bytesekvens" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:119 +-msgid "Operation not applicable" +-msgstr "Operationen inte tilllmpbar" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:120 +-msgid "Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS" +-msgstr "Antal symboliska lnkar ptrffade vid skvgsupplsning versteg MAXSYMLINKS" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:121 +-msgid "Error 91" +-msgstr "Fel 91" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:122 +-msgid "Error 92" +-msgstr "Fel 92" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:129 +-msgid "Option not supported by protocol" +-msgstr "Valet stds inte av protokollet" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:130 +-msgid "Error 100" +-msgstr "Fel 100" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:131 +-msgid "Error 101" +-msgstr "Fel 101" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:132 +-msgid "Error 102" +-msgstr "Fel 102" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:133 +-msgid "Error 103" +-msgstr "Fel 103" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:134 +-msgid "Error 104" +-msgstr "Fel 104" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:135 +-msgid "Error 105" +-msgstr "Fel 105" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:136 +-msgid "Error 106" +-msgstr "Fel 106" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:137 +-msgid "Error 107" +-msgstr "Fel 107" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:138 +-msgid "Error 108" +-msgstr "Fel 108" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:139 +-msgid "Error 109" +-msgstr "Fel 109" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:140 +-msgid "Error 110" +-msgstr "Fel 110" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:141 +-msgid "Error 111" +-msgstr "Fel 111" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:142 +-msgid "Error 112" +-msgstr "Fel 112" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:143 +-msgid "Error 113" +-msgstr "Fel 113" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:144 +-msgid "Error 114" +-msgstr "Fel 114" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:145 +-msgid "Error 115" +-msgstr "Fel 115" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:146 +-msgid "Error 116" +-msgstr "Fel 116" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:147 +-msgid "Error 117" +-msgstr "Fel 117" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:148 +-msgid "Error 118" +-msgstr "Fel 118" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:149 +-msgid "Error 119" +-msgstr "Fel 119" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:152 +-msgid "Operation not supported on transport endpoint" +-msgstr "Operationen stds inte p transportslutpunkt" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:154 +-msgid "Address family not supported by protocol family" +-msgstr "Adressfamiljen stds inte av protokollfamiljen" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:159 +-msgid "Network dropped connection because of reset" +-msgstr "Ntverket tog bort frbindelsen p.g.a. omstart" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:166 +-msgid "Error 136" +-msgstr "Fel 136" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:167 +-msgid "Not a name file" +-msgstr "Inte en namnfil" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:168 +-msgid "Not available" +-msgstr "Inte tillgnglig" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:169 +-msgid "Is a name file" +-msgstr "r en namnfil" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:171 +-msgid "Reserved for future use" +-msgstr "Reserverad fr framtida anvndning" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:172 +-msgid "Error 142" +-msgstr "Fel 142" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:173 +-msgid "Cannot send after socket shutdown" +-msgstr "Kan inte skicka efter att uttaget (socket) stngts" ++#: nscd/connections.c:538 nscd/connections.c:619 ++#, c-format ++msgid "cannot create read-only descriptor for \"%s\"; no mmap" ++msgstr "kan inte skapa läsbar filidentifierare för \"%s\", ingen mmap" + +-#: stdio-common/psignal.c:63 ++#: nscd/connections.c:598 + #, c-format +-msgid "%s%sUnknown signal %d\n" +-msgstr "%s%sOknd signal %d\n" ++msgid "database for %s corrupted or simultaneously used; remove %s manually if necessary and restart" ++msgstr "databas för %s korrupt eller använd av flera samtidigt; ta bort %s manuellt om det behövs och starta om" + +-#: dlfcn/dlinfo.c:51 +-msgid "RTLD_SELF used in code not dynamically loaded" +-msgstr "RTLD_SELF anvnds i kod som inte r dynamiskt laddad" ++#: nscd/connections.c:605 ++#, c-format ++msgid "cannot create %s; no persistent database used" ++msgstr "kan inte skapa %s; ingen persistent databas används" + +-#: dlfcn/dlinfo.c:61 +-msgid "unsupported dlinfo request" +-msgstr "dlinfo-begran som inte stds" ++#: nscd/connections.c:608 ++#, c-format ++msgid "cannot create %s; no sharing possible" ++msgstr "kan inte skapa %s; ingen delning möjlig" + +-#: malloc/mcheck.c:346 +-msgid "memory is consistent, library is buggy\n" +-msgstr "minnet r konsistent, biblioteket r felaktigt\n" ++#: nscd/connections.c:679 ++#, c-format ++msgid "cannot write to database file %s: %s" ++msgstr "kan inte skriva till databasfil %s: %s" + +-#: malloc/mcheck.c:349 +-msgid "memory clobbered before allocated block\n" +-msgstr "minnet frstrt fre allokerat block\n" ++#: nscd/connections.c:713 ++#, c-format ++msgid "cannot set socket to close on exec: %s; disabling paranoia mode" ++msgstr "kan inte sätta uttag (socket) att stängas vid programstart: %s; kopplar ur paranoialäge" + +-#: malloc/mcheck.c:352 +-msgid "memory clobbered past end of allocated block\n" +-msgstr "minnet frstrt efter slutet p allokerat block\n" ++#: nscd/connections.c:763 ++#, c-format ++msgid "cannot open socket: %s" ++msgstr "kan inte öppna uttag (socket): %s" + +-#: malloc/mcheck.c:355 +-msgid "block freed twice\n" +-msgstr "block frigjort tv gnger\n" ++#: nscd/connections.c:780 ++#, c-format ++msgid "cannot change socket to nonblocking mode: %s" ++msgstr "kan inte ändra uttag (socket) till icke-blockerande: %s" + +-#: malloc/mcheck.c:358 +-msgid "bogus mcheck_status, library is buggy\n" +-msgstr "felaktig mcheck_status, biblioteket r felaktigt\n" ++#: nscd/connections.c:788 ++#, c-format ++msgid "cannot set socket to close on exec: %s" ++msgstr "kan inte sätta uttag (socket) att stängas vid programstart: %s" + +-#: malloc/memusagestat.c:53 +-msgid "Name output file" +-msgstr "Namnresultatfil" ++#: nscd/connections.c:799 ++#, c-format ++msgid "cannot enable socket to accept connections: %s" ++msgstr "kan inte få uttag (socket) att acceptera förbindelser: %s" + +-#: malloc/memusagestat.c:54 +-msgid "Title string used in output graphic" +-msgstr "Titelstrng att anvnda i resultatgrafiken" ++#: nscd/connections.c:892 ++#, c-format ++msgid "provide access to FD %d, for %s" ++msgstr "ge åtkomst till FD %d, för %s" + +-#: malloc/memusagestat.c:55 +-msgid "Generate output linear to time (default is linear to number of function calls)" +-msgstr "Generera utdata linjr i tiden (standardvrde r linjr mot anta funktionsanrop)" ++#: nscd/connections.c:904 ++#, c-format ++msgid "cannot handle old request version %d; current version is %d" ++msgstr "Kan inte hantera äldre förfrågansversion %d, nuvarande version är %d" + +-#: malloc/memusagestat.c:57 +-msgid "Also draw graph for total memory consumption" +-msgstr "Visa ocks en graf av totala minnestgngen" ++#: nscd/connections.c:954 nscd/connections.c:1007 ++#, c-format ++msgid "cannot write result: %s" ++msgstr "kan inte skriva resultat: %s" + +-#: malloc/memusagestat.c:58 +-msgid "make output graphic VALUE pixel wide" +-msgstr "gr resultatgrafiken VALUE pixlar bred" ++#: nscd/connections.c:1082 ++#, c-format ++msgid "error getting caller's id: %s" ++msgstr "kunde inte hämta anropandes identitet: %s" + +-#: malloc/memusagestat.c:59 +-msgid "make output graphic VALUE pixel high" +-msgstr "gr resultatgrafiken VALUE pixlar hg" ++#: nscd/connections.c:1140 nscd/connections.c:1154 ++#, c-format ++msgid "cannot open /proc/self/cmdline: %s; disabling paranoia mode" ++msgstr "kan inte öppna /proc/slef/cmdline: %s, kopplar ur paranoialäge" + +-#: malloc/memusagestat.c:64 +-msgid "Generate graphic from memory profiling data" +-msgstr "Generera grafik frn data frn minnesprofilering" ++#: nscd/connections.c:1194 ++#, c-format ++msgid "cannot change to old UID: %s; disabling paranoia mode" ++msgstr "kan inte byta till föregående UID: %s; kopplar ur paranoialäge" + +-#: malloc/memusagestat.c:67 +-msgid "DATAFILE [OUTFILE]" +-msgstr "DATAFIL [UTFIL]" ++#: nscd/connections.c:1204 ++#, c-format ++msgid "cannot change to old GID: %s; disabling paranoia mode" ++msgstr "kan inte byta till föregående GID: %s; kopplar ur paranoialäge" + +-#: string/strerror.c:43 posix/../sysdeps/posix/gai_strerror.c:57 +-msgid "Unknown error" +-msgstr "Oknt fel" ++#: nscd/connections.c:1217 ++#, c-format ++msgid "cannot change to old working directory: %s; disabling paranoia mode" ++msgstr "kan inte byta till föregående arbetskatalog: %s; kopplar ur paranoialäge" + +-#: string/strsignal.c:69 ++#: nscd/connections.c:1245 + #, c-format +-msgid "Real-time signal %d" +-msgstr "Realtidssignal %d" ++msgid "re-exec failed: %s; disabling paranoia mode" ++msgstr "återstart misslyckades: %s; kopplar ur paranoialäge" + +-#: string/strsignal.c:73 ++#: nscd/connections.c:1254 + #, c-format +-msgid "Unknown signal %d" +-msgstr "Oknd signal %d" ++msgid "cannot change current working directory to \"/\": %s" ++msgstr "kan inte byta aktuell katalog to \"/\": %s" + +-#: timezone/zdump.c:176 ++#: nscd/connections.c:1372 + #, c-format +-msgid "%s: usage is %s [ --version ] [ -v ] [ -c cutoff ] zonename ...\n" +-msgstr "%s: anvndning r %s [ --version ] [ -v ] [ -c grns ] zonnamn ...\n" ++msgid "short read while reading request: %s" ++msgstr "fattas data vid läsning av begäran: %s" + +-#: timezone/zdump.c:269 +-msgid "Error writing to standard output" +-msgstr "Fel vid skrivning till standard ut" ++#: nscd/connections.c:1404 ++#, c-format ++msgid "key length in request too long: %d" ++msgstr "nyckellängd i begäran för lång: %d" + +-#: timezone/zic.c:361 ++#: nscd/connections.c:1417 + #, c-format +-msgid "%s: Memory exhausted: %s\n" +-msgstr "%s: Minnet slut: %s\n" ++msgid "short read while reading request key: %s" ++msgstr "fattas data vid läsning av begäransnyckel: %s" + +-#: timezone/zic.c:386 misc/error.c:129 misc/error.c:157 +-msgid "Unknown system error" +-msgstr "Oknt systemfel" ++#: nscd/connections.c:1426 ++#, c-format ++msgid "handle_request: request received (Version = %d) from PID %ld" ++msgstr "handle_request: begäran mottagen (Version = %d) från PID %ld" + +-#: timezone/zic.c:420 ++#: nscd/connections.c:1431 + #, c-format +-msgid "\"%s\", line %d: %s" +-msgstr "\"%s\", rad %d: %s" ++msgid "handle_request: request received (Version = %d)" ++msgstr "handle_request: begäran mottagen (Version = %d)" + +-#: timezone/zic.c:423 ++#: nscd/connections.c:1792 + #, c-format +-msgid " (rule from \"%s\", line %d)" +-msgstr " (regel frn \"%s\", rad %d)" ++msgid "could only start %d threads; terminating" ++msgstr "kunde bara starta %d trådar; avslutar" + +-#: timezone/zic.c:435 +-msgid "warning: " +-msgstr "varning: " ++#: nscd/connections.c:1840 nscd/connections.c:1841 nscd/connections.c:1858 ++#: nscd/connections.c:1867 nscd/connections.c:1885 nscd/connections.c:1896 ++#: nscd/connections.c:1907 ++#, c-format ++msgid "Failed to run nscd as user '%s'" ++msgstr "Misslyckades att köra nscd som användare \"%s\"" + +-#: timezone/zic.c:445 ++#: nscd/connections.c:1859 + #, c-format +-msgid "" +-"%s: usage is %s [ --version ] [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n" +-"\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" +-msgstr "" +-"%s: anvndning r %s [ --version ] [ -s ] [ -v ] [ -l lokaltid ] [ -p posixregler ] \\\n" +-"\t[ -d katalog ] [ -L skottsekunder ] [ -y rkontrollprogram ] [ filnamn ... ]\n" ++msgid "initial getgrouplist failed" ++msgstr "första getgrouplist misslyckades" + +-#: timezone/zic.c:492 ++#: nscd/connections.c:1868 + #, c-format +-msgid "%s: More than one -d option specified\n" +-msgstr "%s: Flaggan -d given mer n en gng\n" ++msgid "getgrouplist failed" ++msgstr "getgrouplist misslyckades" + +-#: timezone/zic.c:502 ++#: nscd/connections.c:1886 + #, c-format +-msgid "%s: More than one -l option specified\n" +-msgstr "%s: Flaggan -l given mer n en gng\n" ++msgid "setgroups failed" ++msgstr "setgroups misslyckades" + +-#: timezone/zic.c:512 ++#: nscd/grpcache.c:400 nscd/hstcache.c:411 nscd/initgrcache.c:411 ++#: nscd/pwdcache.c:395 + #, c-format +-msgid "%s: More than one -p option specified\n" +-msgstr "%s: Flaggan -p given mer n en gng\n" ++msgid "short write in %s: %s" ++msgstr "ofullständig skrivning i %s: %s" + +-#: timezone/zic.c:522 ++#: nscd/grpcache.c:443 nscd/initgrcache.c:77 + #, c-format +-msgid "%s: More than one -y option specified\n" +-msgstr "%s: Flaggan -y given mer n en gng\n" ++msgid "Haven't found \"%s\" in group cache!" ++msgstr "Hittar inte \"%s\" i gruppcache!" + +-#: timezone/zic.c:532 ++#: nscd/grpcache.c:445 nscd/initgrcache.c:79 + #, c-format +-msgid "%s: More than one -L option specified\n" +-msgstr "%s: Flaggan -L given mer n en gng\n" ++msgid "Reloading \"%s\" in group cache!" ++msgstr "Omladdar \"%s\" i gruppcache!" + +-#: timezone/zic.c:639 ++#: nscd/grpcache.c:536 + #, c-format +-msgid "%s: Can't unlink %s: %s\n" +-msgstr "%s: Kan inte ta bort (unlink) %s: %s\n" ++msgid "Invalid numeric gid \"%s\"!" ++msgstr "Ogiltigt numeriskt gruppid (gid) \"%s\"!" + +-#: timezone/zic.c:646 +-msgid "hard link failed, symbolic link used" +-msgstr "hrd lnk misslyckades, anvnder symbolisk lnk" ++#: nscd/mem.c:382 ++#, c-format ++msgid "freed %zu bytes in %s cache" ++msgstr "frigorde %zu byte i %s cache" + +-#: timezone/zic.c:654 ++#: nscd/mem.c:511 + #, c-format +-msgid "%s: Can't link from %s to %s: %s\n" +-msgstr "%s: Kan inte lnka frn %s till %s: %s\n" ++msgid "no more memory for database '%s'" ++msgstr "inget mer minne för databas \"%s\"" + +-#: timezone/zic.c:752 timezone/zic.c:754 +-msgid "same rule name in multiple files" +-msgstr "samma regel i flera filer" ++#: nscd/nscd.c:97 ++msgid "Read configuration data from NAME" ++msgstr "Läs konfigurationsdata från NAMN" + +-#: timezone/zic.c:795 +-msgid "unruly zone" +-msgstr "besvrlig zon" ++#: nscd/nscd.c:99 ++msgid "Do not fork and display messages on the current tty" ++msgstr "Skapa inte barnprocess, visa meddelanden på nuvarande tty" ++ ++#: nscd/nscd.c:100 ++msgid "NUMBER" ++msgstr "ANTAL" ++ ++#: nscd/nscd.c:100 ++msgid "Start NUMBER threads" ++msgstr "Starta ANTAL trådar" ++ ++#: nscd/nscd.c:101 ++msgid "Shut the server down" ++msgstr "Avsluta servern" ++ ++#: nscd/nscd.c:102 ++msgid "Print current configuration statistic" ++msgstr "Skriv ut nuvarande konfigurationsstatistik" ++ ++#: nscd/nscd.c:103 ++msgid "TABLE" ++msgstr "TABELL" ++ ++#: nscd/nscd.c:104 ++msgid "Invalidate the specified cache" ++msgstr "Invalidera den angivna cachen" ++ ++#: nscd/nscd.c:105 ++msgid "TABLE,yes" ++msgstr "TABELL,yes" ++ ++#: nscd/nscd.c:106 ++msgid "Use separate cache for each user" ++msgstr "Använd separat cache för varje användare" ++ ++#: nscd/nscd.c:111 ++msgid "Name Service Cache Daemon." ++msgstr "Namntjänst cache-demon" + +-#: timezone/zic.c:802 ++#: nscd/nscd.c:143 nss/getent.c:858 nss/makedb.c:123 + #, c-format +-msgid "%s in ruleless zone" +-msgstr "%s i zon utan regler" ++msgid "wrong number of arguments" ++msgstr "fel antal argument" + +-#: timezone/zic.c:823 +-msgid "standard input" +-msgstr "standard in" ++#: nscd/nscd.c:153 ++#, c-format ++msgid "failure while reading configuration file; this is fatal" ++msgstr "kan inte läsa konfigurationsdata, detta är fatalt" + +-#: timezone/zic.c:828 ++#: nscd/nscd.c:162 + #, c-format +-msgid "%s: Can't open %s: %s\n" +-msgstr "%s: Kan inte ppna %s: %s\n" ++msgid "already running" ++msgstr "kör redan" + +-#: timezone/zic.c:839 +-msgid "line too long" +-msgstr "fr lng rad" ++#: nscd/nscd.c:177 nscd/nscd.c:232 ++#, c-format ++msgid "cannot fork" ++msgstr "kan inte skapa barnprocess" + +-#: timezone/zic.c:859 +-msgid "input line of unknown type" +-msgstr "inrad av oknd typ" ++#: nscd/nscd.c:240 ++#, c-format ++msgid "cannot change current working directory to \"/\"" ++msgstr "kan inte byta aktuell katalog till \"/\"" ++ ++#: nscd/nscd.c:248 ++msgid "Could not create log file" ++msgstr "Kunde inte skapa loggfil" + +-#: timezone/zic.c:875 ++#: nscd/nscd.c:301 nscd/nscd.c:326 nscd/nscd_stat.c:172 + #, c-format +-msgid "%s: Leap line in non leap seconds file %s\n" +-msgstr "%s: \"Leap\"-rad i fil %s som inte r skottsekundsfil\n" ++msgid "Only root is allowed to use this option!" ++msgstr "Bara root har tillåtelse att använda denna operation!" + +-#: timezone/zic.c:882 timezone/zic.c:1297 timezone/zic.c:1322 ++#: nscd/nscd.c:359 nscd/nscd_stat.c:191 + #, c-format +-msgid "%s: panic: Invalid l_value %d\n" +-msgstr "%s: panik: ogiltigt l_value %d\n" ++msgid "write incomplete" ++msgstr "ofullständing skrivning" + +-#: timezone/zic.c:890 ++#: nscd/nscd.c:370 + #, c-format +-msgid "%s: Error reading %s\n" +-msgstr "%s: Fel vid lsning frn %s\n" ++msgid "cannot read invalidate ACK" ++msgstr "kan inte läsa ogiltigförklarings-ACK" + +-#: timezone/zic.c:897 ++#: nscd/nscd.c:376 + #, c-format +-msgid "%s: Error closing %s: %s\n" +-msgstr "%s: Fel vid stngning av %s: %s\n" ++msgid "invalidation failed" ++msgstr "ogiltigförklaring misslyckades" + +-#: timezone/zic.c:902 +-msgid "expected continuation line not found" +-msgstr "frvntad fortsttningsrad inte funnen" ++#: nscd/nscd.c:386 ++#, c-format ++msgid "secure services not implemented anymore" ++msgstr "säkra tjänster är inte implementerade längre" + +-#: timezone/zic.c:958 +-msgid "wrong number of fields on Rule line" +-msgstr "fel antal flt p \"Rule\"-rad" ++#: nscd/nscd_conf.c:55 ++#, c-format ++msgid "database %s is not supported\n" ++msgstr "databas \"%s\" stöds ej\n" + +-#: timezone/zic.c:962 +-msgid "nameless rule" +-msgstr "namnls regel" ++#: nscd/nscd_conf.c:106 ++#, c-format ++msgid "Parse error: %s" ++msgstr "Parsfel: %s" + +-#: timezone/zic.c:967 +-msgid "invalid saved time" +-msgstr "ogiltigt sparad tid" ++#: nscd/nscd_conf.c:191 ++#, c-format ++msgid "Must specify user name for server-user option" ++msgstr "Användarnamn krävs för \"server-user\"-flaggan" + +-#: timezone/zic.c:986 +-msgid "wrong number of fields on Zone line" +-msgstr "fel antal flt p \"Zone\"-rad" ++#: nscd/nscd_conf.c:198 ++#, c-format ++msgid "Must specify user name for stat-user option" ++msgstr "Användarnamn krävs för \"stat-user\"-flaggan" + +-#: timezone/zic.c:992 ++#: nscd/nscd_conf.c:242 + #, c-format +-msgid "\"Zone %s\" line and -l option are mutually exclusive" +-msgstr "\"Zone %s\"-rad och flaggan -l r msesidigt uteslutande" ++msgid "invalid value for 'reload-count': %u" ++msgstr "ogiltigt värde för \"reload-count\": %u" + +-#: timezone/zic.c:1000 ++#: nscd/nscd_conf.c:257 + #, c-format +-msgid "\"Zone %s\" line and -p option are mutually exclusive" +-msgstr "\"Zone %s\"-rad och flaggan -p r msesidigt uteslutande" ++msgid "Must specify value for restart-interval option" ++msgstr "Måste ge värde för \"restart-interval\"-flaggan" + +-#: timezone/zic.c:1012 ++#: nscd/nscd_conf.c:271 + #, c-format +-msgid "duplicate zone name %s (file \"%s\", line %d)" +-msgstr "dubblerat zonnamn %s (fil \"%s\", rad %d)" ++msgid "Unknown option: %s %s %s" ++msgstr "Okänd flagga: %s %s %s" + +-#: timezone/zic.c:1028 +-msgid "wrong number of fields on Zone continuation line" +-msgstr "fel antal flt p \"Zone\"-fortsttningsrad" ++#: nscd/nscd_conf.c:284 ++#, c-format ++msgid "cannot get current working directory: %s; disabling paranoia mode" ++msgstr "kan inte hämta aktuell katalog: %s; kopplar ut paranoialäge" + +-#: timezone/zic.c:1068 +-msgid "invalid UTC offset" +-msgstr "ogiltigt UTC-tillgg" ++#: nscd/nscd_conf.c:304 ++#, c-format ++msgid "maximum file size for %s database too small" ++msgstr "maximal filstorlek för \"%s\"-databasen är för liten" + +-#: timezone/zic.c:1071 +-msgid "invalid abbreviation format" +-msgstr "ogiltigt frkortningsformat" ++#: nscd/nscd_stat.c:141 ++#, c-format ++msgid "cannot write statistics: %s" ++msgstr "kan inte skriva statistik: %s" + +-#: timezone/zic.c:1097 +-msgid "Zone continuation line end time is not after end time of previous line" +-msgstr "Zon-fortsttningsradens sluttid r inte efter sluttiden p fregende rad" ++#: nscd/nscd_stat.c:156 ++msgid "yes" ++msgstr "ja" ++ ++#: nscd/nscd_stat.c:157 ++msgid "no" ++msgstr "nej" + +-#: timezone/zic.c:1124 +-msgid "wrong number of fields on Leap line" +-msgstr "fel antal flt p \"Leap\"-rad" ++#: nscd/nscd_stat.c:168 ++#, c-format ++msgid "Only root or %s is allowed to use this option!" ++msgstr "Bara root eller %s har tillåtelse att använda denna operation!" + +-#: timezone/zic.c:1133 +-msgid "invalid leaping year" +-msgstr "ogiltigt skottr" ++#: nscd/nscd_stat.c:179 ++#, c-format ++msgid "nscd not running!\n" ++msgstr "nscd kör inte!\n" + +-#: timezone/zic.c:1148 timezone/zic.c:1252 +-msgid "invalid month name" +-msgstr "ogiltigt mnadsnamn" ++#: nscd/nscd_stat.c:203 ++#, c-format ++msgid "cannot read statistics data" ++msgstr "kan inte läsa statistikdata" + +-#: timezone/zic.c:1161 timezone/zic.c:1374 timezone/zic.c:1388 +-msgid "invalid day of month" +-msgstr "ogiltig dag i mnaden" ++#: nscd/nscd_stat.c:206 ++#, c-format ++msgid "" ++"nscd configuration:\n" ++"\n" ++"%15d server debug level\n" ++msgstr "" ++"nscd konfiguration:\n" ++"\n" ++"%15d servers felsökningsläge\n" + +-#: timezone/zic.c:1166 +-msgid "time before zero" +-msgstr "tid fre noll" ++#: nscd/nscd_stat.c:230 ++#, c-format ++msgid "%3ud %2uh %2um %2lus server runtime\n" ++msgstr "%3ud %2uh %2um %2lus servers körtid\n" + +-#: timezone/zic.c:1170 +-msgid "time too small" +-msgstr "tid fr kort" ++#: nscd/nscd_stat.c:233 ++#, c-format ++msgid " %2uh %2um %2lus server runtime\n" ++msgstr " %2uh %2um %2lus servers körtid\n" + +-#: timezone/zic.c:1174 +-msgid "time too large" +-msgstr "tid fr lng" ++#: nscd/nscd_stat.c:235 ++#, c-format ++msgid " %2um %2lus server runtime\n" ++msgstr " %2um %2lus servers körtid\n" + +-#: timezone/zic.c:1178 timezone/zic.c:1281 +-msgid "invalid time of day" +-msgstr "ogiltig tid p dagen" ++#: nscd/nscd_stat.c:237 ++#, c-format ++msgid " %2lus server runtime\n" ++msgstr " %2lus servers körtid\n" + +-#: timezone/zic.c:1197 +-msgid "illegal CORRECTION field on Leap line" +-msgstr "otilltet \"CORRECTION\"-flt p \"Leap\"-rad" ++#: nscd/nscd_stat.c:239 ++#, c-format ++msgid "" ++"%15d current number of threads\n" ++"%15d maximum number of threads\n" ++"%15lu number of times clients had to wait\n" ++"%15s paranoia mode enabled\n" ++"%15lu restart internal\n" ++msgstr "" ++"%15d nuvarande antal trådar\n" ++"%15d maximalt antal trådar\n" ++"%15lu antal gånger en klient behövde vänta\n" ++"%15s paranoialäge påslagen\n" ++"%15lu omstart internt\n" + +-#: timezone/zic.c:1201 +-msgid "illegal Rolling/Stationary field on Leap line" +-msgstr "otilltet \"Rolling/Stationary\"-flt p \"Leap\"-rad" ++#: nscd/nscd_stat.c:273 ++#, c-format ++msgid "" ++"\n" ++"%s cache:\n" ++"\n" ++"%15s cache is enabled\n" ++"%15s cache is persistent\n" ++"%15s cache is shared\n" ++"%15zu suggested size\n" ++"%15zu total data pool size\n" ++"%15zu used data pool size\n" ++"%15lu seconds time to live for positive entries\n" ++"%15lu seconds time to live for negative entries\n" ++"%15 cache hits on positive entries\n" ++"%15 cache hits on negative entries\n" ++"%15 cache misses on positive entries\n" ++"%15 cache misses on negative entries\n" ++"%15lu%% cache hit rate\n" ++"%15zu current number of cached values\n" ++"%15zu maximum number of cached values\n" ++"%15zu maximum chain length searched\n" ++"%15 number of delays on rdlock\n" ++"%15 number of delays on wrlock\n" ++"%15 memory allocations failed\n" ++"%15s check /etc/%s for changes\n" ++msgstr "" ++"\n" ++"%s cache:\n" ++"\n" ++"%15s cache är påslagen\n" ++"%15s cache är persistent\n" ++"%15s cache är delad\n" ++"%15zu föreslagen storlek\n" ++"%15zu total datapoolstorlek\n" ++"%15zu använd datapoolstorlek\n" ++"%15lu livslängd i sekunder för positiva poster\n" ++"%15lu livslängd i sekunder för negativa poster\n" ++"%15 cache-träffar för positiva poster\n" ++"%15 cache-träffar för negativa poster\n" ++"%15 cache-missar för positiva poster\n" ++"%15 cache-missar för negativa poster\n" ++"%15lu%% cache träffprocent\n" ++"%15zu nuvarande antal värden i cache\n" ++"%15zu maximalt antal värden i cache\n" ++"%15zu maximal kedjelängd som söks\n" ++"%15 antal väntan på läslås\n" ++"%15 antal väntan på skrivlås\n" ++"%15 antal misslyckade minnesallokeringar\n" ++"%15s kontrollera /etc/%s för ändringar\n" ++ ++#: nscd/pwdcache.c:438 ++#, c-format ++msgid "Haven't found \"%s\" in password cache!" ++msgstr "Hittar inte \"%s\" i lösenordscache!" + +-#: timezone/zic.c:1216 +-msgid "wrong number of fields on Link line" +-msgstr "fel antal flt p \"Link\"-rad" ++#: nscd/pwdcache.c:440 ++#, c-format ++msgid "Reloading \"%s\" in password cache!" ++msgstr "Omladdar \"%s\" i lösenordscache!" + +-#: timezone/zic.c:1220 +-msgid "blank FROM field on Link line" +-msgstr "tomt \"FROM\"-flt p \"Link\"-rad" ++#: nscd/pwdcache.c:532 ++#, c-format ++msgid "Invalid numeric uid \"%s\"!" ++msgstr "Ogiltigt numeriskt användarid (uid) \"%s\"!" + +-#: timezone/zic.c:1224 +-msgid "blank TO field on Link line" +-msgstr "tomt \"TO\"-flt p \"Link\"-rad" ++#: nscd/selinux.c:151 ++#, c-format ++msgid "Failed opening connection to the audit subsystem: %m" ++msgstr "Misslyckades med att öppna en förbindelse till undersystemet för granskning (audit): %m" + +-#: timezone/zic.c:1301 +-msgid "invalid starting year" +-msgstr "ogiltigt startr" ++#: nscd/selinux.c:172 ++msgid "Failed to set keep-capabilities" ++msgstr "Misslyckades med att sätta \"keep\"-kapabiliteter" + +-#: timezone/zic.c:1305 +-msgid "starting year too low to be represented" +-msgstr "startr fr litet fr att kunna representeras" ++#: nscd/selinux.c:173 nscd/selinux.c:232 ++#, c-format ++msgid "prctl(KEEPCAPS) failed" ++msgstr "prctl(KEEPCAPS) misslyckades" + +-#: timezone/zic.c:1307 +-msgid "starting year too high to be represented" +-msgstr "startr fr stort fr att kunna representeras" ++#: nscd/selinux.c:187 ++msgid "Failed to initialize drop of capabilities" ++msgstr "Misslyckades med att initiera borttagning av kapabiliteter" + +-#: timezone/zic.c:1326 +-msgid "invalid ending year" +-msgstr "ogiltigt slutr" ++#: nscd/selinux.c:188 ++#, c-format ++msgid "cap_init failed" ++msgstr "cap_init misslyckades" + +-#: timezone/zic.c:1330 +-msgid "ending year too low to be represented" +-msgstr "slutr fr litet fr att kunna representeras" ++#: nscd/selinux.c:205 ++msgid "Failed to drop capabilities\n" ++msgstr "Misslyckades med att ta bort kapabiliteter\n" + +-#: timezone/zic.c:1332 +-msgid "ending year too high to be represented" +-msgstr "slutr fr stort fr att kunna representeras" ++#: nscd/selinux.c:206 nscd/selinux.c:223 ++#, c-format ++msgid "cap_set_proc failed" ++msgstr "cap_set_proc misslyckades" + +-#: timezone/zic.c:1335 +-msgid "starting year greater than ending year" +-msgstr "startr r strre n slutr" ++#: nscd/selinux.c:222 ++msgid "Failed to drop capabilities" ++msgstr "Misslyckades med att ta bort kapabiliteter" + +-#: timezone/zic.c:1342 +-msgid "typed single year" +-msgstr "satte typ p endast ett r" ++#: nscd/selinux.c:231 ++msgid "Failed to unset keep-capabilities" ++msgstr "Misslyckades med att ta bort \"keep\"-kapabiliteter" + +-#: timezone/zic.c:1379 +-msgid "invalid weekday name" +-msgstr "ogiltigt veckodagsnamn" ++#: nscd/selinux.c:247 ++msgid "Failed to determine if kernel supports SELinux" ++msgstr "Misslyckades med att ta reda på om kärnan stödjer SELinux" + +-#: timezone/zic.c:1494 ++#: nscd/selinux.c:262 + #, c-format +-msgid "%s: Can't remove %s: %s\n" +-msgstr "%s: Kan inte ta bort %s: %s\n" ++msgid "Failed to start AVC thread" ++msgstr "Misslyckades med att starta AVC-tråd" + +-#: timezone/zic.c:1504 ++#: nscd/selinux.c:284 + #, c-format +-msgid "%s: Can't create %s: %s\n" +-msgstr "%s: Kan inte skapa %s: %s\n" ++msgid "Failed to create AVC lock" ++msgstr "Misslyckade med att skapa AVC-lås" + +-#: timezone/zic.c:1570 ++#: nscd/selinux.c:324 + #, c-format +-msgid "%s: Error writing %s\n" +-msgstr "%s: Fel vid skrivning till %s\n" +- +-#: timezone/zic.c:1760 +-msgid "can't determine time zone abbreviation to use just after until time" +-msgstr "kan inte avgra tidszonsfrkortning att anvnda just efter \"until\"-tid" +- +-#: timezone/zic.c:1803 +-msgid "too many transitions?!" +-msgstr "fr mnga vergngar?!" +- +-#: timezone/zic.c:1822 +-msgid "internal error - addtype called with bad isdst" +-msgstr "internt fel - addtype anropad med felaktig isdst" +- +-#: timezone/zic.c:1826 +-msgid "internal error - addtype called with bad ttisstd" +-msgstr "internt fel - addtype anropad med felaktig ttisstd" +- +-#: timezone/zic.c:1830 +-msgid "internal error - addtype called with bad ttisgmt" +-msgstr "internt fel - addtype anropad med felaktig ttisgmt" ++msgid "Failed to start AVC" ++msgstr "Misslyckades med att starta AVC" + +-#: timezone/zic.c:1849 +-msgid "too many local time types" +-msgstr "fr mnga lokala tidstyper" ++#: nscd/selinux.c:326 ++msgid "Access Vector Cache (AVC) started" ++msgstr "Access Vector Cache (AVC) startad" + +-#: timezone/zic.c:1877 +-msgid "too many leap seconds" +-msgstr "fr mnga skottsekunder" ++#: nscd/selinux.c:347 ++msgid "Error getting context of socket peer" ++msgstr "Kunde inte hämta kontext för uttagsparter (socket peer)" + +-#: timezone/zic.c:1883 +-msgid "repeated leap second moment" +-msgstr "upprepat skottsekundstillflle" ++#: nscd/selinux.c:352 ++msgid "Error getting context of nscd" ++msgstr "Kunde inte hämta kontext för nscd" + +-#: timezone/zic.c:1935 +-msgid "Wild result from command execution" +-msgstr "Vilt resultat frn kommandokrning" ++#: nscd/selinux.c:358 ++msgid "Error getting sid from context" ++msgstr "Kunde inte hämta \"sid\" från kontext" + +-#: timezone/zic.c:1936 ++#: nscd/selinux.c:390 + #, c-format +-msgid "%s: command was '%s', result was %d\n" +-msgstr "%s: kommandot var \"%s\", resultatet blev %d\n" +- +-#: timezone/zic.c:2031 +-msgid "Odd number of quotation marks" +-msgstr "Ojmnt antal citationstecken" +- +-#: timezone/zic.c:2051 timezone/zic.c:2070 +-msgid "time overflow" +-msgstr "fr stort tidsvrde" ++msgid "" ++"\n" ++"SELinux AVC Statistics:\n" ++"\n" ++"%15u entry lookups\n" ++"%15u entry hits\n" ++"%15u entry misses\n" ++"%15u entry discards\n" ++"%15u CAV lookups\n" ++"%15u CAV hits\n" ++"%15u CAV probes\n" ++"%15u CAV misses\n" ++msgstr "" ++"\n" ++"SELinux AVC Statistik:\n" ++"\n" ++"%15u postsökingar\n" ++"%15u postträffar\n" ++"%15u postmissar\n" ++"%15u bortkastade poster\n" ++"%15u CAV-sökningar\n" ++"%15u CAV-träffar\n" ++"%15u CAV-sonderingar\n" ++"%15u CAV-missar\n" + +-#: timezone/zic.c:2117 +-msgid "use of 2/29 in non leap-year" +-msgstr "anvnder 29/2 i icke-skottr" ++#: nss/getent.c:52 ++msgid "database [key ...]" ++msgstr "databas [nyckel ...]" + +-#: timezone/zic.c:2151 +-msgid "no day in month matches rule" +-msgstr "ingen dag i mnaden matchar regeln" ++#: nss/getent.c:57 ++msgid "Service configuration to be used" ++msgstr "Tjänstekonfiguration som ska användas" + +-#: timezone/zic.c:2175 +-msgid "too many, or too long, time zone abbreviations" +-msgstr "fr mnga eller fr lnga tidszonfrkortningar" ++#: nss/getent.c:62 ++msgid "" ++"Get entries from administrative database. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Hämta poster från den administrativa databasen För felrapporteringsinstruktioner, se:\n" ++".\n" ++"Rapportera fel eller synpunkter på översättningen till .\n" + +-#: timezone/zic.c:2216 ++#: nss/getent.c:145 nss/getent.c:394 + #, c-format +-msgid "%s: Can't create directory %s: %s\n" +-msgstr "%s: Kan inte skapa katalog %s: %s\n" ++msgid "Enumeration not supported on %s\n" ++msgstr "Uppräkning stöds inte på %s\n" + +-#: timezone/zic.c:2238 ++#: nss/getent.c:782 + #, c-format +-msgid "%s: %d did not sign extend correctly\n" +-msgstr "%s: %d teckenexpanderades inte korrekt\n" +- +-#: posix/../sysdeps/generic/wordexp.c:1797 +-msgid "parameter null or not set" +-msgstr "parameter r tom eller inte satt" +- +-#: posix/../sysdeps/posix/gai_strerror.c:31 +-msgid "Address family for hostname not supported" +-msgstr "Adressfamilj fr vrdnamn stds ej" ++msgid "Unknown database name" ++msgstr "Okänt databasnamn" + +-#: posix/../sysdeps/posix/gai_strerror.c:32 +-msgid "Temporary failure in name resolution" +-msgstr "Namnuppslagning misslyckades temporrt" +- +-#: posix/../sysdeps/posix/gai_strerror.c:33 +-msgid "Bad value for ai_flags" +-msgstr "Otilltet vrde fr ai_flags" ++#: nss/getent.c:808 ++msgid "Supported databases:\n" ++msgstr "Databaser som stöds:\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:34 +-msgid "Non-recoverable failure in name resolution" +-msgstr "Oreparerbart fel i namnuppslagning" ++#: nss/getent.c:868 ++#, c-format ++msgid "Unknown database: %s\n" ++msgstr "Okänd databas: %s\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:35 +-msgid "ai_family not supported" +-msgstr "ai_family stds ej" ++#: nss/makedb.c:60 ++msgid "Convert key to lower case" ++msgstr "Konvertera nyckel till gemener" + +-#: posix/../sysdeps/posix/gai_strerror.c:36 +-msgid "Memory allocation failure" +-msgstr "Minnesallokeringsfel" ++#: nss/makedb.c:63 ++msgid "Do not print messages while building database" ++msgstr "Skriv inte meddelanden medans databasen byggs" + +-#: posix/../sysdeps/posix/gai_strerror.c:37 +-msgid "No address associated with hostname" +-msgstr "Ingen adress associerad med vrdnamn" ++#: nss/makedb.c:65 ++msgid "Print content of database file, one entry a line" ++msgstr "Skriv ut innehållet i databasen, en post per rad" + +-#: posix/../sysdeps/posix/gai_strerror.c:38 +-msgid "Name or service not known" +-msgstr "Namn eller tjnst oknd" ++#: nss/makedb.c:70 ++msgid "Create simple DB database from textual input." ++msgstr "Skapa en enkel databas från textuell indata" + +-#: posix/../sysdeps/posix/gai_strerror.c:39 +-msgid "Servname not supported for ai_socktype" +-msgstr "Servname stds inte fr ai_socktype" ++#: nss/makedb.c:73 ++msgid "" ++"INPUT-FILE OUTPUT-FILE\n" ++"-o OUTPUT-FILE INPUT-FILE\n" ++"-u INPUT-FILE" ++msgstr "" ++"INFIL UTFIL\n" ++"-o UTFIL INFIL\n" ++"-u INFIL" + +-#: posix/../sysdeps/posix/gai_strerror.c:40 +-msgid "ai_socktype not supported" +-msgstr "ai_socktype stds ej" ++#: nss/makedb.c:142 ++#, c-format ++msgid "No usable database library found." ++msgstr "Inget användbart databasbibliotek hittades" + +-#: posix/../sysdeps/posix/gai_strerror.c:41 +-msgid "System error" +-msgstr "Systemfel" ++#: nss/makedb.c:149 ++#, c-format ++msgid "cannot open database file `%s': %s" ++msgstr "kan inte öppna databasfil \"%s\": %s" + +-#: posix/../sysdeps/posix/gai_strerror.c:42 +-msgid "Processing request in progress" +-msgstr "Behandling av begran pgr" ++#: nss/makedb.c:151 ++msgid "incorrectly formatted file" ++msgstr "inkorrekt formaterad fil" + +-#: posix/../sysdeps/posix/gai_strerror.c:43 +-msgid "Request canceled" +-msgstr "Begran avbruten" ++#: nss/makedb.c:331 ++msgid "duplicate key" ++msgstr "duplicerad nyckel" + +-#: posix/../sysdeps/posix/gai_strerror.c:44 +-msgid "Request not canceled" +-msgstr "Begran inte avbruten" ++#: nss/makedb.c:337 ++#, c-format ++msgid "while writing database file" ++msgstr "när databasfilen skrevs" + +-#: posix/../sysdeps/posix/gai_strerror.c:45 +-msgid "All requests done" +-msgstr "Alla begran utfrda" ++#: nss/makedb.c:348 ++#, c-format ++msgid "problems while reading `%s'" ++msgstr "problem när \"%s\" lästes" + +-#: posix/../sysdeps/posix/gai_strerror.c:46 +-msgid "Interrupted by a signal" +-msgstr "Avbruten av en signal" ++#: nss/makedb.c:368 nss/makedb.c:385 ++#, c-format ++msgid "while reading database" ++msgstr "när databasen lästes" + +-#: posix/getconf.c:892 ++#: posix/getconf.c:940 + #, c-format + msgid "Usage: %s [-v specification] variable_name [pathname]\n" +-msgstr "Anvndning: %s [-v specifikation] variabelnamn [skvg]\n" ++msgstr "Användning: %s [-v specifikation] variabelnamn [sökväg]\n" ++ ++#: posix/getconf.c:943 ++#, c-format ++msgid " %s -a [pathname]\n" ++msgstr " %s -a [sökväg]\n" + +-#: posix/getconf.c:950 ++#: posix/getconf.c:1062 + #, c-format + msgid "unknown specification \"%s\"" +-msgstr "oknd specifikation \"%s\"" ++msgstr "okänd specifikation \"%s\"" + +-#: posix/getconf.c:979 posix/getconf.c:995 ++#: posix/getconf.c:1090 ++#, c-format ++msgid "Couldn't execute %s" ++msgstr "Kunde inte exekvera %s" ++ ++#: posix/getconf.c:1130 posix/getconf.c:1146 + msgid "undefined" + msgstr "odefinierad" + +-#: posix/getconf.c:1017 ++#: posix/getconf.c:1168 + #, c-format + msgid "Unrecognized variable `%s'" +-msgstr "Oknd variabel \"%s\"" ++msgstr "Okänd variabel \"%s\"" + +-#: posix/getopt.c:692 posix/getopt.c:711 ++#: posix/getopt.c:571 posix/getopt.c:587 + #, c-format + msgid "%s: option `%s' is ambiguous\n" +-msgstr "%s: flaggan \"%s\" r tvetydig\n" ++msgstr "%s: flaggan \"%s\" är tvetydig\n" + +-#: posix/getopt.c:744 posix/getopt.c:748 ++#: posix/getopt.c:620 posix/getopt.c:624 + #, c-format + msgid "%s: option `--%s' doesn't allow an argument\n" + msgstr "%s: flaggan \"--%s\" tar inget argument\n" + +-#: posix/getopt.c:757 posix/getopt.c:762 ++#: posix/getopt.c:633 posix/getopt.c:638 + #, c-format + msgid "%s: option `%c%s' doesn't allow an argument\n" + msgstr "%s: flaggan \"%c%s\" tar inget argument\n" + +-#: posix/getopt.c:807 posix/getopt.c:829 posix/getopt.c:1159 +-#: posix/getopt.c:1181 ++#: posix/getopt.c:681 posix/getopt.c:700 posix/getopt.c:1016 ++#: posix/getopt.c:1035 + #, c-format + msgid "%s: option `%s' requires an argument\n" +-msgstr "%s: flaggan \"%s\" behver ett argument\n" ++msgstr "%s: flaggan \"%s\" behöver ett argument\n" + +-#: posix/getopt.c:867 posix/getopt.c:870 ++#: posix/getopt.c:738 posix/getopt.c:741 + #, c-format + msgid "%s: unrecognized option `--%s'\n" +-msgstr "%s: oknd flagga \"--%s\"\n" ++msgstr "%s: okänd flagga \"--%s\"\n" + +-#: posix/getopt.c:878 posix/getopt.c:881 ++#: posix/getopt.c:749 posix/getopt.c:752 + #, c-format + msgid "%s: unrecognized option `%c%s'\n" +-msgstr "%s: oknd flagga \"%c%s\"\n" ++msgstr "%s: okänd flagga \"%c%s\"\n" + +-#: posix/getopt.c:936 posix/getopt.c:939 ++#: posix/getopt.c:804 posix/getopt.c:807 + #, c-format + msgid "%s: illegal option -- %c\n" +-msgstr "%s: otillten flagga -- %c\n" ++msgstr "%s: otillåten flagga -- %c\n" + +-#: posix/getopt.c:945 posix/getopt.c:948 ++#: posix/getopt.c:813 posix/getopt.c:816 + #, c-format + msgid "%s: invalid option -- %c\n" + msgstr "%s: ogiltig flagga -- %c\n" + +-#: posix/getopt.c:1003 posix/getopt.c:1022 posix/getopt.c:1234 +-#: posix/getopt.c:1255 ++#: posix/getopt.c:868 posix/getopt.c:884 posix/getopt.c:1088 ++#: posix/getopt.c:1106 + #, c-format + msgid "%s: option requires an argument -- %c\n" +-msgstr "%s: flaggan behver ett argument -- %c\n" ++msgstr "%s: flaggan behöver ett argument -- %c\n" + +-#: posix/getopt.c:1074 posix/getopt.c:1093 ++#: posix/getopt.c:937 posix/getopt.c:953 + #, c-format + msgid "%s: option `-W %s' is ambiguous\n" +-msgstr "%s: flaggan \"-W %s\" r tvetydig\n" ++msgstr "%s: flaggan \"-W %s\" är tvetydig\n" + +-#: posix/getopt.c:1117 posix/getopt.c:1138 ++#: posix/getopt.c:977 posix/getopt.c:995 + #, c-format + msgid "%s: option `-W %s' doesn't allow an argument\n" + msgstr "%s: flaggan \"-W %s\" tar inget argument\n" + +-#: posix/regcomp.c:150 ++#: posix/regcomp.c:135 + msgid "No match" +-msgstr "Ingen trff" ++msgstr "Ingen träff" + +-#: posix/regcomp.c:153 ++#: posix/regcomp.c:138 + msgid "Invalid regular expression" +-msgstr "Ogiltigt reguljrt uttryck" ++msgstr "Ogiltigt reguljärt uttryck" + +-#: posix/regcomp.c:156 ++#: posix/regcomp.c:141 + msgid "Invalid collation character" + msgstr "Ogiltigt kollationeringstecken" + +-#: posix/regcomp.c:159 ++#: posix/regcomp.c:144 + msgid "Invalid character class name" + msgstr "Ogiltigt teckenklassnamn" + +-#: posix/regcomp.c:162 ++#: posix/regcomp.c:147 + msgid "Trailing backslash" +-msgstr "Avslutande omvnt snedstreck" ++msgstr "Avslutande omvänt snedstreck" + +-#: posix/regcomp.c:165 ++#: posix/regcomp.c:150 + msgid "Invalid back reference" +-msgstr "Ogiltig baktreferens" ++msgstr "Ogiltig bakåtreferens" + +-#: posix/regcomp.c:168 ++#: posix/regcomp.c:153 + msgid "Unmatched [ or [^" + msgstr "Obalanserade [ eller [^" + +-#: posix/regcomp.c:171 ++#: posix/regcomp.c:156 + msgid "Unmatched ( or \\(" + msgstr "Obalanserade ( eller \\(" + +-#: posix/regcomp.c:174 ++#: posix/regcomp.c:159 + msgid "Unmatched \\{" + msgstr "Obalanserad \\{" + +-#: posix/regcomp.c:177 ++#: posix/regcomp.c:162 + msgid "Invalid content of \\{\\}" +-msgstr "Ogiltigt innehll i \\{\\}" ++msgstr "Ogiltigt innehåll i \\{\\}" + +-#: posix/regcomp.c:180 ++#: posix/regcomp.c:165 + msgid "Invalid range end" + msgstr "Ogiltigt intervallslut" + +-#: posix/regcomp.c:183 ++#: posix/regcomp.c:168 + msgid "Memory exhausted" + msgstr "Minnet slut" + +-#: posix/regcomp.c:186 ++#: posix/regcomp.c:171 + msgid "Invalid preceding regular expression" +-msgstr "Ogiltigt fregende reguljrt uttryck" ++msgstr "Ogiltigt föregående reguljärt uttryck" + +-#: posix/regcomp.c:189 ++#: posix/regcomp.c:174 + msgid "Premature end of regular expression" +-msgstr "Fr tidigt slut p reguljrt uttryck" ++msgstr "För tidigt slut på reguljärt uttryck" + +-#: posix/regcomp.c:192 ++#: posix/regcomp.c:177 + msgid "Regular expression too big" +-msgstr "Reguljrt uttryck fr stort" ++msgstr "Reguljärt uttryck för stort" + +-#: posix/regcomp.c:195 ++#: posix/regcomp.c:180 + msgid "Unmatched ) or \\)" + msgstr "Obalanserade ) eller \\)" + +-#: posix/regcomp.c:661 ++#: posix/regcomp.c:660 + msgid "No previous regular expression" +-msgstr "Inget fregende reguljrt uttryck" ++msgstr "Inget föregående reguljärt uttryck" + +-#: argp/argp-help.c:224 +-#, c-format +-msgid "%.*s: ARGP_HELP_FMT parameter requires a value" +-msgstr "%.*s: parameter till ARGP_HELP_FMT krver ett vrde" +- +-#: argp/argp-help.c:233 +-#, c-format +-msgid "%.*s: Unknown ARGP_HELP_FMT parameter" +-msgstr "%.*s: Parameter till ARGP_HELP_FMT oknd" +- +-#: argp/argp-help.c:245 +-#, c-format +-msgid "Garbage in ARGP_HELP_FMT: %s" +-msgstr "Skrp i ARGP_HELP_FMT: %s" +- +-#: argp/argp-help.c:1205 +-msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." +-msgstr "Obligatoriska respektive valfria argument fr lnga flaggor r obligatoriska repektive valfria ven fr korta." +- +-#: argp/argp-help.c:1592 +-msgid "Usage:" +-msgstr "Anvndning:" +- +-#: argp/argp-help.c:1596 +-msgid " or: " +-msgstr " eller: " +- +-#: argp/argp-help.c:1608 +-msgid " [OPTION...]" +-msgstr " [FLAGGA...]" +- +-#: argp/argp-help.c:1635 +-#, c-format +-msgid "Try `%s --help' or `%s --usage' for more information.\n" +-msgstr "Frsk med \"%s --help\" eller \"%s --usage\" fr mer information\n" +- +-#: argp/argp-help.c:1663 +-#, c-format +-msgid "Report bugs to %s.\n" +-msgstr "Rapportera fel till %s.\n" +- +-#: argp/argp-parse.c:115 +-msgid "Give this help list" +-msgstr "Skriv denna hjlplista" +- +-#: argp/argp-parse.c:116 +-msgid "Give a short usage message" +-msgstr "Ge ett kort hjlpmeddelande" +- +-#: argp/argp-parse.c:117 +-msgid "Set the program name" +-msgstr "Stt programnamnet" +- +-#: argp/argp-parse.c:119 +-msgid "Hang for SECS seconds (default 3600)" +-msgstr "Vnta i SEK sekunder (standardvrde 3600)" +- +-#: argp/argp-parse.c:180 +-msgid "Print program version" +-msgstr "Skriv programversion" +- +-#: argp/argp-parse.c:196 +-msgid "(PROGRAM ERROR) No version known!?" +-msgstr "(PROGRAMFEL) Ingen version knd!?" +- +-#: argp/argp-parse.c:672 +-#, c-format +-msgid "%s: Too many arguments\n" +-msgstr "%s: Fr mnga argument\n" +- +-#: argp/argp-parse.c:813 +-msgid "(PROGRAM ERROR) Option should have been recognized!?" +-msgstr "(PROGRAMFEL) Flagga skulle knts igen!?" ++#: posix/wordexp.c:1798 ++msgid "parameter null or not set" ++msgstr "parameter är tom eller inte satt" + + #: resolv/herror.c:68 + msgid "Resolver Error 0 (no error)" +@@ -3720,335 +4461,207 @@ + + #: resolv/herror.c:69 + msgid "Unknown host" +-msgstr "Oknd vrd" ++msgstr "Okänd värd" + + #: resolv/herror.c:70 + msgid "Host name lookup failure" +-msgstr "Uppslagning av vrdnamn misslyckades" ++msgstr "Uppslagning av värdnamn misslyckades" + + #: resolv/herror.c:71 + msgid "Unknown server error" +-msgstr "Oknt fel hos server" ++msgstr "Okänt fel hos server" + + #: resolv/herror.c:72 + msgid "No address associated with name" + msgstr "Ingen adress associerad med namnet" + +-#: resolv/herror.c:108 ++#: resolv/herror.c:107 + msgid "Resolver internal error" +-msgstr "Internt fel i namnlsare (resolver)" ++msgstr "Internt fel i namnlösare (resolver)" + +-#: resolv/herror.c:111 ++#: resolv/herror.c:110 + msgid "Unknown resolver error" +-msgstr "Oknt fel hos namnlsare (resolver)" +- +-#: resolv/res_hconf.c:147 +-#, c-format +-msgid "%s: line %d: expected service, found `%s'\n" +-msgstr "%s: rad %d: frvntade tjnst, hittade \"%s\"\n" +- +-#: resolv/res_hconf.c:165 +-#, c-format +-msgid "%s: line %d: cannot specify more than %d services" +-msgstr "%s: rad %d: kan inte ange fler n %d tjnster" +- +-#: resolv/res_hconf.c:191 +-#, c-format +-msgid "%s: line %d: list delimiter not followed by keyword" +-msgstr "%s: rad %d: listavskiljare fljs inte av nyckelord" ++msgstr "Okänt fel hos namnlösare (resolver)" + +-#: resolv/res_hconf.c:231 ++#: resolv/res_hconf.c:124 + #, c-format + msgid "%s: line %d: cannot specify more than %d trim domains" +-msgstr "%s: rad %d: kan inte ange fler n %d filterdomner" ++msgstr "%s: rad %d: kan inte ange fler än %d filterdomäner" + +-#: resolv/res_hconf.c:256 ++#: resolv/res_hconf.c:145 + #, c-format + msgid "%s: line %d: list delimiter not followed by domain" +-msgstr "%s: rad %d: listavskiljare fljs inte av domn" ++msgstr "%s: rad %d: listavskiljare följs inte av domän" + +-#: resolv/res_hconf.c:319 ++#: resolv/res_hconf.c:204 + #, c-format + msgid "%s: line %d: expected `on' or `off', found `%s'\n" +-msgstr "%s: rad %d: frvntade \"on\" eller \"off\", hittade \"%s\"\n" ++msgstr "%s: rad %d: förväntade \"on\" eller \"off\", hittade \"%s\"\n" + +-#: resolv/res_hconf.c:366 ++#: resolv/res_hconf.c:247 + #, c-format + msgid "%s: line %d: bad command `%s'\n" +-msgstr "%s: rad %d: oknt kommando \"%s\"\n" ++msgstr "%s: rad %d: okänt kommando \"%s\"\n" + +-#: resolv/res_hconf.c:395 ++#: resolv/res_hconf.c:282 + #, c-format + msgid "%s: line %d: ignoring trailing garbage `%s'\n" +-msgstr "%s: rad %d: ignorerar avslutande skrp \"%s\"\n" +- +-#: nss/getent.c:51 +-msgid "database [key ...]" +-msgstr "databas [nyckel ...]" +- +-#: nss/getent.c:56 +-msgid "Service configuration to be used" +-msgstr "Tjnstekonfiguration som ska anvndas" +- +-#: nss/getent.c:136 nss/getent.c:375 +-#, c-format +-msgid "Enumeration not supported on %s\n" +-msgstr "Upprkning stds inte p %s\n" +- +-#: nss/getent.c:800 +-msgid "getent - get entries from administrative database." +-msgstr "getent - hmta poster frn administrativ databas" +- +-#: nss/getent.c:801 +-msgid "Supported databases:" +-msgstr "Databaser som stds:" +- +-#: nss/getent.c:858 nscd/nscd.c:131 nscd/nscd_nischeck.c:64 +-msgid "wrong number of arguments" +-msgstr "fel antal argument" +- +-#: nss/getent.c:868 +-#, c-format +-msgid "Unknown database: %s\n" +-msgstr "Oknd databas: %s\n" +- +-#: debug/pcprofiledump.c:52 +-msgid "Don't buffer output" +-msgstr "Buffra inte resultatet" +- +-#: debug/pcprofiledump.c:57 +-msgid "Dump information generated by PC profiling." +-msgstr "Visa information genererad av PC-profilering." +- +-#: debug/pcprofiledump.c:60 +-msgid "[FILE]" +-msgstr "[FIL]" +- +-#: debug/pcprofiledump.c:100 +-msgid "cannot open input file" +-msgstr "kan inte ppna infil" +- +-#: debug/pcprofiledump.c:106 +-msgid "cannot read header" +-msgstr "kan inte lsa huvud" +- +-#: debug/pcprofiledump.c:170 +-msgid "invalid pointer size" +-msgstr "ogiltig pekarstorlek" +- +-#: inet/rcmd.c:163 inet/rcmd.c:166 +-msgid "rcmd: Cannot allocate memory\n" +-msgstr "rcmd: Kan inte allokera minne\n" +- +-#: inet/rcmd.c:185 inet/rcmd.c:188 +-msgid "rcmd: socket: All ports in use\n" +-msgstr "rcmd: uttag (socket): Alla portar anvnds\n" +- +-#: inet/rcmd.c:222 +-#, c-format +-msgid "connect to address %s: " +-msgstr "anslut till adress %s: " +- +-#: inet/rcmd.c:240 +-#, c-format +-msgid "Trying %s...\n" +-msgstr "Provar %s...\n" +- +-#: inet/rcmd.c:289 +-#, c-format +-msgid "rcmd: write (setting up stderr): %m\n" +-msgstr "rcmd: write: (stter upp standard fel): %m\n" +- +-#: inet/rcmd.c:310 +-#, c-format +-msgid "rcmd: poll (setting up stderr): %m\n" +-msgstr "rcmd: poll (stter upp standard fel): %m\n" +- +-#: inet/rcmd.c:313 +-msgid "poll: protocol failure in circuit setup\n" +-msgstr "poll: protokollfel i frbindelseuppsttning\n" +- +-#: inet/rcmd.c:358 +-msgid "socket: protocol failure in circuit setup\n" +-msgstr "uttag (socket): protokollfel i frbindelseuppsttning\n" +- +-#: inet/rcmd.c:387 +-#, c-format +-msgid "rcmd: %s: short read" +-msgstr "rcmd: %s: lsning gav fr lite data" +- +-#: inet/rcmd.c:549 +-msgid "lstat failed" +-msgstr "misslyckades ta status (lstat)" +- +-#: inet/rcmd.c:551 +-msgid "not regular file" +-msgstr "inte en normal fil" ++msgstr "%s: rad %d: ignorerar avslutande skräp \"%s\"\n" + +-#: inet/rcmd.c:556 +-msgid "cannot open" +-msgstr "kan inte ppna" +- +-#: inet/rcmd.c:558 +-msgid "fstat failed" +-msgstr "misslyckades ta status (fstat)" +- +-#: inet/rcmd.c:560 +-msgid "bad owner" +-msgstr "olmplig gare" +- +-#: inet/rcmd.c:562 +-msgid "writeable by other than owner" +-msgstr "skrivbar fr andra n garen" ++#: stdio-common/psignal.c:51 ++#, c-format ++msgid "%s%sUnknown signal %d\n" ++msgstr "%s%sOkänd signal %d\n" + +-#: inet/rcmd.c:564 +-msgid "hard linked somewhere" +-msgstr "hrdlnkad ngonstans" ++#: stdio-common/psignal.c:52 ++msgid "Unknown signal" ++msgstr "Okänd signal" + +-#: inet/ruserpass.c:170 inet/ruserpass.c:193 +-msgid "out of memory" +-msgstr "minnet slut" ++#: string/_strerror.c:45 sysdeps/mach/_strerror.c:87 ++msgid "Unknown error " ++msgstr "Okänt fel " + +-#: inet/ruserpass.c:184 +-msgid "Error: .netrc file is readable by others." +-msgstr "Fel: .netrc kan lsas av andra." ++#: string/strerror.c:43 ++msgid "Unknown error" ++msgstr "Okänt fel" + +-#: inet/ruserpass.c:185 +-msgid "Remove password or make file unreadable by others." +-msgstr "Ta bort lsenord eller gr filen olsbar fr andra" ++#: string/strsignal.c:65 ++#, c-format ++msgid "Real-time signal %d" ++msgstr "Realtidssignal %d" + +-#: inet/ruserpass.c:277 ++#: string/strsignal.c:69 + #, c-format +-msgid "Unknown .netrc keyword %s" +-msgstr "Oknt .netrc-nyckelord %s" ++msgid "Unknown signal %d" ++msgstr "Okänd signal %d" + +-#: sunrpc/auth_unix.c:115 sunrpc/auth_unix.c:118 ++#: sunrpc/auth_unix.c:114 + msgid "authunix_create: out of memory\n" + msgstr "authunix_create: minnet slut\n" + +-#: sunrpc/auth_unix.c:318 ++#: sunrpc/auth_unix.c:350 + msgid "auth_none.c - Fatal marshalling problem" + msgstr "auth_none.c - Fatalt kodningsproblem" + + #: sunrpc/clnt_perr.c:118 sunrpc/clnt_perr.c:139 + #, c-format + msgid "; low version = %lu, high version = %lu" +-msgstr "; undre version = %lu, vre version = %lu" ++msgstr "; undre version = %lu, övre version = %lu" + + #: sunrpc/clnt_perr.c:125 + msgid "; why = " +-msgstr "; varfr = " ++msgstr "; varför = " + + #: sunrpc/clnt_perr.c:132 + #, c-format + msgid "(unknown authentication error - %d)" +-msgstr "(oknt fel vid kthetskontroll - %d)" ++msgstr "(okänt fel vid äkthetskontroll - %d)" + +-#: sunrpc/clnt_perr.c:177 ++#: sunrpc/clnt_perr.c:172 + msgid "RPC: Success" + msgstr "RPC: Lyckat" + +-#: sunrpc/clnt_perr.c:180 ++#: sunrpc/clnt_perr.c:175 + msgid "RPC: Can't encode arguments" + msgstr "RPC: Kan inte koda argumentet" + +-#: sunrpc/clnt_perr.c:184 ++#: sunrpc/clnt_perr.c:179 + msgid "RPC: Can't decode result" + msgstr "RPC: Kan inte avkoda resultatet" + +-#: sunrpc/clnt_perr.c:188 ++#: sunrpc/clnt_perr.c:183 + msgid "RPC: Unable to send" + msgstr "RPC: Kan inte skicka" + +-#: sunrpc/clnt_perr.c:192 ++#: sunrpc/clnt_perr.c:187 + msgid "RPC: Unable to receive" + msgstr "RPC: Kan inte ta emot" + +-#: sunrpc/clnt_perr.c:196 ++#: sunrpc/clnt_perr.c:191 + msgid "RPC: Timed out" +-msgstr "RPC: Tiden lpte ut" ++msgstr "RPC: Tiden löpte ut" + +-#: sunrpc/clnt_perr.c:200 ++#: sunrpc/clnt_perr.c:195 + msgid "RPC: Incompatible versions of RPC" + msgstr "RPC: Inkompatibla versioner av RPC" + +-#: sunrpc/clnt_perr.c:204 ++#: sunrpc/clnt_perr.c:199 + msgid "RPC: Authentication error" +-msgstr "RPC: Fel vid kthetskontroll" ++msgstr "RPC: Fel vid äkthetskontroll" + +-#: sunrpc/clnt_perr.c:208 ++#: sunrpc/clnt_perr.c:203 + msgid "RPC: Program unavailable" +-msgstr "RPC: Programmet otillgngligt" ++msgstr "RPC: Programmet otillgängligt" + +-#: sunrpc/clnt_perr.c:212 ++#: sunrpc/clnt_perr.c:207 + msgid "RPC: Program/version mismatch" + msgstr "RPC: Program/version-inkompatibilitet" + +-#: sunrpc/clnt_perr.c:216 ++#: sunrpc/clnt_perr.c:211 + msgid "RPC: Procedure unavailable" +-msgstr "RPC: Procedur inte tillgnglig" ++msgstr "RPC: Procedur inte tillgänglig" + +-#: sunrpc/clnt_perr.c:220 ++#: sunrpc/clnt_perr.c:215 + msgid "RPC: Server can't decode arguments" + msgstr "RPC: Server kan inte avkoda argumenten" + +-#: sunrpc/clnt_perr.c:224 ++#: sunrpc/clnt_perr.c:219 + msgid "RPC: Remote system error" +-msgstr "RPC: Fjrrsystemsfel" ++msgstr "RPC: Fjärrsystemsfel" + +-#: sunrpc/clnt_perr.c:228 ++#: sunrpc/clnt_perr.c:223 + msgid "RPC: Unknown host" +-msgstr "RPC: Oknd vrdmaskin" ++msgstr "RPC: Okänd värdmaskin" + +-#: sunrpc/clnt_perr.c:232 ++#: sunrpc/clnt_perr.c:227 + msgid "RPC: Unknown protocol" +-msgstr "RPC: Oknt protokoll" ++msgstr "RPC: Okänt protokoll" + +-#: sunrpc/clnt_perr.c:236 ++#: sunrpc/clnt_perr.c:231 + msgid "RPC: Port mapper failure" +-msgstr "RPC: Fel i portversttare" ++msgstr "RPC: Fel i portöversättare" + +-#: sunrpc/clnt_perr.c:240 ++#: sunrpc/clnt_perr.c:235 + msgid "RPC: Program not registered" + msgstr "RPC: Programmet inte registrerat" + +-#: sunrpc/clnt_perr.c:244 ++#: sunrpc/clnt_perr.c:239 + msgid "RPC: Failed (unspecified error)" + msgstr "RPC: Misslyckades (ospecificerat fel)" + +-#: sunrpc/clnt_perr.c:285 ++#: sunrpc/clnt_perr.c:280 + msgid "RPC: (unknown error code)" +-msgstr "RPC: (oknd felkod)" ++msgstr "RPC: (okänd felkod)" + +-#: sunrpc/clnt_perr.c:357 ++#: sunrpc/clnt_perr.c:342 + msgid "Authentication OK" +-msgstr "kthetskontroll OK" ++msgstr "Äkthetskontroll OK" + +-#: sunrpc/clnt_perr.c:360 ++#: sunrpc/clnt_perr.c:345 + msgid "Invalid client credential" + msgstr "Ogiltiga klientreferenser" + +-#: sunrpc/clnt_perr.c:364 ++#: sunrpc/clnt_perr.c:349 + msgid "Server rejected credential" +-msgstr "Server frkastade kreditiv" ++msgstr "Server förkastade kreditiv" + +-#: sunrpc/clnt_perr.c:368 ++#: sunrpc/clnt_perr.c:353 + msgid "Invalid client verifier" + msgstr "Ogiltig klientverifierare" + +-#: sunrpc/clnt_perr.c:372 ++#: sunrpc/clnt_perr.c:357 + msgid "Server rejected verifier" +-msgstr "Server frkastade verifierare" ++msgstr "Server förkastade verifierare" + +-#: sunrpc/clnt_perr.c:376 ++#: sunrpc/clnt_perr.c:361 + msgid "Client credential too weak" +-msgstr "Klientens referenser r fr svaga" ++msgstr "Klientens referenser är för svaga" + +-#: sunrpc/clnt_perr.c:380 ++#: sunrpc/clnt_perr.c:365 + msgid "Invalid server verifier" + msgstr "Ogiltig serververifierare" + +-#: sunrpc/clnt_perr.c:384 ++#: sunrpc/clnt_perr.c:369 + msgid "Failed (unspecified error)" + msgstr "Misslyckades (ospecificerat fel)" + +@@ -4056,211 +4669,195 @@ + msgid "clnt_raw.c - Fatal header serialization error." + msgstr "clnt_raw.c - Fatalt fel vid serialisering" + +-#: sunrpc/clnt_tcp.c:134 sunrpc/clnt_tcp.c:137 ++#: sunrpc/clnt_tcp.c:131 + msgid "clnttcp_create: out of memory\n" + msgstr "clnttcp_create: minnet slut\n" + +-#: sunrpc/clnt_udp.c:141 sunrpc/clnt_udp.c:144 ++#: sunrpc/clnt_udp.c:139 + msgid "clntudp_create: out of memory\n" + msgstr "clntudp_create: minnet slut\n" + +-#: sunrpc/clnt_unix.c:131 sunrpc/clnt_unix.c:134 ++#: sunrpc/clnt_unix.c:128 + msgid "clntunix_create: out of memory\n" + msgstr "clntunix_create: minnet slut\n" + +-#: sunrpc/get_myaddr.c:78 +-msgid "get_myaddress: ioctl (get interface configuration)" +-msgstr "get_myaddress: ioctl (hmta grnssnittskonfiguration)" +- +-#: sunrpc/pm_getmaps.c:74 ++#: sunrpc/pm_getmaps.c:83 + msgid "pmap_getmaps rpc problem" + msgstr "pmap_getmaps rpc problem" + +-#: sunrpc/pmap_clnt.c:72 +-msgid "__get_myaddress: ioctl (get interface configuration)" +-msgstr "__get_myaddress: ioctl (hmta grnssnittskonfiguration)" +- +-#: sunrpc/pmap_clnt.c:137 ++#: sunrpc/pmap_clnt.c:129 + msgid "Cannot register service" +-msgstr "Kan inte registrera tjnst" +- +-#: sunrpc/pmap_rmt.c:190 +-msgid "broadcast: ioctl (get interface configuration)" +-msgstr "utsndning: ioctl (hmta grnssnittskonfiguration)" ++msgstr "Kan inte registrera tjänst" + +-#: sunrpc/pmap_rmt.c:199 +-msgid "broadcast: ioctl (get interface flags)" +-msgstr "utsndning: ioctl (hmta grnssnittsflaggor)" +- +-#: sunrpc/pmap_rmt.c:269 ++#: sunrpc/pmap_rmt.c:248 + msgid "Cannot create socket for broadcast rpc" +-msgstr "Kan inte skapa uttag (socket) fr utsndnings-rpc" ++msgstr "Kan inte skapa uttag (socket) för utsändnings-rpc" + +-#: sunrpc/pmap_rmt.c:276 ++#: sunrpc/pmap_rmt.c:255 + msgid "Cannot set socket option SO_BROADCAST" +-msgstr "Kan inte stta uttagsflaggan (socket option) SO_BROADCAST" ++msgstr "Kan inte sätta uttagsflaggan (socket option) SO_BROADCAST" + +-#: sunrpc/pmap_rmt.c:328 ++#: sunrpc/pmap_rmt.c:307 + msgid "Cannot send broadcast packet" +-msgstr "Kan inte skicka utsndningspaket" ++msgstr "Kan inte skicka utsändningspaket" + +-#: sunrpc/pmap_rmt.c:353 ++#: sunrpc/pmap_rmt.c:332 + msgid "Broadcast poll problem" +-msgstr "Problem med poll vid utsndning" ++msgstr "Problem med poll vid utsändning" + +-#: sunrpc/pmap_rmt.c:366 ++#: sunrpc/pmap_rmt.c:345 + msgid "Cannot receive reply to broadcast" +-msgstr "Kan inte ta emot svar p utsndning" ++msgstr "Kan inte ta emot svar på utsändning" + +-#: sunrpc/rpc_main.c:288 ++#: sunrpc/rpc_main.c:286 + #, c-format + msgid "%s: output would overwrite %s\n" +-msgstr "%s: utdata skulle skriva ver %s\n" ++msgstr "%s: utdata skulle skriva över %s\n" + +-#: sunrpc/rpc_main.c:295 ++#: sunrpc/rpc_main.c:293 + #, c-format + msgid "%s: unable to open %s: %m\n" +-msgstr "%s: kan inte ppna %s: %m\n" ++msgstr "%s: kan inte öppna %s: %m\n" + +-#: sunrpc/rpc_main.c:307 ++#: sunrpc/rpc_main.c:305 + #, c-format + msgid "%s: while writing output %s: %m" +-msgstr "%s: nr resultatet %s skrevs: %m" ++msgstr "%s: när resultatet %s skrevs: %m" + +-#: sunrpc/rpc_main.c:342 ++#: sunrpc/rpc_main.c:340 + #, c-format + msgid "cannot find C preprocessor: %s \n" + msgstr "kan inte hitta C preprocessor: %s \n" + +-#: sunrpc/rpc_main.c:350 ++#: sunrpc/rpc_main.c:348 + msgid "cannot find any C preprocessor (cpp)\n" +-msgstr "kan inte hitta ngon C preprocessor (cpp)\n" ++msgstr "kan inte hitta någon C preprocessor (cpp)\n" + +-#: sunrpc/rpc_main.c:419 ++#: sunrpc/rpc_main.c:417 + #, c-format + msgid "%s: C preprocessor failed with signal %d\n" + msgstr "%s: C preprocessorn avslutades med signal %d\n" + +-#: sunrpc/rpc_main.c:422 ++#: sunrpc/rpc_main.c:420 + #, c-format + msgid "%s: C preprocessor failed with exit code %d\n" +-msgstr "%s: C preprocessorn avslutades med kod %d\n" ++msgstr "%s: C preprocessorn avslutades med slutstatus %d\n" + +-#: sunrpc/rpc_main.c:462 ++#: sunrpc/rpc_main.c:460 + #, c-format + msgid "illegal nettype :`%s'\n" +-msgstr "otillten nttyp: \"%s\"\n" ++msgstr "otillåten nättyp: \"%s\"\n" + +-#: sunrpc/rpc_main.c:1104 ++#: sunrpc/rpc_main.c:1122 + #, c-format + msgid "rpcgen: too many defines\n" +-msgstr "rpcgen: fr mnga \"define\"\n" ++msgstr "rpcgen: för många \"define\"\n" + +-#: sunrpc/rpc_main.c:1116 ++#: sunrpc/rpc_main.c:1134 + #, c-format + msgid "rpcgen: arglist coding error\n" + msgstr "rpcgen: arglist kodningsfel\n" + + #. TRANS: the file will not be removed; this is an + #. TRANS: informative message. +-#: sunrpc/rpc_main.c:1149 ++#: sunrpc/rpc_main.c:1167 + #, c-format + msgid "file `%s' already exists and may be overwritten\n" +-msgstr "fil \"%s\" finns redan och kan bli verskriven\n" ++msgstr "fil \"%s\" finns redan och kan bli överskriven\n" + +-#: sunrpc/rpc_main.c:1194 ++#: sunrpc/rpc_main.c:1212 + #, c-format + msgid "Cannot specify more than one input file!\n" +-msgstr "Kan inte ange mer n en infil!\n" ++msgstr "Kan inte ange mer än en infil!\n" + +-#: sunrpc/rpc_main.c:1364 ++#: sunrpc/rpc_main.c:1382 + msgid "This implementation doesn't support newstyle or MT-safe code!\n" +-msgstr "Denna implementation stdjer inte \"newstyle\" eller trdsker kod!\n" ++msgstr "Denna implementation stödjer inte \"newstyle\" eller trådsäker kod!\n" + +-#: sunrpc/rpc_main.c:1373 ++#: sunrpc/rpc_main.c:1391 + #, c-format + msgid "Cannot use netid flag with inetd flag!\n" + msgstr "Kan inte ange netid-flaggan tillsammans med inetd-flaggan!\n" + +-#: sunrpc/rpc_main.c:1385 ++#: sunrpc/rpc_main.c:1403 + msgid "Cannot use netid flag without TIRPC!\n" + msgstr "Kan inte ange netid-flaggan utan TIRPC!\n" + +-#: sunrpc/rpc_main.c:1392 ++#: sunrpc/rpc_main.c:1410 + msgid "Cannot use table flags with newstyle!\n" + msgstr "Kan inte ange tabellflaggor med ny stil\n" + +-#: sunrpc/rpc_main.c:1411 ++#: sunrpc/rpc_main.c:1429 + #, c-format + msgid "\"infile\" is required for template generation flags.\n" +-msgstr "\"infil\" r obligatorisk fr mallgenereringsflaggor.\n" ++msgstr "\"infil\" är obligatorisk för mallgenereringsflaggor.\n" + +-#: sunrpc/rpc_main.c:1416 ++#: sunrpc/rpc_main.c:1434 + #, c-format + msgid "Cannot have more than one file generation flag!\n" +-msgstr "Kan inte ha mer n en filgenereringsflagga!\n" ++msgstr "Kan inte ha mer än en filgenereringsflagga!\n" + +-#: sunrpc/rpc_main.c:1425 ++#: sunrpc/rpc_main.c:1443 + #, c-format + msgid "usage: %s infile\n" +-msgstr "anvndning: %s infil\n" ++msgstr "användning: %s infil\n" + +-#: sunrpc/rpc_main.c:1426 ++#: sunrpc/rpc_main.c:1444 + #, c-format + msgid "\t%s [-abkCLNTM][-Dname[=value]] [-i size] [-I [-K seconds]] [-Y path] infile\n" +-msgstr "\t%s [-abkCLNTM][-Dnamn[=vrde]] [-i storlek] [-I [-K sekunder]] [-Y skvg] infil\n" ++msgstr "\t%s [-abkCLNTM][-Dnamn[=värde]] [-i storlek] [-I [-K sekunder]] [-Y sökväg] infil\n" + +-#: sunrpc/rpc_main.c:1428 ++#: sunrpc/rpc_main.c:1446 + #, c-format + msgid "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o outfile] [infile]\n" + msgstr "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o utfil] [infil]\n" + +-#: sunrpc/rpc_main.c:1430 ++#: sunrpc/rpc_main.c:1448 + #, c-format + msgid "\t%s [-s nettype]* [-o outfile] [infile]\n" +-msgstr "\t%s [-s nttyp]* [-o utfil] [infil]\n" ++msgstr "\t%s [-s nättyp]* [-o utfil] [infil]\n" + +-#: sunrpc/rpc_main.c:1431 ++#: sunrpc/rpc_main.c:1449 + #, c-format + msgid "\t%s [-n netid]* [-o outfile] [infile]\n" +-msgstr "\t%s [-n ntid]* [-o utfil] [infil]\n" ++msgstr "\t%s [-n nätid]* [-o utfil] [infil]\n" + +-#: sunrpc/rpc_scan.c:116 ++#: sunrpc/rpc_scan.c:114 + msgid "constant or identifier expected" +-msgstr "konstant eller identifierare frvntad" ++msgstr "konstant eller identifierare förväntad" + +-#: sunrpc/rpc_scan.c:312 ++#: sunrpc/rpc_scan.c:310 + msgid "illegal character in file: " +-msgstr "otilltet tecken i fil: " ++msgstr "otillåtet tecken i fil: " + +-#: sunrpc/rpc_scan.c:351 sunrpc/rpc_scan.c:377 ++#: sunrpc/rpc_scan.c:349 sunrpc/rpc_scan.c:375 + msgid "unterminated string constant" +-msgstr "oavslutad strngkonstant" ++msgstr "oavslutad strängkonstant" + +-#: sunrpc/rpc_scan.c:383 ++#: sunrpc/rpc_scan.c:381 + msgid "empty char string" +-msgstr "tom teckenstrng" ++msgstr "tom teckensträng" + +-#: sunrpc/rpc_scan.c:525 sunrpc/rpc_scan.c:535 ++#: sunrpc/rpc_scan.c:523 sunrpc/rpc_scan.c:533 + msgid "preprocessor error" + msgstr "preprocessorfel" + + #: sunrpc/rpcinfo.c:237 sunrpc/rpcinfo.c:383 + #, c-format + msgid "program %lu is not available\n" +-msgstr "program %lu r inte tillgngligt\n" ++msgstr "program %lu är inte tillgängligt\n" + + #: sunrpc/rpcinfo.c:264 sunrpc/rpcinfo.c:310 sunrpc/rpcinfo.c:333 + #: sunrpc/rpcinfo.c:407 sunrpc/rpcinfo.c:453 sunrpc/rpcinfo.c:476 + #: sunrpc/rpcinfo.c:510 + #, c-format + msgid "program %lu version %lu is not available\n" +-msgstr "program %lu version %lu r inte tillgngligt\n" ++msgstr "program %lu version %lu är inte tillgängligt\n" + + #: sunrpc/rpcinfo.c:515 + #, c-format + msgid "program %lu version %lu ready and waiting\n" +-msgstr "program %lu version %lu redo och vntar\n" ++msgstr "program %lu version %lu redo och väntar\n" + + #: sunrpc/rpcinfo.c:556 sunrpc/rpcinfo.c:563 + msgid "rpcinfo: can't contact portmapper" +@@ -4268,7 +4865,7 @@ + + #: sunrpc/rpcinfo.c:570 + msgid "No remote programs registered.\n" +-msgstr "Inga fjrrprogram registrerade.\n" ++msgstr "Inga fjärrprogram registrerade.\n" + + #: sunrpc/rpcinfo.c:574 + msgid " program vers proto port\n" +@@ -4276,16 +4873,16 @@ + + #: sunrpc/rpcinfo.c:613 + msgid "(unknown)" +-msgstr "(oknt)" ++msgstr "(okänt)" + + #: sunrpc/rpcinfo.c:637 + #, c-format + msgid "rpcinfo: broadcast failed: %s\n" +-msgstr "rpcinfo: utsndning misslyckades: %s\n" ++msgstr "rpcinfo: utsändning misslyckades: %s\n" + + #: sunrpc/rpcinfo.c:658 + msgid "Sorry. You are not root\n" +-msgstr "Tyvrr, du r inte root\n" ++msgstr "Tyvärr, du är inte root\n" + + #: sunrpc/rpcinfo.c:665 + #, c-format +@@ -4294,15 +4891,15 @@ + + #: sunrpc/rpcinfo.c:674 + msgid "Usage: rpcinfo [ -n portnum ] -u host prognum [ versnum ]\n" +-msgstr "Anvndning: rpcinfo [ -n portnr ] -u vrd prognr [ versnr ]\n" ++msgstr "Användning: rpcinfo [ -n portnr ] -u värd prognr [ versnr ]\n" + + #: sunrpc/rpcinfo.c:676 + msgid " rpcinfo [ -n portnum ] -t host prognum [ versnum ]\n" +-msgstr " rpcinfo [ -n portnr ] -t vrd prognr [ versnr ]\n" ++msgstr " rpcinfo [ -n portnr ] -t värd prognr [ versnr ]\n" + + #: sunrpc/rpcinfo.c:678 + msgid " rpcinfo -p [ host ]\n" +-msgstr " rpcinfo -p [ vrd ]\n" ++msgstr " rpcinfo -p [ värd ]\n" + + #: sunrpc/rpcinfo.c:679 + msgid " rpcinfo -b prognum versnum\n" +@@ -4312,1693 +4909,1612 @@ + msgid " rpcinfo -d prognum versnum\n" + msgstr " rpcinfo -d prognr versnr\n" + +-#: sunrpc/rpcinfo.c:695 +-#, c-format +-msgid "rpcinfo: %s is unknown service\n" +-msgstr "rpcinfo: %s r en oknd tjnst\n" +- +-#: sunrpc/rpcinfo.c:732 +-#, c-format +-msgid "rpcinfo: %s is unknown host\n" +-msgstr "rpcinfo: %s r en oknd vrd\n" +- +-#: sunrpc/svc_run.c:76 +-msgid "svc_run: - poll failed" +-msgstr "svc_run: - poll misslyckades" +- +-#: sunrpc/svc_simple.c:87 +-#, c-format +-msgid "can't reassign procedure number %ld\n" +-msgstr "kan inte ndra procedurnummer %ld\n" +- +-#: sunrpc/svc_simple.c:96 +-msgid "couldn't create an rpc server\n" +-msgstr "kunde inte skapa en rpc-server\n" +- +-#: sunrpc/svc_simple.c:104 +-#, c-format +-msgid "couldn't register prog %ld vers %ld\n" +-msgstr "kunde inte registrera prog %ld vers %ld\n" +- +-#: sunrpc/svc_simple.c:111 +-msgid "registerrpc: out of memory\n" +-msgstr "registerrpc: minnet slut\n" +- +-#: sunrpc/svc_simple.c:175 +-#, c-format +-msgid "trouble replying to prog %d\n" +-msgstr "problem att svara till prog %d\n" +- +-#: sunrpc/svc_simple.c:183 +-#, c-format +-msgid "never registered prog %d\n" +-msgstr "aldrig registrerat prog %d\n" +- +-#: sunrpc/svc_tcp.c:155 +-msgid "svc_tcp.c - tcp socket creation problem" +-msgstr "svc_tcp.c - problem att skapa tcp-uttag (socket)" +- +-#: sunrpc/svc_tcp.c:170 +-msgid "svc_tcp.c - cannot getsockname or listen" +-msgstr "svc_tcp.c - kan inte anropa getsockname eller listen" +- +-#: sunrpc/svc_tcp.c:181 sunrpc/svc_tcp.c:184 +-msgid "svctcp_create: out of memory\n" +-msgstr "svctcp_create: minnet slut\n" +- +-#: sunrpc/svc_tcp.c:225 sunrpc/svc_tcp.c:228 +-msgid "svc_tcp: makefd_xprt: out of memory\n" +-msgstr "svc_tcp: makefd_xprt: minnet slut\n" +- +-#: sunrpc/svc_udp.c:128 +-msgid "svcudp_create: socket creation problem" +-msgstr "svcudp_create: problem att skapa uttag (socket)" +- +-#: sunrpc/svc_udp.c:142 +-msgid "svcudp_create - cannot getsockname" +-msgstr "svcudp_create - kan inte anropa getsockname" +- +-#: sunrpc/svc_udp.c:154 sunrpc/svc_udp.c:157 +-msgid "svcudp_create: out of memory\n" +-msgstr "svcudb_create: minnet slut\n" +- +-#: sunrpc/svc_udp.c:182 sunrpc/svc_udp.c:185 +-msgid "svcudp_create: xp_pad is too small for IP_PKTINFO\n" +-msgstr "svcudp_create: xp_pad r fr liten fr IP_PKTINFO\n" +- +-#: sunrpc/svc_udp.c:493 +-msgid "enablecache: cache already enabled" +-msgstr "enablecache: cache redan pslagen" +- +-#: sunrpc/svc_udp.c:499 +-msgid "enablecache: could not allocate cache" +-msgstr "enablecache: kunde inte allokera cache" +- +-#: sunrpc/svc_udp.c:507 +-msgid "enablecache: could not allocate cache data" +-msgstr "enablecache: kunde inte allokera cache-data" +- +-#: sunrpc/svc_udp.c:514 +-msgid "enablecache: could not allocate cache fifo" +-msgstr "enablecache: kunde inte allokera cache-fifo" +- +-#: sunrpc/svc_udp.c:550 +-msgid "cache_set: victim not found" +-msgstr "cache_set: offer hittades inte" +- +-#: sunrpc/svc_udp.c:561 +-msgid "cache_set: victim alloc failed" +-msgstr "cache_set: offerallokering misslyckades" +- +-#: sunrpc/svc_udp.c:567 +-msgid "cache_set: could not allocate new rpc_buffer" +-msgstr "cache_set: kunde inte allokera ny rpc-buffert" +- +-#: sunrpc/svc_unix.c:150 +-msgid "svc_unix.c - AF_UNIX socket creation problem" +-msgstr "svc_unix.c - problem att skapa AF_UNIX uttag (socket)" +- +-#: sunrpc/svc_unix.c:166 +-msgid "svc_unix.c - cannot getsockname or listen" +-msgstr "svc_unix.c - kan inte anropa getsockname eller listen" +- +-#: sunrpc/svc_unix.c:178 sunrpc/svc_unix.c:181 +-msgid "svcunix_create: out of memory\n" +-msgstr "svcunix_create: minnet slut\n" +- +-#: sunrpc/svc_unix.c:222 sunrpc/svc_unix.c:225 +-msgid "svc_unix: makefd_xprt: out of memory\n" +-msgstr "svc_unix: makefd_xprt: minnet slut\n" +- +-#: sunrpc/xdr.c:570 sunrpc/xdr.c:573 +-msgid "xdr_bytes: out of memory\n" +-msgstr "xdr_bytes: minnet slut\n" +- +-#: sunrpc/xdr.c:728 sunrpc/xdr.c:731 +-msgid "xdr_string: out of memory\n" +-msgstr "xdr_string: minnet slut\n" +- +-#: sunrpc/xdr_array.c:111 sunrpc/xdr_array.c:114 +-msgid "xdr_array: out of memory\n" +-msgstr "xdr_array: minnet slut\n" +- +-#: sunrpc/xdr_rec.c:158 sunrpc/xdr_rec.c:161 +-msgid "xdrrec_create: out of memory\n" +-msgstr "xdrrec_create: minnet slut\n" +- +-#: sunrpc/xdr_ref.c:88 sunrpc/xdr_ref.c:91 +-msgid "xdr_reference: out of memory\n" +-msgstr "xdr_reference: minnet slut\n" +- +-#: nis/nis_callback.c:189 +-msgid "unable to free arguments" +-msgstr "kan inte avallokera argument" +- +-#: nis/nis_error.c:30 +-msgid "Probable success" +-msgstr "Troligtvis lyckat" +- +-#: nis/nis_error.c:31 +-msgid "Not found" +-msgstr "Inte funnet" +- +-#: nis/nis_error.c:32 +-msgid "Probably not found" +-msgstr "Frmodligen inte funnen" +- +-#: nis/nis_error.c:33 +-msgid "Cache expired" +-msgstr "Cache gick ur tiden" +- +-#: nis/nis_error.c:34 +-msgid "NIS+ servers unreachable" +-msgstr "NIS+ servers kan inte ns" +- +-#: nis/nis_error.c:35 +-msgid "Unknown object" +-msgstr "Oknt objekt" +- +-#: nis/nis_error.c:36 +-msgid "Server busy, try again" +-msgstr "Server upptagen, frsk igen" +- +-#: nis/nis_error.c:37 +-msgid "Generic system error" +-msgstr "Generiskt systemfel" +- +-#: nis/nis_error.c:38 +-msgid "First/next chain broken" +-msgstr "Frsta/Nsta-kedja bruten" +- +-#: nis/nis_error.c:41 +-msgid "Name not served by this server" +-msgstr "Namn hanteras inte av denna server" +- +-#: nis/nis_error.c:42 +-msgid "Server out of memory" +-msgstr "Server har slut p minne" +- +-#: nis/nis_error.c:43 +-msgid "Object with same name exists" +-msgstr "Objekt med samma namn existerar" +- +-#: nis/nis_error.c:44 +-msgid "Not master server for this domain" +-msgstr "Ingen huvudserver fr denna domn" +- +-#: nis/nis_error.c:45 +-msgid "Invalid object for operation" +-msgstr "Ogiltigt objekt fr operationen" +- +-#: nis/nis_error.c:46 +-msgid "Malformed name, or illegal name" +-msgstr "Felaktigt namn eller otilltet namn" +- +-#: nis/nis_error.c:47 +-msgid "Unable to create callback" +-msgstr "Kan inte skapa teranrop" +- +-#: nis/nis_error.c:48 +-msgid "Results sent to callback proc" +-msgstr "Resultat r skickade till teranropsprocessen" +- +-#: nis/nis_error.c:49 +-msgid "Not found, no such name" +-msgstr "Inte hittad, inget sdant namn" +- +-#: nis/nis_error.c:50 +-msgid "Name/entry isn't unique" +-msgstr "Namn/post r inte unik" +- +-#: nis/nis_error.c:51 +-msgid "Modification failed" +-msgstr "ndring misslyckades" +- +-#: nis/nis_error.c:52 +-msgid "Database for table does not exist" +-msgstr "Databas fr tabell existerar inte" +- +-#: nis/nis_error.c:53 +-msgid "Entry/table type mismatch" +-msgstr "Post/tabell-typer r inkompatibila" +- +-#: nis/nis_error.c:54 +-msgid "Link points to illegal name" +-msgstr "Lnk pekar p ett otilltet namn" +- +-#: nis/nis_error.c:55 +-msgid "Partial success" +-msgstr "Delvis lyckat" +- +-#: nis/nis_error.c:56 +-msgid "Too many attributes" +-msgstr "Fr mnga attribut" +- +-#: nis/nis_error.c:57 +-msgid "Error in RPC subsystem" +-msgstr "Fel i RPC-delsystem" +- +-#: nis/nis_error.c:58 +-msgid "Missing or malformed attribute" +-msgstr "Saknat eller felaktigt attribut" +- +-#: nis/nis_error.c:59 +-msgid "Named object is not searchable" +-msgstr "Namngivet objekt r inte skbart" +- +-#: nis/nis_error.c:60 +-msgid "Error while talking to callback proc" +-msgstr "Fel vid kommunikation till teranropsprocess" +- +-#: nis/nis_error.c:61 +-msgid "Non NIS+ namespace encountered" +-msgstr "Icke-NIS+ namnrymd ptrffad" +- +-#: nis/nis_error.c:62 +-msgid "Illegal object type for operation" +-msgstr "Otillten objekttyp fr operationen" +- +-#: nis/nis_error.c:63 +-msgid "Passed object is not the same object on server" +-msgstr "Skickat objekt r inte samma objekt hos servern" +- +-#: nis/nis_error.c:64 +-msgid "Modify operation failed" +-msgstr "ndringsoperation misslyckades" +- +-#: nis/nis_error.c:65 +-msgid "Query illegal for named table" +-msgstr "Frga otillten fr namngiven tabell" +- +-#: nis/nis_error.c:66 +-msgid "Attempt to remove a non-empty table" +-msgstr "Frsk att ta bort en tabell som inte r tom" +- +-#: nis/nis_error.c:67 +-msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" +-msgstr "Fel vid lsande av NIS+ kallstartsfil. r NIS+ installerad?" +- +-#: nis/nis_error.c:68 +-msgid "Full resync required for directory" +-msgstr "Fullstndig resynkronisering krvs fr katalog" +- +-#: nis/nis_error.c:69 +-msgid "NIS+ operation failed" +-msgstr "NIS+ operation misslyckades" +- +-#: nis/nis_error.c:70 +-msgid "NIS+ service is unavailable or not installed" +-msgstr "NIS+-tjnst r otillgnglig eller inte installerad" +- +-#: nis/nis_error.c:71 +-msgid "Yes, 42 is the meaning of life" +-msgstr "Ja, meningen med livet r 42" +- +-#: nis/nis_error.c:72 +-msgid "Unable to authenticate NIS+ server" +-msgstr "Kan inte bevisa kthet hos NIS+ server" +- +-#: nis/nis_error.c:73 +-msgid "Unable to authenticate NIS+ client" +-msgstr "Kan inte bevisa kthet hos NIS+ klient" +- +-#: nis/nis_error.c:74 +-msgid "No file space on server" +-msgstr "Inget filutrymme hos servern" +- +-#: nis/nis_error.c:75 +-msgid "Unable to create process on server" +-msgstr "Kan inte skapa process hos server" +- +-#: nis/nis_error.c:76 +-msgid "Master server busy, full dump rescheduled." +-msgstr "Huvudserver r upptagen, full dump omskedulerad." +- +-#: nis/nis_local_names.c:126 +-#, c-format +-msgid "LOCAL entry for UID %d in directory %s not unique\n" +-msgstr "LOCAL-post fr UID %d i katalog %s r inte unik\n" +- +-#: nis/nis_print.c:51 +-msgid "UNKNOWN" +-msgstr "OKND" +- +-#: nis/nis_print.c:109 +-msgid "BOGUS OBJECT\n" +-msgstr "SKENOBJEKT\n" +- +-#: nis/nis_print.c:112 +-msgid "NO OBJECT\n" +-msgstr "INGET OBJEKT\n" +- +-#: nis/nis_print.c:115 +-msgid "DIRECTORY\n" +-msgstr "KATALOG\n" ++#: sunrpc/rpcinfo.c:695 ++#, c-format ++msgid "rpcinfo: %s is unknown service\n" ++msgstr "rpcinfo: %s är en okänd tjänst\n" + +-#: nis/nis_print.c:118 +-msgid "GROUP\n" +-msgstr "GRUPP\n" ++#: sunrpc/rpcinfo.c:732 ++#, c-format ++msgid "rpcinfo: %s is unknown host\n" ++msgstr "rpcinfo: %s är en okänd värd\n" + +-#: nis/nis_print.c:121 +-msgid "TABLE\n" +-msgstr "TABELL\n" ++#: sunrpc/svc_run.c:76 ++msgid "svc_run: - poll failed" ++msgstr "svc_run: - poll misslyckades" + +-#: nis/nis_print.c:124 +-msgid "ENTRY\n" +-msgstr "POST\n" ++#: sunrpc/svc_simple.c:87 ++#, c-format ++msgid "can't reassign procedure number %ld\n" ++msgstr "kan inte ändra procedurnummer %ld\n" + +-#: nis/nis_print.c:127 +-msgid "LINK\n" +-msgstr "LNK\n" ++#: sunrpc/svc_simple.c:97 ++msgid "couldn't create an rpc server\n" ++msgstr "kunde inte skapa en rpc-server\n" + +-#: nis/nis_print.c:130 +-msgid "PRIVATE\n" +-msgstr "PRIVAT\n" ++#: sunrpc/svc_simple.c:105 ++#, c-format ++msgid "couldn't register prog %ld vers %ld\n" ++msgstr "kunde inte registrera prog %ld vers %ld\n" + +-#: nis/nis_print.c:133 +-msgid "(Unknown object)\n" +-msgstr "(Oknt objekt)\n" ++#: sunrpc/svc_simple.c:113 ++msgid "registerrpc: out of memory\n" ++msgstr "registerrpc: minnet slut\n" + +-#: nis/nis_print.c:166 ++#: sunrpc/svc_simple.c:173 + #, c-format +-msgid "Name : `%s'\n" +-msgstr "Namn: \"%s\"\n" ++msgid "trouble replying to prog %d\n" ++msgstr "problem att svara till prog %d\n" + +-#: nis/nis_print.c:167 ++#: sunrpc/svc_simple.c:182 + #, c-format +-msgid "Type : %s\n" +-msgstr "Typ: %s\n" ++msgid "never registered prog %d\n" ++msgstr "aldrig registrerat prog %d\n" + +-#: nis/nis_print.c:172 +-msgid "Master Server :\n" +-msgstr "Huvudserver:\n" ++#: sunrpc/svc_tcp.c:155 ++msgid "svc_tcp.c - tcp socket creation problem" ++msgstr "svc_tcp.c - problem att skapa tcp-uttag (socket)" + +-#: nis/nis_print.c:174 +-msgid "Replicate :\n" +-msgstr "Replikerad:\n" ++#: sunrpc/svc_tcp.c:170 ++msgid "svc_tcp.c - cannot getsockname or listen" ++msgstr "svc_tcp.c - kan inte anropa getsockname eller listen" + +-#: nis/nis_print.c:175 +-#, c-format +-msgid "\tName : %s\n" +-msgstr "\tNamn : %s\n" ++#: sunrpc/svc_tcp.c:179 ++msgid "svctcp_create: out of memory\n" ++msgstr "svctcp_create: minnet slut\n" + +-#: nis/nis_print.c:176 +-msgid "\tPublic Key : " +-msgstr "\tPublik nyckel: " ++#: sunrpc/svc_tcp.c:218 ++msgid "svc_tcp: makefd_xprt: out of memory\n" ++msgstr "svc_tcp: makefd_xprt: minnet slut\n" + +-#: nis/nis_print.c:180 +-msgid "None.\n" +-msgstr "Ingen.\n" ++#: sunrpc/svc_udp.c:128 ++msgid "svcudp_create: socket creation problem" ++msgstr "svcudp_create: problem att skapa uttag (socket)" + +-#: nis/nis_print.c:183 +-#, c-format +-msgid "Diffie-Hellmann (%d bits)\n" +-msgstr "Diffie-Hellmann (%d bitar)\n" ++#: sunrpc/svc_udp.c:142 ++msgid "svcudp_create - cannot getsockname" ++msgstr "svcudp_create - kan inte anropa getsockname" + +-#: nis/nis_print.c:188 +-#, c-format +-msgid "RSA (%d bits)\n" +-msgstr "RSA (%d bitar)\n" ++#: sunrpc/svc_udp.c:152 ++msgid "svcudp_create: out of memory\n" ++msgstr "svcudb_create: minnet slut\n" + +-#: nis/nis_print.c:191 +-msgid "Kerberos.\n" +-msgstr "Kerberos.\n" ++#: sunrpc/svc_udp.c:174 ++msgid "svcudp_create: xp_pad is too small for IP_PKTINFO\n" ++msgstr "svcudp_create: xp_pad är för liten för IP_PKTINFO\n" + +-#: nis/nis_print.c:194 +-#, c-format +-msgid "Unknown (type = %d, bits = %d)\n" +-msgstr "Oknd (typ = %d, bitar = %d)\n" ++#: sunrpc/svc_udp.c:474 ++msgid "enablecache: cache already enabled" ++msgstr "enablecache: cache redan påslagen" + +-#: nis/nis_print.c:205 +-#, c-format +-msgid "\tUniversal addresses (%u)\n" +-msgstr "\tUniversella adresser (%u)\n" ++#: sunrpc/svc_udp.c:480 ++msgid "enablecache: could not allocate cache" ++msgstr "enablecache: kunde inte allokera cache" + +-#: nis/nis_print.c:227 +-msgid "Time to live : " +-msgstr "Livslngd: " ++#: sunrpc/svc_udp.c:489 ++msgid "enablecache: could not allocate cache data" ++msgstr "enablecache: kunde inte allokera cache-data" + +-#: nis/nis_print.c:229 +-msgid "Default Access rights :\n" +-msgstr "Standard tkomstrttigheter:\n" ++#: sunrpc/svc_udp.c:497 ++msgid "enablecache: could not allocate cache fifo" ++msgstr "enablecache: kunde inte allokera cache-fifo" + +-#: nis/nis_print.c:238 +-#, c-format +-msgid "\tType : %s\n" +-msgstr "\tTyp : %s\n" ++#: sunrpc/svc_udp.c:532 ++msgid "cache_set: victim not found" ++msgstr "cache_set: offer hittades inte" + +-#: nis/nis_print.c:239 +-msgid "\tAccess rights: " +-msgstr "\tRttigheter : " ++#: sunrpc/svc_udp.c:543 ++msgid "cache_set: victim alloc failed" ++msgstr "cache_set: offerallokering misslyckades" + +-#: nis/nis_print.c:252 +-msgid "Group Flags :" +-msgstr "Gruppflaggor: " ++#: sunrpc/svc_udp.c:550 ++msgid "cache_set: could not allocate new rpc_buffer" ++msgstr "cache_set: kunde inte allokera ny rpc-buffert" + +-#: nis/nis_print.c:255 +-msgid "" +-"\n" +-"Group Members :\n" +-msgstr "" +-"\n" +-"Gruppmedlemmar:\n" ++#: sunrpc/svc_unix.c:150 ++msgid "svc_unix.c - AF_UNIX socket creation problem" ++msgstr "svc_unix.c - problem att skapa AF_UNIX uttag (socket)" + +-#: nis/nis_print.c:266 +-#, c-format +-msgid "Table Type : %s\n" +-msgstr "Tabelltyp : %s\n" ++#: sunrpc/svc_unix.c:166 ++msgid "svc_unix.c - cannot getsockname or listen" ++msgstr "svc_unix.c - kan inte anropa getsockname eller listen" + +-#: nis/nis_print.c:267 +-#, c-format +-msgid "Number of Columns : %d\n" +-msgstr "Antal kolumner : %d\n" ++#: sunrpc/svc_unix.c:176 ++msgid "svcunix_create: out of memory\n" ++msgstr "svcunix_create: minnet slut\n" + +-#: nis/nis_print.c:268 +-#, c-format +-msgid "Character Separator : %c\n" +-msgstr "Teckenseparator : %c\n" ++#: sunrpc/svc_unix.c:215 ++msgid "svc_unix: makefd_xprt: out of memory\n" ++msgstr "svc_unix: makefd_xprt: minnet slut\n" + +-#: nis/nis_print.c:269 +-#, c-format +-msgid "Search Path : %s\n" +-msgstr "Skvg : %s\n" ++#: sunrpc/xdr.c:566 ++msgid "xdr_bytes: out of memory\n" ++msgstr "xdr_bytes: minnet slut\n" + +-#: nis/nis_print.c:270 +-msgid "Columns :\n" +-msgstr "Kolumner :\n" ++#: sunrpc/xdr.c:718 ++msgid "xdr_string: out of memory\n" ++msgstr "xdr_string: minnet slut\n" + +-#: nis/nis_print.c:273 +-#, c-format +-msgid "\t[%d]\tName : %s\n" +-msgstr "\t[%d]\tNamn : %s\n" ++#: sunrpc/xdr_array.c:106 ++msgid "xdr_array: out of memory\n" ++msgstr "xdr_array: minnet slut\n" + +-#: nis/nis_print.c:275 +-msgid "\t\tAttributes : " +-msgstr "\t\tAttribut : " ++#: sunrpc/xdr_rec.c:156 ++msgid "xdrrec_create: out of memory\n" ++msgstr "xdrrec_create: minnet slut\n" + +-#: nis/nis_print.c:277 +-msgid "\t\tAccess Rights : " +-msgstr "\t\tRttigheter : " ++#: sunrpc/xdr_ref.c:86 ++msgid "xdr_reference: out of memory\n" ++msgstr "xdr_reference: minnet slut\n" + +-#: nis/nis_print.c:286 +-msgid "Linked Object Type : " +-msgstr "Lnkad objekttyp: " ++#: sysdeps/generic/siglist.h:29 sysdeps/unix/siglist.c:27 ++msgid "Hangup" ++msgstr "Avringd" + +-#: nis/nis_print.c:288 +-#, c-format +-msgid "Linked to : %s\n" +-msgstr "Lnkad till: %s\n" ++#: sysdeps/generic/siglist.h:30 sysdeps/unix/siglist.c:28 ++msgid "Interrupt" ++msgstr "Avbruten (SIGINT)" + +-#: nis/nis_print.c:297 +-#, c-format +-msgid "\tEntry data of type %s\n" +-msgstr "\tPostdata av typ %s\n" ++#: sysdeps/generic/siglist.h:31 sysdeps/unix/siglist.c:29 ++msgid "Quit" ++msgstr "Lämnad" + +-#: nis/nis_print.c:300 +-#, c-format +-msgid "\t[%u] - [%u bytes] " +-msgstr "\t[%u] - [%u byte] " ++#: sysdeps/generic/siglist.h:32 sysdeps/unix/siglist.c:30 ++msgid "Illegal instruction" ++msgstr "Otillåten instruktion" + +-#: nis/nis_print.c:303 +-msgid "Encrypted data\n" +-msgstr "Krypterat data\n" ++#: sysdeps/generic/siglist.h:33 sysdeps/unix/siglist.c:31 ++msgid "Trace/breakpoint trap" ++msgstr "Spårningsfälla" + +-#: nis/nis_print.c:305 +-msgid "Binary data\n" +-msgstr "Binrdata\n" ++#: sysdeps/generic/siglist.h:34 ++msgid "Aborted" ++msgstr "Avbruten (SIGABRT)" + +-#: nis/nis_print.c:320 +-#, c-format +-msgid "Object Name : %s\n" +-msgstr "Objektnamn : %s\n" ++#: sysdeps/generic/siglist.h:35 sysdeps/unix/siglist.c:34 ++msgid "Floating point exception" ++msgstr "Aritmetiskt fel" + +-#: nis/nis_print.c:321 +-#, c-format +-msgid "Directory : %s\n" +-msgstr "Katalog : %s\n" ++#: sysdeps/generic/siglist.h:36 sysdeps/unix/siglist.c:35 ++msgid "Killed" ++msgstr "Dödad" + +-#: nis/nis_print.c:322 +-#, c-format +-msgid "Owner : %s\n" +-msgstr "gare : %s\n" ++#: sysdeps/generic/siglist.h:37 sysdeps/unix/siglist.c:36 ++msgid "Bus error" ++msgstr "Bussfel" + +-#: nis/nis_print.c:323 +-#, c-format +-msgid "Group : %s\n" +-msgstr "Grupp : %s\n" ++#: sysdeps/generic/siglist.h:38 sysdeps/unix/siglist.c:37 ++msgid "Segmentation fault" ++msgstr "Segmenteringsfel" + +-#: nis/nis_print.c:324 +-msgid "Access Rights : " +-msgstr "Rttigheter : " ++#. TRANS Broken pipe; there is no process reading from the other end of a pipe. ++#. TRANS Every library function that returns this error code also generates a ++#. TRANS @code{SIGPIPE} signal; this signal terminates the program if not handled ++#. TRANS or blocked. Thus, your program will never actually see @code{EPIPE} ++#. TRANS unless it has handled or blocked @code{SIGPIPE}. ++#: sysdeps/generic/siglist.h:39 sysdeps/gnu/errlist.c:359 ++#: sysdeps/unix/siglist.c:39 ++msgid "Broken pipe" ++msgstr "Brutet rör" + +-#: nis/nis_print.c:326 +-#, c-format +-msgid "" +-"\n" +-"Time to Live : " +-msgstr "" +-"\n" +-"Livslngd : " ++#: sysdeps/generic/siglist.h:40 sysdeps/unix/siglist.c:40 ++msgid "Alarm clock" ++msgstr "Alarmklocka" + +-#: nis/nis_print.c:329 +-#, c-format +-msgid "Creation Time : %s" +-msgstr "Skapad : %s" ++#: sysdeps/generic/siglist.h:41 sysdeps/unix/siglist.c:41 ++msgid "Terminated" ++msgstr "Avslutad" + +-#: nis/nis_print.c:331 +-#, c-format +-msgid "Mod. Time : %s" +-msgstr "ndr. tid : %s" ++#: sysdeps/generic/siglist.h:42 sysdeps/unix/siglist.c:42 ++msgid "Urgent I/O condition" ++msgstr "Akut I/O-tillstånd" + +-#: nis/nis_print.c:332 +-msgid "Object Type : " +-msgstr "Objekttyp : " ++#: sysdeps/generic/siglist.h:43 sysdeps/unix/siglist.c:43 ++msgid "Stopped (signal)" ++msgstr "Stoppad (signal)" + +-#: nis/nis_print.c:352 +-#, c-format +-msgid " Data Length = %u\n" +-msgstr " Datalngd = %u\n" ++#: sysdeps/generic/siglist.h:44 sysdeps/unix/siglist.c:44 ++msgid "Stopped" ++msgstr "Stoppad" + +-#: nis/nis_print.c:365 +-#, c-format +-msgid "Status : %s\n" +-msgstr "Status : %s\n" ++#: sysdeps/generic/siglist.h:45 sysdeps/unix/siglist.c:45 ++msgid "Continued" ++msgstr "Återupptagen" + +-#: nis/nis_print.c:366 +-#, c-format +-msgid "Number of objects : %u\n" +-msgstr "Antal objekt : %u\n" ++#: sysdeps/generic/siglist.h:46 sysdeps/unix/siglist.c:46 ++msgid "Child exited" ++msgstr "Barnprocess avslutad" ++ ++#: sysdeps/generic/siglist.h:47 sysdeps/unix/siglist.c:47 ++msgid "Stopped (tty input)" ++msgstr "Stoppad (terminalläsning)" ++ ++#: sysdeps/generic/siglist.h:48 sysdeps/unix/siglist.c:48 ++msgid "Stopped (tty output)" ++msgstr "Stoppad (terminalskrivning)" ++ ++#: sysdeps/generic/siglist.h:49 sysdeps/unix/siglist.c:49 ++msgid "I/O possible" ++msgstr "I/O möjligt" ++ ++#: sysdeps/generic/siglist.h:50 sysdeps/unix/siglist.c:50 ++msgid "CPU time limit exceeded" ++msgstr "Begränsning av CPU-tid överskriden" + +-#: nis/nis_print.c:370 +-#, c-format +-msgid "Object #%d:\n" +-msgstr "Objekt #%d:\n" ++#: sysdeps/generic/siglist.h:51 sysdeps/unix/siglist.c:51 ++msgid "File size limit exceeded" ++msgstr "Begränsning av filstorlek överskriden" + +-#: nis/nis_print_group_entry.c:115 +-#, c-format +-msgid "Group entry for \"%s.%s\" group:\n" +-msgstr "Grupppost fr \"%s.%s\" grupp:\n" ++#: sysdeps/generic/siglist.h:52 sysdeps/unix/siglist.c:52 ++msgid "Virtual timer expired" ++msgstr "Alarmklocka - virtuell tid" + +-#: nis/nis_print_group_entry.c:123 +-msgid " Explicit members:\n" +-msgstr " Explicita medlemmar:\n" ++#: sysdeps/generic/siglist.h:53 sysdeps/unix/siglist.c:53 ++msgid "Profiling timer expired" ++msgstr "Profileringsklocka" + +-#: nis/nis_print_group_entry.c:128 +-msgid " No explicit members\n" +-msgstr " Inga explicita medlemmar\n" ++#: sysdeps/generic/siglist.h:54 sysdeps/unix/siglist.c:54 ++msgid "Window changed" ++msgstr "Ändrat fönster" + +-#: nis/nis_print_group_entry.c:131 +-msgid " Implicit members:\n" +-msgstr " Implicita medlemmar:\n" ++#: sysdeps/generic/siglist.h:55 sysdeps/unix/siglist.c:56 ++msgid "User defined signal 1" ++msgstr "Användarsignal 1" + +-#: nis/nis_print_group_entry.c:136 +-msgid " No implicit members\n" +-msgstr " Inga implicita medlemmar\n" ++#: sysdeps/generic/siglist.h:56 sysdeps/unix/siglist.c:57 ++msgid "User defined signal 2" ++msgstr "Användarsignal 2" + +-#: nis/nis_print_group_entry.c:139 +-msgid " Recursive members:\n" +-msgstr " Rekursiva medlemmar:\n" ++#: sysdeps/generic/siglist.h:60 sysdeps/unix/siglist.c:33 ++msgid "EMT trap" ++msgstr "Emulatorfälla" + +-#: nis/nis_print_group_entry.c:144 +-msgid " No recursive members\n" +-msgstr " Inga rekursiva medlemmar\n" ++#: sysdeps/generic/siglist.h:63 sysdeps/unix/siglist.c:38 ++msgid "Bad system call" ++msgstr "Felaktigt systemanrop" + +-#: nis/nis_print_group_entry.c:147 nis/nis_print_group_entry.c:163 +-msgid " Explicit nonmembers:\n" +-msgstr " Explicit icke-medlemmar:\n" ++#: sysdeps/generic/siglist.h:66 ++msgid "Stack fault" ++msgstr "Stackfel" + +-#: nis/nis_print_group_entry.c:152 +-msgid " No explicit nonmembers\n" +-msgstr " Inga explicita icke-medlemmar\n" ++#: sysdeps/generic/siglist.h:69 ++msgid "Information request" ++msgstr "Informationsbegäran" + +-#: nis/nis_print_group_entry.c:155 +-msgid " Implicit nonmembers:\n" +-msgstr " Implicita icke-medlemmar:\n" ++#: sysdeps/generic/siglist.h:71 ++msgid "Power failure" ++msgstr "Strömavbrott" + +-#: nis/nis_print_group_entry.c:160 +-msgid " No implicit nonmembers\n" +-msgstr " Inga implicita icke-medlemmar\n" ++#: sysdeps/generic/siglist.h:74 sysdeps/unix/siglist.c:55 ++msgid "Resource lost" ++msgstr "Förlorad resurs" + +-#: nis/nis_print_group_entry.c:168 +-msgid " No recursive nonmembers\n" +-msgstr " Inga rekursiva icke-medlemmar\n" ++#. TRANS Operation not permitted; only the owner of the file (or other resource) ++#. TRANS or processes with special privileges can perform the operation. ++#: sysdeps/gnu/errlist.c:25 ++msgid "Operation not permitted" ++msgstr "Operationen inte tillåten" + +-#: nis/nss_nisplus/nisplus-publickey.c:101 +-#: nis/nss_nisplus/nisplus-publickey.c:182 +-#, c-format +-msgid "DES entry for netname %s not unique\n" +-msgstr "DES-post fr ntnamn %s r inte unikt\n" ++#. TRANS No process matches the specified process ID. ++#: sysdeps/gnu/errlist.c:45 ++msgid "No such process" ++msgstr "Processen finns inte" + +-#: nis/nss_nisplus/nisplus-publickey.c:218 +-#, c-format +-msgid "netname2user: missing group id list in `%s'." +-msgstr "netname2user: gruppid-lista saknas i \"%s\"." ++#. TRANS Interrupted function call; an asynchronous signal occurred and prevented ++#. TRANS completion of the call. When this happens, you should try the call ++#. TRANS again. ++#. TRANS ++#. TRANS You can choose to have functions resume after a signal that is handled, ++#. TRANS rather than failing with @code{EINTR}; see @ref{Interrupted ++#. TRANS Primitives}. ++#: sysdeps/gnu/errlist.c:60 ++msgid "Interrupted system call" ++msgstr "Avbrutet systemanrop" + +-#: nis/nss_nisplus/nisplus-publickey.c:300 +-#: nis/nss_nisplus/nisplus-publickey.c:306 +-#: nis/nss_nisplus/nisplus-publickey.c:370 +-#: nis/nss_nisplus/nisplus-publickey.c:379 +-#, c-format +-msgid "netname2user: (nis+ lookup): %s\n" +-msgstr "netname2user: (nis+ uppslagning) %s\n" ++#. TRANS Input/output error; usually used for physical read or write errors. ++#: sysdeps/gnu/errlist.c:69 ++msgid "Input/output error" ++msgstr "In/ut-fel" + +-#: nis/nss_nisplus/nisplus-publickey.c:319 +-#, c-format +-msgid "netname2user: DES entry for %s in directory %s not unique" +-msgstr "netname2user: DES-post fr %s i katalog %s r inte unik" ++#. TRANS No such device or address. The system tried to use the device ++#. TRANS represented by a file you specified, and it couldn't find the device. ++#. TRANS This can mean that the device file was installed incorrectly, or that ++#. TRANS the physical device is missing or not correctly attached to the ++#. TRANS computer. ++#: sysdeps/gnu/errlist.c:82 ++msgid "No such device or address" ++msgstr "Enheten eller adressen finns inte" + +-#: nis/nss_nisplus/nisplus-publickey.c:337 +-#, c-format +-msgid "netname2user: principal name `%s' too long" +-msgstr "netname2user: principalnamn \"%s\" fr lngt" ++#. TRANS Argument list too long; used when the arguments passed to a new program ++#. TRANS being executed with one of the @code{exec} functions (@pxref{Executing a ++#. TRANS File}) occupy too much memory space. This condition never arises in the ++#. TRANS GNU system. ++#: sysdeps/gnu/errlist.c:94 ++msgid "Argument list too long" ++msgstr "Argumentlistan för lång" + +-#: nis/nss_nisplus/nisplus-publickey.c:392 +-#, c-format +-msgid "netname2user: LOCAL entry for %s in directory %s not unique" +-msgstr "netname2user: LOCAL-post fr %s i katalog %s r inte unik" ++#. TRANS Invalid executable file format. This condition is detected by the ++#. TRANS @code{exec} functions; see @ref{Executing a File}. ++#: sysdeps/gnu/errlist.c:104 ++msgid "Exec format error" ++msgstr "Formatfel på körbar fil" + +-#: nis/nss_nisplus/nisplus-publickey.c:399 +-msgid "netname2user: should not have uid 0" +-msgstr "netname2user: borde inte ha uid 0" ++#. TRANS Bad file descriptor; for example, I/O on a descriptor that has been ++#. TRANS closed or reading from a descriptor open only for writing (or vice ++#. TRANS versa). ++#: sysdeps/gnu/errlist.c:115 ++msgid "Bad file descriptor" ++msgstr "Felaktig filidentifierare" + +-#: nis/ypclnt.c:171 +-#, c-format +-msgid "YPBINDPROC_DOMAIN: %s\n" +-msgstr "YPBINDPROC_DOMAIN: %s\n" ++#. TRANS There are no child processes. This error happens on operations that are ++#. TRANS supposed to manipulate child processes, when there aren't any processes ++#. TRANS to manipulate. ++#: sysdeps/gnu/errlist.c:126 ++msgid "No child processes" ++msgstr "Inga barnprocesser" + +-#: nis/ypclnt.c:780 +-msgid "Request arguments bad" +-msgstr "Argument fr frfrgan felaktiga" ++#. TRANS Deadlock avoided; allocating a system resource would have resulted in a ++#. TRANS deadlock situation. The system does not guarantee that it will notice ++#. TRANS all such situations. This error means you got lucky and the system ++#. TRANS noticed; it might just hang. @xref{File Locks}, for an example. ++#: sysdeps/gnu/errlist.c:138 ++msgid "Resource deadlock avoided" ++msgstr "Resursdödläge undveks" + +-#: nis/ypclnt.c:782 +-msgid "RPC failure on NIS operation" +-msgstr "RPC-fel vid NIS-operation" ++#. TRANS No memory available. The system cannot allocate more virtual memory ++#. TRANS because its capacity is full. ++#: sysdeps/gnu/errlist.c:148 ++msgid "Cannot allocate memory" ++msgstr "Kan inte allokera minne" + +-#: nis/ypclnt.c:784 +-msgid "Can't bind to server which serves this domain" +-msgstr "Kan inte ansluta till servern som betjnar denna domn" ++#. TRANS Bad address; an invalid pointer was detected. ++#. TRANS In the GNU system, this error never happens; you get a signal instead. ++#: sysdeps/gnu/errlist.c:167 ++msgid "Bad address" ++msgstr "Felaktig adress" + +-#: nis/ypclnt.c:786 +-msgid "No such map in server's domain" +-msgstr "Ingen sdan tabell i serverns domn" ++#. TRANS A file that isn't a block special file was given in a situation that ++#. TRANS requires one. For example, trying to mount an ordinary file as a file ++#. TRANS system in Unix gives this error. ++#: sysdeps/gnu/errlist.c:178 ++msgid "Block device required" ++msgstr "Blockspecialfil krävs" + +-#: nis/ypclnt.c:788 +-msgid "No such key in map" +-msgstr "Ingen sdan nyckel i tabellen" ++#. TRANS Resource busy; a system resource that can't be shared is already in use. ++#. TRANS For example, if you try to delete a file that is the root of a currently ++#. TRANS mounted filesystem, you get this error. ++#: sysdeps/gnu/errlist.c:189 ++msgid "Device or resource busy" ++msgstr "Enhet eller resurs upptagen" + +-#: nis/ypclnt.c:790 +-msgid "Internal NIS error" +-msgstr "Internt NIS-fel" ++#. TRANS File exists; an existing file was specified in a context where it only ++#. TRANS makes sense to specify a new file. ++#: sysdeps/gnu/errlist.c:199 ++msgid "File exists" ++msgstr "Filen existerar" + +-#: nis/ypclnt.c:792 +-msgid "Local resource allocation failure" +-msgstr "Allokeringsfel fr lokal resurs" ++#. TRANS An attempt to make an improper link across file systems was detected. ++#. TRANS This happens not only when you use @code{link} (@pxref{Hard Links}) but ++#. TRANS also when you rename a file with @code{rename} (@pxref{Renaming Files}). ++#: sysdeps/gnu/errlist.c:210 ++msgid "Invalid cross-device link" ++msgstr "Ogiltig länk över skilda enheter" + +-#: nis/ypclnt.c:794 +-msgid "No more records in map database" +-msgstr "Inga fler poster i tabelldatabasen" ++#. TRANS The wrong type of device was given to a function that expects a ++#. TRANS particular sort of device. ++#: sysdeps/gnu/errlist.c:220 ++msgid "No such device" ++msgstr "Enheten finns inte" + +-#: nis/ypclnt.c:796 +-msgid "Can't communicate with portmapper" +-msgstr "Kan inte kommunicera med portmapper" ++#. TRANS A file that isn't a directory was specified when a directory is required. ++#: sysdeps/gnu/errlist.c:229 ++msgid "Not a directory" ++msgstr "Inte en katalog" + +-#: nis/ypclnt.c:798 +-msgid "Can't communicate with ypbind" +-msgstr "Kan inte kommunicera med ypbind" ++#. TRANS File is a directory; you cannot open a directory for writing, ++#. TRANS or create or remove hard links to it. ++#: sysdeps/gnu/errlist.c:239 ++msgid "Is a directory" ++msgstr "Är en katalog" + +-#: nis/ypclnt.c:800 +-msgid "Can't communicate with ypserv" +-msgstr "Kan inte kommunicera med ypserv" ++#. TRANS Invalid argument. This is used to indicate various kinds of problems ++#. TRANS with passing the wrong argument to a library function. ++#: sysdeps/gnu/errlist.c:249 ++msgid "Invalid argument" ++msgstr "Ogiltigt argument" + +-#: nis/ypclnt.c:802 +-msgid "Local domain name not set" +-msgstr "Lokalt domnnamn inte satt" ++#. TRANS The current process has too many files open and can't open any more. ++#. TRANS Duplicate descriptors do count toward this limit. ++#. TRANS ++#. TRANS In BSD and GNU, the number of open files is controlled by a resource ++#. TRANS limit that can usually be increased. If you get this error, you might ++#. TRANS want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited; ++#. TRANS @pxref{Limits on Resources}. ++#: sysdeps/gnu/errlist.c:264 ++msgid "Too many open files" ++msgstr "För många öppna filer" + +-#: nis/ypclnt.c:804 +-msgid "NIS map database is bad" +-msgstr "NIS tabelldatabas r felaktig" ++#. TRANS There are too many distinct file openings in the entire system. Note ++#. TRANS that any number of linked channels count as just one file opening; see ++#. TRANS @ref{Linked Channels}. This error never occurs in the GNU system. ++#: sysdeps/gnu/errlist.c:275 ++msgid "Too many open files in system" ++msgstr "För många öppna filer i systemet" + +-#: nis/ypclnt.c:806 +-msgid "NIS client/server version mismatch - can't supply service" +-msgstr "NIS versionsskillnad klient/server - kan inte betjna" ++#. TRANS Inappropriate I/O control operation, such as trying to set terminal ++#. TRANS modes on an ordinary file. ++#: sysdeps/gnu/errlist.c:285 ++msgid "Inappropriate ioctl for device" ++msgstr "Olämplig \"ioctl\" för enhet" + +-#: nis/ypclnt.c:810 +-msgid "Database is busy" +-msgstr "Databasen r upptagen" ++#. TRANS An attempt to execute a file that is currently open for writing, or ++#. TRANS write to a file that is currently being executed. Often using a ++#. TRANS debugger to run a program is considered having it open for writing and ++#. TRANS will cause this error. (The name stands for ``text file busy''.) This ++#. TRANS is not an error in the GNU system; the text is copied as necessary. ++#: sysdeps/gnu/errlist.c:298 ++msgid "Text file busy" ++msgstr "Kodfil upptagen" + +-#: nis/ypclnt.c:812 +-msgid "Unknown NIS error code" +-msgstr "Oknd NIS-felkod" ++#. TRANS File too big; the size of a file would be larger than allowed by the system. ++#: sysdeps/gnu/errlist.c:307 ++msgid "File too large" ++msgstr "Fil för stor" + +-#: nis/ypclnt.c:854 +-msgid "Internal ypbind error" +-msgstr "Internt ypbind-fel" ++#. TRANS No space left on device; write operation on a file failed because the ++#. TRANS disk is full. ++#: sysdeps/gnu/errlist.c:317 ++msgid "No space left on device" ++msgstr "Enheten är full" + +-#: nis/ypclnt.c:856 +-msgid "Domain not bound" +-msgstr "Domn inte bunden" ++#. TRANS Invalid seek operation (such as on a pipe). ++#: sysdeps/gnu/errlist.c:326 ++msgid "Illegal seek" ++msgstr "Otillåten sökning" + +-#: nis/ypclnt.c:858 +-msgid "System resource allocation failure" +-msgstr "Allokeringsfel fr systemresurs" ++#. TRANS An attempt was made to modify something on a read-only file system. ++#: sysdeps/gnu/errlist.c:335 ++msgid "Read-only file system" ++msgstr "Filsystemet endast läsbart" + +-#: nis/ypclnt.c:860 +-msgid "Unknown ypbind error" +-msgstr "Oknt ypbind-fel" ++#. TRANS Too many links; the link count of a single file would become too large. ++#. TRANS @code{rename} can cause this error if the file being renamed already has ++#. TRANS as many links as it can take (@pxref{Renaming Files}). ++#: sysdeps/gnu/errlist.c:346 ++msgid "Too many links" ++msgstr "För många länkar" + +-#: nis/ypclnt.c:899 +-msgid "yp_update: cannot convert host to netname\n" +-msgstr "yp_update: kan inte omvandla vrd till ntnamn\n" ++#. TRANS Domain error; used by mathematical functions when an argument value does ++#. TRANS not fall into the domain over which the function is defined. ++#: sysdeps/gnu/errlist.c:369 ++msgid "Numerical argument out of domain" ++msgstr "Numeriskt argument är utanför området" + +-#: nis/ypclnt.c:911 +-msgid "yp_update: cannot get server address\n" +-msgstr "yp_update: kan inte hmta serveradress\n" ++#. TRANS Range error; used by mathematical functions when the result value is ++#. TRANS not representable because of overflow or underflow. ++#: sysdeps/gnu/errlist.c:379 ++msgid "Numerical result out of range" ++msgstr "Numeriskt resultat är utanför giltigt område" + +-#: nscd/cache.c:94 +-msgid "while allocating hash table entry" +-msgstr "nr hashtabellspost allokerades" ++#. TRANS Resource temporarily unavailable; the call might work if you try again ++#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN}; ++#. TRANS they are always the same in the GNU C library. ++#. TRANS ++#. TRANS This error can happen in a few different situations: ++#. TRANS ++#. TRANS @itemize @bullet ++#. TRANS @item ++#. TRANS An operation that would block was attempted on an object that has ++#. TRANS non-blocking mode selected. Trying the same operation again will block ++#. TRANS until some external condition makes it possible to read, write, or ++#. TRANS connect (whatever the operation). You can use @code{select} to find out ++#. TRANS when the operation will be possible; @pxref{Waiting for I/O}. ++#. TRANS ++#. TRANS @strong{Portability Note:} In many older Unix systems, this condition ++#. TRANS was indicated by @code{EWOULDBLOCK}, which was a distinct error code ++#. TRANS different from @code{EAGAIN}. To make your program portable, you should ++#. TRANS check for both codes and treat them the same. ++#. TRANS ++#. TRANS @item ++#. TRANS A temporary resource shortage made an operation impossible. @code{fork} ++#. TRANS can return this error. It indicates that the shortage is expected to ++#. TRANS pass, so your program can try the call again later and it may succeed. ++#. TRANS It is probably a good idea to delay for a few seconds before trying it ++#. TRANS again, to allow time for other processes to release scarce resources. ++#. TRANS Such shortages are usually fairly serious and affect the whole system, ++#. TRANS so usually an interactive program should report the error to the user ++#. TRANS and return to its command loop. ++#. TRANS @end itemize ++#: sysdeps/gnu/errlist.c:416 ++msgid "Resource temporarily unavailable" ++msgstr "Resursen tillfälligt otillgänglig" + +-#: nscd/cache.c:162 nscd/connections.c:184 +-#, c-format +-msgid "cannot stat() file `%s': %s" +-msgstr "kan inte ta status p fil \"%s\": %s" ++#. TRANS In the GNU C library, this is another name for @code{EAGAIN} (above). ++#. TRANS The values are always the same, on every operating system. ++#. TRANS ++#. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a ++#. TRANS separate error code. ++#: sysdeps/gnu/errlist.c:429 ++msgid "Operation would block" ++msgstr "Operationen skulle blockera" + +-#: nscd/connections.c:150 +-msgid "Cannot run nscd in secure mode as unprivileged user" +-msgstr "Kan inte kra nscd i skert lge som opriviligierad anvndare" ++#. TRANS An operation that cannot complete immediately was initiated on an object ++#. TRANS that has non-blocking mode selected. Some functions that must always ++#. TRANS block (such as @code{connect}; @pxref{Connecting}) never return ++#. TRANS @code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that ++#. TRANS the operation has begun and will take some time. Attempts to manipulate ++#. TRANS the object before the call completes return @code{EALREADY}. You can ++#. TRANS use the @code{select} function to find out when the pending operation ++#. TRANS has completed; @pxref{Waiting for I/O}. ++#: sysdeps/gnu/errlist.c:445 ++msgid "Operation now in progress" ++msgstr "Operationen pågår nu" + +-#: nscd/connections.c:172 +-#, c-format +-msgid "while allocating cache: %s" +-msgstr "nr cache-post allokerades: %s" ++#. TRANS An operation is already in progress on an object that has non-blocking ++#. TRANS mode selected. ++#: sysdeps/gnu/errlist.c:455 ++msgid "Operation already in progress" ++msgstr "Operationen pågår redan" + +-#: nscd/connections.c:197 +-#, c-format +-msgid "cannot open socket: %s" +-msgstr "kan inte ppna uttag (socket): %s" ++#. TRANS A file that isn't a socket was specified when a socket is required. ++#: sysdeps/gnu/errlist.c:464 ++msgid "Socket operation on non-socket" ++msgstr "Uttagsoperation på icke-uttag (socket)" + +-#: nscd/connections.c:215 +-#, c-format +-msgid "cannot enable socket to accept connections: %s" +-msgstr "kan inte f uttag (socket) att acceptera frbindelser: %s" ++#. TRANS The size of a message sent on a socket was larger than the supported ++#. TRANS maximum size. ++#: sysdeps/gnu/errlist.c:474 ++msgid "Message too long" ++msgstr "Meddelandet för långt" + +-#: nscd/connections.c:260 +-#, c-format +-msgid "cannot handle old request version %d; current version is %d" +-msgstr "Kan inte hantera ldre frfrgansversion %d, nuvarande version r %d" ++#. TRANS The socket type does not support the requested communications protocol. ++#: sysdeps/gnu/errlist.c:483 ++msgid "Protocol wrong type for socket" ++msgstr "Fel protokolltyp för uttag (socket)" + +-#: nscd/connections.c:298 nscd/connections.c:324 +-#, c-format +-msgid "cannot write result: %s" +-msgstr "kan inte skriva resultat: %s" ++#. TRANS You specified a socket option that doesn't make sense for the ++#. TRANS particular protocol being used by the socket. @xref{Socket Options}. ++#: sysdeps/gnu/errlist.c:493 ++msgid "Protocol not available" ++msgstr "Protokollet inte tillgängligt" + +-#: nscd/connections.c:392 nscd/connections.c:514 +-#, c-format +-msgid "error getting caller's id: %s" +-msgstr "kunde inte hmta anropandes identitet: %s" ++#. TRANS The socket domain does not support the requested communications protocol ++#. TRANS (perhaps because the requested protocol is completely invalid). ++#. TRANS @xref{Creating a Socket}. ++#: sysdeps/gnu/errlist.c:504 ++msgid "Protocol not supported" ++msgstr "Protokollet stöds ej" + +-#: nscd/connections.c:485 +-#, c-format +-msgid "while accepting connection: %s" +-msgstr "nr frbindelse accepterades: %s" ++#. TRANS The socket type is not supported. ++#: sysdeps/gnu/errlist.c:513 ++msgid "Socket type not supported" ++msgstr "Uttagstyp (socket) stöds ej" + +-#: nscd/connections.c:498 +-#, c-format +-msgid "short read while reading request: %s" +-msgstr "fattas data vid lsning av begran: %s" ++#. TRANS The operation you requested is not supported. Some socket functions ++#. TRANS don't make sense for all types of sockets, and others may not be ++#. TRANS implemented for all communications protocols. In the GNU system, this ++#. TRANS error can happen for many calls when the object does not support the ++#. TRANS particular operation; it is a generic indication that the server knows ++#. TRANS nothing to do for that call. ++#: sysdeps/gnu/errlist.c:527 ++msgid "Operation not supported" ++msgstr "Operationen stöds ej" + +-#: nscd/connections.c:542 +-#, c-format +-msgid "key length in request too long: %d" +-msgstr "nyckellngd i begran fr lng: %d" ++#. TRANS The socket communications protocol family you requested is not supported. ++#: sysdeps/gnu/errlist.c:536 ++msgid "Protocol family not supported" ++msgstr "Protokollfamiljen stöds ej" + +-#: nscd/connections.c:556 +-#, c-format +-msgid "short read while reading request key: %s" +-msgstr "fattas data vid lsning av begransnyckel: %s" ++#. TRANS The address family specified for a socket is not supported; it is ++#. TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}. ++#: sysdeps/gnu/errlist.c:546 ++msgid "Address family not supported by protocol" ++msgstr "Adressfamiljen stöds inte av protokollet" + +-#: nscd/connections.c:566 +-#, c-format +-msgid "handle_request: request received (Version = %d) from PID %ld" +-msgstr "handle_request: begran mottagen (Version = %d) frn PID %ld" ++#. TRANS The requested socket address is already in use. @xref{Socket Addresses}. ++#: sysdeps/gnu/errlist.c:555 ++msgid "Address already in use" ++msgstr "Adressen upptagen" + +-#: nscd/connections.c:571 +-#, c-format +-msgid "handle_request: request received (Version = %d)" +-msgstr "handle_request: begran mottagen (Version = %d)" ++#. TRANS The requested socket address is not available; for example, you tried ++#. TRANS to give a socket a name that doesn't match the local host name. ++#. TRANS @xref{Socket Addresses}. ++#: sysdeps/gnu/errlist.c:566 ++msgid "Cannot assign requested address" ++msgstr "Kan inte tilldela begärd adress" + +-#: nscd/connections.c:635 nscd/connections.c:636 nscd/connections.c:655 +-#: nscd/connections.c:668 nscd/connections.c:674 nscd/connections.c:681 +-#, c-format +-msgid "Failed to run nscd as user '%s'" +-msgstr "Misslyckades att kra nscd som anvndare \"%s\"" ++#. TRANS A socket operation failed because the network was down. ++#: sysdeps/gnu/errlist.c:575 ++msgid "Network is down" ++msgstr "Nätverket är nere" + +-#: nscd/connections.c:656 +-msgid "getgrouplist failed" +-msgstr "getgrouplist misslyckades" ++#. TRANS A socket operation failed because the subnet containing the remote host ++#. TRANS was unreachable. ++#: sysdeps/gnu/errlist.c:585 ++msgid "Network is unreachable" ++msgstr "Nätverket kan inte nås" + +-#: nscd/connections.c:669 +-msgid "setgroups failed" +-msgstr "setgroups misslyckades" ++#. TRANS A network connection was reset because the remote host crashed. ++#: sysdeps/gnu/errlist.c:594 ++msgid "Network dropped connection on reset" ++msgstr "Nätverket tog bort förbindelsen vid omstart" + +-#: nscd/grpcache.c:103 nscd/hstcache.c:111 nscd/pwdcache.c:109 +-msgid "while allocating key copy" +-msgstr "nr nyckelkopia allokerades" +- +-#: nscd/grpcache.c:153 nscd/hstcache.c:168 nscd/pwdcache.c:146 +-msgid "while allocating cache entry" +-msgstr "nr cache-post allokerades" ++#. TRANS A network connection was aborted locally. ++#: sysdeps/gnu/errlist.c:603 ++msgid "Software caused connection abort" ++msgstr "Mjukvara orsakade förbindelsebrott" + +-#: nscd/grpcache.c:197 nscd/hstcache.c:283 nscd/pwdcache.c:193 +-#, c-format +-msgid "short write in %s: %s" +-msgstr "ofullstndig skrivning i %s: %s" ++#. TRANS A network connection was closed for reasons outside the control of the ++#. TRANS local host, such as by the remote machine rebooting or an unrecoverable ++#. TRANS protocol violation. ++#: sysdeps/gnu/errlist.c:614 ++msgid "Connection reset by peer" ++msgstr "Förbindelse borttagen av partnern" + +-#: nscd/grpcache.c:219 +-#, c-format +-msgid "Haven't found \"%s\" in group cache!" +-msgstr "Hittar inte \"%s\" i gruppcache!" ++#. TRANS The kernel's buffers for I/O operations are all in use. In GNU, this ++#. TRANS error is always synonymous with @code{ENOMEM}; you may get one or the ++#. TRANS other from network operations. ++#: sysdeps/gnu/errlist.c:625 ++msgid "No buffer space available" ++msgstr "Ingen buffertplats tillgänglig" + +-#: nscd/grpcache.c:285 +-#, c-format +-msgid "Invalid numeric gid \"%s\"!" +-msgstr "Ogiltigt numeriskt gruppid (gid) \"%s\"!" ++#. TRANS You tried to connect a socket that is already connected. ++#. TRANS @xref{Connecting}. ++#: sysdeps/gnu/errlist.c:635 ++msgid "Transport endpoint is already connected" ++msgstr "Transportslutpunkten är redan förbunden" + +-#: nscd/grpcache.c:292 +-#, c-format +-msgid "Haven't found \"%d\" in group cache!" +-msgstr "Hittar inte \"%d\" i gruppcache!" ++#. TRANS The socket is not connected to anything. You get this error when you ++#. TRANS try to transmit data over a socket, without first specifying a ++#. TRANS destination for the data. For a connectionless socket (for datagram ++#. TRANS protocols, such as UDP), you get @code{EDESTADDRREQ} instead. ++#: sysdeps/gnu/errlist.c:647 ++msgid "Transport endpoint is not connected" ++msgstr "Transportslutpunkten är inte förbunden" + +-#: nscd/hstcache.c:305 nscd/hstcache.c:371 nscd/hstcache.c:436 +-#: nscd/hstcache.c:501 +-#, c-format +-msgid "Haven't found \"%s\" in hosts cache!" +-msgstr "Hittar inte \"%s\" i vrdcache!" ++#. TRANS No default destination address was set for the socket. You get this ++#. TRANS error when you try to transmit data over a connectionless socket, ++#. TRANS without first specifying a destination for the data with @code{connect}. ++#: sysdeps/gnu/errlist.c:658 ++msgid "Destination address required" ++msgstr "Destination krävs" + +-#: nscd/nscd.c:89 +-msgid "Read configuration data from NAME" +-msgstr "Ls konfigurationsdata frn NAMN" ++#. TRANS The socket has already been shut down. ++#: sysdeps/gnu/errlist.c:667 ++msgid "Cannot send after transport endpoint shutdown" ++msgstr "Kan inte skicka efter att transportslutpunkten stängts" + +-#: nscd/nscd.c:91 +-msgid "Do not fork and display messages on the current tty" +-msgstr "Skapa inte barnprocess, visa meddelanden p nuvarande tty" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:676 ++msgid "Too many references: cannot splice" ++msgstr "För många referenser: kan inte skarva" + +-#: nscd/nscd.c:92 +-msgid "NUMBER" +-msgstr "ANTAL" ++#. TRANS A socket operation with a specified timeout received no response during ++#. TRANS the timeout period. ++#: sysdeps/gnu/errlist.c:686 ++msgid "Connection timed out" ++msgstr "Förbindelsen dog ut (timeout)" + +-#: nscd/nscd.c:92 +-msgid "Start NUMBER threads" +-msgstr "Starta ANTAL trdar" ++#. TRANS A remote host refused to allow the network connection (typically because ++#. TRANS it is not running the requested service). ++#: sysdeps/gnu/errlist.c:696 ++msgid "Connection refused" ++msgstr "Förbindelse vägras" + +-#: nscd/nscd.c:93 +-msgid "Shut the server down" +-msgstr "Avsluta servern" ++#. TRANS Too many levels of symbolic links were encountered in looking up a file name. ++#. TRANS This often indicates a cycle of symbolic links. ++#: sysdeps/gnu/errlist.c:706 ++msgid "Too many levels of symbolic links" ++msgstr "För många nivåer av symboliska länkar" + +-#: nscd/nscd.c:94 +-msgid "Print current configuration statistic" +-msgstr "Skriv ut nuvarande konfigurationsstatistik" ++#. TRANS Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for ++#. TRANS Files}) or host name too long (in @code{gethostname} or ++#. TRANS @code{sethostname}; @pxref{Host Identification}). ++#: sysdeps/gnu/errlist.c:717 ++msgid "File name too long" ++msgstr "Filnamn för långt" + +-#: nscd/nscd.c:95 +-msgid "TABLE" +-msgstr "TABELL" ++#. TRANS The remote host for a requested network connection is down. ++#: sysdeps/gnu/errlist.c:726 ++msgid "Host is down" ++msgstr "Värddator är nere" + +-#: nscd/nscd.c:96 +-msgid "Invalidate the specified cache" +-msgstr "Invalidera den angivna cachen" ++#. TRANS The remote host for a requested network connection is not reachable. ++#: sysdeps/gnu/errlist.c:735 ++msgid "No route to host" ++msgstr "Ingen väg till värd" + +-#: nscd/nscd.c:97 +-msgid "TABLE,yes" +-msgstr "TABELL,yes" ++#. TRANS Directory not empty, where an empty directory was expected. Typically, ++#. TRANS this error occurs when you are trying to delete a directory. ++#: sysdeps/gnu/errlist.c:745 ++msgid "Directory not empty" ++msgstr "Katalog inte tom" + +-#: nscd/nscd.c:97 +-msgid "Use separate cache for each user" +-msgstr "Anvnd separat cache fr varje anvndare" ++#. TRANS This means that the per-user limit on new process would be exceeded by ++#. TRANS an attempted @code{fork}. @xref{Limits on Resources}, for details on ++#. TRANS the @code{RLIMIT_NPROC} limit. ++#: sysdeps/gnu/errlist.c:756 ++msgid "Too many processes" ++msgstr "För många processer" + +-#: nscd/nscd.c:102 +-msgid "Name Service Cache Daemon." +-msgstr "Namntjnst cache-demon" ++#. TRANS The file quota system is confused because there are too many users. ++#. TRANS @c This can probably happen in a GNU system when using NFS. ++#: sysdeps/gnu/errlist.c:766 ++msgid "Too many users" ++msgstr "För många användare" + +-#: nscd/nscd.c:141 +-msgid "cannot read configuration file; this is fatal" +-msgstr "kan inte lsa konfigurationsdata, detta r fatalt" ++#. TRANS The user's disk quota was exceeded. ++#: sysdeps/gnu/errlist.c:775 ++msgid "Disk quota exceeded" ++msgstr "Diskkvot överskriden" + +-#: nscd/nscd.c:152 +-msgid "already running" +-msgstr "kr redan" ++#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS ++#. TRANS system which is due to file system rearrangements on the server host. ++#. TRANS Repairing this condition usually requires unmounting and remounting ++#. TRANS the NFS file system on the local host. ++#: sysdeps/gnu/errlist.c:787 ++msgid "Stale NFS file handle" ++msgstr "Förlegat NFS-filhandtag" + +-#: nscd/nscd.c:270 nscd/nscd.c:294 nscd/nscd_stat.c:132 +-msgid "Only root is allowed to use this option!" +-msgstr "Bara root har tilltelse att anvnda denna operation!" ++#. TRANS An attempt was made to NFS-mount a remote file system with a file name that ++#. TRANS already specifies an NFS-mounted file. ++#. TRANS (This is an error on some operating systems, but we expect it to work ++#. TRANS properly on the GNU system, making this error code impossible.) ++#: sysdeps/gnu/errlist.c:799 ++msgid "Object is remote" ++msgstr "Är ett fjärrobjekt" + +-#: nscd/nscd_conf.c:88 +-#, c-format +-msgid "Parse error: %s" +-msgstr "Parsfel: %s" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:808 ++msgid "RPC struct is bad" ++msgstr "RPC-struktur dålig" + +-#: nscd/nscd_conf.c:171 +-#, c-format +-msgid "Could not create log file \"%s\"" +-msgstr "Kunde inte skapa loggfil \"%s\"" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:817 ++msgid "RPC version wrong" ++msgstr "RPC-version fel" + +-#: nscd/nscd_conf.c:187 +-msgid "Must specify user name for server-user option" +-msgstr "Anvndarnamn krvs fr \"server-user\"-flaggan" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:826 ++msgid "RPC program not available" ++msgstr "RPC-programmet inte tillgängligt" + +-#: nscd/nscd_conf.c:194 +-msgid "Must specify user name for stat-user option" +-msgstr "Anvndarnamn krvs fr \"stat-user\"-flaggan" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:835 ++msgid "RPC program version wrong" ++msgstr "RPC-programversion fel" + +-#: nscd/nscd_conf.c:205 +-#, c-format +-msgid "Unknown option: %s %s %s" +-msgstr "Oknd flagga: %s %s %s" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:844 ++msgid "RPC bad procedure for program" ++msgstr "RPC dålig procedur för program" + +-#: nscd/nscd_stat.c:103 +-#, c-format +-msgid "cannot write statistics: %s" +-msgstr "kan inte skriva statistik: %s" ++#. TRANS No locks available. This is used by the file locking facilities; see ++#. TRANS @ref{File Locks}. This error is never generated by the GNU system, but ++#. TRANS it can result from an operation to an NFS server running another ++#. TRANS operating system. ++#: sysdeps/gnu/errlist.c:856 ++msgid "No locks available" ++msgstr "Inga lås tillgängliga" + +-#: nscd/nscd_stat.c:128 +-#, c-format +-msgid "Only root or %s is allowed to use this option!" +-msgstr "Bara root eller %s har tilltelse att anvnda denna operation!" ++#. TRANS Inappropriate file type or format. The file was the wrong type for the ++#. TRANS operation, or a data file had the wrong format. ++#. TRANS ++#. TRANS On some systems @code{chmod} returns this error if you try to set the ++#. TRANS sticky bit on a non-directory file; @pxref{Setting Permissions}. ++#: sysdeps/gnu/errlist.c:869 ++msgid "Inappropriate file type or format" ++msgstr "Filtyp eller format olämplig" + +-#: nscd/nscd_stat.c:139 +-msgid "nscd not running!\n" +-msgstr "nscd kr inte!\n" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:878 ++msgid "Authentication error" ++msgstr "Äkthetskontroll misslyckades" + +-#: nscd/nscd_stat.c:150 +-msgid "write incomplete" +-msgstr "ofullstnding skrivning" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:887 ++msgid "Need authenticator" ++msgstr "Behöver äkthetsintygare" + +-#: nscd/nscd_stat.c:162 +-msgid "cannot read statistics data" +-msgstr "kan inte lsa statistikdata" ++#. TRANS Function not implemented. This indicates that the function called is ++#. TRANS not implemented at all, either in the C library itself or in the ++#. TRANS operating system. When you get this error, you can be sure that this ++#. TRANS particular function will always fail with @code{ENOSYS} unless you ++#. TRANS install a new version of the C library or the operating system. ++#: sysdeps/gnu/errlist.c:900 ++msgid "Function not implemented" ++msgstr "Funktion inte implementerad" + +-#: nscd/nscd_stat.c:165 +-#, c-format +-msgid "" +-"nscd configuration:\n" +-"\n" +-"%15d server debug level\n" +-msgstr "" +-"nscd konfiguration:\n" +-"\n" +-"%15d servers felskningslge\n" ++#. TRANS Not supported. A function returns this error when certain parameter ++#. TRANS values are valid, but the functionality they request is not available. ++#. TRANS This can mean that the function does not implement a particular command ++#. TRANS or option value or flag bit at all. For functions that operate on some ++#. TRANS object given in a parameter, such as a file descriptor or a port, it ++#. TRANS might instead mean that only @emph{that specific object} (file ++#. TRANS descriptor, port, etc.) is unable to support the other parameters given; ++#. TRANS different file descriptors might support different ranges of parameter ++#. TRANS values. ++#. TRANS ++#. TRANS If the entire function is not available at all in the implementation, ++#. TRANS it returns @code{ENOSYS} instead. ++#: sysdeps/gnu/errlist.c:920 ++msgid "Not supported" ++msgstr "Stöds ej" + +-#: nscd/nscd_stat.c:189 +-#, c-format +-msgid "%3ud %2uh %2um %2lus server runtime\n" +-msgstr "%3ud %2uh %2um %2lus servers krtid\n" ++#. TRANS While decoding a multibyte character the function came along an invalid ++#. TRANS or an incomplete sequence of bytes or the given wide character is invalid. ++#: sysdeps/gnu/errlist.c:930 ++msgid "Invalid or incomplete multibyte or wide character" ++msgstr "Ogiltig eller inte komplett flerbyte- eller brett tecken" + +-#: nscd/nscd_stat.c:192 +-#, c-format +-msgid " %2uh %2um %2lus server runtime\n" +-msgstr " %2uh %2um %2lus servers krtid\n" ++#. TRANS In the GNU system, servers supporting the @code{term} protocol return ++#. TRANS this error for certain operations when the caller is not in the ++#. TRANS foreground process group of the terminal. Users do not usually see this ++#. TRANS error because functions such as @code{read} and @code{write} translate ++#. TRANS it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control}, ++#. TRANS for information on process groups and these signals. ++#: sysdeps/gnu/errlist.c:944 ++msgid "Inappropriate operation for background process" ++msgstr "Operation för bakgrundsprocess olämplig" + +-#: nscd/nscd_stat.c:194 +-#, c-format +-msgid " %2um %2lus server runtime\n" +-msgstr " %2um %2lus servers krtid\n" ++#. TRANS In the GNU system, opening a file returns this error when the file is ++#. TRANS translated by a program and the translator program dies while starting ++#. TRANS up, before it has connected to the file. ++#: sysdeps/gnu/errlist.c:955 ++msgid "Translator died" ++msgstr "Översättaren dog" + +-#: nscd/nscd_stat.c:196 +-#, c-format +-msgid " %2lus server runtime\n" +-msgstr " %2lus servers krtid\n" ++#. TRANS The experienced user will know what is wrong. ++#. TRANS @c This error code is a joke. Its perror text is part of the joke. ++#. TRANS @c Don't change it. ++#: sysdeps/gnu/errlist.c:966 ++msgid "?" ++msgstr "?" + +-#: nscd/nscd_stat.c:198 +-#, c-format +-msgid "%15lu number of times clients had to wait\n" +-msgstr "%15lu antal gnger klienter behvt vnta\n" ++#. TRANS You did @strong{what}? ++#: sysdeps/gnu/errlist.c:975 ++msgid "You really blew it this time" ++msgstr "Du strulade till det den här gången" + +-#: nscd/nscd_stat.c:213 nscd/nscd_stat.c:215 +-msgid " no" +-msgstr " nej" ++#. TRANS Go home and have a glass of warm, dairy-fresh milk. ++#: sysdeps/gnu/errlist.c:984 ++msgid "Computer bought the farm" ++msgstr "Datorn packade ihop" + +-#: nscd/nscd_stat.c:213 nscd/nscd_stat.c:215 +-msgid " yes" +-msgstr " ja" ++#. TRANS This error code has no purpose. ++#: sysdeps/gnu/errlist.c:993 ++msgid "Gratuitous error" ++msgstr "Omotiverat fel" + +-#: nscd/nscd_stat.c:221 +-#, c-format +-msgid "" +-"\n" +-"%s cache:\n" +-"\n" +-"%15s cache is enabled\n" +-"%15Zu suggested size\n" +-"%15lu seconds time to live for positive entries\n" +-"%15lu seconds time to live for negative entries\n" +-"%15lu cache hits on positive entries\n" +-"%15lu cache hits on negative entries\n" +-"%15lu cache misses on positive entries\n" +-"%15lu cache misses on negative entries\n" +-"%15lu%% cache hit rate\n" +-"%15lu current number of cached values\n" +-"%15lu maximum number of cached values\n" +-"%15lu maximum chain length searched\n" +-"%15lu number of delays on rdlock\n" +-"%15lu number of delays on wrlock\n" +-"%15s check /etc/%s for changes\n" +-msgstr "" +-"\n" +-"%s cache:\n" +-"\n" +-"%15s cache r pslagen\n" +-"%15Zu freslagen storlek\n" +-"%15lu livslngd i sekunder fr positiva poster\n" +-"%15lu livslngd i sekunder fr negativa poster\n" +-"%15lu cache-trffar fr positiva poster\n" +-"%15lu cache-trffar fr negativa poster\n" +-"%15lu cache-missar fr positiva poster\n" +-"%15lu cache-missar fr negativa poster\n" +-"%15lu%% cache trffprocent\n" +-"%15lu nuvarande antal vrden i cache\n" +-"%15lu maximalt antal vrden i cache\n" +-"%15lu maximal kedjelngd som sks\n" +-"%15lu antal vntan p lsls\n" +-"%15lu antal vntan p skrivls\n" +-"%15s kontrollera /etc/%s fr ndringar\n" ++#: sysdeps/gnu/errlist.c:1001 ++msgid "Bad message" ++msgstr "Felaktigt meddelande" + +-#: nscd/pwdcache.c:215 +-#, c-format +-msgid "Haven't found \"%s\" in password cache!" +-msgstr "Hittar inte \"%s\" i lsenordscache!" ++#: sysdeps/gnu/errlist.c:1009 ++msgid "Identifier removed" ++msgstr "Identifierare borttagen" + +-#: nscd/pwdcache.c:281 +-#, c-format +-msgid "Invalid numeric uid \"%s\"!" +-msgstr "Ogiltigt numeriskt anvndarid (uid) \"%s\"!" ++#: sysdeps/gnu/errlist.c:1017 ++msgid "Multihop attempted" ++msgstr "Flerhopp försöktes" + +-#: nscd/pwdcache.c:288 +-#, c-format +-msgid "Haven't found \"%d\" in password cache!" +-msgstr "Hittar inte \"%d\" i lsenordscache!" ++#: sysdeps/gnu/errlist.c:1025 ++msgid "No data available" ++msgstr "Inga data tillgängliga" + +-#: elf/../sysdeps/generic/dl-sysdep.c:422 +-msgid "cannot create capability list" +-msgstr "kan inte skapa egenskapslista" ++#: sysdeps/gnu/errlist.c:1033 ++msgid "Link has been severed" ++msgstr "Länken har brutits" + +-#: elf/../sysdeps/generic/readelflib.c:35 +-#, c-format +-msgid "file %s is truncated\n" +-msgstr "fil %s r trunkerad\n" ++#: sysdeps/gnu/errlist.c:1041 ++msgid "No message of desired type" ++msgstr "Inget meddelande av önskad typ" + +-#: elf/../sysdeps/generic/readelflib.c:67 +-#, c-format +-msgid "%s is a 32 bit ELF file.\n" +-msgstr "%s r en 32-bitars ELF-fil.\n" ++#: sysdeps/gnu/errlist.c:1049 ++msgid "Out of streams resources" ++msgstr "Stream-resurserna är slut" + +-#: elf/../sysdeps/generic/readelflib.c:69 +-#, c-format +-msgid "%s is a 64 bit ELF file.\n" +-msgstr "%s r en 64-bitars ELF-fil.\n" ++#: sysdeps/gnu/errlist.c:1057 ++msgid "Device not a stream" ++msgstr "Enheten är inte en stream" + +-#: elf/../sysdeps/generic/readelflib.c:71 +-#, c-format +-msgid "Unknown ELFCLASS in file %s.\n" +-msgstr "Oknd ELFCLASS in fil %s.\n" ++#: sysdeps/gnu/errlist.c:1065 ++msgid "Value too large for defined data type" ++msgstr "Värdet för stort för definierad datatyp" + +-#: elf/../sysdeps/generic/readelflib.c:78 +-#, c-format +-msgid "%s is not a shared object file (Type: %d).\n" +-msgstr "%s r inte en delad objektfil (typ: %d).\n" ++#: sysdeps/gnu/errlist.c:1073 ++msgid "Protocol error" ++msgstr "Protokollfel" + +-#: elf/../sysdeps/generic/readelflib.c:109 +-msgid "more than one dynamic segment\n" +-msgstr "fler n ett dynamiskt segment\n" ++#: sysdeps/gnu/errlist.c:1081 ++msgid "Timer expired" ++msgstr "Klockan ringde" + +-#: elf/../sysdeps/unix/sysv/linux/i386/readelflib.c:49 +-#, c-format +-msgid "%s is for unknown machine %d.\n" +-msgstr "%s r fr en oknd maskin %d.\n" ++#. TRANS Operation canceled; an asynchronous operation was canceled before it ++#. TRANS completed. @xref{Asynchronous I/O}. When you call @code{aio_cancel}, ++#. TRANS the normal result is for the operations affected to complete with this ++#. TRANS error; @pxref{Cancel AIO Operations}. ++#: sysdeps/gnu/errlist.c:1093 ++msgid "Operation canceled" ++msgstr "Operationen avbruten" + +-#: elf/cache.c:70 +-msgid "unknown" +-msgstr "oknt" ++#: sysdeps/gnu/errlist.c:1101 ++msgid "Interrupted system call should be restarted" ++msgstr "Avbrutet systemanrop borde omstartas" + +-#: elf/cache.c:111 +-msgid "Unknown OS" +-msgstr "Oknt OS" ++#: sysdeps/gnu/errlist.c:1109 ++msgid "Channel number out of range" ++msgstr "Kanalnummer utanför giltigt intervall" + +-#: elf/cache.c:116 +-#, c-format +-msgid ", OS ABI: %s %d.%d.%d" +-msgstr ", OS ABI: %s %d.%d.%d" ++#: sysdeps/gnu/errlist.c:1117 ++msgid "Level 2 not synchronized" ++msgstr "Nivå 2 inte synkroniserad" + +-#: elf/cache.c:142 elf/ldconfig.c:1078 +-#, c-format +-msgid "Can't open cache file %s\n" +-msgstr "Kan inte ppna cache-fil \"%s\"\n" ++#: sysdeps/gnu/errlist.c:1125 ++msgid "Level 3 halted" ++msgstr "Nivå 3 stannad" + +-#: elf/cache.c:154 +-msgid "mmap of cache file failed.\n" +-msgstr "minnesmappning av cache-fil misslyckades.\n" ++#: sysdeps/gnu/errlist.c:1133 ++msgid "Level 3 reset" ++msgstr "Nivå 3 omstartad" + +-#: elf/cache.c:158 elf/cache.c:168 +-msgid "File is not a cache file.\n" +-msgstr "Filen r inte en cache-fil.\n" ++#: sysdeps/gnu/errlist.c:1141 ++msgid "Link number out of range" ++msgstr "Länkantal utanför giltigt område" + +-#: elf/cache.c:201 elf/cache.c:211 +-#, c-format +-msgid "%d libs found in cache `%s'\n" +-msgstr "%d bibliotek hittades i cache \"%s\"\n" ++#: sysdeps/gnu/errlist.c:1149 ++msgid "Protocol driver not attached" ++msgstr "Styrprogram för protokoll inte anslutet" + +-#: elf/cache.c:410 +-#, c-format +-msgid "Can't remove old temporary cache file %s" +-msgstr "Kan inte ta bort gammal temporr cache-fil %s" ++#: sysdeps/gnu/errlist.c:1157 ++msgid "No CSI structure available" ++msgstr "Inga CSI-strukturer tillgängliga" + +-#: elf/cache.c:417 +-#, c-format +-msgid "Can't create temporary cache file %s" +-msgstr "Kan inte skapa temporr cache-fil \"%s\"" ++#: sysdeps/gnu/errlist.c:1165 ++msgid "Level 2 halted" ++msgstr "Nivå 2 stannad" + +-#: elf/cache.c:425 elf/cache.c:434 elf/cache.c:438 +-msgid "Writing of cache data failed" +-msgstr "Skrivning av cache-data misslyckades" ++#: sysdeps/gnu/errlist.c:1173 ++msgid "Invalid exchange" ++msgstr "Ogiltig växel" + +-#: elf/cache.c:442 +-msgid "Writing of cache data failed." +-msgstr "Skrivning av cache-data misslyckades." ++#: sysdeps/gnu/errlist.c:1181 ++msgid "Invalid request descriptor" ++msgstr "Ogiltig frågedeskriptor" + +-#: elf/cache.c:449 +-#, c-format +-msgid "Changing access rights of %s to %#o failed" +-msgstr "Misslyckades med att byta tkomstrttigheter fr %s till %#o" ++#: sysdeps/gnu/errlist.c:1189 ++msgid "Exchange full" ++msgstr "Växeln full" + +-#: elf/cache.c:454 +-#, c-format +-msgid "Renaming of %s to %s failed" +-msgstr "Namnbyte p %s till %s misslyckades" ++#: sysdeps/gnu/errlist.c:1197 ++msgid "No anode" ++msgstr "Ingen anod" + +-#: elf/dl-close.c:128 +-msgid "shared object not open" +-msgstr "delat objekt r inte ppnat" ++#: sysdeps/gnu/errlist.c:1205 ++msgid "Invalid request code" ++msgstr "Ogiltig åtkomstkod" + +-#: elf/dl-close.c:531 elf/dl-open.c:454 +-msgid "TLS generation counter wrapped! Please send report with the 'glibcbug' script." +-msgstr "" +-"Generationsrknare fr TLS slog runt! Var snll och skicka felrapport med\n" +-"\"glibcbug\"-skriptet" ++#: sysdeps/gnu/errlist.c:1213 ++msgid "Invalid slot" ++msgstr "Ogiltig plats" + +-#: elf/dl-deps.c:111 elf/dl-open.c:183 +-msgid "DST not allowed in SUID/SGID programs" +-msgstr "DST inte tillten i SUID/SGID-program" ++#: sysdeps/gnu/errlist.c:1221 ++msgid "File locking deadlock error" ++msgstr "Fillåsning gav dödläge" + +-#: elf/dl-deps.c:124 +-msgid "empty dynamics string token substitution" +-msgstr "substitution av \"dynamic string token\" r tom" ++#: sysdeps/gnu/errlist.c:1229 ++msgid "Bad font file format" ++msgstr "Felaktigt format på typsnittsfil" + +-#: elf/dl-deps.c:130 +-#, c-format +-msgid "cannot load auxiliary `%s' because of empty dynamic string token substitution\n" +-msgstr "" +-"kan ite ladda extra \"%s\" p grund av att substitution av\n" +-"\"dynamic string token\" r tom\n" ++#: sysdeps/gnu/errlist.c:1237 ++msgid "Machine is not on the network" ++msgstr "Maskinen finns inte på nätverket" + +-#: elf/dl-deps.c:461 +-msgid "cannot allocate dependency list" +-msgstr "kan inte allokera beroendelista" ++#: sysdeps/gnu/errlist.c:1245 ++msgid "Package not installed" ++msgstr "Paketet är inte installerat" + +-#: elf/dl-deps.c:494 elf/dl-deps.c:549 +-msgid "cannot allocate symbol search list" +-msgstr "kan inte allokera sklista fr symboler" ++#: sysdeps/gnu/errlist.c:1253 ++msgid "Advertise error" ++msgstr "Annonseringsfel" + +-#: elf/dl-deps.c:534 +-msgid "Filters not supported with LD_TRACE_PRELINKING" +-msgstr "Filter stds ej med LD_TRACE_PRELINKING" ++#: sysdeps/gnu/errlist.c:1261 ++msgid "Srmount error" ++msgstr "Srmount-fel" + +-#: elf/dl-error.c:75 +-msgid "DYNAMIC LINKER BUG!!!" +-msgstr "FEL I DYNAMISK LNKARE!!!" ++#: sysdeps/gnu/errlist.c:1269 ++msgid "Communication error on send" ++msgstr "Kommunikationsfel vid sändning" + +-#: elf/dl-error.c:108 +-msgid "error while loading shared libraries" +-msgstr "fel nr delade bibliotek laddades" ++#: sysdeps/gnu/errlist.c:1277 ++msgid "RFS specific error" ++msgstr "RFS-specifikt fel" + +-#: elf/dl-load.c:347 +-msgid "cannot allocate name record" +-msgstr "kan inte allokera namnpost" ++#: sysdeps/gnu/errlist.c:1285 ++msgid "Name not unique on network" ++msgstr "Namnet inte unikt i nätverket" + +-#: elf/dl-load.c:449 elf/dl-load.c:528 elf/dl-load.c:648 elf/dl-load.c:743 +-msgid "cannot create cache for search path" +-msgstr "kan inte skapa cache fr skvg" ++#: sysdeps/gnu/errlist.c:1293 ++msgid "File descriptor in bad state" ++msgstr "Filidentifierare i felaktigt tillstånd" + +-#: elf/dl-load.c:551 +-msgid "cannot create RUNPATH/RPATH copy" +-msgstr "kan inte skapa kopia av RUNPATH/RPATH" ++#: sysdeps/gnu/errlist.c:1301 ++msgid "Remote address changed" ++msgstr "Fjärradress ändrades" + +-#: elf/dl-load.c:634 +-msgid "cannot create search path array" +-msgstr "kan inte skapa skvgslista" ++#: sysdeps/gnu/errlist.c:1309 ++msgid "Can not access a needed shared library" ++msgstr "Kan inte komma åt ett nödvändigt delat bibliotek" + +-#: elf/dl-load.c:830 +-msgid "cannot stat shared object" +-msgstr "kan inte ta status p delat objekt" ++#: sysdeps/gnu/errlist.c:1317 ++msgid "Accessing a corrupted shared library" ++msgstr "Öppnar ett korrupt delat bibliotek" + +-#: elf/dl-load.c:874 +-msgid "cannot open zero fill device" +-msgstr "kan inte ppna nollfyllnadsenhet" ++#: sysdeps/gnu/errlist.c:1325 ++msgid ".lib section in a.out corrupted" ++msgstr ".lib-sektion i a.out korrupt" + +-#: elf/dl-load.c:883 elf/dl-load.c:1929 +-msgid "cannot create shared object descriptor" +-msgstr "kan inte skapa delad objektdeskriptor" ++#: sysdeps/gnu/errlist.c:1333 ++msgid "Attempting to link in too many shared libraries" ++msgstr "Försöker att länka in för många delade bibliotek" + +-#: elf/dl-load.c:902 elf/dl-load.c:1470 elf/dl-load.c:1553 +-msgid "cannot read file data" +-msgstr "kan inte lsa fildata" ++#: sysdeps/gnu/errlist.c:1341 ++msgid "Cannot exec a shared library directly" ++msgstr "Kan inte köra ett delat bibliotek direkt" + +-#: elf/dl-load.c:946 +-msgid "ELF load command alignment not page-aligned" +-msgstr "ELF-laddkommando r inte p sidgrns" ++#: sysdeps/gnu/errlist.c:1349 ++msgid "Streams pipe error" ++msgstr "Streams-rörfel" + +-#: elf/dl-load.c:953 +-msgid "ELF load command address/offset not properly aligned" +-msgstr "Address/position fr ELF-laddkommando r inte p rtt bytegrns" ++#: sysdeps/gnu/errlist.c:1357 ++msgid "Structure needs cleaning" ++msgstr "Strukturen behöver städas" + +-#: elf/dl-load.c:1037 +-msgid "cannot allocate TLS data structures for initial thread" +-msgstr "kan inte skapa TLS-datastrukturer fr frsta trden" ++#: sysdeps/gnu/errlist.c:1365 ++msgid "Not a XENIX named type file" ++msgstr "Inte en XENIX-namngiven fil" + +-#: elf/dl-load.c:1061 +-msgid "cannot handle TLS data" +-msgstr "kan inte hantera TLS-data" ++#: sysdeps/gnu/errlist.c:1373 ++msgid "No XENIX semaphores available" ++msgstr "Inga XENIX-semaforer tillgängliga" + +-#: elf/dl-load.c:1075 +-msgid "object file has no loadable segments" +-msgstr "objektfilen har inga laddbara segment" ++#: sysdeps/gnu/errlist.c:1381 ++msgid "Is a named type file" ++msgstr "Är av typ namnfil" + +-#: elf/dl-load.c:1110 +-msgid "failed to map segment from shared object" +-msgstr "misslyckades att mappa segment frn delat objekt" ++#: sysdeps/gnu/errlist.c:1389 ++msgid "Remote I/O error" ++msgstr "I/O-fel på fjärrmaskin" + +-#: elf/dl-load.c:1135 +-msgid "cannot dynamically load executable" +-msgstr "kan inte ladda exekverbar fil dynamiskt" ++#: sysdeps/gnu/errlist.c:1397 ++msgid "No medium found" ++msgstr "Inget medium funnet" + +-#: elf/dl-load.c:1191 +-msgid "cannot change memory protections" +-msgstr "kan inte ndra minnesskydd" ++#: sysdeps/gnu/errlist.c:1405 ++msgid "Wrong medium type" ++msgstr "Fel typ på mediet" + +-#: elf/dl-load.c:1210 +-msgid "cannot map zero-fill pages" +-msgstr "kan inte mappa nollfyllda sidor" ++#: sysdeps/gnu/errlist.c:1413 ++msgid "Required key not available" ++msgstr "Obligatorisk nyckel inte tillgänglig" + +-#: elf/dl-load.c:1228 +-msgid "cannot allocate memory for program header" +-msgstr "Kan inte allokera minne fr programhuvud" ++#: sysdeps/gnu/errlist.c:1421 ++msgid "Key has expired" ++msgstr "Nyckeln har gått ut" + +-#: elf/dl-load.c:1259 +-msgid "object file has no dynamic section" +-msgstr "objektfilen har ingen dynamisk sektion" ++#: sysdeps/gnu/errlist.c:1429 ++msgid "Key has been revoked" ++msgstr "Nyckeln har återkallats" + +-#: elf/dl-load.c:1299 +-msgid "shared object cannot be dlopen()ed" +-msgstr "delat objekt kan inte gras dlopen() p" ++#: sysdeps/gnu/errlist.c:1437 ++msgid "Key was rejected by service" ++msgstr "Nyckeln accepterades inte av tjänsten" + +-#: elf/dl-load.c:1322 +-msgid "cannot create searchlist" +-msgstr "kan inte skapa sklista" ++#: sysdeps/gnu/errlist.c:1445 ++msgid "Owner died" ++msgstr "Ägaren dog" + +-#: elf/dl-load.c:1352 +-msgid "cannot enable executable stack as shared object requires" +-msgstr "kan inte skapa exekverbar stack som delat objekt krver" ++#: sysdeps/gnu/errlist.c:1453 ++msgid "State not recoverable" ++msgstr "Tillståndet kan inte återskapas" + +-#: elf/dl-load.c:1470 +-msgid "file too short" +-msgstr "fil fr kort" ++#: sysdeps/mach/_strerror.c:57 ++msgid "Error in unknown error system: " ++msgstr "Fel i okänt felsystem: " + +-#: elf/dl-load.c:1493 +-msgid "invalid ELF header" +-msgstr "ogiltigt ELF-huvud" ++#: sysdeps/posix/gai_strerror-strs.h:1 ++msgid "Address family for hostname not supported" ++msgstr "Adressfamilj för värdnamn stöds ej" + +-#: elf/dl-load.c:1502 +-msgid "ELF file data encoding not big-endian" +-msgstr "Kodning fr ELF-fildata r inte \"big-endian\"" ++#: sysdeps/posix/gai_strerror-strs.h:2 ++msgid "Temporary failure in name resolution" ++msgstr "Namnuppslagning misslyckades temporärt" + +-#: elf/dl-load.c:1504 +-msgid "ELF file data encoding not little-endian" +-msgstr "Kodning fr ELF-fildata r inte \"little-endian\"" ++#: sysdeps/posix/gai_strerror-strs.h:3 ++msgid "Bad value for ai_flags" ++msgstr "Otillåtet värde för ai_flags" + +-#: elf/dl-load.c:1508 +-msgid "ELF file version ident does not match current one" +-msgstr "ELF-filens versionsidentitet stmmer inte med nuvarande" ++#: sysdeps/posix/gai_strerror-strs.h:4 ++msgid "Non-recoverable failure in name resolution" ++msgstr "Oreparerbart fel i namnuppslagning" + +-#: elf/dl-load.c:1512 +-msgid "ELF file OS ABI invalid" +-msgstr "ELF-fil har felaktig version p OS-ABI" ++#: sysdeps/posix/gai_strerror-strs.h:5 ++msgid "ai_family not supported" ++msgstr "ai_family stöds ej" + +-#: elf/dl-load.c:1514 +-msgid "ELF file ABI version invalid" +-msgstr "ELF-fil har felaktig version p ABI" ++#: sysdeps/posix/gai_strerror-strs.h:6 ++msgid "Memory allocation failure" ++msgstr "Minnesallokeringsfel" + +-#: elf/dl-load.c:1517 +-msgid "internal error" +-msgstr "internt fel" ++#: sysdeps/posix/gai_strerror-strs.h:7 ++msgid "No address associated with hostname" ++msgstr "Ingen adress associerad med värdnamn" + +-#: elf/dl-load.c:1524 +-msgid "ELF file version does not match current one" +-msgstr "ELF-filens version stmmer inte med nuvarande" ++#: sysdeps/posix/gai_strerror-strs.h:8 ++msgid "Name or service not known" ++msgstr "Namn eller tjänst okänd" + +-#: elf/dl-load.c:1532 +-msgid "ELF file's phentsize not the expected size" +-msgstr "ELF-filens vrde p \"phentsize\" r inte den frvntade" ++#: sysdeps/posix/gai_strerror-strs.h:9 ++msgid "Servname not supported for ai_socktype" ++msgstr "Servname stöds inte för ai_socktype" + +-#: elf/dl-load.c:1538 +-msgid "only ET_DYN and ET_EXEC can be loaded" +-msgstr "bara ET_DYN och ET_EXEC kan laddas" ++#: sysdeps/posix/gai_strerror-strs.h:10 ++msgid "ai_socktype not supported" ++msgstr "ai_socktype stöds ej" + +-#: elf/dl-load.c:1944 +-msgid "cannot open shared object file" +-msgstr "kan inte ppna delad objektfil" ++#: sysdeps/posix/gai_strerror-strs.h:11 ++msgid "System error" ++msgstr "Systemfel" + +-#: elf/dl-lookup.c:265 elf/dl-lookup.c:443 +-msgid "relocation error" +-msgstr "fel vid relokering" ++#: sysdeps/posix/gai_strerror-strs.h:12 ++msgid "Processing request in progress" ++msgstr "Behandling av begäran pågår" + +-#: elf/dl-open.c:111 +-msgid "cannot extend global scope" +-msgstr "kan inte utka globalt omrde" ++#: sysdeps/posix/gai_strerror-strs.h:13 ++msgid "Request canceled" ++msgstr "Begäran avbruten" + +-#: elf/dl-open.c:214 +-msgid "empty dynamic string token substitution" +-msgstr "substitution av \"dynamic string token\" r tom" ++#: sysdeps/posix/gai_strerror-strs.h:14 ++msgid "Request not canceled" ++msgstr "Begäran inte avbruten" + +-#: elf/dl-open.c:361 elf/dl-open.c:372 +-msgid "cannot create scope list" +-msgstr "kan inte skapa omfngslista" ++#: sysdeps/posix/gai_strerror-strs.h:15 ++msgid "All requests done" ++msgstr "Alla begäran utförda" ++ ++#: sysdeps/posix/gai_strerror-strs.h:16 ++msgid "Interrupted by a signal" ++msgstr "Avbruten av en signal" + +-#: elf/dl-open.c:434 +-msgid "cannot create TLS data structures" +-msgstr "kan inte skapa datastrukturer fr TLS" ++#: sysdeps/posix/gai_strerror-strs.h:17 ++msgid "Parameter string not correctly encoded" ++msgstr "Parametersträng felaktigt kodad" + +-#: elf/dl-open.c:496 +-msgid "invalid mode for dlopen()" +-msgstr "ogiltiga flaggor fr dlopen()" ++#: sysdeps/unix/siglist.c:26 ++msgid "Signal 0" ++msgstr "Signal 0" + +-#: elf/dl-reloc.c:57 +-msgid "cannot allocate memory in static TLS block" +-msgstr "kan inte allokera minne i statiskt TLS-block" ++#: sysdeps/unix/siglist.c:32 ++msgid "IOT trap" ++msgstr "IOT-fälla" + +-#: elf/dl-reloc.c:176 +-msgid "cannot make segment writable for relocation" +-msgstr "kan inte gra segment skrivbart fr relokering" ++#: sysdeps/unix/sysv/linux/i386/readelflib.c:49 ++#, c-format ++msgid "%s is for unknown machine %d.\n" ++msgstr "%s är för en okänd maskin %d.\n" + +-#: elf/dl-reloc.c:277 ++#: sysdeps/unix/sysv/linux/ia64/makecontext.c:63 + #, c-format +-msgid "%s: profiler found no PLTREL in object %s\n" +-msgstr "%s: profileraren hittade inga PLTREL i objekt %s\n" ++msgid "makecontext: does not know how to handle more than 8 arguments\n" ++msgstr "makecontext: kan inte hantera mer än 8 argument\n" + +-#: elf/dl-reloc.c:289 ++#: sysdeps/unix/sysv/linux/lddlibc4.c:64 + #, c-format +-msgid "%s: profiler out of memory shadowing PLTREL of %s\n" +-msgstr "%s: profileraren fick slut minne fr kopiering av PLTREL i %s\n" ++msgid "cannot open `%s'" ++msgstr "kan inte öppna \"%s\"" + +-#: elf/dl-reloc.c:304 +-msgid "cannot restore segment prot after reloc" +-msgstr "kan inte terstlla segmentrttigheter efter relokering" ++#: sysdeps/unix/sysv/linux/lddlibc4.c:68 ++#, c-format ++msgid "cannot read header from `%s'" ++msgstr "kan inte läsa huvud från \"%s\"" + +-#: elf/dl-sym.c:74 elf/dl-sym.c:145 +-msgid "RTLD_NEXT used in code not dynamically loaded" +-msgstr "RTLD_NEXT anvnds i kod som inte r dynamiskt laddad" ++#: timezone/zdump.c:215 ++msgid "lacks alphabetic at start" ++msgstr "saknar alfabetiskt tecken i början" + +-#: elf/dl-version.c:303 +-msgid "cannot allocate version reference table" +-msgstr "kan inte allokera tabell fr versionsreferenser" ++#: timezone/zdump.c:217 ++msgid "has fewer than 3 alphabetics" ++msgstr "har färre än 3 alfabetiska tecken" + +-#: elf/ldconfig.c:122 +-msgid "Print cache" +-msgstr "Visa cache" ++#: timezone/zdump.c:219 ++msgid "has more than 6 alphabetics" ++msgstr "har fler än 6 alfabetiska tecken" + +-#: elf/ldconfig.c:123 +-msgid "Generate verbose messages" +-msgstr "Anvnd utfrligare meddelanden" ++#: timezone/zdump.c:227 ++msgid "differs from POSIX standard" ++msgstr "skiljer sig från POSIX-standard" + +-#: elf/ldconfig.c:124 +-msgid "Don't build cache" +-msgstr "Bygg inte cache" ++#: timezone/zdump.c:233 ++#, c-format ++msgid "%s: warning: zone \"%s\" abbreviation \"%s\" %s\n" ++msgstr "%s: varning: zon \"%s\" förkortning \"%s\": %s\n" + +-#: elf/ldconfig.c:125 +-msgid "Don't generate links" +-msgstr "Generera inte lnkar" ++#: timezone/zdump.c:284 ++#, c-format ++msgid "%s: usage is %s [ --version ] [ -v ] [ -c [loyear,]hiyear ] zonename ...\n" ++msgstr "%s: användning är %s [ --version ] [ -v ] [ -c [startår,}slutår ] zonnamn ...\n" + +-#: elf/ldconfig.c:126 +-msgid "Change to and use ROOT as root directory" +-msgstr "Byt till och anvnd ROOT som rotkatalog" ++#: timezone/zdump.c:301 ++#, c-format ++msgid "%s: wild -c argument %s\n" ++msgstr "%s: flaggan -c har okänt argument %s\n" + +-#: elf/ldconfig.c:127 +-msgid "Use CACHE as cache file" +-msgstr "Anvnd CACHE som cache-fil" ++#: timezone/zdump.c:392 ++msgid "Error writing to standard output" ++msgstr "Fel vid skrivning till standard ut" + +-#: elf/ldconfig.c:128 +-msgid "Use CONF as configuration file" +-msgstr "Anvnd CONF som konfigurationsfil" ++#: timezone/zdump.c:415 ++#, c-format ++msgid "%s: use of -v on system with floating time_t other than float or double\n" ++msgstr "%s: använder -v på ett system där time_t är ett annat flyttal än \"float\" eller \"double\"\n" + +-#: elf/ldconfig.c:129 +-msgid "Only process directories specified on the command line. Don't build cache." +-msgstr "Behandla endast kataloger givna som argument. Bygg inte cache." ++#: timezone/zic.c:371 ++#, c-format ++msgid "%s: Memory exhausted: %s\n" ++msgstr "%s: Minnet slut: %s\n" + +-#: elf/ldconfig.c:130 +-msgid "Manually link individual libraries." +-msgstr "Lnka enskilda bibliotek manuellt." ++#: timezone/zic.c:430 ++#, c-format ++msgid "\"%s\", line %d: %s" ++msgstr "\"%s\", rad %d: %s" + +-#: elf/ldconfig.c:131 +-msgid "Format to use: new, old or compat (default)" +-msgstr "Format att anvnda: \"new\", \"old\" eller \"compat\" (standardvrde)" ++#: timezone/zic.c:433 ++#, c-format ++msgid " (rule from \"%s\", line %d)" ++msgstr " (regel från \"%s\", rad %d)" + +-#: elf/ldconfig.c:139 +-msgid "Configure Dynamic Linker Run Time Bindings." +-msgstr "Konfigurera bindningar fr den dynamiska lnkaren." ++#: timezone/zic.c:445 ++msgid "warning: " ++msgstr "varning: " + +-#: elf/ldconfig.c:297 ++#: timezone/zic.c:455 + #, c-format +-msgid "Path `%s' given more than once" +-msgstr "Skvg \"%s\" given mer n en gng" ++msgid "" ++"%s: usage is %s [ --version ] [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n" ++"\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" ++msgstr "" ++"%s: användning är %s [ --version ] [ -s ] [ -v ] [ -l lokaltid ] [ -p posixregler ] \\\n" ++"\t[ -d katalog ] [ -L skottsekunder ] [ -y årkontrollprogram ] [ filnamn ... ]\n" + +-#: elf/ldconfig.c:341 ++#: timezone/zic.c:503 + #, c-format +-msgid "%s is not a known library type" +-msgstr "%s r inte en knd bibliotekstyp" ++msgid "%s: More than one -d option specified\n" ++msgstr "%s: Flaggan -d given mer än en gång\n" + +-#: elf/ldconfig.c:361 ++#: timezone/zic.c:513 + #, c-format +-msgid "Can't stat %s" +-msgstr "Kan inte ta status p %s" ++msgid "%s: More than one -l option specified\n" ++msgstr "%s: Flaggan -l given mer än en gång\n" + +-#: elf/ldconfig.c:431 ++#: timezone/zic.c:523 + #, c-format +-msgid "Can't stat %s\n" +-msgstr "Kan inte ta status p %s\n" ++msgid "%s: More than one -p option specified\n" ++msgstr "%s: Flaggan -p given mer än en gång\n" + +-#: elf/ldconfig.c:441 ++#: timezone/zic.c:533 + #, c-format +-msgid "%s is not a symbolic link\n" +-msgstr "%s r inte en symbolisk lnk\n" ++msgid "%s: More than one -y option specified\n" ++msgstr "%s: Flaggan -y given mer än en gång\n" + +-#: elf/ldconfig.c:460 ++#: timezone/zic.c:543 + #, c-format +-msgid "Can't unlink %s" +-msgstr "Kan inte ta bort (unlink) %s" ++msgid "%s: More than one -L option specified\n" ++msgstr "%s: Flaggan -L given mer än en gång\n" + +-#: elf/ldconfig.c:466 ++#: timezone/zic.c:592 ++msgid "link to link" ++msgstr "länk till länk" ++ ++#: timezone/zic.c:657 ++msgid "hard link failed, symbolic link used" ++msgstr "hård länk misslyckades, använder symbolisk länk" ++ ++#: timezone/zic.c:665 + #, c-format +-msgid "Can't link %s to %s" +-msgstr "Kan inte lnka %s till %s" ++msgid "%s: Can't link from %s to %s: %s\n" ++msgstr "%s: Kan inte länka från %s till %s: %s\n" + +-#: elf/ldconfig.c:472 +-msgid " (changed)\n" +-msgstr " (ndrad)\n" ++#: timezone/zic.c:774 timezone/zic.c:776 ++msgid "same rule name in multiple files" ++msgstr "samma regel i flera filer" + +-#: elf/ldconfig.c:474 +-msgid " (SKIPPED)\n" +-msgstr " (HOPPAR VER)\n" ++#: timezone/zic.c:817 ++msgid "unruly zone" ++msgstr "besvärlig zon" + +-#: elf/ldconfig.c:529 ++#: timezone/zic.c:824 + #, c-format +-msgid "Can't find %s" +-msgstr "Kan inte hitta %s" ++msgid "%s in ruleless zone" ++msgstr "%s i zon utan regler" + +-#: elf/ldconfig.c:545 +-#, c-format +-msgid "Can't lstat %s" +-msgstr "Kan inte ta lnkstatus p %s" ++#: timezone/zic.c:845 ++msgid "standard input" ++msgstr "standard in" + +-#: elf/ldconfig.c:552 ++#: timezone/zic.c:850 + #, c-format +-msgid "Ignored file %s since it is not a regular file." +-msgstr "Ignorerar fil %s eftersom den inte r en vanlig fil" ++msgid "%s: Can't open %s: %s\n" ++msgstr "%s: Kan inte öppna %s: %s\n" + +-#: elf/ldconfig.c:560 +-#, c-format +-msgid "No link created since soname could not be found for %s" +-msgstr "Ingen lnk skapad eftersom \"soname\" inte hittades fr %s" ++#: timezone/zic.c:861 ++msgid "line too long" ++msgstr "för lång rad" + +-#: elf/ldconfig.c:651 +-#, c-format +-msgid "Can't open directory %s" +-msgstr "Kan inte ppna katalog %s" ++#: timezone/zic.c:881 ++msgid "input line of unknown type" ++msgstr "inrad av okänd typ" + +-#: elf/ldconfig.c:706 elf/ldconfig.c:753 ++#: timezone/zic.c:897 + #, c-format +-msgid "Cannot lstat %s" +-msgstr "Kan inte ta status (lstat) p %s" ++msgid "%s: Leap line in non leap seconds file %s\n" ++msgstr "%s: \"Leap\"-rad i fil %s som inte är skottsekundsfil\n" + +-#: elf/ldconfig.c:718 ++#: timezone/zic.c:904 timezone/zic.c:1325 timezone/zic.c:1350 + #, c-format +-msgid "Cannot stat %s" +-msgstr "Kan inte ta status p %s" ++msgid "%s: panic: Invalid l_value %d\n" ++msgstr "%s: panik: ogiltigt l_value %d\n" + +-#: elf/ldconfig.c:775 elf/readlib.c:92 ++#: timezone/zic.c:912 + #, c-format +-msgid "Input file %s not found.\n" +-msgstr "Hittar inte infil %s.\n" ++msgid "%s: Error reading %s\n" ++msgstr "%s: Fel vid läsning från %s\n" + +-#: elf/ldconfig.c:826 ++#: timezone/zic.c:919 + #, c-format +-msgid "libc5 library %s in wrong directory" +-msgstr "libc5-bibliotek %s i fel katalog" ++msgid "%s: Error closing %s: %s\n" ++msgstr "%s: Fel vid stängning av %s: %s\n" + +-#: elf/ldconfig.c:829 +-#, c-format +-msgid "libc6 library %s in wrong directory" +-msgstr "libc6-bibliotek %s i fel katalog" ++#: timezone/zic.c:924 ++msgid "expected continuation line not found" ++msgstr "förväntad fortsättningsrad inte funnen" + +-#: elf/ldconfig.c:832 +-#, c-format +-msgid "libc4 library %s in wrong directory" +-msgstr "libc4-bibliotek %s i fel katalog" ++#: timezone/zic.c:968 ++msgid "24:00 not handled by pre-1998 versions of zic" ++msgstr "24:00 hanteras inte av zic-versioner före 1998" + +-#: elf/ldconfig.c:859 +-#, c-format +-msgid "libraries %s and %s in directory %s have same soname but different type." +-msgstr "bibliotek %s och %s i katalog %s har samma \"soname\" men olika typ." ++#: timezone/zic.c:982 ++msgid "wrong number of fields on Rule line" ++msgstr "fel antal fält på \"Rule\"-rad" + +-#: elf/ldconfig.c:962 +-#, c-format +-msgid "Can't open configuration file %s" +-msgstr "Kan inte ppna konfigurationsfil \"%s\"" ++#: timezone/zic.c:986 ++msgid "nameless rule" ++msgstr "namnlös regel" + +-#: elf/ldconfig.c:1033 +-#, c-format +-msgid "relative path `%s' used to build cache" +-msgstr "relativ skvg \"%s\" anvnd fr att bygga cache" ++#: timezone/zic.c:991 ++msgid "invalid saved time" ++msgstr "ogiltigt sparad tid" + +-#: elf/ldconfig.c:1057 +-msgid "Can't chdir to /" +-msgstr "Kan inte byta katalog till /" ++#: timezone/zic.c:1010 ++msgid "wrong number of fields on Zone line" ++msgstr "fel antal fält på \"Zone\"-rad" + +-#: elf/ldconfig.c:1099 ++#: timezone/zic.c:1016 + #, c-format +-msgid "Can't open cache file directory %s\n" +-msgstr "Kan inte lsa cache-filkatalog \"%s\"\n" ++msgid "\"Zone %s\" line and -l option are mutually exclusive" ++msgstr "\"Zone %s\"-rad och flaggan -l är ömsesidigt uteslutande" + +-#: elf/readlib.c:98 ++#: timezone/zic.c:1024 + #, c-format +-msgid "Cannot fstat file %s.\n" +-msgstr "Kan inte ta status (fstat) p fil %s.\n" ++msgid "\"Zone %s\" line and -p option are mutually exclusive" ++msgstr "\"Zone %s\"-rad och flaggan -p är ömsesidigt uteslutande" + +-#: elf/readlib.c:108 ++#: timezone/zic.c:1036 + #, c-format +-msgid "File %s is too small, not checked." +-msgstr "Fil %s r fr liten, inte kontrollerad." ++msgid "duplicate zone name %s (file \"%s\", line %d)" ++msgstr "dubblerat zonnamn %s (fil \"%s\", rad %d)" + +-#: elf/readlib.c:117 +-#, c-format +-msgid "Cannot mmap file %s.\n" +-msgstr "Kan inte minnesmappa (mmap) fil %s.\n" ++#: timezone/zic.c:1052 ++msgid "wrong number of fields on Zone continuation line" ++msgstr "fel antal fält på \"Zone\"-fortsättningsrad" + +-#: elf/readlib.c:155 +-#, c-format +-msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n" +-msgstr "%s r inte en ELF-fil, den har inte rtt magiskt tal i brjan.\n" ++#: timezone/zic.c:1092 ++msgid "invalid UTC offset" ++msgstr "ogiltigt UTC-tillägg" + +-#: elf/sprof.c:72 +-msgid "Output selection:" +-msgstr "Vlj utdata:" ++#: timezone/zic.c:1095 ++msgid "invalid abbreviation format" ++msgstr "ogiltigt förkortningsformat" + +-#: elf/sprof.c:74 +-msgid "print list of count paths and their number of use" +-msgstr "skriv lista med rknade vgar och antal anvndningar" ++#: timezone/zic.c:1122 ++msgid "Zone continuation line end time is not after end time of previous line" ++msgstr "Zon-fortsättningsradens sluttid är inte efter sluttiden på föregående rad" + +-#: elf/sprof.c:76 +-msgid "generate flat profile with counts and ticks" +-msgstr "generera platt profil med antal och tider" ++#: timezone/zic.c:1150 ++msgid "wrong number of fields on Leap line" ++msgstr "fel antal fält på \"Leap\"-rad" + +-#: elf/sprof.c:77 +-msgid "generate call graph" +-msgstr "generera anropsgraf" ++#: timezone/zic.c:1159 ++msgid "invalid leaping year" ++msgstr "ogiltigt skottår" + +-#: elf/sprof.c:84 +-msgid "Read and display shared object profiling data" +-msgstr "Ls och visa profildata fr delat objekt" ++#: timezone/zic.c:1174 timezone/zic.c:1280 ++msgid "invalid month name" ++msgstr "ogiltigt månadsnamn" + +-#: elf/sprof.c:87 +-msgid "SHOBJ [PROFDATA]" +-msgstr "SHOBJ [PROFDATA]" ++#: timezone/zic.c:1187 timezone/zic.c:1402 timezone/zic.c:1416 ++msgid "invalid day of month" ++msgstr "ogiltig dag i månaden" ++ ++#: timezone/zic.c:1192 ++msgid "time before zero" ++msgstr "tid före noll" ++ ++#: timezone/zic.c:1196 ++msgid "time too small" ++msgstr "tid för kort" ++ ++#: timezone/zic.c:1200 ++msgid "time too large" ++msgstr "tid för lång" ++ ++#: timezone/zic.c:1204 timezone/zic.c:1309 ++msgid "invalid time of day" ++msgstr "ogiltig tid på dagen" ++ ++#: timezone/zic.c:1223 ++msgid "illegal CORRECTION field on Leap line" ++msgstr "otillåtet \"CORRECTION\"-fält på \"Leap\"-rad" ++ ++#: timezone/zic.c:1228 ++msgid "illegal Rolling/Stationary field on Leap line" ++msgstr "otillåtet \"Rolling/Stationary\"-fält på \"Leap\"-rad" ++ ++#: timezone/zic.c:1244 ++msgid "wrong number of fields on Link line" ++msgstr "fel antal fält på \"Link\"-rad" ++ ++#: timezone/zic.c:1248 ++msgid "blank FROM field on Link line" ++msgstr "tomt \"FROM\"-fält på \"Link\"-rad" ++ ++#: timezone/zic.c:1252 ++msgid "blank TO field on Link line" ++msgstr "tomt \"TO\"-fält på \"Link\"-rad" ++ ++#: timezone/zic.c:1329 ++msgid "invalid starting year" ++msgstr "ogiltigt startår" ++ ++#: timezone/zic.c:1333 ++msgid "starting year too low to be represented" ++msgstr "startår för litet för att kunna representeras" ++ ++#: timezone/zic.c:1335 ++msgid "starting year too high to be represented" ++msgstr "startår för stort för att kunna representeras" ++ ++#: timezone/zic.c:1354 ++msgid "invalid ending year" ++msgstr "ogiltigt slutår" ++ ++#: timezone/zic.c:1358 ++msgid "ending year too low to be represented" ++msgstr "slutår för litet för att kunna representeras" ++ ++#: timezone/zic.c:1360 ++msgid "ending year too high to be represented" ++msgstr "slutår för stort för att kunna representeras" ++ ++#: timezone/zic.c:1363 ++msgid "starting year greater than ending year" ++msgstr "startår är större än slutår" ++ ++#: timezone/zic.c:1370 ++msgid "typed single year" ++msgstr "satte typ på endast ett år" ++ ++#: timezone/zic.c:1407 ++msgid "invalid weekday name" ++msgstr "ogiltigt veckodagsnamn" + +-#: elf/sprof.c:398 ++#: timezone/zic.c:1521 + #, c-format +-msgid "failed to load shared object `%s'" +-msgstr "misslyckades med att ladda delat objekt \"%s\"" ++msgid "%s: Can't remove %s: %s\n" ++msgstr "%s: Kan inte ta bort %s: %s\n" + +-#: elf/sprof.c:407 +-msgid "cannot create internal descriptors" +-msgstr "kan inte skapa interna deskriptorer" ++#: timezone/zic.c:1531 ++#, c-format ++msgid "%s: Can't create %s: %s\n" ++msgstr "%s: Kan inte skapa %s: %s\n" + +-#: elf/sprof.c:526 ++#: timezone/zic.c:1598 + #, c-format +-msgid "Reopening shared object `%s' failed" +-msgstr "ppna delat object \"%s\" igen misslyckades" ++msgid "%s: Error writing %s\n" ++msgstr "%s: Fel vid skrivning till %s\n" + +-#: elf/sprof.c:534 +-msgid "mapping of section headers failed" +-msgstr "mappning av sektionshuvud misslyckades" ++#: timezone/zic.c:1789 ++msgid "can't determine time zone abbreviation to use just after until time" ++msgstr "kan inte avgöra tidszonsförkortning att använda just efter \"until\"-tid" + +-#: elf/sprof.c:544 +-msgid "mapping of section header string table failed" +-msgstr "mappning av sektionshuvuds strngtabell misslyckades" ++#: timezone/zic.c:1832 ++msgid "too many transitions?!" ++msgstr "för många övergångar?!" + +-#: elf/sprof.c:564 +-#, c-format +-msgid "*** The file `%s' is stripped: no detailed analysis possible\n" +-msgstr "*** Filen \"%s\" r strippad: ingen detaljerad analys r mjlig\n" ++#: timezone/zic.c:1851 ++msgid "internal error - addtype called with bad isdst" ++msgstr "internt fel - addtype anropad med felaktig isdst" + +-#: elf/sprof.c:594 +-msgid "failed to load symbol data" +-msgstr "misslyckades att ladda symboldata" ++#: timezone/zic.c:1855 ++msgid "internal error - addtype called with bad ttisstd" ++msgstr "internt fel - addtype anropad med felaktig ttisstd" + +-#: elf/sprof.c:664 +-msgid "cannot load profiling data" +-msgstr "kan inte lsa profildata" ++#: timezone/zic.c:1859 ++msgid "internal error - addtype called with bad ttisgmt" ++msgstr "internt fel - addtype anropad med felaktig ttisgmt" + +-#: elf/sprof.c:673 +-msgid "while stat'ing profiling data file" +-msgstr "nr status togs p profildatafilen" ++#: timezone/zic.c:1878 ++msgid "too many local time types" ++msgstr "för många lokala tidstyper" ++ ++#: timezone/zic.c:1906 ++msgid "too many leap seconds" ++msgstr "för många skottsekunder" ++ ++#: timezone/zic.c:1912 ++msgid "repeated leap second moment" ++msgstr "upprepat skottsekundstillfälle" ++ ++#: timezone/zic.c:1964 ++msgid "Wild result from command execution" ++msgstr "Vilt resultat från kommandokörning" + +-#: elf/sprof.c:681 ++#: timezone/zic.c:1965 + #, c-format +-msgid "profiling data file `%s' does not match shared object `%s'" +-msgstr "profildatafil \"%s\" stmmer inte fr delat objekt \"%s\"" ++msgid "%s: command was '%s', result was %d\n" ++msgstr "%s: kommandot var \"%s\", resultatet blev %d\n" + +-#: elf/sprof.c:692 +-msgid "failed to mmap the profiling data file" +-msgstr "misslyckades att mappa (mmap) profildatafilen" ++#: timezone/zic.c:2062 ++msgid "Odd number of quotation marks" ++msgstr "Ojämnt antal citationstecken" + +-#: elf/sprof.c:700 +-msgid "error while closing the profiling data file" +-msgstr "fel vid stngning av profildatafilen" ++#: timezone/zic.c:2083 timezone/zic.c:2102 ++msgid "time overflow" ++msgstr "för stort tidsvärde" + +-#: elf/sprof.c:709 elf/sprof.c:779 +-msgid "cannot create internal descriptor" +-msgstr "kan inte skapa intern deskriptor" ++#: timezone/zic.c:2149 ++msgid "use of 2/29 in non leap-year" ++msgstr "använder 29/2 i icke-skottår" + +-#: elf/sprof.c:755 ++#: timezone/zic.c:2184 ++msgid "rule goes past start/end of month--will not work with pre-2004 versions of zic" ++msgstr "regeln går utanför start/slut på månad, fungerar inte på zic-versioner före 2004" ++ ++#: timezone/zic.c:2218 ++msgid "time zone abbreviation lacks alphabetic at start" ++msgstr "tidszonsförkortning saknar alfabetiskt tecken i början" ++ ++#: timezone/zic.c:2220 ++msgid "time zone abbreviation has more than 3 alphabetics" ++msgstr "tidszonsförkortning har fler än 3 alafabetiska tecken" ++ ++#: timezone/zic.c:2222 ++msgid "time zone abbreviation has too many alphabetics" ++msgstr "tidszonsförkortning har för många alabetiska tecken" ++ ++#: timezone/zic.c:2232 ++msgid "time zone abbreviation differs from POSIX standard" ++msgstr "tidszonsförkortning skiljer sig från POSIX-standarden" ++ ++#: timezone/zic.c:2244 ++msgid "too many, or too long, time zone abbreviations" ++msgstr "för många eller för långa tidszonförkortningar" ++ ++#: timezone/zic.c:2285 + #, c-format +-msgid "`%s' is no correct profile data file for `%s'" +-msgstr "\"%s\" r inte en korrekt profildatafil fr \"%s\"" ++msgid "%s: Can't create directory %s: %s\n" ++msgstr "%s: Kan inte skapa katalog %s: %s\n" + +-#: elf/sprof.c:936 elf/sprof.c:988 +-msgid "cannot allocate symbol data" +-msgstr "kan inte allokera symboldata" ++#: timezone/zic.c:2307 ++#, c-format ++msgid "%s: %d did not sign extend correctly\n" ++msgstr "%s: %d teckenexpanderades inte korrekt\n" +diff -urN --exclude=CVS glibc-2_5/libc/po/tr.po glibc-2_5-branch/libc/po/tr.po +--- glibc-2_5/libc/po/tr.po 2006-09-21 06:16:48.000000000 +0200 ++++ glibc-2_5-branch/libc/po/tr.po 2007-03-20 14:22:26.000000000 +0100 +@@ -1,3726 +1,4461 @@ + # Turkish translations for GNU libc messages. +-# Copyright (C) 2005 Free Software Foundation, Inc. +-# Nilgün Belma Bugüner , 2001, ..., 2005. ++# Copyright (C) 2006 Free Software Foundation, Inc. + # Onur Tolga Şehitoğlu , 1998. ++# Nilgün Belma Bugüner , 2001, ..., 2006. + # + msgid "" + msgstr "" +-"Project-Id-Version: libc 2.3.3\n" +-"POT-Creation-Date: 2004-08-05 09:16+0200\n" +-"PO-Revision-Date: 2005-02-27 11:10+0300\n" +-"Last-Translator: Nilgün Belma Bugüner \n" ++"Project-Id-Version: libc 2.5\n" ++"POT-Creation-Date: 2006-09-29 11:38-0700\n" ++"PO-Revision-Date: 2006-10-07 19:03+0300\n" ++"Last-Translator: Nilgün Belma Bugüner \n" + "Language-Team: Turkish \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.0\n" ++"X-Generator: KBabel 1.9.1\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +-#: sysdeps/generic/siglist.h:29 stdio-common/../sysdeps/unix/siglist.c:27 +-msgid "Hangup" +-msgstr "Tıkanma" ++#: argp/argp-help.c:227 ++#, c-format ++msgid "%.*s: ARGP_HELP_FMT parameter requires a value" ++msgstr "%.*s: ARGP_HELP_FMT parametresi ile bir değer vermek gerekir" + +-#: sysdeps/generic/siglist.h:30 stdio-common/../sysdeps/unix/siglist.c:28 +-msgid "Interrupt" +-msgstr "Sistem kesmesi" ++#: argp/argp-help.c:237 ++#, c-format ++msgid "%.*s: Unknown ARGP_HELP_FMT parameter" ++msgstr "%.*s: ARGP_HELP_FMT parametresi bilinmiyor" + +-#: sysdeps/generic/siglist.h:31 stdio-common/../sysdeps/unix/siglist.c:29 +-msgid "Quit" +-msgstr "Çık" ++#: argp/argp-help.c:250 ++#, c-format ++msgid "Garbage in ARGP_HELP_FMT: %s" ++msgstr "ARGP_HELP_FMT içinde bozulma saptandı: %s" + +-#: sysdeps/generic/siglist.h:32 stdio-common/../sysdeps/unix/siglist.c:30 +-msgid "Illegal instruction" +-msgstr "Yönerge kuraldışı" ++#: argp/argp-help.c:1214 ++msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." ++msgstr "Uzun seçeneklerdeki argümanlar zorunlu olsun olmasın kısa seçeneklerde de geçerlidir." + +-#: sysdeps/generic/siglist.h:33 stdio-common/../sysdeps/unix/siglist.c:31 +-msgid "Trace/breakpoint trap" +-msgstr "İzleme/kesme noktası yakalayıcı" ++#: argp/argp-help.c:1600 ++msgid "Usage:" ++msgstr "Kullanımı:" + +-#: sysdeps/generic/siglist.h:34 +-msgid "Aborted" +-msgstr "İptal edildi" ++#: argp/argp-help.c:1604 ++msgid " or: " ++msgstr " veya: " + +-#: sysdeps/generic/siglist.h:35 stdio-common/../sysdeps/unix/siglist.c:34 +-msgid "Floating point exception" +-msgstr "Gerçel sayı istisnası" ++#: argp/argp-help.c:1616 ++msgid " [OPTION...]" ++msgstr " [SEÇENEK...]" + +-#: sysdeps/generic/siglist.h:36 stdio-common/../sysdeps/unix/siglist.c:35 +-msgid "Killed" +-msgstr "Süreç durduruldu" ++#: argp/argp-help.c:1643 ++#, c-format ++msgid "Try `%s --help' or `%s --usage' for more information.\n" ++msgstr "Daha fazla bilgi için `%s --help' veya `%s --usage' yazınız.\n" + +-#: sysdeps/generic/siglist.h:37 stdio-common/../sysdeps/unix/siglist.c:36 +-msgid "Bus error" +-msgstr "Veri yolu hatası" ++#: argp/argp-help.c:1671 ++#, c-format ++msgid "Report bugs to %s.\n" ++msgstr "" ++"Yazılım hatalarını %s adresine\n" ++"çeviri hatalarını adresine bildiriniz.\n" + +-#: sysdeps/generic/siglist.h:38 stdio-common/../sysdeps/unix/siglist.c:37 +-msgid "Segmentation fault" +-msgstr "Parçalama arızası" ++#: argp/argp-parse.c:102 ++msgid "Give this help list" ++msgstr "Bu yardım iletisi verilir" + +-#. TRANS Broken pipe; there is no process reading from the other end of a pipe. +-#. TRANS Every library function that returns this error code also generates a +-#. TRANS @code{SIGPIPE} signal; this signal terminates the program if not handled +-#. TRANS or blocked. Thus, your program will never actually see @code{EPIPE} +-#. TRANS unless it has handled or blocked @code{SIGPIPE}. +-#: sysdeps/generic/siglist.h:39 stdio-common/../sysdeps/gnu/errlist.c:351 +-#: stdio-common/../sysdeps/unix/siglist.c:39 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:62 +-msgid "Broken pipe" +-msgstr "Veri alınamıyor" ++#: argp/argp-parse.c:103 ++msgid "Give a short usage message" ++msgstr "Kısa kullanım iletisi verilir" + +-#: sysdeps/generic/siglist.h:40 stdio-common/../sysdeps/unix/siglist.c:40 +-msgid "Alarm clock" +-msgstr "Alarm saati" ++#: argp/argp-parse.c:104 ++msgid "Set the program name" ++msgstr "Uygulama ismi belirtilir" + +-#: sysdeps/generic/siglist.h:41 stdio-common/../sysdeps/unix/siglist.c:41 +-msgid "Terminated" +-msgstr "Sonlandırıldı" ++#: argp/argp-parse.c:106 ++msgid "Hang for SECS seconds (default 3600)" ++msgstr "SANİYE saniyede kapanır (öntanımlı 3600)" + +-#: sysdeps/generic/siglist.h:42 stdio-common/../sysdeps/unix/siglist.c:42 +-msgid "Urgent I/O condition" +-msgstr "Acil G/Ç koşulu" ++#: argp/argp-parse.c:167 ++msgid "Print program version" ++msgstr "Program sürümünü basar" + +-#: sysdeps/generic/siglist.h:43 stdio-common/../sysdeps/unix/siglist.c:43 +-msgid "Stopped (signal)" +-msgstr "Durduruldu (sinyal)" ++#: argp/argp-parse.c:183 ++msgid "(PROGRAM ERROR) No version known!?" ++msgstr "(PROGRAM HATASI) Bilinen bir sürüm değil!?" + +-#: sysdeps/generic/siglist.h:44 stdio-common/../sysdeps/unix/siglist.c:44 +-msgid "Stopped" +-msgstr "Durduruldu" ++#: argp/argp-parse.c:623 ++#, c-format ++msgid "%s: Too many arguments\n" ++msgstr "%s: Çok fazla argüman var\n" + +-#: sysdeps/generic/siglist.h:45 stdio-common/../sysdeps/unix/siglist.c:45 +-msgid "Continued" +-msgstr "Devam ediliyor" ++#: argp/argp-parse.c:766 ++msgid "(PROGRAM ERROR) Option should have been recognized!?" ++msgstr "(PROGRAM HATASI) Bu tanınan bir seçenek olmalıydı!?" + +-#: sysdeps/generic/siglist.h:46 stdio-common/../sysdeps/unix/siglist.c:46 +-msgid "Child exited" +-msgstr "Ast çıktı" ++#: assert/assert-perr.c:57 ++#, c-format ++msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n" ++msgstr "%s%s%s:%u: %s%sUmulmadık hata: %s.\n" + +-#: sysdeps/generic/siglist.h:47 stdio-common/../sysdeps/unix/siglist.c:47 +-msgid "Stopped (tty input)" +-msgstr "Durduruldu (konsol girdisi)" ++#: assert/assert.c:57 ++#, c-format ++msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" ++msgstr "%s%s%s:%u: %s%sSav `%s' başarısızlığa uğradı.\n" + +-#: sysdeps/generic/siglist.h:48 stdio-common/../sysdeps/unix/siglist.c:48 +-msgid "Stopped (tty output)" +-msgstr "Durduruldu (konsol çıktısı)" ++#: catgets/gencat.c:109 catgets/gencat.c:113 nscd/nscd.c:96 nss/makedb.c:61 ++msgid "NAME" ++msgstr "İSİM" + +-#: sysdeps/generic/siglist.h:49 stdio-common/../sysdeps/unix/siglist.c:49 +-msgid "I/O possible" +-msgstr "G/Ç mümkün" ++#: catgets/gencat.c:110 ++msgid "Create C header file NAME containing symbol definitions" ++msgstr "Sembol tanımlarını içeren C başlık dosyası İSİM'i oluşturur" + +-#: sysdeps/generic/siglist.h:50 stdio-common/../sysdeps/unix/siglist.c:50 +-msgid "CPU time limit exceeded" +-msgstr "CPU zaman sınırı aşıldı" ++#: catgets/gencat.c:112 ++msgid "Do not use existing catalog, force new output file" ++msgstr "Mevcut kataloğu kullanmaz, yeni çıktı dosyasını zorlar" + +-#: sysdeps/generic/siglist.h:51 stdio-common/../sysdeps/unix/siglist.c:51 +-msgid "File size limit exceeded" +-msgstr "Dosya uzunluğu sınırı aşıldı" ++#: catgets/gencat.c:113 nss/makedb.c:61 ++msgid "Write output to file NAME" ++msgstr "Çıktıyı İSİM dosyasına yazar" + +-#: sysdeps/generic/siglist.h:52 stdio-common/../sysdeps/unix/siglist.c:52 +-msgid "Virtual timer expired" +-msgstr "Sanal süreölçer zaman aşımı" ++#: catgets/gencat.c:118 ++msgid "" ++"Generate message catalog. If INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n" ++"is -, output is written to standard output.\n" ++msgstr "" ++"İleti kataloğu üretilir. GİRDİ-DOSYASI - verilirse standart girdi okunur.\n" ++"ÇIKTI-DOSYASI - verilirse standart çıktıya yazılır.\n" + +-#: sysdeps/generic/siglist.h:53 stdio-common/../sysdeps/unix/siglist.c:53 +-msgid "Profiling timer expired" +-msgstr "Tanıtım süreölçerde zamanaşımı" ++#: catgets/gencat.c:123 ++msgid "" ++"-o OUTPUT-FILE [INPUT-FILE]...\n" ++"[OUTPUT-FILE [INPUT-FILE]...]" ++msgstr "" ++"-o ÇIKTI-DOSYASI [GİRDİ-DOSYASI]...\n" ++"[ÇIKTI-DOSYASI [GİRDİ-DOSYASI]...]" + +-#: sysdeps/generic/siglist.h:54 stdio-common/../sysdeps/unix/siglist.c:54 +-msgid "Window changed" +-msgstr "Pencere değiştirildi" ++#: catgets/gencat.c:231 debug/pcprofiledump.c:199 iconv/iconv_prog.c:410 ++#: iconv/iconvconfig.c:379 locale/programs/localedef.c:370 ++#: login/programs/pt_chown.c:88 malloc/memusagestat.c:525 nss/makedb.c:231 ++msgid "" ++"For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Yazılım hatalarını raporlama işlemleri için,\n" ++" adresine bakınız.\n" ++"Çeviri hatalarını adresine bildiriniz.\n" ++ ++#: catgets/gencat.c:245 debug/xtrace.sh:64 elf/ldconfig.c:285 ++#: elf/ldd.bash.in:39 elf/sprof.c:355 iconv/iconv_prog.c:425 ++#: iconv/iconvconfig.c:394 locale/programs/locale.c:274 ++#: locale/programs/localedef.c:386 login/programs/pt_chown.c:59 ++#: malloc/memusage.sh:71 nscd/nscd.c:401 nss/getent.c:83 nss/makedb.c:245 ++#: posix/getconf.c:1007 ++#, c-format ++msgid "" ++"Copyright (C) %s Free Software Foundation, Inc.\n" ++"This is free software; see the source for copying conditions. There is NO\n" ++"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" ++msgstr "" ++"Kopya Hakkı (C) %s Free Software Foundation, Inc.\n" ++"Bu bir serbest yazılımdır; kopyalama koşulları için kaynak koduna bakınız.\n" ++"HİÇBİR garanti yoktur; hatta SATILABİLİRLİĞİ veya ŞAHSİ KULLANIMINIZA\n" ++"UYGUNLUĞU için bile garanti verilmez.\n" + +-#: sysdeps/generic/siglist.h:55 stdio-common/../sysdeps/unix/siglist.c:56 +-msgid "User defined signal 1" +-msgstr "Kullanıcı tanımlı sinyal 1" ++#: catgets/gencat.c:250 debug/xtrace.sh:68 elf/ldconfig.c:290 elf/sprof.c:361 ++#: iconv/iconv_prog.c:430 iconv/iconvconfig.c:399 locale/programs/locale.c:279 ++#: locale/programs/localedef.c:391 malloc/memusage.sh:75 nscd/nscd.c:406 ++#: nss/getent.c:88 nss/makedb.c:250 posix/getconf.c:1012 ++#, c-format ++msgid "Written by %s.\n" ++msgstr "%s tarafından yazıldı.\n" + +-#: sysdeps/generic/siglist.h:56 stdio-common/../sysdeps/unix/siglist.c:57 +-msgid "User defined signal 2" +-msgstr "Kullanıcı tanımlı sinyal 2" ++#: catgets/gencat.c:281 ++msgid "*standard input*" ++msgstr "*standart girdi*" + +-#: sysdeps/generic/siglist.h:60 stdio-common/../sysdeps/unix/siglist.c:33 +-msgid "EMT trap" +-msgstr "EMT tuzağı" ++#: catgets/gencat.c:287 iconv/iconv_charmap.c:157 iconv/iconv_prog.c:297 ++#: nss/makedb.c:170 ++#, c-format ++msgid "cannot open input file `%s'" ++msgstr "`%s' girdi dosyası açılamıyor" + +-#: sysdeps/generic/siglist.h:63 stdio-common/../sysdeps/unix/siglist.c:38 +-msgid "Bad system call" +-msgstr "Sistem çağrısı hatalı" ++#: catgets/gencat.c:416 catgets/gencat.c:493 ++msgid "illegal set number" ++msgstr "küme sayısı kuraldışı" + +-#: sysdeps/generic/siglist.h:66 +-msgid "Stack fault" +-msgstr "Yığın hatası" ++#: catgets/gencat.c:443 ++msgid "duplicate set definition" ++msgstr "küme ataması tekrarlanmış" + +-#: sysdeps/generic/siglist.h:69 +-msgid "Information request" +-msgstr "Bilgi isteği" ++#: catgets/gencat.c:445 catgets/gencat.c:622 catgets/gencat.c:676 ++msgid "this is the first definition" ++msgstr "bu ilk tanım" + +-#: sysdeps/generic/siglist.h:71 +-msgid "Power failure" +-msgstr "Güç kesilmesi" ++#: catgets/gencat.c:521 ++#, c-format ++msgid "unknown set `%s'" ++msgstr "`%s' kümesi bilinmiyor" + +-#: sysdeps/generic/siglist.h:74 stdio-common/../sysdeps/unix/siglist.c:55 +-msgid "Resource lost" +-msgstr "Özkaynak kaybı" ++#: catgets/gencat.c:562 ++msgid "invalid quote character" ++msgstr "tırnak işareti geçersiz" + +-#: sysdeps/mach/hurd/mips/dl-machine.c:68 +-#: string/../sysdeps/mach/_strerror.c:57 +-msgid "Error in unknown error system: " +-msgstr "Bilinmeyen hata sisteminde hata: " ++#: catgets/gencat.c:575 ++#, c-format ++msgid "unknown directive `%s': line ignored" ++msgstr "bilinmeyen `%s' yönergesi: satır yoksayıldı" + +-#: sysdeps/mach/hurd/mips/dl-machine.c:83 +-#: string/../sysdeps/generic/_strerror.c:44 +-#: string/../sysdeps/mach/_strerror.c:87 +-msgid "Unknown error " +-msgstr "Bilinmeyen hata " ++#: catgets/gencat.c:620 ++msgid "duplicated message number" ++msgstr "tekrarlanmış ileti numarası" + +-#: sysdeps/unix/sysv/linux/lddlibc4.c:64 +-#, c-format +-msgid "cannot open `%s'" +-msgstr "`%s' açılamıyor" ++#: catgets/gencat.c:673 ++msgid "duplicated message identifier" ++msgstr "ileti tanıtıcı tekrarlanmış" + +-#: sysdeps/unix/sysv/linux/lddlibc4.c:68 +-#, c-format +-msgid "cannot read header from `%s'" +-msgstr "başlık `%s'den okunamıyor" ++#: catgets/gencat.c:730 ++msgid "invalid character: message ignored" ++msgstr "geçersiz karakter: ileti yoksayıldı" + +-#: iconv/iconv_charmap.c:159 iconv/iconv_prog.c:295 catgets/gencat.c:288 +-#, c-format +-msgid "cannot open input file `%s'" +-msgstr "`%s' girdi dosyası açılamıyor" ++#: catgets/gencat.c:773 ++msgid "invalid line" ++msgstr "satır geçersiz" + +-#: iconv/iconv_charmap.c:177 iconv/iconv_prog.c:313 +-#, c-format +-msgid "error while closing input `%s'" +-msgstr "`%s' girdisi kapatılırken hata" ++#: catgets/gencat.c:827 ++msgid "malformed line ignored" ++msgstr "hatalı satır yoksayıldı" + +-#: iconv/iconv_charmap.c:443 ++#: catgets/gencat.c:991 catgets/gencat.c:1032 nss/makedb.c:183 + #, c-format +-msgid "illegal input sequence at position %Zd" +-msgstr "%Zd konumunda uygun olmayan girdi dizgesi" ++msgid "cannot open output file `%s'" ++msgstr "`%s' çıktı dosyası açılamıyor" + +-#: iconv/iconv_charmap.c:462 iconv/iconv_prog.c:506 +-msgid "incomplete character or shift sequence at end of buffer" +-msgstr "tampon bellek sonunda eksik karakter ya da shift dizisi" ++#: catgets/gencat.c:1194 locale/programs/linereader.c:559 ++msgid "invalid escape sequence" ++msgstr "geçersiz escape dizisi" + +-#: iconv/iconv_charmap.c:507 iconv/iconv_charmap.c:543 iconv/iconv_prog.c:549 +-#: iconv/iconv_prog.c:585 +-msgid "error while reading the input" +-msgstr "girdi okunurken hata" ++#: catgets/gencat.c:1216 ++msgid "unterminated message" ++msgstr "sonlandırılmamış ileti" + +-#: iconv/iconv_charmap.c:525 iconv/iconv_prog.c:567 +-msgid "unable to allocate buffer for input" +-msgstr "girdi için tampon ayrılamadı" ++#: catgets/gencat.c:1240 ++#, c-format ++msgid "while opening old catalog file" ++msgstr "eski katalog dosyası açılırken" + +-#: iconv/iconv_prog.c:61 +-msgid "Input/Output format specification:" +-msgstr "Girdi/Çıktı biçem özellikleri:" ++#: catgets/gencat.c:1331 ++#, c-format ++msgid "conversion modules not available" ++msgstr "dönüşüm modülleri yok" + +-#: iconv/iconv_prog.c:62 +-msgid "encoding of original text" +-msgstr "özgün metin kodlaması" ++#: catgets/gencat.c:1357 ++#, c-format ++msgid "cannot determine escape character" ++msgstr "öncelem karakteri saptanamıyor" + +-#: iconv/iconv_prog.c:63 +-msgid "encoding for output" +-msgstr "çıktı için kodlama" ++#: debug/pcprofiledump.c:52 ++msgid "Don't buffer output" ++msgstr "Tampon çıktılanmaz" + +-#: iconv/iconv_prog.c:64 +-msgid "Information:" +-msgstr "Bilgi:" ++#: debug/pcprofiledump.c:57 ++msgid "Dump information generated by PC profiling." ++msgstr "Üretilen PC profilini yazar." + +-#: iconv/iconv_prog.c:65 +-msgid "list all known coded character sets" +-msgstr "tüm bilinen kodlu karakter kümelerini listeler" ++#: debug/pcprofiledump.c:60 ++msgid "[FILE]" ++msgstr "[DOSYA]" + +-#: iconv/iconv_prog.c:66 locale/programs/localedef.c:128 +-msgid "Output control:" +-msgstr "Çıktı kontrolu:" +- +-#: iconv/iconv_prog.c:67 +-msgid "omit invalid characters from output" +-msgstr "geçersiz karakterleri çıktıya yazmaz" +- +-#: iconv/iconv_prog.c:68 +-msgid "output file" +-msgstr "çıktı dosyası" +- +-#: iconv/iconv_prog.c:69 +-msgid "suppress warnings" +-msgstr "uyarıları engeller" +- +-#: iconv/iconv_prog.c:70 +-msgid "print progress information" +-msgstr "gelişim bilgisi gösterir" +- +-#: iconv/iconv_prog.c:75 +-msgid "Convert encoding of given files from one encoding to another." +-msgstr "Verilen dosyaların kodlamasını dönüştürür" +- +-#: iconv/iconv_prog.c:79 +-msgid "[FILE...]" +-msgstr "[DOSYA...]" +- +-#: iconv/iconv_prog.c:201 +-msgid "cannot open output file" +-msgstr "çıktı dosyası açılamıyor" +- +-#: iconv/iconv_prog.c:243 +-#, c-format +-msgid "conversions from `%s' and to `%s' are not supported" +-msgstr "`%s'den ve `%s'e dönüşüm desteklenmiyor" +- +-#: iconv/iconv_prog.c:248 +-#, c-format +-msgid "conversion from `%s' is not supported" +-msgstr "`%s' den dönüşüm desteklenmiyor" +- +-#: iconv/iconv_prog.c:255 +-#, c-format +-msgid "conversion to `%s' is not supported" +-msgstr "`%s' e dönüşüm desteklenmiyor" +- +-#: iconv/iconv_prog.c:259 +-#, c-format +-msgid "conversion from `%s' to `%s' is not supported" +-msgstr "`%s' den `%s' e dönüşüm desteklenmiyor" +- +-#: iconv/iconv_prog.c:265 +-msgid "failed to start conversion processing" +-msgstr "dönüşüm işlemi başlatılamadı" +- +-#: iconv/iconv_prog.c:360 +-msgid "error while closing output file" +-msgstr "çıktı dosyası kapatılırken hata" +- +-#: iconv/iconv_prog.c:409 iconv/iconvconfig.c:357 locale/programs/locale.c:279 +-#: locale/programs/localedef.c:372 catgets/gencat.c:233 +-#: malloc/memusagestat.c:602 debug/pcprofiledump.c:199 +-msgid "Report bugs using the `glibcbug' script to .\n" +-msgstr "" +-"Çeviri hatalarını adresine, diğerlerini\n" +-"ise `glibcbug' betiğini kullanarak oluşturacağınız hata raporuyla\n" +-" adresine bildiriniz.\n" +- +-#: iconv/iconv_prog.c:423 iconv/iconvconfig.c:371 locale/programs/locale.c:292 +-#: locale/programs/localedef.c:386 catgets/gencat.c:246 posix/getconf.c:913 +-#: nss/getent.c:74 nscd/nscd.c:355 nscd/nscd_nischeck.c:90 elf/ldconfig.c:274 +-#: elf/sprof.c:349 ++#: debug/pcprofiledump.c:100 + #, c-format +-msgid "" +-"Copyright (C) %s Free Software Foundation, Inc.\n" +-"This is free software; see the source for copying conditions. There is NO\n" +-"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" +-msgstr "" +-"Kopya Hakkı (C) %s Free Software Foundation, Inc.\n" +-"Bu bir serbest yazılımdır; kopyalama koşulları için kaynak koduna bakınız.\n" +-"HİÇBİR garanti yoktur; hatta SATILABİLİRLİĞİ veya ŞAHSİ KULLANIMINIZA\n" +-"UYGUNLUĞU için bile garanti verilmez.\n" ++msgid "cannot open input file" ++msgstr "girdi dosyası açılamıyor" + +-#: iconv/iconv_prog.c:428 iconv/iconvconfig.c:376 locale/programs/locale.c:297 +-#: locale/programs/localedef.c:391 catgets/gencat.c:251 posix/getconf.c:918 +-#: nss/getent.c:79 nscd/nscd.c:360 nscd/nscd_nischeck.c:95 elf/ldconfig.c:279 +-#: elf/sprof.c:355 ++#: debug/pcprofiledump.c:106 + #, c-format +-msgid "Written by %s.\n" +-msgstr "%s tarafından yazıldı.\n" +- +-#: iconv/iconv_prog.c:458 iconv/iconv_prog.c:484 +-msgid "conversion stopped due to problem in writing the output" +-msgstr "çıktıyı yazarken bir problemden dolayı dönüştürme durdu" ++msgid "cannot read header" ++msgstr "başlık okunamıyor" + +-#: iconv/iconv_prog.c:502 ++#: debug/pcprofiledump.c:170 + #, c-format +-msgid "illegal input sequence at position %ld" +-msgstr "%ld konumunda uygun olmayan girdi dizgesi" +- +-#: iconv/iconv_prog.c:510 +-msgid "internal error (illegal descriptor)" +-msgstr "iç hata (kuraldışı tanımlayıcı)" ++msgid "invalid pointer size" ++msgstr "imleyici uzunluğu geçersiz" + +-#: iconv/iconv_prog.c:513 +-#, c-format +-msgid "unknown iconv() error %d" +-msgstr "bilinmeyen iconv() hatası %d" ++#: debug/xtrace.sh:27 debug/xtrace.sh:45 ++msgid "Usage: xtrace [OPTION]... PROGRAM [PROGRAMOPTION]...\\n" ++msgstr "Kullanımı: xtrace [SEÇENEK]... PROGRAM [PROGRAMSEÇENEĞİ]...\\n" ++ ++#: debug/xtrace.sh:33 ++msgid "Try `xtrace --help' for more information.\\n" ++msgstr "Daha fazla bilgi için `xtrace --help' yazınız.\\n" ++ ++#: debug/xtrace.sh:39 ++msgid "xtrace: option `$1' requires an argument.\\n" ++msgstr "xtrace: `$1' seçeneği bir argümanla kullanılır\\n" + +-#: iconv/iconv_prog.c:756 ++#: debug/xtrace.sh:46 + msgid "" +-"The following list contain all the coded character sets known. This does\n" +-"not necessarily mean that all combinations of these names can be used for\n" +-"the FROM and TO command line parameters. One coded character set can be\n" +-"listed with several different names (aliases).\n" ++"Trace execution of program by printing currently executed function.\n" + "\n" +-" " ++" --data=FILE Don't run the program, just print the data from FILE.\n" ++"\n" ++" -?,--help Print this help and exit\n" ++" --usage Give a short usage message\n" ++" -V,--version Print version information and exit\n" ++"\n" ++"Mandatory arguments to long options are also mandatory for any corresponding\n" ++"short options.\n" ++"\n" ++"For bug reporting instructions, please see:\n" ++".\\n" + msgstr "" +-"Aşağıdaki liste bilinen tüm kodlu karakter kümelerini içerir. FROM ve TO\n" +-"komut satırı parametreleri için kullanılabilecek tüm kombinasyonlar\n" +-"bunlardır anlamında değildir. Bir kodlu karakter kümesi çeşitli farklı\n" +-"isimlerde (rumuzlarla) listelenmiş olabilir.\n" ++"O an çalıştırılmakta olan işlevi basarak programın icrasını izler.\n" + "\n" +-" " +- +-#: iconv/iconvconfig.c:110 +-msgid "Create fastloading iconv module configuration file." +-msgstr "Hızlı yükleme iconv modülü yapılandırma dosyası oluşturulur." ++" --data=DOSYA Programı çalıştırmaz, sadece veriyi DOSYAya yazar\n" ++"\n" ++" -?,--help Bu yardım metnini basar ve çıkar\n" ++" --usage Kısa bir kullanım iletisi basar\n" ++" -V,--version Sürüm bilgilerini basar ve çıkar\n" ++"\n" ++"Uzun seçenekler için zorunlu nitelikler kısa seçenekler için de zorunludur.\n" ++"\n" ++"Yazılım hatalarını bildirme işlemleri için,\n" ++" adresine bakınız.\n" ++"Çeviri hatalarını adresine bildiriniz.\\n" ++ ++#: debug/xtrace.sh:125 ++msgid "xtrace: unrecognized option `$1'\\n" ++msgstr "xtrace: tanınmayan seçenek `$1'\\n" ++ ++#: debug/xtrace.sh:138 ++msgid "No program name given\\n" ++msgstr "Program ismi verilmemiş\\n" ++ ++#: debug/xtrace.sh:146 ++#, sh-format ++msgid "executable `$program' not found\\n" ++msgstr "çalıştırılabilir `$program' ortalarda yok\\n" ++ ++#: debug/xtrace.sh:150 ++#, sh-format ++msgid "`$program' is no executable\\n" ++msgstr "`$program' çalışkan değil\\n" + +-#: iconv/iconvconfig.c:114 +-msgid "[DIR...]" +-msgstr "[DİZİN...]" ++#: dlfcn/dlinfo.c:67 ++msgid "RTLD_SELF used in code not dynamically loaded" ++msgstr "RTLD_SELF kullanılan kod dinamik olarak yüklenmedi" + +-#: iconv/iconvconfig.c:126 +-msgid "Prefix used for all file accesses" +-msgstr "Tüm dosya erişimlerinde kullanılan önek" ++#: dlfcn/dlinfo.c:76 ++msgid "unsupported dlinfo request" ++msgstr "dlinfo isteği desteklenmiyor" + +-#: iconv/iconvconfig.c:327 locale/programs/localedef.c:292 +-msgid "no output file produced because warnings were issued" +-msgstr "uyarı yayınlandığından üretilen bir çıktı dosyası yok" ++#: dlfcn/dlmopen.c:64 ++msgid "invalid namespace" ++msgstr "isim alanı geçersiz" ++ ++#: dlfcn/dlmopen.c:69 ++msgid "invalid mode" ++msgstr "geçersiz kip" ++ ++#: dlfcn/dlopen.c:64 ++msgid "invalid mode parameter" ++msgstr "kip parametresi geçersiz" + +-#: iconv/iconvconfig.c:405 +-msgid "while inserting in search tree" +-msgstr "arama ağacına eklenirken" ++#: elf/cache.c:67 ++msgid "unknown" ++msgstr "bilinmiyor" + +-#: iconv/iconvconfig.c:1204 +-msgid "cannot generate output file" +-msgstr "çıktı dosyası üretilemiyor" ++#: elf/cache.c:110 ++msgid "Unknown OS" ++msgstr "Bilinmeyen işletim sistemi" + +-#: locale/programs/charmap-dir.c:59 ++#: elf/cache.c:115 + #, c-format +-msgid "cannot read character map directory `%s'" +-msgstr "karakter eşlem dizini `%s' okunamıyor" ++msgid ", OS ABI: %s %d.%d.%d" ++msgstr ", OS ABI: %s %d.%d.%d" + +-#: locale/programs/charmap.c:136 ++#: elf/cache.c:141 elf/ldconfig.c:1231 + #, c-format +-msgid "character map file `%s' not found" +-msgstr "`%s' karakter eşlem dosyası bulunamadı" ++msgid "Can't open cache file %s\n" ++msgstr "Arabellek dosyası %s açılamıyor\n" + +-#: locale/programs/charmap.c:194 ++#: elf/cache.c:153 + #, c-format +-msgid "default character map file `%s' not found" +-msgstr "öntanımlı karakter eşlem dosyası `%s' bulunamadı" ++msgid "mmap of cache file failed.\n" ++msgstr "arabellek dosyasının mmap'lenmesi başarısız\n" + +-#: locale/programs/charmap.c:257 ++#: elf/cache.c:157 elf/cache.c:167 + #, c-format +-msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n" +-msgstr "`%s' karakter eşlemi ASCII uyumlu değil, yerel de ISO C uyumlu değil\n" ++msgid "File is not a cache file.\n" ++msgstr "Bir arabellek dosyası değil.\n" + +-#: locale/programs/charmap.c:336 ++#: elf/cache.c:200 elf/cache.c:210 + #, c-format +-msgid "%s: must be greater than \n" +-msgstr "%s: , den daha büyük olmalı\n" ++msgid "%d libs found in cache `%s'\n" ++msgstr "%d kitaplık, `%s' arabelleğinde bulundu\n" + +-#: locale/programs/charmap.c:356 locale/programs/charmap.c:373 +-#: locale/programs/repertoire.c:175 ++#: elf/cache.c:409 + #, c-format +-msgid "syntax error in prolog: %s" +-msgstr "prolog içinde sözdizimi hatası: %s" +- +-#: locale/programs/charmap.c:357 +-msgid "invalid definition" +-msgstr "geçersiz atama" +- +-#: locale/programs/charmap.c:374 locale/programs/locfile.c:126 +-#: locale/programs/locfile.c:153 locale/programs/repertoire.c:176 +-msgid "bad argument" +-msgstr "argüman hatalı" ++msgid "Can't remove old temporary cache file %s" ++msgstr "eski geçici arabellek dosyası %s silinemiyor" + +-#: locale/programs/charmap.c:402 ++#: elf/cache.c:416 + #, c-format +-msgid "duplicate definition of <%s>" +-msgstr "<%s> tanımı tekrarlanmış" ++msgid "Can't create temporary cache file %s" ++msgstr "Geçici arabellek dosyası %s oluşturulamıyor" + +-#: locale/programs/charmap.c:409 ++#: elf/cache.c:424 elf/cache.c:434 elf/cache.c:438 + #, c-format +-msgid "value for <%s> must be 1 or greater" +-msgstr "<%s> için değer 1 ya da daha büyük olmalı" ++msgid "Writing of cache data failed" ++msgstr "Arabellek verisini yazmada hata" + +-#: locale/programs/charmap.c:421 ++#: elf/cache.c:442 + #, c-format +-msgid "value of <%s> must be greater or equal than the value of <%s>" +-msgstr "<%s> değeri <%s> değerinden daha büyük ya da eşit olmalı" ++msgid "Writing of cache data failed." ++msgstr "Arabellek verisi yazılamadı." + +-#: locale/programs/charmap.c:444 locale/programs/repertoire.c:184 ++#: elf/cache.c:449 + #, c-format +-msgid "argument to <%s> must be a single character" +-msgstr "<%s>in argümanı bir tek karakter olmalı" +- +-#: locale/programs/charmap.c:470 +-msgid "character sets with locking states are not supported" +-msgstr "tuş kilitlemeli karakter kümeleri desteklenmiyor" ++msgid "Changing access rights of %s to %#o failed" ++msgstr "%s erişim hakları %#o olarak değiştirilemedi" + +-#: locale/programs/charmap.c:497 locale/programs/charmap.c:551 +-#: locale/programs/charmap.c:583 locale/programs/charmap.c:677 +-#: locale/programs/charmap.c:732 locale/programs/charmap.c:773 +-#: locale/programs/charmap.c:814 ++#: elf/cache.c:454 + #, c-format +-msgid "syntax error in %s definition: %s" +-msgstr "%s tanımında sözdizimi hatası: %s" ++msgid "Renaming of %s to %s failed" ++msgstr "%s'in ismi %s olarak değiştirilemedi" + +-#: locale/programs/charmap.c:498 locale/programs/charmap.c:678 +-#: locale/programs/charmap.c:774 locale/programs/repertoire.c:231 +-msgid "no symbolic name given" +-msgstr "sembolik isim verilmemiş" ++#: elf/dl-close.c:116 ++msgid "shared object not open" ++msgstr "paylaşımlı nesne açık değil" + +-#: locale/programs/charmap.c:552 +-msgid "invalid encoding given" +-msgstr "geçersiz kodlama verilmiş" ++#: elf/dl-deps.c:112 ++msgid "DST not allowed in SUID/SGID programs" ++msgstr "SUID/SGID programlarda DST'ye izin verilmez" + +-#: locale/programs/charmap.c:561 +-msgid "too few bytes in character encoding" +-msgstr "karakter kodlamada bayt sayısı çok az" ++#: elf/dl-deps.c:125 ++msgid "empty dynamics string token substitution" ++msgstr "boş dinamik dizge simge ikamesi" + +-#: locale/programs/charmap.c:563 +-msgid "too many bytes in character encoding" +-msgstr "karakter kodlamada bayt sayısı çok fazla" ++#: elf/dl-deps.c:131 ++#, c-format ++msgid "cannot load auxiliary `%s' because of empty dynamic string token substitution\n" ++msgstr "boş dinamik dizge simgesi ikamesi yüzünden yardımcı `%s' yüklenemiyor\n" + +-#: locale/programs/charmap.c:585 locale/programs/charmap.c:733 +-#: locale/programs/charmap.c:816 locale/programs/repertoire.c:297 +-msgid "no symbolic name given for end of range" +-msgstr "kapsam sonu için sembolik isim verilmemiş" ++#: elf/dl-deps.c:472 ++msgid "cannot allocate dependency list" ++msgstr "bağımlılık listesi ayrılamadı" + +-#: locale/programs/charmap.c:609 locale/programs/locfile.c:818 +-#: locale/programs/repertoire.c:314 +-#, c-format +-msgid "`%1$s' definition does not end with `END %1$s'" +-msgstr "`%1$s' tanımı `END %1$s' ile bitmiyor" ++#: elf/dl-deps.c:505 elf/dl-deps.c:560 ++msgid "cannot allocate symbol search list" ++msgstr "sembol arama listesi ayrılamadı" + +-#: locale/programs/charmap.c:642 +-msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" +-msgstr "CHARMAP tanımını sadece genişlik tanımları izleyebilir" ++#: elf/dl-deps.c:545 ++msgid "Filters not supported with LD_TRACE_PRELINKING" ++msgstr "LD_TRACE_PRELINKING'li süzgeçler destenlenmez" + +-#: locale/programs/charmap.c:650 locale/programs/charmap.c:713 +-#, c-format +-msgid "value for %s must be an integer" +-msgstr "%s için değer bir tamsayı olmalı" ++#: elf/dl-error.c:77 ++msgid "DYNAMIC LINKER BUG!!!" ++msgstr "DİNAMİK BAĞLAYICI HATASI!!!" + +-#: locale/programs/charmap.c:841 +-#, c-format +-msgid "%s: error in state machine" +-msgstr "%s: durum motorunda hata" ++#: elf/dl-error.c:124 ++msgid "error while loading shared libraries" ++msgstr "paylaşımlı kitaplıklar yüklenirken hata oluştu" + +-#: locale/programs/charmap.c:849 locale/programs/ld-address.c:605 +-#: locale/programs/ld-collate.c:2650 locale/programs/ld-collate.c:3818 +-#: locale/programs/ld-ctype.c:2225 locale/programs/ld-ctype.c:2994 +-#: locale/programs/ld-identification.c:469 +-#: locale/programs/ld-measurement.c:255 locale/programs/ld-messages.c:349 +-#: locale/programs/ld-monetary.c:958 locale/programs/ld-name.c:324 +-#: locale/programs/ld-numeric.c:392 locale/programs/ld-paper.c:258 +-#: locale/programs/ld-telephone.c:330 locale/programs/ld-time.c:1219 +-#: locale/programs/locfile.c:825 locale/programs/repertoire.c:325 +-#, c-format +-msgid "%s: premature end of file" +-msgstr "%s: dosya sonu erken geldi" ++#: elf/dl-fptr.c:88 ++msgid "cannot map pages for fdesc table" ++msgstr "fdesc tablosu için sayfalar eşlenemiyor" ++ ++#: elf/dl-fptr.c:192 ++msgid "cannot map pages for fptr table" ++msgstr "fptr tablosu için sayfalar eşlenemiyor" ++ ++#: elf/dl-fptr.c:221 ++msgid "internal error: symidx out of range of fptr table" ++msgstr "dahili hata: fptr tablosundaki symidx aralık dışında" + +-#: locale/programs/charmap.c:868 locale/programs/charmap.c:879 +-#, c-format +-msgid "unknown character `%s'" +-msgstr "`%s' karakteri bilinmiyor" ++#: elf/dl-load.c:372 ++msgid "cannot allocate name record" ++msgstr "isim kaydı ayrılamadı" + +-#: locale/programs/charmap.c:887 +-#, c-format +-msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d" +-msgstr "aralığın başındaki ve sonundaki bayt dizilerideki baytların sayısı aynı değil: %d ve %d" ++#: elf/dl-load.c:474 elf/dl-load.c:553 elf/dl-load.c:673 elf/dl-load.c:786 ++msgid "cannot create cache for search path" ++msgstr "dosya arama yolu için arabellek oluşturulamıyor" + +-#: locale/programs/charmap.c:991 locale/programs/ld-collate.c:2930 +-#: locale/programs/repertoire.c:420 +-msgid "invalid names for character range" +-msgstr "karakter kapsamı için geçersiz isimler" ++#: elf/dl-load.c:576 ++msgid "cannot create RUNPATH/RPATH copy" ++msgstr "RUNPATH/RPATH kopyası oluşturulamıyor" + +-#: locale/programs/charmap.c:1003 locale/programs/repertoire.c:432 +-msgid "hexadecimal range format should use only capital characters" +-msgstr "onaltılık kapsam biçimi sadece büyük harfleri kullanacaktır" ++#: elf/dl-load.c:659 ++msgid "cannot create search path array" ++msgstr "dosya arama yolu dizisi oluşturulamıyor" + +-#: locale/programs/charmap.c:1021 +-#, c-format +-msgid "<%s> and <%s> are illegal names for range" +-msgstr "<%s> ve <%s> kapsam için uygun isimler değil" +- +-#: locale/programs/charmap.c:1027 +-msgid "upper limit in range is not higher then lower limit" +-msgstr "kapsamdaki üst sınır alt sınırdan büyük değil" ++#: elf/dl-load.c:870 ++msgid "cannot stat shared object" ++msgstr "paylaşımlı nesne durumlanamıyor" + +-#: locale/programs/charmap.c:1085 +-msgid "resulting bytes for range not representable." +-msgstr "sonuçlanan baytlar kapsam için gösterilebilir değil." ++#: elf/dl-load.c:940 ++msgid "cannot open zero fill device" ++msgstr "sıfırlar içeren aygıt açılamaz" + +-#: locale/programs/ld-address.c:134 locale/programs/ld-collate.c:1534 +-#: locale/programs/ld-ctype.c:421 locale/programs/ld-identification.c:134 +-#: locale/programs/ld-measurement.c:95 locale/programs/ld-messages.c:98 +-#: locale/programs/ld-monetary.c:194 locale/programs/ld-name.c:95 +-#: locale/programs/ld-numeric.c:99 locale/programs/ld-paper.c:92 +-#: locale/programs/ld-telephone.c:95 locale/programs/ld-time.c:160 +-#, c-format +-msgid "No definition for %s category found" +-msgstr "%s kategorisi için atama bulunamadı" ++#: elf/dl-load.c:985 elf/dl-load.c:2215 ++msgid "cannot create shared object descriptor" ++msgstr "paylaşımlı nesne tanımlayıcı oluşturulamıyor" + +-#: locale/programs/ld-address.c:145 locale/programs/ld-address.c:183 +-#: locale/programs/ld-address.c:201 locale/programs/ld-address.c:228 +-#: locale/programs/ld-address.c:290 locale/programs/ld-address.c:309 +-#: locale/programs/ld-address.c:322 locale/programs/ld-identification.c:147 +-#: locale/programs/ld-measurement.c:106 locale/programs/ld-monetary.c:206 +-#: locale/programs/ld-monetary.c:250 locale/programs/ld-monetary.c:266 +-#: locale/programs/ld-monetary.c:278 locale/programs/ld-name.c:106 +-#: locale/programs/ld-name.c:143 locale/programs/ld-numeric.c:113 +-#: locale/programs/ld-numeric.c:127 locale/programs/ld-paper.c:103 +-#: locale/programs/ld-paper.c:112 locale/programs/ld-telephone.c:106 +-#: locale/programs/ld-telephone.c:163 locale/programs/ld-time.c:176 +-#: locale/programs/ld-time.c:197 +-#, c-format +-msgid "%s: field `%s' not defined" +-msgstr "%s: `%s' alanı tanımlı değil" ++#: elf/dl-load.c:1004 elf/dl-load.c:1663 elf/dl-load.c:1755 ++msgid "cannot read file data" ++msgstr "dosya verisi okunamıyor" + +-#: locale/programs/ld-address.c:157 locale/programs/ld-address.c:209 +-#: locale/programs/ld-address.c:235 locale/programs/ld-address.c:265 +-#: locale/programs/ld-name.c:118 locale/programs/ld-telephone.c:118 +-#, c-format +-msgid "%s: field `%s' must not be empty" +-msgstr "%s: `%s' alanı boş olmamalı" ++#: elf/dl-load.c:1048 ++msgid "ELF load command alignment not page-aligned" ++msgstr "ELF yükleme komutu hizalaması sayfa-hizalamalı değil" + +-#: locale/programs/ld-address.c:169 +-#, c-format +-msgid "%s: invalid escape `%%%c' sequence in field `%s'" +-msgstr "%s: `%%%c' önceleme dizisi `%s' alanında geçersiz" ++#: elf/dl-load.c:1055 ++msgid "ELF load command address/offset not properly aligned" ++msgstr "ELF yükleme komutu adresi/başvurusu gereği gibi hizalanamıyor" + +-#: locale/programs/ld-address.c:220 +-#, c-format +-msgid "%s: terminology language code `%s' not defined" +-msgstr "%s: terminoloji dil kodu `%s' atanmamış" ++#: elf/dl-load.c:1139 ++msgid "cannot allocate TLS data structures for initial thread" ++msgstr "ilk kanak için TLS veri yapıları oluşturulamıyor" + +-#: locale/programs/ld-address.c:247 locale/programs/ld-address.c:276 +-#, c-format +-msgid "%s: language abbreviation `%s' not defined" +-msgstr "%s: dil kısaltması `%s' atanmamış" ++#: elf/dl-load.c:1163 ++msgid "cannot handle TLS data" ++msgstr "TLS verisi alınamıyor" + +-#: locale/programs/ld-address.c:254 locale/programs/ld-address.c:282 +-#: locale/programs/ld-address.c:316 locale/programs/ld-address.c:328 +-#, c-format +-msgid "%s: `%s' value does not match `%s' value" +-msgstr "%s: `%s' değeri `%s' değeriyle eşleşmiyor" ++#: elf/dl-load.c:1182 ++msgid "object file has no loadable segments" ++msgstr "nesne dosyasının yüklenebilir segmanı yok" + +-#: locale/programs/ld-address.c:301 +-#, c-format +-msgid "%s: numeric country code `%d' not valid" +-msgstr "%s: sayısal ülke kodu `%d' geçersiz" ++#: elf/dl-load.c:1218 ++msgid "failed to map segment from shared object" ++msgstr "parça paylaşımlı nesneden eşleştirilemedi" + +-#: locale/programs/ld-address.c:497 locale/programs/ld-address.c:534 +-#: locale/programs/ld-address.c:572 locale/programs/ld-ctype.c:2601 +-#: locale/programs/ld-identification.c:365 +-#: locale/programs/ld-measurement.c:222 locale/programs/ld-messages.c:302 +-#: locale/programs/ld-monetary.c:700 locale/programs/ld-monetary.c:735 +-#: locale/programs/ld-monetary.c:776 locale/programs/ld-name.c:281 +-#: locale/programs/ld-numeric.c:264 locale/programs/ld-paper.c:225 +-#: locale/programs/ld-telephone.c:289 locale/programs/ld-time.c:1108 +-#: locale/programs/ld-time.c:1150 +-#, c-format +-msgid "%s: field `%s' declared more than once" +-msgstr "%s: `%s' alanı bir kereden fazla bildirilmiş" ++#: elf/dl-load.c:1242 ++msgid "cannot dynamically load executable" ++msgstr "çalıştırılabilir dosya dinamik olarak yüklenemiyor" + +-#: locale/programs/ld-address.c:501 locale/programs/ld-address.c:539 +-#: locale/programs/ld-identification.c:369 locale/programs/ld-messages.c:312 +-#: locale/programs/ld-monetary.c:704 locale/programs/ld-monetary.c:739 +-#: locale/programs/ld-name.c:285 locale/programs/ld-numeric.c:268 +-#: locale/programs/ld-telephone.c:293 locale/programs/ld-time.c:1002 +-#: locale/programs/ld-time.c:1071 locale/programs/ld-time.c:1113 +-#, c-format +-msgid "%s: unknown character in field `%s'" +-msgstr "%s: `%s' alanında bilinmeyen karakter" ++#: elf/dl-load.c:1303 ++msgid "cannot change memory protections" ++msgstr "bellek korumaları değiştirilemiyor" + +-#: locale/programs/ld-address.c:586 locale/programs/ld-collate.c:3800 +-#: locale/programs/ld-ctype.c:2974 locale/programs/ld-identification.c:450 +-#: locale/programs/ld-measurement.c:236 locale/programs/ld-messages.c:331 +-#: locale/programs/ld-monetary.c:940 locale/programs/ld-name.c:306 +-#: locale/programs/ld-numeric.c:374 locale/programs/ld-paper.c:240 +-#: locale/programs/ld-telephone.c:312 locale/programs/ld-time.c:1201 +-#, c-format +-msgid "%s: incomplete `END' line" +-msgstr "%s: tamamlanmamış `END' satırı" ++#: elf/dl-load.c:1322 ++msgid "cannot map zero-fill pages" ++msgstr "sıfırlar içeren sayfalar eşleştirilemez" + +-#: locale/programs/ld-address.c:589 locale/programs/ld-collate.c:2653 +-#: locale/programs/ld-collate.c:3802 locale/programs/ld-ctype.c:2228 +-#: locale/programs/ld-ctype.c:2977 locale/programs/ld-identification.c:453 +-#: locale/programs/ld-measurement.c:239 locale/programs/ld-messages.c:333 +-#: locale/programs/ld-monetary.c:942 locale/programs/ld-name.c:308 +-#: locale/programs/ld-numeric.c:376 locale/programs/ld-paper.c:242 +-#: locale/programs/ld-telephone.c:314 locale/programs/ld-time.c:1203 +-#, c-format +-msgid "%1$s: definition does not end with `END %1$s'" +-msgstr "%1$s: tanım `END %1$s' ile bitmiyor" ++#: elf/dl-load.c:1336 ++msgid "object file has no dynamic section" ++msgstr "nesne dosyasının dinamik bölümü yok" + +-#: locale/programs/ld-address.c:596 locale/programs/ld-collate.c:523 +-#: locale/programs/ld-collate.c:575 locale/programs/ld-collate.c:871 +-#: locale/programs/ld-collate.c:884 locale/programs/ld-collate.c:2640 +-#: locale/programs/ld-collate.c:3809 locale/programs/ld-ctype.c:1956 +-#: locale/programs/ld-ctype.c:2215 locale/programs/ld-ctype.c:2799 +-#: locale/programs/ld-ctype.c:2985 locale/programs/ld-identification.c:460 +-#: locale/programs/ld-measurement.c:246 locale/programs/ld-messages.c:340 +-#: locale/programs/ld-monetary.c:949 locale/programs/ld-name.c:315 +-#: locale/programs/ld-numeric.c:383 locale/programs/ld-paper.c:249 +-#: locale/programs/ld-telephone.c:321 locale/programs/ld-time.c:1210 +-#, c-format +-msgid "%s: syntax error" +-msgstr "%s: sözdizimi hatası" ++#: elf/dl-load.c:1359 ++msgid "shared object cannot be dlopen()ed" ++msgstr "paylaşımlı nesne dlopen()'lanamıyor" + +-#: locale/programs/ld-collate.c:398 +-#, c-format +-msgid "`%.*s' already defined in charmap" +-msgstr "`%.*s' karakter eşlem olarak zaten atanmış" ++#: elf/dl-load.c:1372 ++msgid "cannot allocate memory for program header" ++msgstr "uygulama başlığı için bellek ayrılamadı" + +-#: locale/programs/ld-collate.c:407 +-#, c-format +-msgid "`%.*s' already defined in repertoire" +-msgstr "`%.*s' repertuvar olarak zaten atanmış" ++#: elf/dl-load.c:1389 elf/dl-open.c:174 ++msgid "invalid caller" ++msgstr "çağrıcı geçersiz" + +-#: locale/programs/ld-collate.c:414 +-#, c-format +-msgid "`%.*s' already defined as collating symbol" +-msgstr "`%.*s' karşılaştırma sembolü olarak zaten atanmış" ++#: elf/dl-load.c:1428 ++msgid "cannot enable executable stack as shared object requires" ++msgstr "paylaşımlı nesnenin gerektirdiği çalıştırılabilir yığıt etkinleştirilemiyor" + +-#: locale/programs/ld-collate.c:421 +-#, c-format +-msgid "`%.*s' already defined as collating element" +-msgstr "`%.*s' karşılaştırma elemanı olarak zaten atanmış" ++#: elf/dl-load.c:1443 ++msgid "cannot close file descriptor" ++msgstr "dosya tanıtıcı kapatılamıyor" + +-#: locale/programs/ld-collate.c:452 locale/programs/ld-collate.c:478 +-#, c-format +-msgid "%s: `forward' and `backward' are mutually excluding each other" +-msgstr "%s: `forward' ve `backward' karşılıklı olarak bir diğerini dışlar" ++#: elf/dl-load.c:1485 ++msgid "cannot create searchlist" ++msgstr "arama listesi oluşturulamıyor" + +-#: locale/programs/ld-collate.c:462 locale/programs/ld-collate.c:488 +-#: locale/programs/ld-collate.c:504 +-#, c-format +-msgid "%s: `%s' mentioned more than once in definition of weight %d" +-msgstr "%s:`%s' %d ağırlıklı tanımda bir kereden fazla anıldı" ++#: elf/dl-load.c:1663 ++msgid "file too short" ++msgstr "dosya çok küçük" + +-#: locale/programs/ld-collate.c:560 +-#, c-format +-msgid "%s: too many rules; first entry only had %d" +-msgstr "%s: çok fazla kural var; sadece ilk girdide kural sayısı %d" ++#: elf/dl-load.c:1692 ++msgid "invalid ELF header" ++msgstr "ELF başlığı geçersiz" + +-#: locale/programs/ld-collate.c:596 +-#, c-format +-msgid "%s: not enough sorting rules" +-msgstr "%s: sıralama kuralları yetersiz" ++#: elf/dl-load.c:1704 ++msgid "ELF file data encoding not big-endian" ++msgstr "ELF dosyası verisinin kodlaması en-kıymetli-bayt-ilk (big-endian) değil" + +-#: locale/programs/ld-collate.c:761 +-#, c-format +-msgid "%s: empty weight string not allowed" +-msgstr "%s: boş ağırlık dizgesine izin verilmez" ++#: elf/dl-load.c:1706 ++msgid "ELF file data encoding not little-endian" ++msgstr "ELF dosyası verisinin kodlaması en-kıymetli-bayt-son (little-endian) değil" + +-#: locale/programs/ld-collate.c:856 +-#, c-format +-msgid "%s: weights must use the same ellipsis symbol as the name" +-msgstr "%s: ağırlıklar isim olarak aynı elips sembolünü kullanmalıdır" ++#: elf/dl-load.c:1710 ++msgid "ELF file version ident does not match current one" ++msgstr "ELF dosyası sürüm kimliği mevcut biriyle eşleşmiyor" + +-#: locale/programs/ld-collate.c:912 +-#, c-format +-msgid "%s: too many values" +-msgstr "%s: çok fazla değer var" ++#: elf/dl-load.c:1714 ++msgid "ELF file OS ABI invalid" ++msgstr "ELF dosyası OS ABI geçersiz" + +-#: locale/programs/ld-collate.c:1031 locale/programs/ld-collate.c:1206 +-#, c-format +-msgid "order for `%.*s' already defined at %s:%Zu" +-msgstr "`%.*s' için sıralama zaten %s:%Zu içinde atanmış" ++#: elf/dl-load.c:1716 ++msgid "ELF file ABI version invalid" ++msgstr "ELF dosyası ABI sürümü geçersiz" + +-#: locale/programs/ld-collate.c:1081 +-#, c-format +-msgid "%s: the start and the end symbol of a range must stand for characters" +-msgstr "%s: bir kapsamın başlangıç ve bitiş sembolleri, karakterleri temsil etmelidir" ++#: elf/dl-load.c:1719 ++msgid "internal error" ++msgstr "iç hata" + +-#: locale/programs/ld-collate.c:1108 +-#, c-format +-msgid "%s: byte sequences of first and last character must have the same length" +-msgstr "%s: ilk ve son karakterin bayt serisi aynı uzunlukta olmalı" ++#: elf/dl-load.c:1726 ++msgid "ELF file version does not match current one" ++msgstr "ELF dosyası sürümü mevcut biriyle eşleşmiyor" + +-#: locale/programs/ld-collate.c:1150 +-#, c-format +-msgid "%s: byte sequence of first character of sequence is not lower than that of the last character" +-msgstr "%s: serinin ilk karakterinin bayt serisi son karakterininkinden daha az değildir" ++#: elf/dl-load.c:1734 ++msgid "only ET_DYN and ET_EXEC can be loaded" ++msgstr "sadece ET_DYN ve ET_EXEC yüklü olabilir" + +-#: locale/programs/ld-collate.c:1275 +-#, c-format +-msgid "%s: symbolic range ellipsis must not directly follow `order_start'" +-msgstr "%s: sembolik kapsam elipsleri `order_start' ın hemen ardından gelmemelidir" ++#: elf/dl-load.c:1740 ++msgid "ELF file's phentsize not the expected size" ++msgstr "ELF dosyasının phent uzunluğu beklenen uzunlukta değil" + +-#: locale/programs/ld-collate.c:1279 +-#, c-format +-msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'" +-msgstr "%s: sembolik kapsam elipslerinin hemen ardından `order_end' gelmemelidir" ++#: elf/dl-load.c:2231 ++msgid "wrong ELF class: ELFCLASS64" ++msgstr "yanlış ELF sınıfı: ELFCLASS64" ++ ++#: elf/dl-load.c:2232 ++msgid "wrong ELF class: ELFCLASS32" ++msgstr "yanlış ELF sınıfı: ELFCLASS32" + +-#: locale/programs/ld-collate.c:1299 locale/programs/ld-ctype.c:1476 +-#, c-format +-msgid "`%s' and `%.*s' are not valid names for symbolic range" +-msgstr "`%s' ve `%.*s' sembolik kapsam için geçerli isimler değil" ++#: elf/dl-load.c:2235 ++msgid "cannot open shared object file" ++msgstr "paylaşımlı nesne dosyası açılamıyor" + +-#: locale/programs/ld-collate.c:1348 locale/programs/ld-collate.c:3737 +-#, c-format +-msgid "%s: order for `%.*s' already defined at %s:%Zu" +-msgstr "%s: `%.*s' için abecesel sıra zaten %s:%Zu içinde atanmış" ++#: elf/dl-lookup.c:261 ++msgid "relocation error" ++msgstr "yeniden konumlama hatası" + +-#: locale/programs/ld-collate.c:1357 +-#, c-format +-msgid "%s: `%s' must be a character" +-msgstr "%s: `%s' bir karakter olmalı" ++#: elf/dl-lookup.c:289 ++msgid "symbol lookup error" ++msgstr "simge arama hatası" + +-#: locale/programs/ld-collate.c:1550 +-#, c-format +-msgid "%s: `position' must be used for a specific level in all sections or none" +-msgstr "%s: `position' tüm alt bölümlerde özel bir düzey için kullanılmış olmalı ya da hiç bulunmamalı" ++#: elf/dl-open.c:112 ++msgid "cannot extend global scope" ++msgstr "genel kapsam genişletilemiyor" + +-#: locale/programs/ld-collate.c:1575 +-#, c-format +-msgid "symbol `%s' not defined" +-msgstr "`%s' sembolü atanmamış" ++#: elf/dl-open.c:237 ++msgid "empty dynamic string token substitution" ++msgstr "boş dinamik dizge simge ikamesi" + +-#: locale/programs/ld-collate.c:1651 locale/programs/ld-collate.c:1757 +-#, c-format +-msgid "symbol `%s' has the same encoding as" +-msgstr "`%s' sembolü bununla aynı kodlamaya sahip:" ++#: elf/dl-open.c:406 elf/dl-open.c:417 elf/dl-open.c:425 ++msgid "cannot create scope list" ++msgstr "etki alanı listesi oluşturulamıyor" + +-#: locale/programs/ld-collate.c:1655 locale/programs/ld-collate.c:1761 +-#, c-format +-msgid "symbol `%s'" +-msgstr "`%s' sembolü" ++#: elf/dl-open.c:470 ++msgid "TLS generation counter wrapped! Please report this." ++msgstr "TLS üretecinin sayacı başa döndü! Bunu lütfen bildirin." + +-#: locale/programs/ld-collate.c:1803 +-msgid "no definition of `UNDEFINED'" +-msgstr "`UNDEFINED' tanımı yok" ++#: elf/dl-open.c:508 ++msgid "invalid mode for dlopen()" ++msgstr "dlopen() için kip geçersiz" + +-#: locale/programs/ld-collate.c:1832 +-msgid "too many errors; giving up" +-msgstr "çok fazla hata: bırakılıyor" ++#: elf/dl-open.c:525 ++msgid "no more namespaces available for dlmopen()" ++msgstr "dlmopen() için artık isim alanı kalmadı" ++ ++#: elf/dl-open.c:538 ++msgid "invalid target namespace in dlmopen()" ++msgstr "dlmopen() için hedef isim alanı geçersiz" + +-#: locale/programs/ld-collate.c:2735 +-#, c-format +-msgid "%s: duplicate definition of `%s'" +-msgstr "%s: `%s' tanımı tekrarlanmış" ++#: elf/dl-reloc.c:55 ++msgid "cannot allocate memory in static TLS block" ++msgstr "durağan TLS bloğunda bellek ayrılamıyor" + +-#: locale/programs/ld-collate.c:2771 +-#, c-format +-msgid "%s: duplicate declaration of section `%s'" +-msgstr "%s: `%s' bölüm bildirimi tekrarlanmış" ++#: elf/dl-reloc.c:198 ++msgid "cannot make segment writable for relocation" ++msgstr "yeniden konumlama için parça yazılabilir yapılamıyor" + +-#: locale/programs/ld-collate.c:2910 ++#: elf/dl-reloc.c:279 + #, c-format +-msgid "%s: unknown character in collating symbol name" +-msgstr "%s: karşılaştırma sembolü isminde bilinmeyen karakter" ++msgid "%s: no PLTREL found in object %s\n" ++msgstr "%s: %s nesnesinde PLTREL yok\n" + +-#: locale/programs/ld-collate.c:3042 ++#: elf/dl-reloc.c:290 + #, c-format +-msgid "%s: unknown character in equivalent definition name" +-msgstr "%s: eşdeğer tanımlama isminde bilinmeyen karakter" ++msgid "%s: out of memory to store relocation results for %s\n" ++msgstr "%s: %s için yeniden ayırma işleminin sonuçlarını saklamak için bellek yetersiz\n" + +-#: locale/programs/ld-collate.c:3055 +-#, c-format +-msgid "%s: unknown character in equivalent definition value" +-msgstr "%s: eşdeğer tanımlama değerinde bilinmeyen karakter" ++#: elf/dl-reloc.c:306 ++msgid "cannot restore segment prot after reloc" ++msgstr "reloc işleminden sonra prot segmanı eski haline getirilemedi" + +-#: locale/programs/ld-collate.c:3065 +-#, c-format +-msgid "%s: unknown symbol `%s' in equivalent definition" +-msgstr "%s: eşdeğer tanımlamada bilinmeyen sembol: `%s'" ++#: elf/dl-reloc.c:331 ++msgid "cannot apply additional memory protection after relocation" ++msgstr "yeniden ayırma işleminden sonra ek bellek koruması uygulanamaz" + +-#: locale/programs/ld-collate.c:3074 +-msgid "error while adding equivalent collating symbol" +-msgstr "eşdeğer karşılaştırma sembolünü eklerken hata" ++#: elf/dl-sym.c:98 ++msgid "RTLD_NEXT used in code not dynamically loaded" ++msgstr "RTLD_NEXT kullanılan kod dinamik olarak yüklenmedi" + +-#: locale/programs/ld-collate.c:3104 +-#, c-format +-msgid "duplicate definition of script `%s'" +-msgstr "`%s' betiğinin ataması tekrarlanmış" ++#: elf/dl-sysdep.c:495 ++msgid "cannot create capability list" ++msgstr "yetenek listesi oluşturulamıyor" + +-#: locale/programs/ld-collate.c:3152 +-#, c-format +-msgid "%s: unknown section name `%s'" +-msgstr "%s: bölüm ismi `%s' bilinmiyor" ++#: elf/dl-tls.c:829 ++msgid "cannot create TLS data structures" ++msgstr "TLS veri yapıları oluşturulamıyor" + +-#: locale/programs/ld-collate.c:3180 +-#, c-format +-msgid "%s: multiple order definitions for section `%s'" +-msgstr "%s: `%s' alt bölümünde çok sayıda sıralama tanımı" ++#: elf/dl-version.c:303 ++msgid "cannot allocate version reference table" ++msgstr "sürüm başvuru tablosu ayrılamadı" + +-#: locale/programs/ld-collate.c:3205 +-#, c-format +-msgid "%s: invalid number of sorting rules" +-msgstr "%s: sıralama kurallarının sayısı geçersiz" ++#: elf/ldconfig.c:133 ++msgid "Print cache" ++msgstr "Yazıcı ön belleği" + +-#: locale/programs/ld-collate.c:3232 +-#, c-format +-msgid "%s: multiple order definitions for unnamed section" +-msgstr "%s: isimsiz alt bölümde çok sayıda sıralama tanımı" ++#: elf/ldconfig.c:134 ++msgid "Generate verbose messages" ++msgstr "Çok detaylı iletiler üretilir" + +-#: locale/programs/ld-collate.c:3286 locale/programs/ld-collate.c:3414 +-#: locale/programs/ld-collate.c:3778 +-#, c-format +-msgid "%s: missing `order_end' keyword" +-msgstr "%s: `order_end' anahtar-sözcüğü kayıp" ++#: elf/ldconfig.c:135 ++msgid "Don't build cache" ++msgstr "Arabellek oluşturulamıyor" + +-#: locale/programs/ld-collate.c:3347 +-#, c-format +-msgid "%s: order for collating symbol %.*s not yet defined" +-msgstr "%s: karşılaştırma sembolü %.*s için abecesel sıra henüz atanmamış" ++#: elf/ldconfig.c:136 ++msgid "Don't generate links" ++msgstr "Bağlar üretilemiyor" + +-#: locale/programs/ld-collate.c:3365 +-#, c-format +-msgid "%s: order for collating element %.*s not yet defined" +-msgstr "%s: karşılaştırma elemanı %.*s için abecesel sıra henüz atanmamış" ++#: elf/ldconfig.c:137 ++msgid "Change to and use ROOT as root directory" ++msgstr "Dizine geçilir ve kök dizin olarak ROOT kullanır" + +-#: locale/programs/ld-collate.c:3376 +-#, c-format +-msgid "%s: cannot reorder after %.*s: symbol not known" +-msgstr "%s: %.*s sembolünden sonra tekrar sıralanamıyor: sembol bilinmiyor" ++#: elf/ldconfig.c:137 ++msgid "ROOT" ++msgstr "KÖK" ++ ++#: elf/ldconfig.c:138 ++msgid "CACHE" ++msgstr "ARABELLEK" + +-#: locale/programs/ld-collate.c:3428 locale/programs/ld-collate.c:3790 +-#, c-format +-msgid "%s: missing `reorder-end' keyword" +-msgstr "%s: `reorder_end' anahtar-sözcüğü kayıp" ++#: elf/ldconfig.c:138 ++msgid "Use CACHE as cache file" ++msgstr "Arabellek dosyası olarak ARABELLEK kullanılır" + +-#: locale/programs/ld-collate.c:3462 locale/programs/ld-collate.c:3662 +-#, c-format +-msgid "%s: section `%.*s' not known" +-msgstr "%s: `%.*s' alt bölümü bilinmiyor" ++#: elf/ldconfig.c:139 ++msgid "CONF" ++msgstr "YAPL" + +-#: locale/programs/ld-collate.c:3527 +-#, c-format +-msgid "%s: bad symbol <%.*s>" +-msgstr "%s: hatalı sembol <%.*s>" ++#: elf/ldconfig.c:139 ++msgid "Use CONF as configuration file" ++msgstr "Yapılandırma dosyası olarak YAPD kullanılır" + +-#: locale/programs/ld-collate.c:3725 +-#, c-format +-msgid "%s: cannot have `%s' as end of ellipsis range" +-msgstr "%s: `%s' elips kapsamının sonu olamıyor" ++#: elf/ldconfig.c:140 ++msgid "Only process directories specified on the command line. Don't build cache." ++msgstr "Komut satırında sadece süreç dizinleri belirtilmiş. Önbellek oluşturulamadı." + +-#: locale/programs/ld-collate.c:3774 +-#, c-format +-msgid "%s: empty category description not allowed" +-msgstr "%s: boş kategori açıklamasına izin verilmez" ++#: elf/ldconfig.c:141 ++msgid "Manually link individual libraries." ++msgstr "Her bir kitaplığı kendiniz bağlayın." + +-#: locale/programs/ld-collate.c:3793 +-#, c-format +-msgid "%s: missing `reorder-sections-end' keyword" +-msgstr "%s: `reorder_section_end' anahtar-sözcüğü kayıp" ++#: elf/ldconfig.c:142 ++msgid "FORMAT" ++msgstr "BİÇİM" + +-#: locale/programs/ld-ctype.c:440 +-msgid "No character set name specified in charmap" +-msgstr "Karakter eşleşme listesinde karakter kümesi ismi belirtilmemiş" ++#: elf/ldconfig.c:142 ++msgid "Format to use: new, old or compat (default)" ++msgstr "Kullanılacak biçem: new, old ya da compat (öntanımlı)" + +-#: locale/programs/ld-ctype.c:469 +-#, c-format +-msgid "character L'\\u%0*x' in class `%s' must be in class `%s'" +-msgstr "L'\\u%0*x' karakteri `%s' sınıfında, `%s' sınıfında olmalı" ++#: elf/ldconfig.c:150 ++msgid "Configure Dynamic Linker Run Time Bindings." ++msgstr "Dinamik Bağlayıcının İcra Zamanı Bağıntılarını Yapılandırır." + +-#: locale/programs/ld-ctype.c:484 ++#: elf/ldconfig.c:308 + #, c-format +-msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'" +-msgstr "L'\\u%0*x' karakteri `%s' sınıfında, `%s' sınıfında olmamalı" ++msgid "Path `%s' given more than once" ++msgstr "`%s' dosya yolu birden fazla verilmiş" + +-#: locale/programs/ld-ctype.c:498 locale/programs/ld-ctype.c:556 ++#: elf/ldconfig.c:348 + #, c-format +-msgid "internal error in %s, line %u" +-msgstr "%s, %u satırında içsel hata" ++msgid "%s is not a known library type" ++msgstr "%s bilinen bir kitaplık türü değil" + +-#: locale/programs/ld-ctype.c:527 ++#: elf/ldconfig.c:373 + #, c-format +-msgid "character '%s' in class `%s' must be in class `%s'" +-msgstr "`%s' karakteri `%s' sınıfı yerine `%s' sınıfında olmalı" ++msgid "Can't stat %s" ++msgstr "stat %s yapılamıyor" + +-#: locale/programs/ld-ctype.c:543 ++#: elf/ldconfig.c:447 + #, c-format +-msgid "character '%s' in class `%s' must not be in class `%s'" +-msgstr "`%s' karakteri `%s' sınıfında ama `%s' sınıfında olmamalı" ++msgid "Can't stat %s\n" ++msgstr "stat %s yapılamıyor\n" + +-#: locale/programs/ld-ctype.c:573 locale/programs/ld-ctype.c:611 ++#: elf/ldconfig.c:457 + #, c-format +-msgid " character not in class `%s'" +-msgstr " karakteri `%s' sınıfında değil" ++msgid "%s is not a symbolic link\n" ++msgstr "%s bir sembolik bağ değil\n" + +-#: locale/programs/ld-ctype.c:585 locale/programs/ld-ctype.c:622 ++#: elf/ldconfig.c:476 + #, c-format +-msgid " character must not be in class `%s'" +-msgstr " karakteri `%s' sınıfında olmamalı" +- +-#: locale/programs/ld-ctype.c:600 +-msgid "character not defined in character map" +-msgstr " karakteri karakter eşlemde atanmamış" +- +-#: locale/programs/ld-ctype.c:714 +-msgid "`digit' category has not entries in groups of ten" +-msgstr "`digit' kategorisi 10 gruptan hiç birinde girdiye sahip değil" ++msgid "Can't unlink %s" ++msgstr "%s bağı kaldırılamadı" + +-#: locale/programs/ld-ctype.c:763 +-msgid "no input digits defined and none of the standard names in the charmap" +-msgstr "karakter eşleşme listesinde standart isimlerin hiç biri ve atanmış girdi rakamları yok" ++#: elf/ldconfig.c:482 ++#, c-format ++msgid "Can't link %s to %s" ++msgstr "%s den %s'e bağ yapılamıyor" + +-#: locale/programs/ld-ctype.c:828 +-msgid "not all characters used in `outdigit' are available in the charmap" +-msgstr "`outdigit' içinde kullanılan karakterlerin bir kısmı karakter eşleşme listesinde mevcut" ++#: elf/ldconfig.c:488 ++msgid " (changed)\n" ++msgstr " (değişti)\n" + +-#: locale/programs/ld-ctype.c:845 +-msgid "not all characters used in `outdigit' are available in the repertoire" +-msgstr "`outdigit' içinde kullanılan karakterlerin bir kısmı repertuvarda mevcut" ++#: elf/ldconfig.c:490 ++msgid " (SKIPPED)\n" ++msgstr " (ATLANDI)\n" + +-#: locale/programs/ld-ctype.c:1244 ++#: elf/ldconfig.c:545 + #, c-format +-msgid "character class `%s' already defined" +-msgstr "`%s' karakter sınıfı zaten atanmış" ++msgid "Can't find %s" ++msgstr "%s bulunamıyor" + +-#: locale/programs/ld-ctype.c:1250 ++#: elf/ldconfig.c:561 + #, c-format +-msgid "implementation limit: no more than %Zd character classes allowed" +-msgstr "tamamlama sınırı: %Zd karakterden fazla olmayan sınıflara izin verilmedi" ++msgid "Can't lstat %s" ++msgstr "lstat %s yapılamıyor" + +-#: locale/programs/ld-ctype.c:1276 ++#: elf/ldconfig.c:568 + #, c-format +-msgid "character map `%s' already defined" +-msgstr "`%s' karakter eşlem zaten atanmış" ++msgid "Ignored file %s since it is not a regular file." ++msgstr "Normal bir dosya olmadığından %s dosyası yoksayıldı" + +-#: locale/programs/ld-ctype.c:1282 ++#: elf/ldconfig.c:576 + #, c-format +-msgid "implementation limit: no more than %d character maps allowed" +-msgstr "tamamlama sınırı: %d karakterden fazla olmayan karakter eşleşme listesine izin verilmedi" ++msgid "No link created since soname could not be found for %s" ++msgstr "%s için kitaplık ismi bulunamadığından bağ oluşturulmadı" + +-#: locale/programs/ld-ctype.c:1547 locale/programs/ld-ctype.c:1672 +-#: locale/programs/ld-ctype.c:1778 locale/programs/ld-ctype.c:2464 +-#: locale/programs/ld-ctype.c:3460 ++#: elf/ldconfig.c:667 + #, c-format +-msgid "%s: field `%s' does not contain exactly ten entries" +-msgstr "%s: `%s' alanı tamı tamına 10 girdi içeremez" ++msgid "Can't open directory %s" ++msgstr "%s dizini açılamıyor" + +-#: locale/programs/ld-ctype.c:1575 locale/programs/ld-ctype.c:2146 ++#: elf/ldconfig.c:735 elf/ldconfig.c:782 + #, c-format +-msgid "to-value of range is smaller than from-value " +-msgstr "kapsamdaki `to' değeri `from' değerinden daha küçük" +- +-#: locale/programs/ld-ctype.c:1702 +-msgid "start and end character sequence of range must have the same length" +-msgstr "kapsamın başlangıç ve bitiş karakter zincirleri aynı uzunlukta olmalı" +- +-#: locale/programs/ld-ctype.c:1709 +-msgid "to-value character sequence is smaller than from-value sequence" +-msgstr "karakter dizisindeki `to' değeri `from' değerinden daha küçük" +- +-#: locale/programs/ld-ctype.c:2066 locale/programs/ld-ctype.c:2117 +-msgid "premature end of `translit_ignore' definition" +-msgstr "`translit_ignore' tanımının sonu eksik" +- +-#: locale/programs/ld-ctype.c:2072 locale/programs/ld-ctype.c:2123 +-#: locale/programs/ld-ctype.c:2165 +-msgid "syntax error" +-msgstr "sözdizimi hatası" ++msgid "Cannot lstat %s" ++msgstr "lstat %s yapılamıyor" + +-#: locale/programs/ld-ctype.c:2296 ++#: elf/ldconfig.c:747 + #, c-format +-msgid "%s: syntax error in definition of new character class" +-msgstr "%s: yeni karakter sınıfının tanımında sözdizimi hatası" ++msgid "Cannot stat %s" ++msgstr "stat %s yapılamıyor" + +-#: locale/programs/ld-ctype.c:2311 ++#: elf/ldconfig.c:804 elf/readlib.c:90 + #, c-format +-msgid "%s: syntax error in definition of new character map" +-msgstr "%s: yeni karakter eşlemleri tanımında sözdizimi hatası" +- +-#: locale/programs/ld-ctype.c:2486 +-msgid "ellipsis range must be marked by two operands of same type" +-msgstr "elips kapsamı aynı türde iki veri öğesi ile sınırlanmış olmalıdır" +- +-#: locale/programs/ld-ctype.c:2495 +-msgid "with symbolic name range values the absolute ellipsis `...' must not be used" +-msgstr "mutlak elips `...' sembolik isim kapsamındaki değerlerle kullanılmamalı" +- +-#: locale/programs/ld-ctype.c:2510 +-msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" +-msgstr "onaltılık sembolik elips `..' UCS kapsam değerlerinden biriyle kullanılmalı" +- +-#: locale/programs/ld-ctype.c:2524 +-msgid "with character code range values one must use the absolute ellipsis `...'" +-msgstr "mutlak elips `...' karakter kod değerlerinden biriyle kullanılmalı" ++msgid "Input file %s not found.\n" ++msgstr "Girdi dosyası %s bulunamadı.\n" + +-#: locale/programs/ld-ctype.c:2675 ++#: elf/ldconfig.c:855 + #, c-format +-msgid "duplicated definition for mapping `%s'" +-msgstr "`%s' eşlemi için atama tekrarlanmış" ++msgid "libc5 library %s in wrong directory" ++msgstr "libc5 kitaplığı %s yanlış dizinde" + +-#: locale/programs/ld-ctype.c:2761 locale/programs/ld-ctype.c:2905 ++#: elf/ldconfig.c:858 + #, c-format +-msgid "%s: `translit_start' section does not end with `translit_end'" +-msgstr "%s: `translit_start' bölümü `translit_end' ile bitmiyor" ++msgid "libc6 library %s in wrong directory" ++msgstr "libc6 kitaplığı %s yanlış dizinde" + +-#: locale/programs/ld-ctype.c:2856 ++#: elf/ldconfig.c:861 + #, c-format +-msgid "%s: duplicate `default_missing' definition" +-msgstr "%s: `default_missing' tanımı tekrarlanmış" +- +-#: locale/programs/ld-ctype.c:2861 +-msgid "previous definition was here" +-msgstr "önceki tanım burasıydı" ++msgid "libc4 library %s in wrong directory" ++msgstr "libc4 kitaplığı %s yanlış dizinde" + +-#: locale/programs/ld-ctype.c:2883 ++#: elf/ldconfig.c:888 + #, c-format +-msgid "%s: no representable `default_missing' definition found" +-msgstr "%s: temsil edilebilir `default_missing' ataması bulunamadı" ++msgid "libraries %s and %s in directory %s have same soname but different type." ++msgstr "%s ve %s kitaplıkları %s dizininde ve aynı isme sahip oldukları halde farklı türde." + +-#: locale/programs/ld-ctype.c:3036 ++#: elf/ldconfig.c:995 + #, c-format +-msgid "%s: character `%s' not defined in charmap while needed as default value" +-msgstr "%s: karakter eşlem listesinde öntanımlı değer olarak gerekli olmasına rağmen `%s' karakteri atanmamış" ++msgid "Can't open configuration file %s" ++msgstr "Yapılandırma dosyası %s açılamıyor" + +-#: locale/programs/ld-ctype.c:3041 locale/programs/ld-ctype.c:3125 +-#: locale/programs/ld-ctype.c:3145 locale/programs/ld-ctype.c:3166 +-#: locale/programs/ld-ctype.c:3187 locale/programs/ld-ctype.c:3208 +-#: locale/programs/ld-ctype.c:3229 locale/programs/ld-ctype.c:3269 +-#: locale/programs/ld-ctype.c:3290 locale/programs/ld-ctype.c:3357 ++#: elf/ldconfig.c:1059 + #, c-format +-msgid "%s: character `%s' in charmap not representable with one byte" +-msgstr "%s: karakter eşlem listesinde `%s' karakteri bir bayt ile temsil edilemez" ++msgid "%s:%u: bad syntax in hwcap line" ++msgstr "%s:%u: hwcap satırında sözdizimi hatası" + +-#: locale/programs/ld-ctype.c:3120 locale/programs/ld-ctype.c:3140 +-#: locale/programs/ld-ctype.c:3182 locale/programs/ld-ctype.c:3203 +-#: locale/programs/ld-ctype.c:3224 locale/programs/ld-ctype.c:3264 +-#: locale/programs/ld-ctype.c:3285 locale/programs/ld-ctype.c:3352 +-#: locale/programs/ld-ctype.c:3394 locale/programs/ld-ctype.c:3419 ++#: elf/ldconfig.c:1065 + #, c-format +-msgid "%s: character `%s' not defined while needed as default value" +-msgstr "%s: öntanımlı değer olarak gerekli olmasına rağmen `%s' karakteri atanmamış" ++msgid "%s:%u: hwcap index %lu above maximum %u" ++msgstr "%s:%u: hwcap indisi %lu > azami indis %u" + +-#: locale/programs/ld-ctype.c:3161 ++#: elf/ldconfig.c:1072 elf/ldconfig.c:1080 + #, c-format +-msgid "character `%s' not defined while needed as default value" +-msgstr "Öntanımlı değer olması gereken `%s' karakteri atanmamış" ++msgid "%s:%u: hwcap index %lu already defined as %s" ++msgstr "%s:%u: hwcap indisi %lu zaten %s olarak tanımlı" + +-#: locale/programs/ld-ctype.c:3401 locale/programs/ld-ctype.c:3426 ++#: elf/ldconfig.c:1083 + #, c-format +-msgid "%s: character `%s' needed as default value not representable with one byte" +-msgstr "%s: öntanımlı değer olarak gerekli olan `%s' karakteri tek bayt ile temsil edilemez" ++msgid "%s:%u: duplicate hwcap %lu %s" ++msgstr "%s:%u: hwcap %lu %s yinelenmiş" + +-#: locale/programs/ld-ctype.c:3481 +-msgid "no output digits defined and none of the standard names in the charmap" +-msgstr "karakter eşleşme listesinde standart isimlerin hiç biri ve atanmış çıktı rakamları yok" +- +-#: locale/programs/ld-ctype.c:3772 ++#: elf/ldconfig.c:1105 + #, c-format +-msgid "%s: transliteration data from locale `%s' not available" +-msgstr "%s: `%s' yerelinden başka bir dilin alfabesinde yazma verisi yok" ++msgid "need absolute file name for configuration file when using -r" ++msgstr "-r kullanılırken yapılandırma dosyası için soyut dosya ismi gerekir" + +-#: locale/programs/ld-ctype.c:3868 ++#: elf/ldconfig.c:1112 locale/programs/xmalloc.c:69 malloc/obstack.c:434 ++#: malloc/obstack.c:436 posix/getconf.c:980 posix/getconf.c:1158 + #, c-format +-msgid "%s: table for class \"%s\": %lu bytes\n" +-msgstr "%s: \"%s\" sınıfının tablosu: %lu bayt\n" ++msgid "memory exhausted" ++msgstr "bellek tükendi" + +-#: locale/programs/ld-ctype.c:3937 ++#: elf/ldconfig.c:1142 + #, c-format +-msgid "%s: table for map \"%s\": %lu bytes\n" +-msgstr "%s: \"%s\" eşlemlerinin tablosu: %lu bayt\n" ++msgid "%s:%u: cannot read directory %s" ++msgstr "%s:%u: %s dizini okunamıyor" + +-#: locale/programs/ld-ctype.c:4070 ++#: elf/ldconfig.c:1182 + #, c-format +-msgid "%s: table for width: %lu bytes\n" +-msgstr "%s: genişlik için tablo: %lu bayt\n" ++msgid "relative path `%s' used to build cache" ++msgstr "arabelleğin oluşturulduğu göreli yol `%s'" + +-#: locale/programs/ld-identification.c:171 ++#: elf/ldconfig.c:1210 + #, c-format +-msgid "%s: no identification for category `%s'" +-msgstr "%s: `%s' kategorisi için hiç identification satırı yok" ++msgid "Can't chdir to /" ++msgstr "/ dizinine geçilemiyor" + +-#: locale/programs/ld-identification.c:436 ++#: elf/ldconfig.c:1252 + #, c-format +-msgid "%s: duplicate category version definition" +-msgstr "%s kategori sürümü tanımı tekrarlanmış" ++msgid "Can't open cache file directory %s\n" ++msgstr "Arabellek dosyasının dizini %s açılamıyor\n" + +-#: locale/programs/ld-measurement.c:114 +-#, c-format +-msgid "%s: invalid value for field `%s'" +-msgstr "%s: `%s' alanındaki değer geçersiz" ++#: elf/ldd.bash.in:43 ++msgid "Written by %s and %s.\n" ++msgstr "%s ve %s tarafından yazıldı.\n" + +-#: locale/programs/ld-messages.c:115 locale/programs/ld-messages.c:149 +-#, c-format +-msgid "%s: field `%s' undefined" +-msgstr "%s: `%s' alanı tanımsız" ++#: elf/ldd.bash.in:48 ++msgid "" ++"Usage: ldd [OPTION]... FILE...\n" ++" --help print this help and exit\n" ++" --version print version information and exit\n" ++" -d, --data-relocs process data relocations\n" ++" -r, --function-relocs process data and function relocations\n" ++" -u, --unused print unused direct dependencies\n" ++" -v, --verbose print all information\n" ++"For bug reporting instructions, please see:\n" ++"." ++msgstr "" ++"Kullanımı: ldd [OPTION]... DOSYA...\n" ++" --help bu yardım metnini basar ve çıkar\n" ++" --version sürüm bilgilerini basar ve çıkar\n" ++" -d, --data-relocs veriler için yeniden yer ayırır\n" ++" -r, --function-relocs veriler ve işlevler için yeniden yer ayırır\n" ++" -u, --unused kullanılmamış doğrudan bağımlılıkları basar\n" ++" -v, --verbose tüm bilgileri basar\n" ++"Yazılım hatalarını bildirme işlemleri için,\n" ++" adresine bakınız.\n" ++"Çeviri hatalarını adresine bildiriniz." ++ ++#: elf/ldd.bash.in:80 ++msgid "ldd: option `$1' is ambiguous" ++msgstr "ldd: `$1' seçeneği burada belirsiz" ++ ++#: elf/ldd.bash.in:87 ++msgid "unrecognized option" ++msgstr "tanınmayan seçenek" ++ ++#: elf/ldd.bash.in:88 elf/ldd.bash.in:126 ++msgid "Try `ldd --help' for more information." ++msgstr "Daha fazla bilgi için `ldd --help' yazınız." ++ ++#: elf/ldd.bash.in:125 ++msgid "missing file arguments" ++msgstr "dosya nitelikleri eksik" + +-#: locale/programs/ld-messages.c:122 locale/programs/ld-messages.c:156 +-#, c-format +-msgid "%s: value for field `%s' must not be an empty string" +-msgstr "%s: `%s' alanının değeri boş bir dizge olmamalı" ++#. TRANS No such file or directory. This is a ``file doesn't exist'' error ++#. TRANS for ordinary files that are referenced in contexts where they are ++#. TRANS expected to already exist. ++#: elf/ldd.bash.in:148 sysdeps/gnu/errlist.c:36 ++msgid "No such file or directory" ++msgstr "Böyle bir dosya ya da dizin yok" + +-#: locale/programs/ld-messages.c:138 locale/programs/ld-messages.c:172 +-#, c-format +-msgid "%s: no correct regular expression for field `%s': %s" +-msgstr "%s: `%s' alanında doğru bir düzenli ifade yok: %s" ++#: elf/ldd.bash.in:151 inet/rcmd.c:483 ++msgid "not regular file" ++msgstr "düzenli dosya değil" + +-#: locale/programs/ld-monetary.c:224 +-#, c-format +-msgid "%s: value of field `int_curr_symbol' has wrong length" +-msgstr "%s: `int_curr_symbol' alanındaki değer yanlış uzunlukta" ++#: elf/ldd.bash.in:154 ++msgid "warning: you do not have execution permission for" ++msgstr "UYARI: bunu çalıştırma yetkiniz yok:" ++ ++#: elf/ldd.bash.in:183 ++msgid "\tnot a dynamic executable" ++msgstr "\tözdevimli bir çalıştırılabilir değil" ++ ++#: elf/ldd.bash.in:191 ++msgid "exited with unknown exit code" ++msgstr "bilinmeyen bir çıkış koduyla durdu" ++ ++#: elf/ldd.bash.in:196 ++msgid "error: you do not have read permission for" ++msgstr "hata: bunun için okuma yetkiniz yok:" + +-#: locale/programs/ld-monetary.c:237 ++#: elf/readelflib.c:35 + #, c-format +-msgid "%s: value of field `int_curr_symbol' does not correspond to a valid name in ISO 4217" +-msgstr "%s: `int_curr_symbol' alanının değeri ISO 4217'deki geçerli isimlerden biri değil" ++msgid "file %s is truncated\n" ++msgstr "%s dosyası kırpılmış\n" + +-#: locale/programs/ld-monetary.c:256 locale/programs/ld-numeric.c:119 ++#: elf/readelflib.c:67 + #, c-format +-msgid "%s: value for field `%s' must not be the empty string" +-msgstr "%s: `%s' alanının değeri boş dizge olmamalı" ++msgid "%s is a 32 bit ELF file.\n" ++msgstr "%s 32 bitlik bir ELF dosyasıdır.\n" + +-#: locale/programs/ld-monetary.c:284 locale/programs/ld-monetary.c:314 ++#: elf/readelflib.c:69 + #, c-format +-msgid "%s: value for field `%s' must be in range %d...%d" +-msgstr "%s: `%s' alanındaki değer %d...%d aralığında olmalı" ++msgid "%s is a 64 bit ELF file.\n" ++msgstr "%s 64 bitlik bir ELF dosyasıdır.\n" + +-#: locale/programs/ld-monetary.c:746 locale/programs/ld-numeric.c:275 ++#: elf/readelflib.c:71 + #, c-format +-msgid "%s: value for field `%s' must be a single character" +-msgstr "%s: `%s' alanındaki değer tek karakter olmalı" ++msgid "Unknown ELFCLASS in file %s.\n" ++msgstr "%s dosyasında bilinmeyen ELFCLASS.\n" + +-#: locale/programs/ld-monetary.c:843 locale/programs/ld-numeric.c:319 ++#: elf/readelflib.c:78 + #, c-format +-msgid "%s: `-1' must be last entry in `%s' field" +-msgstr "%s: `%s' alanında `-1' son girdi olmalı" ++msgid "%s is not a shared object file (Type: %d).\n" ++msgstr "%s paylaşımlı nesne dosyası değil (Tür: %d).\n" + +-#: locale/programs/ld-monetary.c:865 locale/programs/ld-numeric.c:340 ++#: elf/readelflib.c:109 + #, c-format +-msgid "%s: values for field `%s' must be smaller than 127" +-msgstr "%s: `%s' alanındaki değer 127 den küçük olmalı" +- +-#: locale/programs/ld-monetary.c:908 +-msgid "conversion rate value cannot be zero" +-msgstr "dönüştürme oranı sıfır olamaz" ++msgid "more than one dynamic segment\n" ++msgstr "bir dinamik parçadan fazla\n" + +-#: locale/programs/ld-name.c:130 locale/programs/ld-telephone.c:127 +-#: locale/programs/ld-telephone.c:150 ++#: elf/readlib.c:96 + #, c-format +-msgid "%s: invalid escape sequence in field `%s'" +-msgstr "%s: `%s' alanında geçersiz önceleme dizisi" ++msgid "Cannot fstat file %s.\n" ++msgstr "%s dosyası fstat yapılamıyor.\n" + +-#: locale/programs/ld-time.c:248 ++#: elf/readlib.c:107 + #, c-format +-msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'" +-msgstr "%s: `era' alanındaki %Zd dizgesinin yön flaması '+' ya da '-' değil" ++msgid "File %s is empty, not checked." ++msgstr "%s dosyası boş olduğundan denetlenemiyor." + +-#: locale/programs/ld-time.c:259 ++#: elf/readlib.c:113 + #, c-format +-msgid "%s: direction flag in string %Zd in `era' field is not a single character" +-msgstr "%s: `era' alanındaki %Zd dizgesinin yön flaması tek karakter değil" ++msgid "File %s is too small, not checked." ++msgstr "%s dosyası çok küçük, kontrol edilemedi." + +-#: locale/programs/ld-time.c:272 ++#: elf/readlib.c:123 + #, c-format +-msgid "%s: invalid number for offset in string %Zd in `era' field" +-msgstr "%s: `era' alanındaki %Zd dizgesinde dengeleme değeri olarak geçersiz sayı" ++msgid "Cannot mmap file %s.\n" ++msgstr "%s dosyası mmap yapılamıyor.\n" + +-#: locale/programs/ld-time.c:280 ++#: elf/readlib.c:161 + #, c-format +-msgid "%s: garbage at end of offset value in string %Zd in `era' field" +-msgstr "%s: `era' alanındaki %Zd dizgesinin dengeleme değerinin sonunda bozulma saptandı" ++msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n" ++msgstr "%s bir ELF dosyası değil - Başlangıcındaki dosya tanımı hatalı.\n" + +-#: locale/programs/ld-time.c:331 +-#, c-format +-msgid "%s: invalid starting date in string %Zd in `era' field" +-msgstr "%s: `era' alanındaki %Zd dizgesinde başlangıç tarihi geçersiz" ++#: elf/sprof.c:77 ++msgid "Output selection:" ++msgstr "Çıktı seçimi:" + +-#: locale/programs/ld-time.c:340 +-#, c-format +-msgid "%s: garbage at end of starting date in string %Zd in `era' field " +-msgstr "%s: `era' alanındaki %Zd dizgesinde başlangıç tarihinin sonunda bozulma saptandı" ++#: elf/sprof.c:79 ++msgid "print list of count paths and their number of use" ++msgstr "sayım yollarının listesini ve kullanımdaki miktarını basar" + +-#: locale/programs/ld-time.c:359 +-#, c-format +-msgid "%s: starting date is invalid in string %Zd in `era' field" +-msgstr "%s: `era' alanındaki %Zd dizgesinde başlangıç tarihi geçersiz" ++#: elf/sprof.c:81 ++msgid "generate flat profile with counts and ticks" ++msgstr "sayım ve darbelerle düz kesit üretir" ++ ++#: elf/sprof.c:82 ++msgid "generate call graph" ++msgstr "çağrı grafiği üretir" ++ ++#: elf/sprof.c:89 ++msgid "" ++"Read and display shared object profiling data. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Paylaşımlı nesne profili oluşturma verisini okur ve gösterir.\n" ++"Yazılım hatalarını bildirme işlemleri için,\n" ++" adresine bakınız.\n" ++"Çeviri hatalarını adresine bildiriniz.\n" ++ ++#: elf/sprof.c:94 ++msgid "SHOBJ [PROFDATA]" ++msgstr "SHOBJ [PROFDATA]" + +-#: locale/programs/ld-time.c:408 ++#: elf/sprof.c:400 + #, c-format +-msgid "%s: invalid stopping date in string %Zd in `era' field" +-msgstr "%s: `era' alanındaki %Zd dizgesinde bitiş tarihi geçersiz" ++msgid "failed to load shared object `%s'" ++msgstr "paylaşımlı nesne `%s' yüklenemedi" + +-#: locale/programs/ld-time.c:417 ++#: elf/sprof.c:409 + #, c-format +-msgid "%s: garbage at end of stopping date in string %Zd in `era' field" +-msgstr "%s: `era' alanındaki %Zd dizgesinde bitiş tarihinin sonunda bozulma saptandı" ++msgid "cannot create internal descriptors" ++msgstr "iç tanıtıcılar oluşturulamıyor" + +-#: locale/programs/ld-time.c:436 ++#: elf/sprof.c:528 + #, c-format +-msgid "%s: stopping date is invalid in string %Zd in `era' field" +-msgstr "%s: `era' alanındaki %Zd dizgesinde bitiş tarihi geçersiz" ++msgid "Reopening shared object `%s' failed" ++msgstr "`%s' paylaşımlı nesnesinin yeniden açılması başarısız" + +-#: locale/programs/ld-time.c:445 ++#: elf/sprof.c:535 elf/sprof.c:629 + #, c-format +-msgid "%s: missing era name in string %Zd in `era' field" +-msgstr "%s: `era' alanındaki %Zd dizgesinde dönem ismi eksik" ++msgid "reading of section headers failed" ++msgstr "bölüm başlıkları okunamadı" + +-#: locale/programs/ld-time.c:457 ++#: elf/sprof.c:543 elf/sprof.c:637 + #, c-format +-msgid "%s: missing era format in string %Zd in `era' field" +-msgstr "%s: `era' alanındaki %Zd dizgesinde dönemsellik biçemi eksik" ++msgid "reading of section header string table failed" ++msgstr "bölüm başlık dizgeleri tablosu okunamadı" + +-#: locale/programs/ld-time.c:486 ++#: elf/sprof.c:569 + #, c-format +-msgid "%s: third operand for value of field `%s' must not be larger than %d" +-msgstr "%s: `%s' alanının değerindeki üçüncü veri öğesi en fazla %d olabilir" ++msgid "*** Cannot read debuginfo file name: %m\n" ++msgstr "*** debuginfo dosya ismi okunamıyor: %m\n" + +-#: locale/programs/ld-time.c:494 locale/programs/ld-time.c:502 ++#: elf/sprof.c:589 + #, c-format +-msgid "%s: values of field `%s' must not be larger than %d" +-msgstr "%s: `%s' alanındaki değer %d den büyük olmamalı" ++msgid "cannot determine file name" ++msgstr "dosya ismi saptanamıyor" + +-#: locale/programs/ld-time.c:510 ++#: elf/sprof.c:622 + #, c-format +-msgid "%s: values for field `%s' must not be larger than %d" +-msgstr "%s: `%s' alanındaki değer %d den büyük olmalı" ++msgid "reading of ELF header failed" ++msgstr "ELF başlığı okunamıyor" + +-#: locale/programs/ld-time.c:986 ++#: elf/sprof.c:658 + #, c-format +-msgid "%s: too few values for field `%s'" +-msgstr "%s: `%s' alanındaki değerler çok az" ++msgid "*** The file `%s' is stripped: no detailed analysis possible\n" ++msgstr "*** `%s' dosyası lime lime edildi: detaylı çözümleme mümkün değil\n" + +-#: locale/programs/ld-time.c:1031 +-msgid "extra trailing semicolon" +-msgstr "fazladan ; var" ++#: elf/sprof.c:688 ++#, c-format ++msgid "failed to load symbol data" ++msgstr "sembol verisi yüklenemedi" + +-#: locale/programs/ld-time.c:1034 ++#: elf/sprof.c:755 + #, c-format +-msgid "%s: too many values for field `%s'" +-msgstr "%s: `%s' alanındaki değerler çok fazla" ++msgid "cannot load profiling data" ++msgstr "şekillendirici verisi yüklenemiyor" + +-#: locale/programs/linereader.c:130 +-msgid "trailing garbage at end of line" +-msgstr "satır sonu bozuk" ++#: elf/sprof.c:764 ++#, c-format ++msgid "while stat'ing profiling data file" ++msgstr "şekillendirici veri dosyası durumlanırken" + +-#: locale/programs/linereader.c:304 +-msgid "garbage at end of number" +-msgstr "numaranın sonunda bozulma" ++#: elf/sprof.c:772 ++#, c-format ++msgid "profiling data file `%s' does not match shared object `%s'" ++msgstr "şekillendirme veri dosyası `%s' paylaşımlı nesne `%s' ile uyuşmuyor" + +-#: locale/programs/linereader.c:416 +-msgid "garbage at end of character code specification" +-msgstr "karakter kodu özelliklerinin sonunda bozulma" ++#: elf/sprof.c:783 ++#, c-format ++msgid "failed to mmap the profiling data file" ++msgstr "şekillendirme verisi dosyası mmap olamadı" + +-#: locale/programs/linereader.c:502 +-msgid "unterminated symbolic name" +-msgstr "sonlandırılmamış sembolik isim" ++#: elf/sprof.c:791 ++#, c-format ++msgid "error while closing the profiling data file" ++msgstr "şekillendirici verisi dosyası kapatılırken hata" + +-#: locale/programs/linereader.c:566 catgets/gencat.c:1195 +-msgid "invalid escape sequence" +-msgstr "geçersiz escape dizisi" ++#: elf/sprof.c:800 elf/sprof.c:870 ++#, c-format ++msgid "cannot create internal descriptor" ++msgstr "iç tanıtıcı oluşturulamıyor" + +-#: locale/programs/linereader.c:629 +-msgid "illegal escape sequence at end of string" +-msgstr "karakter dizisinin sonunda uygun olmayan escape dizisi" ++#: elf/sprof.c:846 ++#, c-format ++msgid "`%s' is no correct profile data file for `%s'" ++msgstr "`%s' `%s' için doğru olmayan şekillendirici verisi dosyası" + +-#: locale/programs/linereader.c:633 locale/programs/linereader.c:861 +-msgid "unterminated string" +-msgstr "sonlandırılmamış dizge" ++#: elf/sprof.c:1027 elf/sprof.c:1085 ++#, c-format ++msgid "cannot allocate symbol data" ++msgstr "sembol verisi ayrılamadı" + +-#: locale/programs/linereader.c:675 +-msgid "non-symbolic character value should not be used" +-msgstr "sembolik olmayan karakter değeri kullanılmış olmayacaktı" ++#: iconv/iconv_charmap.c:175 iconv/iconv_prog.c:315 ++#, c-format ++msgid "error while closing input `%s'" ++msgstr "`%s' girdisi kapatılırken hata" + +-#: locale/programs/linereader.c:822 ++#: iconv/iconv_charmap.c:449 + #, c-format +-msgid "symbol `%.*s' not in charmap" +-msgstr "`%.*s' sembolü CHARMAP içinde değil" ++msgid "illegal input sequence at position %Zd" ++msgstr "%Zd konumunda uygun olmayan girdi dizgesi" + +-#: locale/programs/linereader.c:843 ++#: iconv/iconv_charmap.c:468 iconv/iconv_prog.c:525 + #, c-format +-msgid "symbol `%.*s' not in repertoire map" +-msgstr "`%.*s' sembolü repertuar eşlem içinde değil" ++msgid "incomplete character or shift sequence at end of buffer" ++msgstr "tampon bellek sonunda eksik karakter ya da shift dizisi" + +-#: locale/programs/locale.c:75 +-msgid "System information:" +-msgstr "Sistem bilgileri:" ++#: iconv/iconv_charmap.c:513 iconv/iconv_charmap.c:549 iconv/iconv_prog.c:568 ++#: iconv/iconv_prog.c:604 ++#, c-format ++msgid "error while reading the input" ++msgstr "girdi okunurken hata" + +-#: locale/programs/locale.c:77 +-msgid "Write names of available locales" +-msgstr "Mevcut yerellerin isimlerini yazar" ++#: iconv/iconv_charmap.c:531 iconv/iconv_prog.c:586 ++#, c-format ++msgid "unable to allocate buffer for input" ++msgstr "girdi için tampon ayrılamadı" + +-#: locale/programs/locale.c:79 +-msgid "Write names of available charmaps" +-msgstr "Mevcut karakter eşlemlerin isimlerini yazar" ++#: iconv/iconv_prog.c:59 ++msgid "Input/Output format specification:" ++msgstr "Girdi/Çıktı biçem özellikleri:" + +-#: locale/programs/locale.c:80 +-msgid "Modify output format:" +-msgstr "Değiştirme çıktı biçemi:" ++#: iconv/iconv_prog.c:60 ++msgid "encoding of original text" ++msgstr "özgün metin kodlaması" + +-#: locale/programs/locale.c:81 +-msgid "Write names of selected categories" +-msgstr "Seçilmiş kategorilerin isimlerini yazar" ++#: iconv/iconv_prog.c:61 ++msgid "encoding for output" ++msgstr "çıktı için kodlama" + +-#: locale/programs/locale.c:82 +-msgid "Write names of selected keywords" +-msgstr "Seçilmiş anahtar kelimelerin isimlerini yazar" ++#: iconv/iconv_prog.c:62 ++msgid "Information:" ++msgstr "Bilgi:" + +-#: locale/programs/locale.c:83 +-msgid "Print more information" +-msgstr "Daha fazla ileti basar" ++#: iconv/iconv_prog.c:63 ++msgid "list all known coded character sets" ++msgstr "tüm bilinen kodlu karakter kümelerini listeler" + +-#: locale/programs/locale.c:88 +-msgid "Get locale-specific information." +-msgstr "Dile özel bilgiler alınır" ++#: iconv/iconv_prog.c:64 locale/programs/localedef.c:126 ++msgid "Output control:" ++msgstr "Çıktı kontrolu:" + +-#: locale/programs/locale.c:91 +-msgid "" +-"NAME\n" +-"[-a|-m]" +-msgstr "" +-"İSİM\n" +-"[-a|-m]" ++#: iconv/iconv_prog.c:65 ++msgid "omit invalid characters from output" ++msgstr "geçersiz karakterleri çıktıya yazmaz" + +-#: locale/programs/locale.c:195 +-msgid "Cannot set LC_CTYPE to default locale" +-msgstr "LC_CTYPE değişkenine öntanımlı yerel atanamaz" ++#: iconv/iconv_prog.c:66 ++msgid "output file" ++msgstr "çıktı dosyası" + +-#: locale/programs/locale.c:197 +-msgid "Cannot set LC_MESSAGES to default locale" +-msgstr "LC_MESSAGES değişkenine öntanımlı yerel atanamaz" ++#: iconv/iconv_prog.c:67 ++msgid "suppress warnings" ++msgstr "uyarıları engeller" + +-#: locale/programs/locale.c:210 +-msgid "Cannot set LC_COLLATE to default locale" +-msgstr "LC_COLLATE değişkenine öntanımlı yerel atanamaz" ++#: iconv/iconv_prog.c:68 ++msgid "print progress information" ++msgstr "gelişim bilgisi gösterir" + +-#: locale/programs/locale.c:226 +-msgid "Cannot set LC_ALL to default locale" +-msgstr "LC_ALL değişkenine öntanımlı yerel atanamaz" ++#: iconv/iconv_prog.c:73 ++msgid "Convert encoding of given files from one encoding to another." ++msgstr "Verilen dosyaların kodlamasını dönüştürür" + +-#: locale/programs/locale.c:517 +-msgid "while preparing output" +-msgstr "çıktıyı hazırlarken" ++#: iconv/iconv_prog.c:77 ++msgid "[FILE...]" ++msgstr "[DOSYA...]" + +-#: locale/programs/localedef.c:121 +-msgid "Input Files:" +-msgstr "Girdi Dosyaları:" ++#: iconv/iconv_prog.c:199 ++#, c-format ++msgid "cannot open output file" ++msgstr "çıktı dosyası açılamıyor" + +-#: locale/programs/localedef.c:123 +-msgid "Symbolic character names defined in FILE" +-msgstr "Sembolik karakter isimleri DOSYA dosyasında atandı" ++#: iconv/iconv_prog.c:241 ++#, c-format ++msgid "conversions from `%s' and to `%s' are not supported" ++msgstr "`%s'den ve `%s'e dönüşümler desteklenmiyor" + +-#: locale/programs/localedef.c:124 +-msgid "Source definitions are found in FILE" +-msgstr "Kaynak tanımları DOSYA da bulunur" ++#: iconv/iconv_prog.c:246 ++#, c-format ++msgid "conversion from `%s' is not supported" ++msgstr "`%s' den dönüşüm desteklenmiyor" + +-#: locale/programs/localedef.c:126 +-msgid "FILE contains mapping from symbolic names to UCS4 values" +-msgstr "DOSYA sembolik isimlerden UCS4 değerlere eşlemler içerir" ++#: iconv/iconv_prog.c:253 ++#, c-format ++msgid "conversion to `%s' is not supported" ++msgstr "`%s' e dönüşüm desteklenmiyor" + +-#: locale/programs/localedef.c:130 +-msgid "Create output even if warning messages were issued" +-msgstr "Uyarı iletileri yayınlansa bile çıktı dosyasını oluşturur" ++#: iconv/iconv_prog.c:257 ++#, c-format ++msgid "conversion from `%s' to `%s' is not supported" ++msgstr "`%s' den `%s' e dönüşüm desteklenmiyor" + +-#: locale/programs/localedef.c:131 +-msgid "Create old-style tables" +-msgstr "Eski tarz tablolar oluşturur" ++#: iconv/iconv_prog.c:267 ++#, c-format ++msgid "failed to start conversion processing" ++msgstr "dönüşüm işlemi başlatılamadı" + +-#: locale/programs/localedef.c:132 +-msgid "Optional output file prefix" +-msgstr "Çıktı dosyası öneki isteğe bağlı" ++#: iconv/iconv_prog.c:361 ++#, c-format ++msgid "error while closing output file" ++msgstr "çıktı dosyası kapatılırken hata" + +-#: locale/programs/localedef.c:133 +-msgid "Be strictly POSIX conform" +-msgstr "Kesinlikle POSIX-uygun olur" ++#: iconv/iconv_prog.c:470 iconv/iconv_prog.c:496 ++#, c-format ++msgid "conversion stopped due to problem in writing the output" ++msgstr "çıktıyı yazarken bir problemden dolayı dönüştürme durdu" + +-#: locale/programs/localedef.c:135 +-msgid "Suppress warnings and information messages" +-msgstr "Uyarıları ve bilgilendirme iletilerini bastırır" ++#: iconv/iconv_prog.c:521 ++#, c-format ++msgid "illegal input sequence at position %ld" ++msgstr "%ld konumunda uygun olmayan girdi dizgesi" + +-#: locale/programs/localedef.c:136 +-msgid "Print more messages" +-msgstr "Daha fazla ileti basar" ++#: iconv/iconv_prog.c:529 ++#, c-format ++msgid "internal error (illegal descriptor)" ++msgstr "iç hata (kuraldışı tanımlayıcı)" + +-#: locale/programs/localedef.c:137 +-msgid "Archive control:" +-msgstr "Arşiv denetimi:" ++#: iconv/iconv_prog.c:532 ++#, c-format ++msgid "unknown iconv() error %d" ++msgstr "bilinmeyen iconv() hatası %d" + +-#: locale/programs/localedef.c:139 +-msgid "Don't add new data to archive" +-msgstr "Arşive yeni veri eklenmez" +- +-#: locale/programs/localedef.c:141 +-msgid "Add locales named by parameters to archive" +-msgstr "Parametrelerde isimleri belirtilen yerelleri arşive ekler" +- +-#: locale/programs/localedef.c:142 +-msgid "Replace existing archive content" +-msgstr "Mevcut arşiv içeriğiyle değiştirilir " +- +-#: locale/programs/localedef.c:144 +-msgid "Remove locales named by parameters from archive" +-msgstr "Parametrelerde isimleri belirtilen yerelleri arşivden siler" ++#: iconv/iconv_prog.c:778 ++msgid "" ++"The following list contain all the coded character sets known. This does\n" ++"not necessarily mean that all combinations of these names can be used for\n" ++"the FROM and TO command line parameters. One coded character set can be\n" ++"listed with several different names (aliases).\n" ++"\n" ++" " ++msgstr "" ++"Aşağıdaki liste bilinen tüm kodlu karakter kümelerini içerir. FROM ve TO\n" ++"komut satırı parametreleri için kullanılabilecek tüm kombinasyonlar\n" ++"bunlardır anlamında değildir. Bir kodlu karakter kümesi çeşitli farklı\n" ++"isimlerde (rumuzlarla) listelenmiş olabilir.\n" ++"\n" ++" " + +-#: locale/programs/localedef.c:145 +-msgid "List content of archive" +-msgstr "Arşivin içindekiler" ++#: iconv/iconvconfig.c:109 ++msgid "Create fastloading iconv module configuration file." ++msgstr "Hızlı yükleme iconv modülü yapılandırma dosyası oluşturulur." + +-#: locale/programs/localedef.c:147 +-msgid "locale.alias file to consult when making archive" +-msgstr "arşiv oluşturulurken başvurulacak locale.alias dosyası" ++#: iconv/iconvconfig.c:113 ++msgid "[DIR...]" ++msgstr "[DİZİN...]" + +-#: locale/programs/localedef.c:152 +-msgid "Compile locale specification" +-msgstr "Dil karakteristiklerini derler" ++#: iconv/iconvconfig.c:126 ++msgid "Prefix used for all file accesses" ++msgstr "Tüm dosya erişimlerinde kullanılan önek" + +-#: locale/programs/localedef.c:155 +-msgid "" +-"NAME\n" +-"[--add-to-archive|--delete-from-archive] FILE...\n" +-"--list-archive [FILE]" +-msgstr "" +-"İSİM\n" +-"[--add-to-archive|--delete-from-archive] DOSYA...\n" +-"--list-archive [DOSYA]" ++#: iconv/iconvconfig.c:127 ++msgid "Put output in FILE instead of installed location (--prefix does not apply to FILE)" ++msgstr "Kurulum yerine değil DOSYAya çıktılar (--prefix argümanı DOSYAya uygulanmaz)" + +-#: locale/programs/localedef.c:233 +-msgid "cannot create directory for output files" +-msgstr "çıktı dosyaları için dizin oluşturulamıyor" ++#: iconv/iconvconfig.c:131 ++msgid "Do not search standard directories, only those on the command line" ++msgstr "Standart dizinleri araştırmaz, bu sadece komut satırında kalır" + +-#: locale/programs/localedef.c:244 +-msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" +-msgstr "ÖLÜMCÜL: sistem `_POSIX2_LOCALEDEF' atamıyor" ++#: iconv/iconvconfig.c:300 ++#, c-format ++msgid "Directory arguments required when using --nostdlib" ++msgstr "--nostdlib kullanılırken dizinleri belirtmek gerekir" + +-#: locale/programs/localedef.c:258 locale/programs/localedef.c:274 +-#: locale/programs/localedef.c:599 locale/programs/localedef.c:619 ++#: iconv/iconvconfig.c:342 locale/programs/localedef.c:290 + #, c-format +-msgid "cannot open locale definition file `%s'" +-msgstr "Dil karakteristikleri tanımlama dosyası `%s' açılamıyor" ++msgid "no output file produced because warnings were issued" ++msgstr "uyarılardan dolayı bir çıktı dosyası üretilmedi" + +-#: locale/programs/localedef.c:286 ++#: iconv/iconvconfig.c:428 + #, c-format +-msgid "cannot write output files to `%s'" +-msgstr "çıktı dosyaları `%s' dizinine yazılamıyor" ++msgid "while inserting in search tree" ++msgstr "arama ağacına eklenirken" + +-#: locale/programs/localedef.c:367 ++#: iconv/iconvconfig.c:1236 + #, c-format +-msgid "" +-"System's directory for character maps : %s\n" +-" repertoire maps: %s\n" +-" locale path : %s\n" +-"%s" +-msgstr "" +-"Karakter eşlemler için sistem dizini: %s\n" +-" Repertuvar eşlemler: %s\n" +-" Dil karakteristikleri dizini: %s\n" +-"%s" ++msgid "cannot generate output file" ++msgstr "çıktı dosyası üretilemiyor" + +-#: locale/programs/localedef.c:567 +-msgid "circular dependencies between locale definitions" +-msgstr "Dil karakteristikleri tanımları arasında bağımlılıklar kısır döngülü" ++#: inet/rcmd.c:157 ++msgid "rcmd: Cannot allocate memory\n" ++msgstr "rcmd: Bellek ayrılamadı\n" ++ ++#: inet/rcmd.c:172 ++msgid "rcmd: socket: All ports in use\n" ++msgstr "rcmd: soket: Tüm portlar kullanımda\n" + +-#: locale/programs/localedef.c:573 ++#: inet/rcmd.c:200 + #, c-format +-msgid "cannot add already read locale `%s' a second time" +-msgstr "Zaten okunan `%s' dil karakteristikleri ikinci bir kez eklenemez" ++msgid "connect to address %s: " ++msgstr "%s adresine bağlantı:" + +-#: locale/programs/locarchive.c:89 locale/programs/locarchive.c:259 +-msgid "cannot create temporary file" +-msgstr "geçici dosya oluşturulamıyor" ++#: inet/rcmd.c:213 ++#, c-format ++msgid "Trying %s...\n" ++msgstr "%s deneniyor...\n" + +-#: locale/programs/locarchive.c:118 locale/programs/locarchive.c:305 +-msgid "cannot initialize archive file" +-msgstr "arşiv dosyası ilklendirilemiyor" ++#: inet/rcmd.c:249 ++#, c-format ++msgid "rcmd: write (setting up stderr): %m\n" ++msgstr "rcmd: write (stderr ayarlaması): %m\n" + +-#: locale/programs/locarchive.c:125 locale/programs/locarchive.c:312 +-msgid "cannot resize archive file" +-msgstr "arşiv dosyasının boyutu değiştirilemiyor" ++#: inet/rcmd.c:265 ++#, c-format ++msgid "rcmd: poll (setting up stderr): %m\n" ++msgstr "rcmd: poll (stderr ayarlaması): %m\n" + +-#: locale/programs/locarchive.c:134 locale/programs/locarchive.c:321 +-#: locale/programs/locarchive.c:511 +-msgid "cannot map archive header" +-msgstr "arşiv başlığı eşlenemiyor" ++#: inet/rcmd.c:268 ++msgid "poll: protocol failure in circuit setup\n" ++msgstr "poll: devre ayarında protokol hatası\n" + +-#: locale/programs/locarchive.c:156 +-msgid "failed to create new locale archive" +-msgstr "yeni yerel arşivi oluşturulamadı" ++#: inet/rcmd.c:301 ++msgid "socket: protocol failure in circuit setup\n" ++msgstr "soket: devre ayarında protokol hatası\n" + +-#: locale/programs/locarchive.c:168 +-msgid "cannot change mode of new locale archive" +-msgstr "yeni yerel arşivinin kipi değiştirilemiyor" ++#: inet/rcmd.c:325 ++#, c-format ++msgid "rcmd: %s: short read" ++msgstr "rcmd: %s: kısa okuma" + +-#: locale/programs/locarchive.c:253 +-msgid "cannot map locale archive file" +-msgstr "yerel arşiv dosyası eşlenemiyor" ++#: inet/rcmd.c:481 ++msgid "lstat failed" ++msgstr "lstat başarısız" + +-#: locale/programs/locarchive.c:329 +-msgid "cannot lock new archive" +-msgstr "yeni arşiv kilitlenemiyor" ++#: inet/rcmd.c:488 ++msgid "cannot open" ++msgstr "açılamıyor" + +-#: locale/programs/locarchive.c:380 +-msgid "cannot extend locale archive file" +-msgstr "yerel arşiv dosyası genişletilemiyor" ++#: inet/rcmd.c:490 ++msgid "fstat failed" ++msgstr "fstat başarısız" + +-#: locale/programs/locarchive.c:389 +-msgid "cannot change mode of resized locale archive" +-msgstr "boyutu değiştirilen yerel arşivin kipi değiştirilemiyor" ++#: inet/rcmd.c:492 ++msgid "bad owner" ++msgstr "Sahip hatalı" + +-#: locale/programs/locarchive.c:397 +-msgid "cannot rename new archive" +-msgstr "yeni arşivin ismi değiştirilemiyor" ++#: inet/rcmd.c:494 ++msgid "writeable by other than owner" ++msgstr "sahibinden başkası yazabilir" + +-#: locale/programs/locarchive.c:450 +-#, c-format +-msgid "cannot open locale archive \"%s\"" +-msgstr "yerel arşiv `%s' açılamıyor" ++#: inet/rcmd.c:496 ++msgid "hard linked somewhere" ++msgstr "bir yere sabit bağlı" + +-#: locale/programs/locarchive.c:455 +-#, c-format +-msgid "cannot stat locale archive \"%s\"" +-msgstr "\"%s\" yerel arşivi durumlanamıyor" ++#: inet/ruserpass.c:170 inet/ruserpass.c:193 ++msgid "out of memory" ++msgstr "bellek yetersiz" + +-#: locale/programs/locarchive.c:474 +-#, c-format +-msgid "cannot lock locale archive \"%s\"" +-msgstr "\"%s\" yerel arşivi kilitlenemiyor" ++#: inet/ruserpass.c:184 ++msgid "Error: .netrc file is readable by others." ++msgstr "Hata: .netrc dosyası başkaları tarafından okunabilir." + +-#: locale/programs/locarchive.c:497 +-msgid "cannot read archive header" +-msgstr "arşiv başlığı okunamıyor" ++#: inet/ruserpass.c:185 ++msgid "Remove password or make file unreadable by others." ++msgstr "Parolayı kaldırır ya da dosyayı diğerleri tarafından okunamaz yapar." + +-#: locale/programs/locarchive.c:557 ++#: inet/ruserpass.c:277 + #, c-format +-msgid "locale '%s' already exists" +-msgstr "`%s' yereli zaten var" ++msgid "Unknown .netrc keyword %s" ++msgstr "Bilinmeyen .netrc anahtar kelimesi %s" + +-#: locale/programs/locarchive.c:788 locale/programs/locarchive.c:803 +-#: locale/programs/locarchive.c:815 locale/programs/locarchive.c:827 +-#: locale/programs/locfile.c:343 +-msgid "cannot add to locale archive" +-msgstr "yerel arşive ekleme yapılamıyor" ++#: libidn/nfkc.c:464 ++msgid "Character out of range for UTF-8" ++msgstr "UTF-8 için karakter kapsam dışı" + +-#: locale/programs/locarchive.c:982 ++#: locale/programs/charmap-dir.c:57 + #, c-format +-msgid "locale alias file `%s' not found" +-msgstr "`%s' yerel isim dosyası bulunamadı" ++msgid "cannot read character map directory `%s'" ++msgstr "karakter eşlem dizini `%s' okunamıyor" + +-#: locale/programs/locarchive.c:1126 ++#: locale/programs/charmap.c:137 + #, c-format +-msgid "Adding %s\n" +-msgstr "%s ekleniyor\n" ++msgid "character map file `%s' not found" ++msgstr "`%s' karakter eşlem dosyası bulunamadı" + +-#: locale/programs/locarchive.c:1132 ++#: locale/programs/charmap.c:194 + #, c-format +-msgid "stat of \"%s\" failed: %s: ignored" +-msgstr "\"%s\" durumlaması başarısız: %s: yoksayıldı" ++msgid "default character map file `%s' not found" ++msgstr "öntanımlı karakter eşlem dosyası `%s' bulunamadı" + +-#: locale/programs/locarchive.c:1138 ++#: locale/programs/charmap.c:257 + #, c-format +-msgid "\"%s\" is no directory; ignored" +-msgstr "\"%s\" dizinsiz; yoksayıldı" ++msgid "character map `%s' is not ASCII compatible, locale not ISO C compliant\n" ++msgstr "`%s' karakter eşlemi ASCII uyumlu değil, yerel de ISO C uyumlu değil\n" + +-#: locale/programs/locarchive.c:1145 ++#: locale/programs/charmap.c:336 + #, c-format +-msgid "cannot open directory \"%s\": %s: ignored" +-msgstr "\"%s\" dizini açılamıyor: %s: yoksayıldı" ++msgid "%s: must be greater than \n" ++msgstr "%s: , den daha büyük olmalı\n" + +-#: locale/programs/locarchive.c:1217 ++#: locale/programs/charmap.c:356 locale/programs/charmap.c:373 ++#: locale/programs/repertoire.c:174 + #, c-format +-msgid "incomplete set of locale files in \"%s\"" +-msgstr "\"%s\" içindeki yerel dosyaları kümesi tamamlanmamış" ++msgid "syntax error in prolog: %s" ++msgstr "prolog içinde sözdizimi hatası: %s" + +-#: locale/programs/locarchive.c:1281 +-#, c-format +-msgid "cannot read all files in \"%s\": ignored" +-msgstr "\"%s\" içindeki hiçbir dosya okunamıyor: yoksayıldı" ++#: locale/programs/charmap.c:357 ++msgid "invalid definition" ++msgstr "geçersiz atama" + +-#: locale/programs/locarchive.c:1351 +-#, c-format +-msgid "locale \"%s\" not in archive" +-msgstr "\"%s\" yeri arşivde değil" ++#: locale/programs/charmap.c:374 locale/programs/locfile.c:125 ++#: locale/programs/locfile.c:152 locale/programs/repertoire.c:175 ++msgid "bad argument" ++msgstr "argüman hatalı" + +-#: locale/programs/locfile.c:132 ++#: locale/programs/charmap.c:402 + #, c-format +-msgid "argument to `%s' must be a single character" +-msgstr "%s'in argümanı bir tek karakter olmalı" +- +-#: locale/programs/locfile.c:251 +-msgid "syntax error: not inside a locale definition section" +-msgstr "sözdizimi hatası: bir yerel tanımlama bölümü içinde değil" ++msgid "duplicate definition of <%s>" ++msgstr "<%s> tanımı tekrarlanmış" + +-#: locale/programs/locfile.c:625 ++#: locale/programs/charmap.c:409 + #, c-format +-msgid "cannot open output file `%s' for category `%s'" +-msgstr "çıktı dosyası `%s' açılamadı; `%s' kategorisi için." ++msgid "value for <%s> must be 1 or greater" ++msgstr "<%s> için değer 1 ya da daha büyük olmalı" + +-#: locale/programs/locfile.c:649 ++#: locale/programs/charmap.c:421 + #, c-format +-msgid "failure while writing data for category `%s'" +-msgstr "`%s' kategorisi için veri yazılırken hata oluştu" ++msgid "value of <%s> must be greater or equal than the value of <%s>" ++msgstr "<%s> değeri <%s> değerinden daha büyük ya da eşit olmalı" + +-#: locale/programs/locfile.c:745 ++#: locale/programs/charmap.c:444 locale/programs/repertoire.c:183 + #, c-format +-msgid "cannot create output file `%s' for category `%s'" +-msgstr "çıktı dosyası `%s' `%s' kategorisi için oluşturulamıyor" +- +-#: locale/programs/locfile.c:781 +-msgid "expect string argument for `copy'" +-msgstr "`copy' için dizge argüman gerekli" +- +-#: locale/programs/locfile.c:785 +-msgid "locale name should consist only of portable characters" +-msgstr "yer isimlerinin karakterleri ascii 127 içinden seçilmiş olmalı" ++msgid "argument to <%s> must be a single character" ++msgstr "<%s>in argümanı bir tek karakter olmalı" + +-#: locale/programs/locfile.c:804 +-msgid "no other keyword shall be specified when `copy' is used" +-msgstr "`copy' kullanıldığında belirtilmiş olacak diğer anahtar kelime yok" ++#: locale/programs/charmap.c:470 ++msgid "character sets with locking states are not supported" ++msgstr "tuş kilitlemeli karakter kümeleri desteklenmiyor" + +-#: locale/programs/repertoire.c:230 locale/programs/repertoire.c:271 +-#: locale/programs/repertoire.c:296 ++#: locale/programs/charmap.c:497 locale/programs/charmap.c:551 ++#: locale/programs/charmap.c:583 locale/programs/charmap.c:677 ++#: locale/programs/charmap.c:732 locale/programs/charmap.c:773 ++#: locale/programs/charmap.c:814 + #, c-format +-msgid "syntax error in repertoire map definition: %s" +-msgstr "repertuar eşlem tanımı içinde sözdizimi hatası: %s" +- +-#: locale/programs/repertoire.c:272 +-msgid "no or value given" +-msgstr " ya da değeri verilmeliydi" ++msgid "syntax error in %s definition: %s" ++msgstr "%s tanımında sözdizimi hatası: %s" + +-#: locale/programs/repertoire.c:332 +-msgid "cannot save new repertoire map" +-msgstr "yeni repertuvar eşlemin doğruluğundan emin olunamaz " ++#: locale/programs/charmap.c:498 locale/programs/charmap.c:678 ++#: locale/programs/charmap.c:774 locale/programs/repertoire.c:230 ++msgid "no symbolic name given" ++msgstr "sembolik isim verilmemiş" + +-#: locale/programs/repertoire.c:343 +-#, c-format +-msgid "repertoire map file `%s' not found" +-msgstr "`%s' repertuar eşlem dosyası bulunamadı" ++#: locale/programs/charmap.c:552 ++msgid "invalid encoding given" ++msgstr "geçersiz kodlama verilmiş" ++ ++#: locale/programs/charmap.c:561 ++msgid "too few bytes in character encoding" ++msgstr "karakter kodlamada bayt sayısı çok az" ++ ++#: locale/programs/charmap.c:563 ++msgid "too many bytes in character encoding" ++msgstr "karakter kodlamada bayt sayısı çok fazla" ++ ++#: locale/programs/charmap.c:585 locale/programs/charmap.c:733 ++#: locale/programs/charmap.c:816 locale/programs/repertoire.c:296 ++msgid "no symbolic name given for end of range" ++msgstr "kapsam sonu için sembolik isim verilmemiş" + +-#: locale/programs/repertoire.c:450 ++#: locale/programs/charmap.c:609 locale/programs/locfile.c:818 ++#: locale/programs/repertoire.c:313 + #, c-format +-msgid "<%s> and <%s> are invalid names for range" +-msgstr "<%s> ve <%s> kapsam için geçersiz isimler" ++msgid "`%1$s' definition does not end with `END %1$s'" ++msgstr "`%1$s' tanımı `END %1$s' ile bitmiyor" + +-#: locale/programs/repertoire.c:457 +-msgid "upper limit in range is not smaller then lower limit" +-msgstr "kapsamdaki üst sınır alt sınırdan küçük değil" ++#: locale/programs/charmap.c:642 ++msgid "only WIDTH definitions are allowed to follow the CHARMAP definition" ++msgstr "CHARMAP tanımını sadece genişlik tanımları izleyebilir" + +-#: locale/programs/xmalloc.c:70 malloc/obstack.c:505 malloc/obstack.c:508 +-#: posix/getconf.c:1007 +-msgid "memory exhausted" +-msgstr "bellek tükendi" ++#: locale/programs/charmap.c:650 locale/programs/charmap.c:713 ++#, c-format ++msgid "value for %s must be an integer" ++msgstr "%s için değer bir tamsayı olmalı" + +-#: assert/assert-perr.c:57 ++#: locale/programs/charmap.c:841 + #, c-format +-msgid "%s%s%s:%u: %s%sUnexpected error: %s.\n" +-msgstr "%s%s%s:%u: %s%sUmulmadık hata: %s.\n" ++msgid "%s: error in state machine" ++msgstr "%s: durum motorunda hata" + +-#: assert/assert.c:56 ++#: locale/programs/charmap.c:849 locale/programs/ld-address.c:615 ++#: locale/programs/ld-collate.c:2650 locale/programs/ld-collate.c:3820 ++#: locale/programs/ld-ctype.c:2224 locale/programs/ld-ctype.c:2996 ++#: locale/programs/ld-identification.c:467 ++#: locale/programs/ld-measurement.c:253 locale/programs/ld-messages.c:347 ++#: locale/programs/ld-monetary.c:956 locale/programs/ld-name.c:322 ++#: locale/programs/ld-numeric.c:383 locale/programs/ld-paper.c:256 ++#: locale/programs/ld-telephone.c:328 locale/programs/ld-time.c:1236 ++#: locale/programs/locfile.c:825 locale/programs/repertoire.c:324 + #, c-format +-msgid "%s%s%s:%u: %s%sAssertion `%s' failed.\n" +-msgstr "%s%s%s:%u: %s%sSav `%s' başarısızlığa uğradı.\n" ++msgid "%s: premature end of file" ++msgstr "%s: dosya sonu erken geldi" + +-#: intl/tst-codeset.c:40 intl/tst-codeset.c:50 +-msgid "cheese" +-msgstr "mükemmel" +- +-#: intl/tst-gettext2.c:37 +-msgid "First string for testing." +-msgstr "Test edilecek ilk dizge." +- +-#: intl/tst-gettext2.c:38 +-msgid "Another string for testing." +-msgstr "Test edilecek diğer dizge." ++#: locale/programs/charmap.c:868 locale/programs/charmap.c:879 ++#, c-format ++msgid "unknown character `%s'" ++msgstr "`%s' karakteri bilinmiyor" + +-#: catgets/gencat.c:111 catgets/gencat.c:115 nscd/nscd.c:88 +-msgid "NAME" +-msgstr "İSİM" ++#: locale/programs/charmap.c:887 ++#, c-format ++msgid "number of bytes for byte sequence of beginning and end of range not the same: %d vs %d" ++msgstr "aralığın başındaki ve sonundaki bayt dizilerideki baytların sayısı aynı değil: %d ve %d" + +-#: catgets/gencat.c:112 +-msgid "Create C header file NAME containing symbol definitions" +-msgstr "Sembol tanımlarını içeren C başlık dosyası İSİM'i oluşturur" ++#: locale/programs/charmap.c:992 locale/programs/ld-collate.c:2933 ++#: locale/programs/repertoire.c:419 ++msgid "invalid names for character range" ++msgstr "karakter kapsamı için geçersiz isimler" + +-#: catgets/gencat.c:114 +-msgid "Do not use existing catalog, force new output file" +-msgstr "Mevcut kataloğu kullanmaz, yeni çıktı dosyasını zorlar" ++#: locale/programs/charmap.c:1004 locale/programs/repertoire.c:431 ++msgid "hexadecimal range format should use only capital characters" ++msgstr "onaltılık kapsam biçimi sadece büyük harfleri kullanacaktır" + +-#: catgets/gencat.c:115 +-msgid "Write output to file NAME" +-msgstr "Çıktıyı İSİM dosyasına yazar" ++#: locale/programs/charmap.c:1022 ++#, c-format ++msgid "<%s> and <%s> are illegal names for range" ++msgstr "<%s> ve <%s> kapsam için uygun isimler değil" + +-#: catgets/gencat.c:120 +-#, fuzzy +-msgid "" +-"Generate message catalog. If INPUT-FILE is -, input is read from standard input. If OUTPUT-FILE\n" +-"is -, output is written to standard output.\n" +-msgstr "" +-"İleti kataloğu üretilir. GİRDİ-DOSYASI - verilirse standart girdi okunur.\n" +-"ÇIKTI-DOSYASI - verilirse standart çıktıya yazılır.\n" ++#: locale/programs/charmap.c:1028 ++msgid "upper limit in range is not higher then lower limit" ++msgstr "kapsamdaki üst sınır alt sınırdan büyük değil" + +-#: catgets/gencat.c:125 +-msgid "" +-"-o OUTPUT-FILE [INPUT-FILE]...\n" +-"[OUTPUT-FILE [INPUT-FILE]...]" +-msgstr "" +-"-o ÇIKTI-DOSYASI [GİRDİ-DOSYASI]...\n" +-"[ÇIKTI-DOSYASI [GİRDİ-DOSYASI]...]" ++#: locale/programs/charmap.c:1086 ++msgid "resulting bytes for range not representable." ++msgstr "sonuçlanan baytlar kapsam için gösterilebilir değil." + +-#: catgets/gencat.c:282 +-msgid "*standard input*" +-msgstr "*standart girdi*" ++#: locale/programs/ld-address.c:132 locale/programs/ld-collate.c:1532 ++#: locale/programs/ld-ctype.c:419 locale/programs/ld-identification.c:132 ++#: locale/programs/ld-measurement.c:93 locale/programs/ld-messages.c:96 ++#: locale/programs/ld-monetary.c:192 locale/programs/ld-name.c:93 ++#: locale/programs/ld-numeric.c:97 locale/programs/ld-paper.c:90 ++#: locale/programs/ld-telephone.c:93 locale/programs/ld-time.c:158 ++#, c-format ++msgid "No definition for %s category found" ++msgstr "%s kategorisi için atama bulunamadı" + +-#: catgets/gencat.c:417 catgets/gencat.c:494 +-msgid "illegal set number" +-msgstr "küme sayısı kuraldışı" ++#: locale/programs/ld-address.c:143 locale/programs/ld-address.c:181 ++#: locale/programs/ld-address.c:199 locale/programs/ld-address.c:228 ++#: locale/programs/ld-address.c:300 locale/programs/ld-address.c:319 ++#: locale/programs/ld-address.c:332 locale/programs/ld-identification.c:145 ++#: locale/programs/ld-measurement.c:104 locale/programs/ld-monetary.c:204 ++#: locale/programs/ld-monetary.c:248 locale/programs/ld-monetary.c:264 ++#: locale/programs/ld-monetary.c:276 locale/programs/ld-name.c:104 ++#: locale/programs/ld-name.c:141 locale/programs/ld-numeric.c:111 ++#: locale/programs/ld-numeric.c:125 locale/programs/ld-paper.c:101 ++#: locale/programs/ld-paper.c:110 locale/programs/ld-telephone.c:104 ++#: locale/programs/ld-telephone.c:161 locale/programs/ld-time.c:174 ++#: locale/programs/ld-time.c:195 ++#, c-format ++msgid "%s: field `%s' not defined" ++msgstr "%s: `%s' alanı tanımlı değil" + +-#: catgets/gencat.c:444 +-msgid "duplicate set definition" +-msgstr "küme ataması tekrarlanmış" ++#: locale/programs/ld-address.c:155 locale/programs/ld-address.c:207 ++#: locale/programs/ld-address.c:237 locale/programs/ld-address.c:275 ++#: locale/programs/ld-name.c:116 locale/programs/ld-telephone.c:116 ++#, c-format ++msgid "%s: field `%s' must not be empty" ++msgstr "%s: `%s' alanı boş olmamalı" + +-#: catgets/gencat.c:446 catgets/gencat.c:623 catgets/gencat.c:677 +-msgid "this is the first definition" +-msgstr "bu ilk tanım" ++#: locale/programs/ld-address.c:167 ++#, c-format ++msgid "%s: invalid escape `%%%c' sequence in field `%s'" ++msgstr "%s: `%%%c' önceleme dizisi `%s' alanında geçersiz" + +-#: catgets/gencat.c:522 ++#: locale/programs/ld-address.c:218 + #, c-format +-msgid "unknown set `%s'" +-msgstr "`%s' kümesi bilinmiyor" ++msgid "%s: terminology language code `%s' not defined" ++msgstr "%s: terminoloji dil kodu `%s' atanmamış" + +-#: catgets/gencat.c:563 +-msgid "invalid quote character" +-msgstr "tırnak işareti geçersiz" ++#: locale/programs/ld-address.c:243 ++#, c-format ++msgid "%s: field `%s' must not be defined" ++msgstr "%s: `%s' alanı tanımlanmamalı" + +-#: catgets/gencat.c:576 ++#: locale/programs/ld-address.c:257 locale/programs/ld-address.c:286 + #, c-format +-msgid "unknown directive `%s': line ignored" +-msgstr "bilinmeyen `%s' yönergesi: satır yoksayıldı" ++msgid "%s: language abbreviation `%s' not defined" ++msgstr "%s: dil kısaltması `%s' atanmamış" + +-#: catgets/gencat.c:621 +-msgid "duplicated message number" +-msgstr "tekrarlanmış ileti numarası" ++#: locale/programs/ld-address.c:264 locale/programs/ld-address.c:292 ++#: locale/programs/ld-address.c:326 locale/programs/ld-address.c:338 ++#, c-format ++msgid "%s: `%s' value does not match `%s' value" ++msgstr "%s: `%s' değeri `%s' değeriyle eşleşmiyor" + +-#: catgets/gencat.c:674 +-msgid "duplicated message identifier" +-msgstr "ileti tanıtıcı tekrarlanmış" ++#: locale/programs/ld-address.c:311 ++#, c-format ++msgid "%s: numeric country code `%d' not valid" ++msgstr "%s: sayısal ülke kodu `%d' geçersiz" + +-#: catgets/gencat.c:731 +-msgid "invalid character: message ignored" +-msgstr "geçersiz karakter: ileti yoksayıldı" ++#: locale/programs/ld-address.c:507 locale/programs/ld-address.c:544 ++#: locale/programs/ld-address.c:582 locale/programs/ld-ctype.c:2603 ++#: locale/programs/ld-identification.c:363 ++#: locale/programs/ld-measurement.c:220 locale/programs/ld-messages.c:300 ++#: locale/programs/ld-monetary.c:698 locale/programs/ld-monetary.c:733 ++#: locale/programs/ld-monetary.c:774 locale/programs/ld-name.c:279 ++#: locale/programs/ld-numeric.c:262 locale/programs/ld-paper.c:223 ++#: locale/programs/ld-telephone.c:287 locale/programs/ld-time.c:1125 ++#: locale/programs/ld-time.c:1167 ++#, c-format ++msgid "%s: field `%s' declared more than once" ++msgstr "%s: `%s' alanı bir kereden fazla bildirilmiş" + +-#: catgets/gencat.c:774 +-msgid "invalid line" +-msgstr "satır geçersiz" ++#: locale/programs/ld-address.c:511 locale/programs/ld-address.c:549 ++#: locale/programs/ld-identification.c:367 locale/programs/ld-messages.c:310 ++#: locale/programs/ld-monetary.c:702 locale/programs/ld-monetary.c:737 ++#: locale/programs/ld-name.c:283 locale/programs/ld-numeric.c:266 ++#: locale/programs/ld-telephone.c:291 locale/programs/ld-time.c:1019 ++#: locale/programs/ld-time.c:1088 locale/programs/ld-time.c:1130 ++#, c-format ++msgid "%s: unknown character in field `%s'" ++msgstr "%s: `%s' alanında bilinmeyen karakter" + +-#: catgets/gencat.c:828 +-msgid "malformed line ignored" +-msgstr "hatalı satır yoksayıldı" ++#: locale/programs/ld-address.c:596 locale/programs/ld-collate.c:3802 ++#: locale/programs/ld-ctype.c:2976 locale/programs/ld-identification.c:448 ++#: locale/programs/ld-measurement.c:234 locale/programs/ld-messages.c:329 ++#: locale/programs/ld-monetary.c:938 locale/programs/ld-name.c:304 ++#: locale/programs/ld-numeric.c:365 locale/programs/ld-paper.c:238 ++#: locale/programs/ld-telephone.c:310 locale/programs/ld-time.c:1218 ++#, c-format ++msgid "%s: incomplete `END' line" ++msgstr "%s: tamamlanmamış `END' satırı" + +-#: catgets/gencat.c:992 catgets/gencat.c:1033 ++#: locale/programs/ld-address.c:599 locale/programs/ld-collate.c:2653 ++#: locale/programs/ld-collate.c:3804 locale/programs/ld-ctype.c:2227 ++#: locale/programs/ld-ctype.c:2979 locale/programs/ld-identification.c:451 ++#: locale/programs/ld-measurement.c:237 locale/programs/ld-messages.c:331 ++#: locale/programs/ld-monetary.c:940 locale/programs/ld-name.c:306 ++#: locale/programs/ld-numeric.c:367 locale/programs/ld-paper.c:240 ++#: locale/programs/ld-telephone.c:312 locale/programs/ld-time.c:1220 + #, c-format +-msgid "cannot open output file `%s'" +-msgstr "`%s' çıktı dosyası açılamıyor" ++msgid "%1$s: definition does not end with `END %1$s'" ++msgstr "%1$s: tanım `END %1$s' ile bitmiyor" + +-#: catgets/gencat.c:1217 +-msgid "unterminated message" +-msgstr "sonlandırılmamış ileti" ++#: locale/programs/ld-address.c:606 locale/programs/ld-collate.c:521 ++#: locale/programs/ld-collate.c:573 locale/programs/ld-collate.c:869 ++#: locale/programs/ld-collate.c:882 locale/programs/ld-collate.c:2640 ++#: locale/programs/ld-collate.c:3811 locale/programs/ld-ctype.c:1955 ++#: locale/programs/ld-ctype.c:2214 locale/programs/ld-ctype.c:2801 ++#: locale/programs/ld-ctype.c:2987 locale/programs/ld-identification.c:458 ++#: locale/programs/ld-measurement.c:244 locale/programs/ld-messages.c:338 ++#: locale/programs/ld-monetary.c:947 locale/programs/ld-name.c:313 ++#: locale/programs/ld-numeric.c:374 locale/programs/ld-paper.c:247 ++#: locale/programs/ld-telephone.c:319 locale/programs/ld-time.c:1227 ++#, c-format ++msgid "%s: syntax error" ++msgstr "%s: sözdizimi hatası" + +-#: catgets/gencat.c:1241 +-msgid "while opening old catalog file" +-msgstr "eski katalog dosyası açılırken" ++#: locale/programs/ld-collate.c:396 ++#, c-format ++msgid "`%.*s' already defined in charmap" ++msgstr "`%.*s' karakter eşlem olarak zaten atanmış" + +-#: catgets/gencat.c:1332 +-msgid "conversion modules not available" +-msgstr "dönüşüm modülleri yok" ++#: locale/programs/ld-collate.c:405 ++#, c-format ++msgid "`%.*s' already defined in repertoire" ++msgstr "`%.*s' repertuvar olarak zaten atanmış" + +-#: catgets/gencat.c:1358 +-msgid "cannot determine escape character" +-msgstr "öncelem karakteri saptanamıyor" ++#: locale/programs/ld-collate.c:412 ++#, c-format ++msgid "`%.*s' already defined as collating symbol" ++msgstr "`%.*s' karşılaştırma sembolü olarak zaten atanmış" + +-#: stdlib/../sysdeps/unix/sysv/linux/ia64/makecontext.c:63 ++#: locale/programs/ld-collate.c:419 + #, c-format +-msgid "makecontext: does not know how to handle more than 8 arguments\n" +-msgstr "makecontext: 8 argümandan fazlasının nasıl elde edileceği bilinmiyor\n" ++msgid "`%.*s' already defined as collating element" ++msgstr "`%.*s' karşılaştırma elemanı olarak zaten atanmış" + +-#: stdio-common/../sysdeps/gnu/errlist.c:12 posix/regcomp.c:147 +-#: nis/nis_error.c:29 nis/ypclnt.c:778 nis/ypclnt.c:852 +-msgid "Success" +-msgstr "Başarılı" ++#: locale/programs/ld-collate.c:450 locale/programs/ld-collate.c:476 ++#, c-format ++msgid "%s: `forward' and `backward' are mutually excluding each other" ++msgstr "%s: `forward' ve `backward' karşılıklı olarak bir diğerini dışlar" + +-#. TRANS Operation not permitted; only the owner of the file (or other resource) +-#. TRANS or processes with special privileges can perform the operation. +-#: stdio-common/../sysdeps/gnu/errlist.c:17 +-msgid "Operation not permitted" +-msgstr "İşleme izin verilmedi" ++#: locale/programs/ld-collate.c:460 locale/programs/ld-collate.c:486 ++#: locale/programs/ld-collate.c:502 ++#, c-format ++msgid "%s: `%s' mentioned more than once in definition of weight %d" ++msgstr "%s:`%s' %d ağırlıklı tanımda bir kereden fazla anıldı" + +-#. TRANS No such file or directory. This is a ``file doesn't exist'' error +-#. TRANS for ordinary files that are referenced in contexts where they are +-#. TRANS expected to already exist. +-#: stdio-common/../sysdeps/gnu/errlist.c:28 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:32 +-msgid "No such file or directory" +-msgstr "Böyle bir dosya ya da dizin yok" ++#: locale/programs/ld-collate.c:558 ++#, c-format ++msgid "%s: too many rules; first entry only had %d" ++msgstr "%s: çok fazla kural var; sadece ilk girdide kural sayısı %d" + +-#. TRANS No process matches the specified process ID. +-#: stdio-common/../sysdeps/gnu/errlist.c:37 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:33 +-msgid "No such process" +-msgstr "Böyle bir süreç yok" ++#: locale/programs/ld-collate.c:594 ++#, c-format ++msgid "%s: not enough sorting rules" ++msgstr "%s: sıralama kuralları yetersiz" + +-#. TRANS Interrupted function call; an asynchronous signal occurred and prevented +-#. TRANS completion of the call. When this happens, you should try the call +-#. TRANS again. +-#. TRANS +-#. TRANS You can choose to have functions resume after a signal that is handled, +-#. TRANS rather than failing with @code{EINTR}; see @ref{Interrupted +-#. TRANS Primitives}. +-#: stdio-common/../sysdeps/gnu/errlist.c:52 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:34 +-msgid "Interrupted system call" +-msgstr "Sistem çağrısı kesme ile engellendi" ++#: locale/programs/ld-collate.c:759 ++#, c-format ++msgid "%s: empty weight string not allowed" ++msgstr "%s: boş ağırlık dizgesine izin verilmez" + +-#. TRANS Input/output error; usually used for physical read or write errors. +-#: stdio-common/../sysdeps/gnu/errlist.c:61 +-msgid "Input/output error" +-msgstr "Girdi/Çıktı hatası" ++#: locale/programs/ld-collate.c:854 ++#, c-format ++msgid "%s: weights must use the same ellipsis symbol as the name" ++msgstr "%s: ağırlıklar isim olarak aynı elips sembolünü kullanmalıdır" + +-#. TRANS No such device or address. The system tried to use the device +-#. TRANS represented by a file you specified, and it couldn't find the device. +-#. TRANS This can mean that the device file was installed incorrectly, or that +-#. TRANS the physical device is missing or not correctly attached to the +-#. TRANS computer. +-#: stdio-common/../sysdeps/gnu/errlist.c:74 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:36 +-msgid "No such device or address" +-msgstr "Böyle bir aygıt ya da adres yok" ++#: locale/programs/ld-collate.c:910 ++#, c-format ++msgid "%s: too many values" ++msgstr "%s: çok fazla değer var" + +-#. TRANS Argument list too long; used when the arguments passed to a new program +-#. TRANS being executed with one of the @code{exec} functions (@pxref{Executing a +-#. TRANS File}) occupy too much memory space. This condition never arises in the +-#. TRANS GNU system. +-#: stdio-common/../sysdeps/gnu/errlist.c:86 +-msgid "Argument list too long" +-msgstr "Argüman listesi çok uzun" ++#: locale/programs/ld-collate.c:1029 locale/programs/ld-collate.c:1204 ++#, c-format ++msgid "order for `%.*s' already defined at %s:%Zu" ++msgstr "`%.*s' için sıralama zaten %s:%Zu içinde atanmış" + +-#. TRANS Invalid executable file format. This condition is detected by the +-#. TRANS @code{exec} functions; see @ref{Executing a File}. +-#: stdio-common/../sysdeps/gnu/errlist.c:96 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:38 +-msgid "Exec format error" +-msgstr "Çalıştırılabilir biçem hatası" ++#: locale/programs/ld-collate.c:1079 ++#, c-format ++msgid "%s: the start and the end symbol of a range must stand for characters" ++msgstr "%s: bir kapsamın başlangıç ve bitiş sembolleri, karakterleri temsil etmelidir" + +-#. TRANS Bad file descriptor; for example, I/O on a descriptor that has been +-#. TRANS closed or reading from a descriptor open only for writing (or vice +-#. TRANS versa). +-#: stdio-common/../sysdeps/gnu/errlist.c:107 +-msgid "Bad file descriptor" +-msgstr "Dosya betimleyici hatalı" ++#: locale/programs/ld-collate.c:1106 ++#, c-format ++msgid "%s: byte sequences of first and last character must have the same length" ++msgstr "%s: ilk ve son karakterin bayt serisi aynı uzunlukta olmalı" + +-#. TRANS There are no child processes. This error happens on operations that are +-#. TRANS supposed to manipulate child processes, when there aren't any processes +-#. TRANS to manipulate. +-#: stdio-common/../sysdeps/gnu/errlist.c:118 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:40 +-msgid "No child processes" +-msgstr "Bir alt süreç yok " ++#: locale/programs/ld-collate.c:1148 ++#, c-format ++msgid "%s: byte sequence of first character of sequence is not lower than that of the last character" ++msgstr "%s: serinin ilk karakterinin bayt serisi son karakterininkinden daha az değildir" + +-#. TRANS Deadlock avoided; allocating a system resource would have resulted in a +-#. TRANS deadlock situation. The system does not guarantee that it will notice +-#. TRANS all such situations. This error means you got lucky and the system +-#. TRANS noticed; it might just hang. @xref{File Locks}, for an example. +-#: stdio-common/../sysdeps/gnu/errlist.c:130 +-msgid "Resource deadlock avoided" +-msgstr "Özkaynak ölükilidi engellendi" ++#: locale/programs/ld-collate.c:1273 ++#, c-format ++msgid "%s: symbolic range ellipsis must not directly follow `order_start'" ++msgstr "%s: sembolik kapsam elipsleri `order_start' ın hemen ardından gelmemelidir" ++ ++#: locale/programs/ld-collate.c:1277 ++#, c-format ++msgid "%s: symbolic range ellipsis must not be directly followed by `order_end'" ++msgstr "%s: sembolik kapsam elipslerinin hemen ardından `order_end' gelmemelidir" ++ ++#: locale/programs/ld-collate.c:1297 locale/programs/ld-ctype.c:1475 ++#, c-format ++msgid "`%s' and `%.*s' are not valid names for symbolic range" ++msgstr "`%s' ve `%.*s' simgesel aralık için geçerli isimler değil" ++ ++#: locale/programs/ld-collate.c:1346 locale/programs/ld-collate.c:3739 ++#, c-format ++msgid "%s: order for `%.*s' already defined at %s:%Zu" ++msgstr "%s: `%.*s' için abecesel sıra zaten %s:%Zu içinde atanmış" ++ ++#: locale/programs/ld-collate.c:1355 ++#, c-format ++msgid "%s: `%s' must be a character" ++msgstr "%s: `%s' bir karakter olmalı" ++ ++#: locale/programs/ld-collate.c:1548 ++#, c-format ++msgid "%s: `position' must be used for a specific level in all sections or none" ++msgstr "%s: `position' tüm alt bölümlerde özel bir düzey için kullanılmış olmalı ya da hiç bulunmamalı" ++ ++#: locale/programs/ld-collate.c:1573 ++#, c-format ++msgid "symbol `%s' not defined" ++msgstr "`%s' sembolü atanmamış" ++ ++#: locale/programs/ld-collate.c:1649 locale/programs/ld-collate.c:1755 ++#, c-format ++msgid "symbol `%s' has the same encoding as" ++msgstr "`%s' sembolü bununla aynı kodlamaya sahip:" ++ ++#: locale/programs/ld-collate.c:1653 locale/programs/ld-collate.c:1759 ++#, c-format ++msgid "symbol `%s'" ++msgstr "`%s' sembolü" ++ ++#: locale/programs/ld-collate.c:1801 ++#, c-format ++msgid "no definition of `UNDEFINED'" ++msgstr "`UNDEFINED' tanımı yok" ++ ++#: locale/programs/ld-collate.c:1830 ++#, c-format ++msgid "too many errors; giving up" ++msgstr "çok fazla hata: bırakılıyor" ++ ++#: locale/programs/ld-collate.c:2738 ++#, c-format ++msgid "%s: duplicate definition of `%s'" ++msgstr "%s: `%s' tanımı tekrarlanmış" ++ ++#: locale/programs/ld-collate.c:2774 ++#, c-format ++msgid "%s: duplicate declaration of section `%s'" ++msgstr "%s: `%s' bölüm bildirimi tekrarlanmış" ++ ++#: locale/programs/ld-collate.c:2913 ++#, c-format ++msgid "%s: unknown character in collating symbol name" ++msgstr "%s: karşılaştırma sembolü isminde bilinmeyen karakter" ++ ++#: locale/programs/ld-collate.c:3045 ++#, c-format ++msgid "%s: unknown character in equivalent definition name" ++msgstr "%s: eşdeğer tanımlama isminde bilinmeyen karakter" ++ ++#: locale/programs/ld-collate.c:3058 ++#, c-format ++msgid "%s: unknown character in equivalent definition value" ++msgstr "%s: eşdeğer tanımlama değerinde bilinmeyen karakter" ++ ++#: locale/programs/ld-collate.c:3068 ++#, c-format ++msgid "%s: unknown symbol `%s' in equivalent definition" ++msgstr "%s: eşdeğer tanımlamada bilinmeyen sembol: `%s'" ++ ++#: locale/programs/ld-collate.c:3077 ++msgid "error while adding equivalent collating symbol" ++msgstr "eşdeğer karşılaştırma sembolünü eklerken hata" ++ ++#: locale/programs/ld-collate.c:3107 ++#, c-format ++msgid "duplicate definition of script `%s'" ++msgstr "`%s' betiğinin ataması tekrarlanmış" ++ ++#: locale/programs/ld-collate.c:3155 ++#, c-format ++msgid "%s: unknown section name `%s'" ++msgstr "%s: bölüm ismi `%s' bilinmiyor" ++ ++#: locale/programs/ld-collate.c:3183 ++#, c-format ++msgid "%s: multiple order definitions for section `%s'" ++msgstr "%s: `%s' alt bölümünde çok sayıda sıralama tanımı" ++ ++#: locale/programs/ld-collate.c:3208 ++#, c-format ++msgid "%s: invalid number of sorting rules" ++msgstr "%s: sıralama kurallarının sayısı geçersiz" ++ ++#: locale/programs/ld-collate.c:3235 ++#, c-format ++msgid "%s: multiple order definitions for unnamed section" ++msgstr "%s: isimsiz alt bölümde çok sayıda sıralama tanımı" ++ ++#: locale/programs/ld-collate.c:3289 locale/programs/ld-collate.c:3417 ++#: locale/programs/ld-collate.c:3780 ++#, c-format ++msgid "%s: missing `order_end' keyword" ++msgstr "%s: `order_end' anahtar-sözcüğü kayıp" ++ ++#: locale/programs/ld-collate.c:3350 ++#, c-format ++msgid "%s: order for collating symbol %.*s not yet defined" ++msgstr "%s: karşılaştırma sembolü %.*s için abecesel sıra henüz atanmamış" ++ ++#: locale/programs/ld-collate.c:3368 ++#, c-format ++msgid "%s: order for collating element %.*s not yet defined" ++msgstr "%s: karşılaştırma elemanı %.*s için abecesel sıra henüz atanmamış" ++ ++#: locale/programs/ld-collate.c:3379 ++#, c-format ++msgid "%s: cannot reorder after %.*s: symbol not known" ++msgstr "%s: %.*s sembolünden sonra tekrar sıralanamıyor: sembol bilinmiyor" ++ ++#: locale/programs/ld-collate.c:3431 locale/programs/ld-collate.c:3792 ++#, c-format ++msgid "%s: missing `reorder-end' keyword" ++msgstr "%s: `reorder_end' anahtar-sözcüğü kayıp" ++ ++#: locale/programs/ld-collate.c:3465 locale/programs/ld-collate.c:3664 ++#, c-format ++msgid "%s: section `%.*s' not known" ++msgstr "%s: `%.*s' alt bölümü bilinmiyor" ++ ++#: locale/programs/ld-collate.c:3530 ++#, c-format ++msgid "%s: bad symbol <%.*s>" ++msgstr "%s: hatalı sembol <%.*s>" ++ ++#: locale/programs/ld-collate.c:3727 ++#, c-format ++msgid "%s: cannot have `%s' as end of ellipsis range" ++msgstr "%s: `%s' elips kapsamının sonu olamıyor" ++ ++#: locale/programs/ld-collate.c:3776 ++#, c-format ++msgid "%s: empty category description not allowed" ++msgstr "%s: boş kategori açıklamasına izin verilmez" ++ ++#: locale/programs/ld-collate.c:3795 ++#, c-format ++msgid "%s: missing `reorder-sections-end' keyword" ++msgstr "%s: `reorder_section_end' anahtar-sözcüğü kayıp" ++ ++#: locale/programs/ld-ctype.c:438 ++#, c-format ++msgid "No character set name specified in charmap" ++msgstr "Karakter eşleşme listesinde karakter kümesi ismi belirtilmemiş" ++ ++#: locale/programs/ld-ctype.c:467 ++#, c-format ++msgid "character L'\\u%0*x' in class `%s' must be in class `%s'" ++msgstr "L'\\u%0*x' karakteri `%s' sınıfında, `%s' sınıfında olmalı" ++ ++#: locale/programs/ld-ctype.c:482 ++#, c-format ++msgid "character L'\\u%0*x' in class `%s' must not be in class `%s'" ++msgstr "L'\\u%0*x' karakteri `%s' sınıfında, `%s' sınıfında olmamalı" ++ ++#: locale/programs/ld-ctype.c:496 locale/programs/ld-ctype.c:554 ++#, c-format ++msgid "internal error in %s, line %u" ++msgstr "%s, %u satırında içsel hata" ++ ++#: locale/programs/ld-ctype.c:525 ++#, c-format ++msgid "character '%s' in class `%s' must be in class `%s'" ++msgstr "`%s' karakteri `%s' sınıfı yerine `%s' sınıfında olmalı" ++ ++#: locale/programs/ld-ctype.c:541 ++#, c-format ++msgid "character '%s' in class `%s' must not be in class `%s'" ++msgstr "`%s' karakteri `%s' sınıfında ama `%s' sınıfında olmamalı" ++ ++#: locale/programs/ld-ctype.c:571 locale/programs/ld-ctype.c:609 ++#, c-format ++msgid " character not in class `%s'" ++msgstr " karakteri `%s' sınıfında değil" ++ ++#: locale/programs/ld-ctype.c:583 locale/programs/ld-ctype.c:620 ++#, c-format ++msgid " character must not be in class `%s'" ++msgstr " karakteri `%s' sınıfında olmamalı" ++ ++#: locale/programs/ld-ctype.c:598 ++#, c-format ++msgid "character not defined in character map" ++msgstr " karakteri karakter eşlemde atanmamış" ++ ++#: locale/programs/ld-ctype.c:712 ++#, c-format ++msgid "`digit' category has not entries in groups of ten" ++msgstr "`digit' kategorisi 10 gruptan hiç birinde girdiye sahip değil" ++ ++#: locale/programs/ld-ctype.c:761 ++#, c-format ++msgid "no input digits defined and none of the standard names in the charmap" ++msgstr "karakter eşleşme listesinde standart isimlerin hiç biri ve atanmış girdi rakamları yok" ++ ++#: locale/programs/ld-ctype.c:826 ++#, c-format ++msgid "not all characters used in `outdigit' are available in the charmap" ++msgstr "`outdigit' içinde kullanılan karakterlerin bir kısmı karakter eşleşme listesinde mevcut" ++ ++#: locale/programs/ld-ctype.c:843 ++#, c-format ++msgid "not all characters used in `outdigit' are available in the repertoire" ++msgstr "`outdigit' içinde kullanılan karakterlerin bir kısmı repertuvarda mevcut" ++ ++#: locale/programs/ld-ctype.c:1243 ++#, c-format ++msgid "character class `%s' already defined" ++msgstr "`%s' karakter sınıfı zaten atanmış" ++ ++#: locale/programs/ld-ctype.c:1249 ++#, c-format ++msgid "implementation limit: no more than %Zd character classes allowed" ++msgstr "tamamlama sınırı: %Zd karakterden fazla olmayan sınıflara izin verilmedi" ++ ++#: locale/programs/ld-ctype.c:1275 ++#, c-format ++msgid "character map `%s' already defined" ++msgstr "`%s' karakter eşlem zaten atanmış" ++ ++#: locale/programs/ld-ctype.c:1281 ++#, c-format ++msgid "implementation limit: no more than %d character maps allowed" ++msgstr "tamamlama sınırı: %d karakterden fazla olmayan karakter eşleşme listesine izin verilmedi" ++ ++#: locale/programs/ld-ctype.c:1546 locale/programs/ld-ctype.c:1671 ++#: locale/programs/ld-ctype.c:1777 locale/programs/ld-ctype.c:2466 ++#: locale/programs/ld-ctype.c:3462 ++#, c-format ++msgid "%s: field `%s' does not contain exactly ten entries" ++msgstr "%s: `%s' alanı tamı tamına 10 girdi içeremez" ++ ++#: locale/programs/ld-ctype.c:1574 locale/programs/ld-ctype.c:2145 ++#, c-format ++msgid "to-value of range is smaller than from-value " ++msgstr "kapsamdaki `to' değeri `from' değerinden daha küçük" ++ ++#: locale/programs/ld-ctype.c:1701 ++msgid "start and end character sequence of range must have the same length" ++msgstr "kapsamın başlangıç ve bitiş karakter zincirleri aynı uzunlukta olmalı" ++ ++#: locale/programs/ld-ctype.c:1708 ++msgid "to-value character sequence is smaller than from-value sequence" ++msgstr "karakter dizisindeki `to' değeri `from' değerinden daha küçük" ++ ++#: locale/programs/ld-ctype.c:2065 locale/programs/ld-ctype.c:2116 ++msgid "premature end of `translit_ignore' definition" ++msgstr "`translit_ignore' tanımının sonu eksik" ++ ++#: locale/programs/ld-ctype.c:2071 locale/programs/ld-ctype.c:2122 ++#: locale/programs/ld-ctype.c:2164 ++msgid "syntax error" ++msgstr "sözdizimi hatası" ++ ++#: locale/programs/ld-ctype.c:2298 ++#, c-format ++msgid "%s: syntax error in definition of new character class" ++msgstr "%s: yeni karakter sınıfının tanımında sözdizimi hatası" ++ ++#: locale/programs/ld-ctype.c:2313 ++#, c-format ++msgid "%s: syntax error in definition of new character map" ++msgstr "%s: yeni karakter eşlemleri tanımında sözdizimi hatası" ++ ++#: locale/programs/ld-ctype.c:2488 ++msgid "ellipsis range must be marked by two operands of same type" ++msgstr "elips kapsamı aynı türde iki veri öğesi ile sınırlanmış olmalıdır" ++ ++#: locale/programs/ld-ctype.c:2497 ++msgid "with symbolic name range values the absolute ellipsis `...' must not be used" ++msgstr "mutlak elips `...' sembolik isim kapsamındaki değerlerle kullanılmamalı" ++ ++#: locale/programs/ld-ctype.c:2512 ++msgid "with UCS range values one must use the hexadecimal symbolic ellipsis `..'" ++msgstr "onaltılık sembolik elips `..' UCS kapsam değerlerinden biriyle kullanılmalı" ++ ++#: locale/programs/ld-ctype.c:2526 ++msgid "with character code range values one must use the absolute ellipsis `...'" ++msgstr "mutlak elips `...' karakter kod değerlerinden biriyle kullanılmalı" ++ ++#: locale/programs/ld-ctype.c:2677 ++#, c-format ++msgid "duplicated definition for mapping `%s'" ++msgstr "`%s' eşlemi için atama tekrarlanmış" ++ ++#: locale/programs/ld-ctype.c:2763 locale/programs/ld-ctype.c:2907 ++#, c-format ++msgid "%s: `translit_start' section does not end with `translit_end'" ++msgstr "%s: `translit_start' bölümü `translit_end' ile bitmiyor" ++ ++#: locale/programs/ld-ctype.c:2858 ++#, c-format ++msgid "%s: duplicate `default_missing' definition" ++msgstr "%s: `default_missing' tanımı tekrarlanmış" ++ ++#: locale/programs/ld-ctype.c:2863 ++msgid "previous definition was here" ++msgstr "önceki tanım burasıydı" ++ ++#: locale/programs/ld-ctype.c:2885 ++#, c-format ++msgid "%s: no representable `default_missing' definition found" ++msgstr "%s: temsil edilebilir `default_missing' ataması bulunamadı" ++ ++#: locale/programs/ld-ctype.c:3038 ++#, c-format ++msgid "%s: character `%s' not defined in charmap while needed as default value" ++msgstr "%s: karakter eşlem listesinde öntanımlı değer olarak gerekli olmasına rağmen `%s' karakteri atanmamış" ++ ++#: locale/programs/ld-ctype.c:3043 locale/programs/ld-ctype.c:3127 ++#: locale/programs/ld-ctype.c:3147 locale/programs/ld-ctype.c:3168 ++#: locale/programs/ld-ctype.c:3189 locale/programs/ld-ctype.c:3210 ++#: locale/programs/ld-ctype.c:3231 locale/programs/ld-ctype.c:3271 ++#: locale/programs/ld-ctype.c:3292 locale/programs/ld-ctype.c:3359 ++#, c-format ++msgid "%s: character `%s' in charmap not representable with one byte" ++msgstr "%s: karakter eşlem listesinde `%s' karakteri bir bayt ile temsil edilemez" ++ ++#: locale/programs/ld-ctype.c:3122 locale/programs/ld-ctype.c:3142 ++#: locale/programs/ld-ctype.c:3184 locale/programs/ld-ctype.c:3205 ++#: locale/programs/ld-ctype.c:3226 locale/programs/ld-ctype.c:3266 ++#: locale/programs/ld-ctype.c:3287 locale/programs/ld-ctype.c:3354 ++#: locale/programs/ld-ctype.c:3396 locale/programs/ld-ctype.c:3421 ++#, c-format ++msgid "%s: character `%s' not defined while needed as default value" ++msgstr "%s: öntanımlı değer olarak gerekli olmasına rağmen `%s' karakteri atanmamış" ++ ++#: locale/programs/ld-ctype.c:3163 ++#, c-format ++msgid "character `%s' not defined while needed as default value" ++msgstr "Öntanımlı değer olması gereken `%s' karakteri atanmamış" ++ ++#: locale/programs/ld-ctype.c:3403 locale/programs/ld-ctype.c:3428 ++#, c-format ++msgid "%s: character `%s' needed as default value not representable with one byte" ++msgstr "%s: öntanımlı değer olarak gerekli olan `%s' karakteri tek bayt ile temsil edilemez" ++ ++#: locale/programs/ld-ctype.c:3483 ++#, c-format ++msgid "no output digits defined and none of the standard names in the charmap" ++msgstr "karakter eşleşme listesinde standart isimlerin hiç biri ve atanmış çıktı rakamları yok" ++ ++#: locale/programs/ld-ctype.c:3774 ++#, c-format ++msgid "%s: transliteration data from locale `%s' not available" ++msgstr "%s: `%s' yerelinden başka bir dilin alfabesinde yazma verisi yok" ++ ++#: locale/programs/ld-ctype.c:3875 ++#, c-format ++msgid "%s: table for class \"%s\": %lu bytes\n" ++msgstr "%s: \"%s\" sınıfının tablosu: %lu bayt\n" ++ ++#: locale/programs/ld-ctype.c:3944 ++#, c-format ++msgid "%s: table for map \"%s\": %lu bytes\n" ++msgstr "%s: \"%s\" eşlemlerinin tablosu: %lu bayt\n" ++ ++#: locale/programs/ld-ctype.c:4077 ++#, c-format ++msgid "%s: table for width: %lu bytes\n" ++msgstr "%s: genişlik için tablo: %lu bayt\n" ++ ++#: locale/programs/ld-identification.c:169 ++#, c-format ++msgid "%s: no identification for category `%s'" ++msgstr "%s: `%s' kategorisi için hiç identification satırı yok" ++ ++#: locale/programs/ld-identification.c:434 ++#, c-format ++msgid "%s: duplicate category version definition" ++msgstr "%s kategori sürümü tanımı tekrarlanmış" ++ ++#: locale/programs/ld-measurement.c:112 ++#, c-format ++msgid "%s: invalid value for field `%s'" ++msgstr "%s: `%s' alanındaki değer geçersiz" ++ ++#: locale/programs/ld-messages.c:113 locale/programs/ld-messages.c:147 ++#, c-format ++msgid "%s: field `%s' undefined" ++msgstr "%s: `%s' alanı tanımsız" ++ ++#: locale/programs/ld-messages.c:120 locale/programs/ld-messages.c:154 ++#, c-format ++msgid "%s: value for field `%s' must not be an empty string" ++msgstr "%s: `%s' alanının değeri boş bir dizge olmamalı" ++ ++#: locale/programs/ld-messages.c:136 locale/programs/ld-messages.c:170 ++#, c-format ++msgid "%s: no correct regular expression for field `%s': %s" ++msgstr "%s: `%s' alanında doğru bir düzenli ifade yok: %s" ++ ++#: locale/programs/ld-monetary.c:222 ++#, c-format ++msgid "%s: value of field `int_curr_symbol' has wrong length" ++msgstr "%s: `int_curr_symbol' alanındaki değer yanlış uzunlukta" ++ ++#: locale/programs/ld-monetary.c:235 ++#, c-format ++msgid "%s: value of field `int_curr_symbol' does not correspond to a valid name in ISO 4217" ++msgstr "%s: `int_curr_symbol' alanının değeri ISO 4217'deki geçerli isimlerden biri değil" ++ ++#: locale/programs/ld-monetary.c:254 locale/programs/ld-numeric.c:117 ++#, c-format ++msgid "%s: value for field `%s' must not be the empty string" ++msgstr "%s: `%s' alanının değeri boş dizge olmamalı" ++ ++#: locale/programs/ld-monetary.c:282 locale/programs/ld-monetary.c:312 ++#, c-format ++msgid "%s: value for field `%s' must be in range %d...%d" ++msgstr "%s: `%s' alanındaki değer %d...%d aralığında olmalı" ++ ++#: locale/programs/ld-monetary.c:744 locale/programs/ld-numeric.c:273 ++#, c-format ++msgid "%s: value for field `%s' must be a single character" ++msgstr "%s: `%s' alanındaki değer tek karakter olmalı" ++ ++#: locale/programs/ld-monetary.c:841 locale/programs/ld-numeric.c:317 ++#, c-format ++msgid "%s: `-1' must be last entry in `%s' field" ++msgstr "%s: `%s' alanında `-1' son girdi olmalı" ++ ++#: locale/programs/ld-monetary.c:863 locale/programs/ld-numeric.c:334 ++#, c-format ++msgid "%s: values for field `%s' must be smaller than 127" ++msgstr "%s: `%s' alanındaki değer 127 den küçük olmalı" ++ ++#: locale/programs/ld-monetary.c:906 ++msgid "conversion rate value cannot be zero" ++msgstr "dönüştürme oranı sıfır olamaz" ++ ++#: locale/programs/ld-name.c:128 locale/programs/ld-telephone.c:125 ++#: locale/programs/ld-telephone.c:148 ++#, c-format ++msgid "%s: invalid escape sequence in field `%s'" ++msgstr "%s: `%s' alanında geçersiz önceleme dizisi" ++ ++#: locale/programs/ld-time.c:246 ++#, c-format ++msgid "%s: direction flag in string %Zd in `era' field is not '+' nor '-'" ++msgstr "%s: `era' alanındaki %Zd dizgesinin yön flaması '+' ya da '-' değil" ++ ++#: locale/programs/ld-time.c:257 ++#, c-format ++msgid "%s: direction flag in string %Zd in `era' field is not a single character" ++msgstr "%s: `era' alanındaki %Zd dizgesinin yön flaması tek karakter değil" ++ ++#: locale/programs/ld-time.c:270 ++#, c-format ++msgid "%s: invalid number for offset in string %Zd in `era' field" ++msgstr "%s: `era' alanındaki %Zd dizgesinde dengeleme değeri olarak geçersiz sayı" ++ ++#: locale/programs/ld-time.c:278 ++#, c-format ++msgid "%s: garbage at end of offset value in string %Zd in `era' field" ++msgstr "%s: `era' alanındaki %Zd dizgesinin dengeleme değerinin sonunda bozulma saptandı" ++ ++#: locale/programs/ld-time.c:329 ++#, c-format ++msgid "%s: invalid starting date in string %Zd in `era' field" ++msgstr "%s: `era' alanındaki %Zd dizgesinde başlangıç tarihi geçersiz" ++ ++#: locale/programs/ld-time.c:338 ++#, c-format ++msgid "%s: garbage at end of starting date in string %Zd in `era' field " ++msgstr "%s: `era' alanındaki %Zd dizgesinde başlangıç tarihinin sonunda bozulma saptandı" ++ ++#: locale/programs/ld-time.c:357 ++#, c-format ++msgid "%s: starting date is invalid in string %Zd in `era' field" ++msgstr "%s: `era' alanındaki %Zd dizgesinde başlangıç tarihi geçersiz" ++ ++#: locale/programs/ld-time.c:406 ++#, c-format ++msgid "%s: invalid stopping date in string %Zd in `era' field" ++msgstr "%s: `era' alanındaki %Zd dizgesinde bitiş tarihi geçersiz" ++ ++#: locale/programs/ld-time.c:415 ++#, c-format ++msgid "%s: garbage at end of stopping date in string %Zd in `era' field" ++msgstr "%s: `era' alanındaki %Zd dizgesinde bitiş tarihinin sonunda bozulma saptandı" ++ ++#: locale/programs/ld-time.c:434 ++#, c-format ++msgid "%s: stopping date is invalid in string %Zd in `era' field" ++msgstr "%s: `era' alanındaki %Zd dizgesinde bitiş tarihi geçersiz" ++ ++#: locale/programs/ld-time.c:443 ++#, c-format ++msgid "%s: missing era name in string %Zd in `era' field" ++msgstr "%s: `era' alanındaki %Zd dizgesinde dönem ismi eksik" ++ ++#: locale/programs/ld-time.c:455 ++#, c-format ++msgid "%s: missing era format in string %Zd in `era' field" ++msgstr "%s: `era' alanındaki %Zd dizgesinde dönemsellik biçemi eksik" ++ ++#: locale/programs/ld-time.c:496 ++#, c-format ++msgid "%s: third operand for value of field `%s' must not be larger than %d" ++msgstr "%s: `%s' alanının değerindeki üçüncü veri öğesi en fazla %d olabilir" ++ ++#: locale/programs/ld-time.c:504 locale/programs/ld-time.c:512 ++#, c-format ++msgid "%s: values of field `%s' must not be larger than %d" ++msgstr "%s: `%s' alanındaki değer %d den büyük olmamalı" ++ ++#: locale/programs/ld-time.c:520 ++#, c-format ++msgid "%s: values for field `%s' must not be larger than %d" ++msgstr "%s: `%s' alanındaki değer %d den büyük olmalı" ++ ++#: locale/programs/ld-time.c:1003 ++#, c-format ++msgid "%s: too few values for field `%s'" ++msgstr "%s: `%s' alanındaki değerler çok az" ++ ++#: locale/programs/ld-time.c:1048 ++msgid "extra trailing semicolon" ++msgstr "fazladan ; var" ++ ++#: locale/programs/ld-time.c:1051 ++#, c-format ++msgid "%s: too many values for field `%s'" ++msgstr "%s: `%s' alanındaki değerler çok fazla" ++ ++#: locale/programs/linereader.c:129 ++msgid "trailing garbage at end of line" ++msgstr "satır sonu bozuk" ++ ++#: locale/programs/linereader.c:297 ++msgid "garbage at end of number" ++msgstr "numaranın sonunda bozulma" ++ ++#: locale/programs/linereader.c:409 ++msgid "garbage at end of character code specification" ++msgstr "karakter kodu özelliklerinin sonunda bozulma" ++ ++#: locale/programs/linereader.c:495 ++msgid "unterminated symbolic name" ++msgstr "sonlandırılmamış sembolik isim" ++ ++#: locale/programs/linereader.c:622 ++msgid "illegal escape sequence at end of string" ++msgstr "karakter dizisinin sonunda uygun olmayan escape dizisi" ++ ++#: locale/programs/linereader.c:626 locale/programs/linereader.c:854 ++msgid "unterminated string" ++msgstr "sonlandırılmamış dizge" ++ ++#: locale/programs/linereader.c:668 ++msgid "non-symbolic character value should not be used" ++msgstr "sembolik olmayan karakter değeri kullanılmış olmayacaktı" ++ ++#: locale/programs/linereader.c:815 ++#, c-format ++msgid "symbol `%.*s' not in charmap" ++msgstr "`%.*s' sembolü CHARMAP içinde değil" ++ ++#: locale/programs/linereader.c:836 ++#, c-format ++msgid "symbol `%.*s' not in repertoire map" ++msgstr "`%.*s' sembolü repertuar eşlem içinde değil" ++ ++#: locale/programs/locale.c:73 ++msgid "System information:" ++msgstr "Sistem bilgileri:" ++ ++#: locale/programs/locale.c:75 ++msgid "Write names of available locales" ++msgstr "Mevcut yerellerin isimlerini yazar" ++ ++#: locale/programs/locale.c:77 ++msgid "Write names of available charmaps" ++msgstr "Mevcut karakter eşlemlerin isimlerini yazar" ++ ++#: locale/programs/locale.c:78 ++msgid "Modify output format:" ++msgstr "Değiştirme çıktı biçemi:" ++ ++#: locale/programs/locale.c:79 ++msgid "Write names of selected categories" ++msgstr "Seçilmiş kategorilerin isimlerini yazar" ++ ++#: locale/programs/locale.c:80 ++msgid "Write names of selected keywords" ++msgstr "Seçilmiş anahtar kelimelerin isimlerini yazar" ++ ++#: locale/programs/locale.c:81 ++msgid "Print more information" ++msgstr "Daha fazla ileti basar" ++ ++#: locale/programs/locale.c:86 ++msgid "" ++"Get locale-specific information. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Yerele özgü bilgileri gösterir.\n" ++"Yazılım hatalarını bildirme işlemleri için,\n" ++" adresine bakınız.\n" ++"Çeviri hatalarını adresine bildiriniz.\n" ++ ++#: locale/programs/locale.c:91 ++msgid "" ++"NAME\n" ++"[-a|-m]" ++msgstr "" ++"İSİM\n" ++"[-a|-m]" ++ ++#: locale/programs/locale.c:192 ++#, c-format ++msgid "Cannot set LC_CTYPE to default locale" ++msgstr "LC_CTYPE değişkenine öntanımlı yerel atanamaz" ++ ++#: locale/programs/locale.c:194 ++#, c-format ++msgid "Cannot set LC_MESSAGES to default locale" ++msgstr "LC_MESSAGES değişkenine öntanımlı yerel atanamaz" ++ ++#: locale/programs/locale.c:207 ++#, c-format ++msgid "Cannot set LC_COLLATE to default locale" ++msgstr "LC_COLLATE değişkenine öntanımlı yerel atanamaz" ++ ++#: locale/programs/locale.c:223 ++#, c-format ++msgid "Cannot set LC_ALL to default locale" ++msgstr "LC_ALL değişkenine öntanımlı yerel atanamaz" ++ ++#: locale/programs/locale.c:499 ++#, c-format ++msgid "while preparing output" ++msgstr "çıktıyı hazırlarken" ++ ++#: locale/programs/localedef.c:119 ++msgid "Input Files:" ++msgstr "Girdi Dosyaları:" ++ ++#: locale/programs/localedef.c:121 ++msgid "Symbolic character names defined in FILE" ++msgstr "Sembolik karakter isimleri DOSYA dosyasında atandı" ++ ++#: locale/programs/localedef.c:122 ++msgid "Source definitions are found in FILE" ++msgstr "Kaynak tanımları DOSYA da bulunur" ++ ++#: locale/programs/localedef.c:124 ++msgid "FILE contains mapping from symbolic names to UCS4 values" ++msgstr "DOSYA sembolik isimlerden UCS4 değerlere eşlemler içerir" ++ ++#: locale/programs/localedef.c:128 ++msgid "Create output even if warning messages were issued" ++msgstr "Uyarı iletileri yayınlansa bile çıktı dosyasını oluşturur" ++ ++#: locale/programs/localedef.c:129 ++msgid "Create old-style tables" ++msgstr "Eski tarz tablolar oluşturur" ++ ++#: locale/programs/localedef.c:130 ++msgid "Optional output file prefix" ++msgstr "Çıktı dosyası öneki isteğe bağlı" ++ ++#: locale/programs/localedef.c:131 ++msgid "Be strictly POSIX conform" ++msgstr "Kesinlikle POSIX-uygun olur" ++ ++#: locale/programs/localedef.c:133 ++msgid "Suppress warnings and information messages" ++msgstr "Uyarıları ve bilgilendirme iletilerini bastırır" ++ ++#: locale/programs/localedef.c:134 ++msgid "Print more messages" ++msgstr "Daha fazla ileti basar" ++ ++#: locale/programs/localedef.c:135 ++msgid "Archive control:" ++msgstr "Arşiv denetimi:" ++ ++#: locale/programs/localedef.c:137 ++msgid "Don't add new data to archive" ++msgstr "Arşive yeni veri eklenmez" ++ ++#: locale/programs/localedef.c:139 ++msgid "Add locales named by parameters to archive" ++msgstr "Parametrelerde isimleri belirtilen yerelleri arşive ekler" ++ ++#: locale/programs/localedef.c:140 ++msgid "Replace existing archive content" ++msgstr "Mevcut arşiv içeriğiyle değiştirilir " ++ ++#: locale/programs/localedef.c:142 ++msgid "Remove locales named by parameters from archive" ++msgstr "Parametrelerde isimleri belirtilen yerelleri arşivden siler" ++ ++#: locale/programs/localedef.c:143 ++msgid "List content of archive" ++msgstr "Arşivin içindekiler" ++ ++#: locale/programs/localedef.c:145 ++msgid "locale.alias file to consult when making archive" ++msgstr "arşiv oluşturulurken başvurulacak locale.alias dosyası" ++ ++#: locale/programs/localedef.c:150 ++msgid "Compile locale specification" ++msgstr "Dil karakteristiklerini derler" ++ ++#: locale/programs/localedef.c:153 ++msgid "" ++"NAME\n" ++"[--add-to-archive|--delete-from-archive] FILE...\n" ++"--list-archive [FILE]" ++msgstr "" ++"İSİM\n" ++"[--add-to-archive|--delete-from-archive] DOSYA...\n" ++"--list-archive [DOSYA]" ++ ++#: locale/programs/localedef.c:231 ++#, c-format ++msgid "cannot create directory for output files" ++msgstr "çıktı dosyaları için dizin oluşturulamıyor" ++ ++#: locale/programs/localedef.c:242 ++#, c-format ++msgid "FATAL: system does not define `_POSIX2_LOCALEDEF'" ++msgstr "ÖLÜMCÜL: sistem `_POSIX2_LOCALEDEF' atamıyor" ++ ++#: locale/programs/localedef.c:256 locale/programs/localedef.c:272 ++#: locale/programs/localedef.c:598 locale/programs/localedef.c:618 ++#, c-format ++msgid "cannot open locale definition file `%s'" ++msgstr "Dil karakteristikleri tanımlama dosyası `%s' açılamıyor" ++ ++#: locale/programs/localedef.c:284 ++#, c-format ++msgid "cannot write output files to `%s'" ++msgstr "çıktı dosyaları `%s' dizinine yazılamıyor" ++ ++#: locale/programs/localedef.c:365 ++#, c-format ++msgid "" ++"System's directory for character maps : %s\n" ++" repertoire maps: %s\n" ++" locale path : %s\n" ++"%s" ++msgstr "" ++"Karakter eşlemler için sistem dizini: %s\n" ++" Repertuvar eşlemler: %s\n" ++" Dil karakteristikleri dizini: %s\n" ++"%s" ++ ++#: locale/programs/localedef.c:566 ++#, c-format ++msgid "circular dependencies between locale definitions" ++msgstr "Dil karakteristikleri tanımları arasında bağımlılıklar kısır döngülü" ++ ++#: locale/programs/localedef.c:572 ++#, c-format ++msgid "cannot add already read locale `%s' a second time" ++msgstr "Zaten okunan `%s' dil karakteristikleri ikinci bir kez eklenemez" ++ ++#: locale/programs/locarchive.c:87 locale/programs/locarchive.c:256 ++#, c-format ++msgid "cannot create temporary file" ++msgstr "geçici dosya oluşturulamıyor" ++ ++#: locale/programs/locarchive.c:116 locale/programs/locarchive.c:302 ++#, c-format ++msgid "cannot initialize archive file" ++msgstr "arşiv dosyası ilklendirilemiyor" ++ ++#: locale/programs/locarchive.c:123 locale/programs/locarchive.c:309 ++#, c-format ++msgid "cannot resize archive file" ++msgstr "arşiv dosyasının boyutu değiştirilemiyor" ++ ++#: locale/programs/locarchive.c:132 locale/programs/locarchive.c:318 ++#: locale/programs/locarchive.c:506 ++#, c-format ++msgid "cannot map archive header" ++msgstr "arşiv başlığı eşlenemiyor" ++ ++#: locale/programs/locarchive.c:154 ++#, c-format ++msgid "failed to create new locale archive" ++msgstr "yeni yerel arşivi oluşturulamadı" ++ ++#: locale/programs/locarchive.c:166 ++#, c-format ++msgid "cannot change mode of new locale archive" ++msgstr "yeni yerel arşivinin kipi değiştirilemiyor" ++ ++#: locale/programs/locarchive.c:250 ++#, c-format ++msgid "cannot map locale archive file" ++msgstr "yerel arşiv dosyası eşlenemiyor" ++ ++#: locale/programs/locarchive.c:326 ++#, c-format ++msgid "cannot lock new archive" ++msgstr "yeni arşiv kilitlenemiyor" ++ ++#: locale/programs/locarchive.c:375 ++#, c-format ++msgid "cannot extend locale archive file" ++msgstr "yerel arşiv dosyası genişletilemiyor" ++ ++#: locale/programs/locarchive.c:384 ++#, c-format ++msgid "cannot change mode of resized locale archive" ++msgstr "boyutu değiştirilen yerel arşivin kipi değiştirilemiyor" ++ ++#: locale/programs/locarchive.c:392 ++#, c-format ++msgid "cannot rename new archive" ++msgstr "yeni arşivin ismi değiştirilemiyor" ++ ++#: locale/programs/locarchive.c:445 ++#, c-format ++msgid "cannot open locale archive \"%s\"" ++msgstr "yerel arşiv `%s' açılamıyor" ++ ++#: locale/programs/locarchive.c:450 ++#, c-format ++msgid "cannot stat locale archive \"%s\"" ++msgstr "\"%s\" yerel arşivi durumlanamıyor" ++ ++#: locale/programs/locarchive.c:469 ++#, c-format ++msgid "cannot lock locale archive \"%s\"" ++msgstr "\"%s\" yerel arşivi kilitlenemiyor" ++ ++#: locale/programs/locarchive.c:492 ++#, c-format ++msgid "cannot read archive header" ++msgstr "arşiv başlığı okunamıyor" ++ ++#: locale/programs/locarchive.c:552 ++#, c-format ++msgid "locale '%s' already exists" ++msgstr "`%s' yereli zaten var" ++ ++#: locale/programs/locarchive.c:783 locale/programs/locarchive.c:798 ++#: locale/programs/locarchive.c:810 locale/programs/locarchive.c:822 ++#: locale/programs/locfile.c:343 ++#, c-format ++msgid "cannot add to locale archive" ++msgstr "yerel arşive ekleme yapılamıyor" ++ ++#: locale/programs/locarchive.c:977 ++#, c-format ++msgid "locale alias file `%s' not found" ++msgstr "`%s' yerel isim dosyası bulunamadı" ++ ++#: locale/programs/locarchive.c:1121 ++#, c-format ++msgid "Adding %s\n" ++msgstr "%s ekleniyor\n" ++ ++#: locale/programs/locarchive.c:1127 ++#, c-format ++msgid "stat of \"%s\" failed: %s: ignored" ++msgstr "\"%s\" durumlaması başarısız: %s: yoksayıldı" ++ ++#: locale/programs/locarchive.c:1133 ++#, c-format ++msgid "\"%s\" is no directory; ignored" ++msgstr "\"%s\" dizinsiz; yoksayıldı" ++ ++#: locale/programs/locarchive.c:1140 ++#, c-format ++msgid "cannot open directory \"%s\": %s: ignored" ++msgstr "\"%s\" dizini açılamıyor: %s: yoksayıldı" ++ ++#: locale/programs/locarchive.c:1212 ++#, c-format ++msgid "incomplete set of locale files in \"%s\"" ++msgstr "\"%s\" içindeki yerel dosyaları kümesi tamamlanmamış" ++ ++#: locale/programs/locarchive.c:1276 ++#, c-format ++msgid "cannot read all files in \"%s\": ignored" ++msgstr "\"%s\" içindeki hiçbir dosya okunamıyor: yoksayıldı" ++ ++#: locale/programs/locarchive.c:1346 ++#, c-format ++msgid "locale \"%s\" not in archive" ++msgstr "\"%s\" yeri arşivde değil" ++ ++#: locale/programs/locfile.c:131 ++#, c-format ++msgid "argument to `%s' must be a single character" ++msgstr "%s'in argümanı bir tek karakter olmalı" ++ ++#: locale/programs/locfile.c:251 ++msgid "syntax error: not inside a locale definition section" ++msgstr "sözdizimi hatası: bir yerel tanımlama bölümü içinde değil" ++ ++#: locale/programs/locfile.c:625 ++#, c-format ++msgid "cannot open output file `%s' for category `%s'" ++msgstr "çıktı dosyası `%s' açılamadı; `%s' kategorisi için." ++ ++#: locale/programs/locfile.c:649 ++#, c-format ++msgid "failure while writing data for category `%s'" ++msgstr "`%s' kategorisi için veri yazılırken hata oluştu" ++ ++#: locale/programs/locfile.c:745 ++#, c-format ++msgid "cannot create output file `%s' for category `%s'" ++msgstr "çıktı dosyası `%s' `%s' kategorisi için oluşturulamıyor" ++ ++#: locale/programs/locfile.c:781 ++msgid "expect string argument for `copy'" ++msgstr "`copy' için dizge argüman gerekli" ++ ++#: locale/programs/locfile.c:785 ++msgid "locale name should consist only of portable characters" ++msgstr "yer isimlerinin karakterleri ascii 127 içinden seçilmiş olmalı" ++ ++#: locale/programs/locfile.c:804 ++msgid "no other keyword shall be specified when `copy' is used" ++msgstr "`copy' kullanıldığında belirtilmiş olacak diğer anahtar kelime yok" ++ ++#: locale/programs/repertoire.c:229 locale/programs/repertoire.c:270 ++#: locale/programs/repertoire.c:295 ++#, c-format ++msgid "syntax error in repertoire map definition: %s" ++msgstr "repertuar eşlem tanımı içinde sözdizimi hatası: %s" ++ ++#: locale/programs/repertoire.c:271 ++msgid "no or value given" ++msgstr " ya da değeri verilmeliydi" ++ ++#: locale/programs/repertoire.c:331 ++#, c-format ++msgid "cannot save new repertoire map" ++msgstr "yeni repertuvar eşlemi kaydedilemiyor" ++ ++#: locale/programs/repertoire.c:342 ++#, c-format ++msgid "repertoire map file `%s' not found" ++msgstr "`%s' repertuar eşlem dosyası bulunamadı" ++ ++#: locale/programs/repertoire.c:449 ++#, c-format ++msgid "<%s> and <%s> are invalid names for range" ++msgstr "<%s> ve <%s> kapsam için geçersiz isimler" ++ ++#: locale/programs/repertoire.c:456 ++msgid "upper limit in range is not smaller then lower limit" ++msgstr "kapsamdaki üst sınır alt sınırdan küçük değil" ++ ++#: login/programs/pt_chown.c:74 ++#, c-format ++msgid "Set the owner, group and access permission of the slave pseudo terminal corresponding to the master pseudo terminal passed on file descriptor `%d'. This is the helper program for the `grantpt' function. It is not intended to be run directly from the command line.\n" ++msgstr "Dosya tanıtıcı `%d' üzerinden aktarılan asıl sözde uçbirime karşılık olan yardımcı sözde uçbirimin kullanıcı, grup ve erişim izinlerini atar. `grantpt' işlevine yardımcı bir program olup doğrudan komut satırından kullanmak için tasarlanmamıştır.\n" ++ ++#: login/programs/pt_chown.c:84 ++#, c-format ++msgid "" ++"The owner is set to the current user, the group is set to `%s', and the access permission is set to `%o'.\n" ++"\n" ++"%s" ++msgstr "" ++"Sahibi şu an ki kullanıcı, grubu `%s' yapıldı ve erişim izinleri `%o' olarak ayarlandı.\n" ++"\n" ++"%s" ++ ++#: login/programs/pt_chown.c:161 ++#, c-format ++msgid "too many arguments" ++msgstr "çok fazla argüman var" ++ ++#: login/programs/pt_chown.c:169 ++#, c-format ++msgid "needs to be installed setuid `root'" ++msgstr "setuid `root' olarak kurulu olması gerekir" ++ ++#: malloc/mcheck.c:324 ++msgid "memory is consistent, library is buggy\n" ++msgstr "bellek tutarlı, kitaplık hatalı\n" ++ ++#: malloc/mcheck.c:327 ++msgid "memory clobbered before allocated block\n" ++msgstr "bellek ayrılmış bloğun öncesine taştı\n" ++ ++#: malloc/mcheck.c:330 ++msgid "memory clobbered past end of allocated block\n" ++msgstr "bellek ayrılmış bloğun sonrasına taştı\n" ++ ++#: malloc/mcheck.c:333 ++msgid "block freed twice\n" ++msgstr "blok iki kere serbest bırakıldı\n" ++ ++#: malloc/mcheck.c:336 ++msgid "bogus mcheck_status, library is buggy\n" ++msgstr "mcheck_status sahte, kitaplık hatalı\n" ++ ++#: malloc/memusage.sh:27 ++msgid "Try `memusage --help' for more information." ++msgstr "Daha fazla bilgi için `memusage --help' yazınız." ++ ++#: malloc/memusage.sh:33 ++msgid "memusage: option `$1' requires an argument" ++msgstr "memusage: `$1' seçeneği bir argümanla kullanılır" ++ ++#: malloc/memusage.sh:39 ++msgid "" ++"Usage: memusage [OPTION]... PROGRAM [PROGRAMOPTION]...\n" ++"Profile memory usage of PROGRAM.\n" ++"\n" ++" -n,--progname=NAME Name of the program file to profile\n" ++" -p,--png=FILE Generate PNG graphic and store it in FILE\n" ++" -d,--data=FILE Generate binary data file and store it in FILE\n" ++" -u,--unbuffered Don't buffer output\n" ++" -b,--buffer=SIZE Collect SIZE entries before writing them out\n" ++" --no-timer Don't collect additional information though timer\n" ++" -m,--mmap Also trace mmap & friends\n" ++"\n" ++" -?,--help Print this help and exit\n" ++" --usage Give a short usage message\n" ++" -V,--version Print version information and exit\n" ++"\n" ++" The following options only apply when generating graphical output:\n" ++" -t,--time-based Make graph linear in time\n" ++" -T,--total Also draw graph of total memory use\n" ++" --title=STRING Use STRING as title of the graph\n" ++" -x,--x-size=SIZE Make graphic SIZE pixels wide\n" ++" -y,--y-size=SIZE Make graphic SIZE pixels high\n" ++"\n" ++"Mandatory arguments to long options are also mandatory for any corresponding\n" ++"short options.\n" ++"\n" ++"For bug reporting instructions, please see:\n" ++"." ++msgstr "" ++"Kullanımı: memusage [SEÇENEK]... PROGRAM [PROGRAMSEÇENEĞİ]...\n" ++"PROGRAMın bellek kullanım porofilini çıkarır.\n" ++"\n" ++" -n,--progname=İSİM profili çıkarılacak programın ismi\n" ++" -p,--png=DOSYA PNG üretir ve DOSYAya yazar\n" ++" -d,--data=DOSYA ikil veri dosyası üretir ve DOSYAya yazar\n" ++" -u,--unbuffered tamponlama yapmaz\n" ++" -b,--buffer=BOYUT yazmak için önce BOYUT girdiyi toplar\n" ++" --no-timer zamanlayıcıya rağmen ek bilgi toplamaz\n" ++" -m,--mmap ayrıca mmap ve şürekasını da izler\n" ++"\n" ++" -?,--help bu yardım metnini basar ve çıkar\n" ++" --usage kısa bir kullanım iletisi basar\n" ++" -V,--version sürüm bilgilerini basar ve çıkar\n" ++"\n" ++" Aşağıdaki seçenekler sadece çizgesel çıktı üretilirken işe yarar:\n" ++" -t,--time-based zamanda düzgün doğrusal çizge çıkarır\n" ++" -T,--total ayrıca toplam bellek kullanımı çizgesini çıkarır\n" ++" --title=DİZGE DİZGEyi çizge başlığı yapar\n" ++" -x,--x-size=BOYUT çizgeyi BOYUT benek genişlikte çizer\n" ++" -y,--y-size=BOYUT çizgeyi BOYUT benek yükseklikte çizer\n" ++"\n" ++"Uzun seçenekler için zorunlu olan nitelikler kısa seçenekler için de\n" ++"zonrunludur.\n" ++"\n" ++"Yazılım hatalarını bildirme işlemleri için,\n" ++" adresine bakınız.\n" ++"Çeviri hatalarını adresine bildiriniz." + +-#. TRANS No memory available. The system cannot allocate more virtual memory +-#. TRANS because its capacity is full. +-#: stdio-common/../sysdeps/gnu/errlist.c:140 +-msgid "Cannot allocate memory" +-msgstr "Bellek ayrılamadı" ++#: malloc/memusage.sh:90 ++msgid "" ++"Syntax: memusage [--data=FILE] [--progname=NAME] [--png=FILE] [--unbuffered]\n" ++" [--buffer=SIZE] [--no-timer] [--time-based] [--total]\n" ++" [--title=STRING] [--x-size=SIZE] [--y-size=SIZE]\n" ++" PROGRAM [PROGRAMOPTION]..." ++msgstr "" ++"Sözdizimi: memusage [--data=DOSYA] [--progname=İSİM] [--png=DOSYA] \\\n" ++" [--unbuffered] [--buffer=BOYUT] [--no-timer] [--time-based] \\\n" ++" [--total] [--title=DİZGE] [--x-size=BOYUT] [--y-size=BOYUT] \\\n" ++" PROGRAM [PROGRAMSEÇENEĞİ]..." ++ ++#: malloc/memusage.sh:182 ++msgid "memusage: option `${1##*=}' is ambiguous" ++msgstr "memusage: `${1##*=}' seçeneği burada belirsiz" ++ ++#: malloc/memusage.sh:191 ++msgid "memusage: unrecognized option `$1'" ++msgstr "memusage: tanınmayan seçenek `$1'" ++ ++#: malloc/memusage.sh:204 ++msgid "No program name given" ++msgstr "Program ismi verilmemiş" ++ ++#: malloc/memusagestat.c:53 ++msgid "Name output file" ++msgstr "İsim çıktı dosyası" ++ ++#: malloc/memusagestat.c:54 ++msgid "Title string used in output graphic" ++msgstr "Çıktı grafiğinde kullanılan başlık dizgesi" ++ ++#: malloc/memusagestat.c:55 ++msgid "Generate output linear to time (default is linear to number of function calls)" ++msgstr "" ++"Zamanla düzgün değişen çıktı üretilir. \n" ++"(işlev çağrılarının sayısıyla düzgün değişen çıktı üretimi öntanımlıdır)" ++ ++#: malloc/memusagestat.c:57 ++msgid "Also draw graph for total memory consumption" ++msgstr "Üstelik toplam bellek tüketimi grafiğini çizerken" ++ ++#: malloc/memusagestat.c:58 ++msgid "make output graphic VALUE pixel wide" ++msgstr "çıktı grafik DEĞERini piksel genişliği yapar" ++ ++#: malloc/memusagestat.c:59 ++msgid "make output graphic VALUE pixel high" ++msgstr "çıktı grafik DEĞERini piksel yüksekliği yapar" ++ ++#: malloc/memusagestat.c:64 ++msgid "Generate graphic from memory profiling data" ++msgstr "Bellek profili verisinden grafik üretir" ++ ++#: malloc/memusagestat.c:67 ++msgid "DATAFILE [OUTFILE]" ++msgstr "VERİDOSYASI [ÇIKTIDOSYASI]" ++ ++#: misc/error.c:118 timezone/zic.c:396 ++msgid "Unknown system error" ++msgstr "Bilinmeyen sistem hatası" ++ ++#: nis/nis_callback.c:189 ++msgid "unable to free arguments" ++msgstr "argümanlar serbest bırakılamadı" ++ ++#: nis/nis_error.h:1 nis/ypclnt.c:822 nis/ypclnt.c:910 posix/regcomp.c:132 ++#: sysdeps/gnu/errlist.c:20 ++msgid "Success" ++msgstr "Başarılı" ++ ++#: nis/nis_error.h:2 ++msgid "Probable success" ++msgstr "Büyük olasılıkla iyi" ++ ++#: nis/nis_error.h:3 ++msgid "Not found" ++msgstr "Bulunamadı" ++ ++#: nis/nis_error.h:4 ++msgid "Probably not found" ++msgstr "Galiba bulunamadı" ++ ++#: nis/nis_error.h:5 ++msgid "Cache expired" ++msgstr "Arabellek zaman aşımı" ++ ++#: nis/nis_error.h:6 ++msgid "NIS+ servers unreachable" ++msgstr "NIS+ sunucuları erişilemez durumda" ++ ++#: nis/nis_error.h:7 ++msgid "Unknown object" ++msgstr "Bilinmeyen nesne" ++ ++#: nis/nis_error.h:8 ++msgid "Server busy, try again" ++msgstr "Sunucu meşgul, tekrar deneyin" ++ ++#: nis/nis_error.h:9 ++msgid "Generic system error" ++msgstr "Genel sistem hatası" ++ ++#: nis/nis_error.h:10 ++msgid "First/next chain broken" ++msgstr "İlk/sonraki zinciri kopuk" + + #. TRANS Permission denied; the file permissions do not allow the attempted operation. +-#: stdio-common/../sysdeps/gnu/errlist.c:149 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:43 +-#: nis/nis_error.c:39 nis/ypclnt.c:808 ++#: nis/nis_error.h:11 nis/ypclnt.c:867 sysdeps/gnu/errlist.c:157 + msgid "Permission denied" + msgstr "Erişim engellendi" + +-#. TRANS Bad address; an invalid pointer was detected. +-#. TRANS In the GNU system, this error never happens; you get a signal instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:159 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:44 +-msgid "Bad address" +-msgstr "Adres hatalı" ++#: nis/nis_error.h:12 ++msgid "Not owner" ++msgstr "Sahibi değil" + +-#. TRANS A file that isn't a block special file was given in a situation that +-#. TRANS requires one. For example, trying to mount an ordinary file as a file +-#. TRANS system in Unix gives this error. +-#: stdio-common/../sysdeps/gnu/errlist.c:170 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:45 +-msgid "Block device required" +-msgstr "Blok aygıtı gerekli" ++#: nis/nis_error.h:13 ++msgid "Name not served by this server" ++msgstr "Bu sunucu tarafından isim sunulmadı" + +-#. TRANS Resource busy; a system resource that can't be shared is already in use. +-#. TRANS For example, if you try to delete a file that is the root of a currently +-#. TRANS mounted filesystem, you get this error. +-#: stdio-common/../sysdeps/gnu/errlist.c:181 +-msgid "Device or resource busy" +-msgstr "Aygıt ya da özkaynak meşgul" ++#: nis/nis_error.h:14 ++msgid "Server out of memory" ++msgstr "Sunucuda bellek yetersiz" + +-#. TRANS File exists; an existing file was specified in a context where it only +-#. TRANS makes sense to specify a new file. +-#: stdio-common/../sysdeps/gnu/errlist.c:191 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:47 +-msgid "File exists" +-msgstr "Dosya var" ++#: nis/nis_error.h:15 ++msgid "Object with same name exists" ++msgstr "Aynı isimde nesne var" + +-#. TRANS An attempt to make an improper link across file systems was detected. +-#. TRANS This happens not only when you use @code{link} (@pxref{Hard Links}) but +-#. TRANS also when you rename a file with @code{rename} (@pxref{Renaming Files}). +-#: stdio-common/../sysdeps/gnu/errlist.c:202 +-msgid "Invalid cross-device link" +-msgstr "Karşı aygıta bağ geçersiz" ++#: nis/nis_error.h:16 ++msgid "Not master server for this domain" ++msgstr "Bu saha için ana sunucu değil" + +-#. TRANS The wrong type of device was given to a function that expects a +-#. TRANS particular sort of device. +-#: stdio-common/../sysdeps/gnu/errlist.c:212 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:49 +-msgid "No such device" +-msgstr "Böyle bir aygıt yok" ++#: nis/nis_error.h:17 ++msgid "Invalid object for operation" ++msgstr "İşlem için nesne geçersiz" + +-#. TRANS A file that isn't a directory was specified when a directory is required. +-#: stdio-common/../sysdeps/gnu/errlist.c:221 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:50 +-msgid "Not a directory" +-msgstr "Bir dizin değil" ++#: nis/nis_error.h:18 ++msgid "Malformed name, or illegal name" ++msgstr "Bozulmuş ya da kuraldışı isim" + +-#. TRANS File is a directory; you cannot open a directory for writing, +-#. TRANS or create or remove hard links to it. +-#: stdio-common/../sysdeps/gnu/errlist.c:231 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:51 +-msgid "Is a directory" +-msgstr "Bir dizin" ++#: nis/nis_error.h:19 ++msgid "Unable to create callback" ++msgstr "Geriye başvuru oluşturulamadı" + +-#. TRANS Invalid argument. This is used to indicate various kinds of problems +-#. TRANS with passing the wrong argument to a library function. +-#: stdio-common/../sysdeps/gnu/errlist.c:241 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:52 +-msgid "Invalid argument" +-msgstr "Geçersiz argüman" ++#: nis/nis_error.h:20 ++msgid "Results sent to callback proc" ++msgstr "Sonuçlar geri başvuru işlevine gönderildi" + +-#. TRANS The current process has too many files open and can't open any more. +-#. TRANS Duplicate descriptors do count toward this limit. +-#. TRANS +-#. TRANS In BSD and GNU, the number of open files is controlled by a resource +-#. TRANS limit that can usually be increased. If you get this error, you might +-#. TRANS want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited; +-#. TRANS @pxref{Limits on Resources}. +-#: stdio-common/../sysdeps/gnu/errlist.c:256 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:54 +-msgid "Too many open files" +-msgstr "Çok fazla açık dosya var" ++#: nis/nis_error.h:21 ++msgid "Not found, no such name" ++msgstr "Bulunamadı, böyle bir isim yok" + +-#. TRANS There are too many distinct file openings in the entire system. Note +-#. TRANS that any number of linked channels count as just one file opening; see +-#. TRANS @ref{Linked Channels}. This error never occurs in the GNU system. +-#: stdio-common/../sysdeps/gnu/errlist.c:267 +-msgid "Too many open files in system" +-msgstr "Sistemde çok fazla açık dosya var" ++#: nis/nis_error.h:22 ++msgid "Name/entry isn't unique" ++msgstr "İsim/giriş eşsiz değil" + +-#. TRANS Inappropriate I/O control operation, such as trying to set terminal +-#. TRANS modes on an ordinary file. +-#: stdio-common/../sysdeps/gnu/errlist.c:277 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:55 +-msgid "Inappropriate ioctl for device" +-msgstr "Aygıt için G/Ç kontrol işlemi uygun değil" ++#: nis/nis_error.h:23 ++msgid "Modification failed" ++msgstr "Değişiklik başarısız" + +-#. TRANS An attempt to execute a file that is currently open for writing, or +-#. TRANS write to a file that is currently being executed. Often using a +-#. TRANS debugger to run a program is considered having it open for writing and +-#. TRANS will cause this error. (The name stands for ``text file busy''.) This +-#. TRANS is not an error in the GNU system; the text is copied as necessary. +-#: stdio-common/../sysdeps/gnu/errlist.c:290 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:56 +-msgid "Text file busy" +-msgstr "Metin dosyası meşgul" ++#: nis/nis_error.h:24 ++msgid "Database for table does not exist" ++msgstr "Tablo için veritabanı yok" + +-#. TRANS File too big; the size of a file would be larger than allowed by the system. +-#: stdio-common/../sysdeps/gnu/errlist.c:299 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:57 +-msgid "File too large" +-msgstr "Dosya çok büyük" ++#: nis/nis_error.h:25 ++msgid "Entry/table type mismatch" ++msgstr "Girdi/tablo türleri uyumsuz" + +-#. TRANS No space left on device; write operation on a file failed because the +-#. TRANS disk is full. +-#: stdio-common/../sysdeps/gnu/errlist.c:309 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:58 +-msgid "No space left on device" +-msgstr "Aygıt üzerinde boş yer yok" ++#: nis/nis_error.h:26 ++msgid "Link points to illegal name" ++msgstr "Kuraldışı isme bağ" + +-#. TRANS Invalid seek operation (such as on a pipe). +-#: stdio-common/../sysdeps/gnu/errlist.c:318 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:59 +-msgid "Illegal seek" +-msgstr "Arama kuraldışı" ++#: nis/nis_error.h:27 ++msgid "Partial success" ++msgstr "Kısmen iyi" + +-#. TRANS An attempt was made to modify something on a read-only file system. +-#: stdio-common/../sysdeps/gnu/errlist.c:327 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:60 +-msgid "Read-only file system" +-msgstr "Salt-okunur dosya sistemi" ++#: nis/nis_error.h:28 ++msgid "Too many attributes" ++msgstr "Çok fazla argüman" + +-#. TRANS Too many links; the link count of a single file would become too large. +-#. TRANS @code{rename} can cause this error if the file being renamed already has +-#. TRANS as many links as it can take (@pxref{Renaming Files}). +-#: stdio-common/../sysdeps/gnu/errlist.c:338 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:61 +-msgid "Too many links" +-msgstr "Çok fazla bağ var" ++#: nis/nis_error.h:29 ++msgid "Error in RPC subsystem" ++msgstr "RPC alt sisteminde hata" + +-#. TRANS Domain error; used by mathematical functions when an argument value does +-#. TRANS not fall into the domain over which the function is defined. +-#: stdio-common/../sysdeps/gnu/errlist.c:361 +-msgid "Numerical argument out of domain" +-msgstr "Sayısal argüman saha dışı" ++#: nis/nis_error.h:30 ++msgid "Missing or malformed attribute" ++msgstr "Kayıp ya da bozulmuş öznitelik" + +-#. TRANS Range error; used by mathematical functions when the result value is +-#. TRANS not representable because of overflow or underflow. +-#: stdio-common/../sysdeps/gnu/errlist.c:371 +-msgid "Numerical result out of range" +-msgstr "Sayısal sonuç kapsam dışı" ++#: nis/nis_error.h:31 ++msgid "Named object is not searchable" ++msgstr "İsimli nesne araştırılabilir değil" + +-#. TRANS Resource temporarily unavailable; the call might work if you try again +-#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN}; +-#. TRANS they are always the same in the GNU C library. +-#. TRANS +-#. TRANS This error can happen in a few different situations: +-#. TRANS +-#. TRANS @itemize @bullet +-#. TRANS @item +-#. TRANS An operation that would block was attempted on an object that has +-#. TRANS non-blocking mode selected. Trying the same operation again will block +-#. TRANS until some external condition makes it possible to read, write, or +-#. TRANS connect (whatever the operation). You can use @code{select} to find out +-#. TRANS when the operation will be possible; @pxref{Waiting for I/O}. +-#. TRANS +-#. TRANS @strong{Portability Note:} In many older Unix systems, this condition +-#. TRANS was indicated by @code{EWOULDBLOCK}, which was a distinct error code +-#. TRANS different from @code{EAGAIN}. To make your program portable, you should +-#. TRANS check for both codes and treat them the same. +-#. TRANS +-#. TRANS @item +-#. TRANS A temporary resource shortage made an operation impossible. @code{fork} +-#. TRANS can return this error. It indicates that the shortage is expected to +-#. TRANS pass, so your program can try the call again later and it may succeed. +-#. TRANS It is probably a good idea to delay for a few seconds before trying it +-#. TRANS again, to allow time for other processes to release scarce resources. +-#. TRANS Such shortages are usually fairly serious and affect the whole system, +-#. TRANS so usually an interactive program should report the error to the user +-#. TRANS and return to its command loop. +-#. TRANS @end itemize +-#: stdio-common/../sysdeps/gnu/errlist.c:408 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:41 +-msgid "Resource temporarily unavailable" +-msgstr "Özkaynak geçici olarak kullanılamaz durumda" ++#: nis/nis_error.h:32 ++msgid "Error while talking to callback proc" ++msgstr "callback proc haberleşme hatası" ++ ++#: nis/nis_error.h:33 ++msgid "Non NIS+ namespace encountered" ++msgstr "NIS+ olmayan isim alanı ile karşılaşıldı" ++ ++#: nis/nis_error.h:34 ++msgid "Illegal object type for operation" ++msgstr "İşlem için nesne türü kuraldışı" + +-#. TRANS In the GNU C library, this is another name for @code{EAGAIN} (above). +-#. TRANS The values are always the same, on every operating system. +-#. TRANS +-#. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a +-#. TRANS separate error code. +-#: stdio-common/../sysdeps/gnu/errlist.c:421 +-msgid "Operation would block" +-msgstr "İşlem bloklanacaktı" ++#: nis/nis_error.h:35 ++msgid "Passed object is not the same object on server" ++msgstr "Geçen nesne sunucudaki aynı nesne değil" + +-#. TRANS An operation that cannot complete immediately was initiated on an object +-#. TRANS that has non-blocking mode selected. Some functions that must always +-#. TRANS block (such as @code{connect}; @pxref{Connecting}) never return +-#. TRANS @code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that +-#. TRANS the operation has begun and will take some time. Attempts to manipulate +-#. TRANS the object before the call completes return @code{EALREADY}. You can +-#. TRANS use the @code{select} function to find out when the pending operation +-#. TRANS has completed; @pxref{Waiting for I/O}. +-#: stdio-common/../sysdeps/gnu/errlist.c:437 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:180 +-msgid "Operation now in progress" +-msgstr "İşlem şimdi süreç içinde" ++#: nis/nis_error.h:36 ++msgid "Modify operation failed" ++msgstr "Değiştirme işlemi başarısız oldu" + +-#. TRANS An operation is already in progress on an object that has non-blocking +-#. TRANS mode selected. +-#: stdio-common/../sysdeps/gnu/errlist.c:447 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:179 +-msgid "Operation already in progress" +-msgstr "İşlem zaten süreç dahilinde" ++#: nis/nis_error.h:37 ++msgid "Query illegal for named table" ++msgstr "named tablosu için sorgu kuraldışı" + +-#. TRANS A file that isn't a socket was specified when a socket is required. +-#: stdio-common/../sysdeps/gnu/errlist.c:456 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:125 +-msgid "Socket operation on non-socket" +-msgstr "Soket işlemi bir sokette değil" ++#: nis/nis_error.h:38 ++msgid "Attempt to remove a non-empty table" ++msgstr "Bir boş tabloyu silme gayreti" + +-#. TRANS The size of a message sent on a socket was larger than the supported +-#. TRANS maximum size. +-#: stdio-common/../sysdeps/gnu/errlist.c:466 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:127 +-msgid "Message too long" +-msgstr "İleti aktarım için çok uzun" ++#: nis/nis_error.h:39 ++msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" ++msgstr "NIS+ soğuk başlatma dosyasına erişim hatası. NIS+ kurulu mu?" + +-#. TRANS The socket type does not support the requested communications protocol. +-#: stdio-common/../sysdeps/gnu/errlist.c:475 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:128 +-msgid "Protocol wrong type for socket" +-msgstr "Soket için bu iletişim kuralı yanlış" ++#: nis/nis_error.h:40 ++msgid "Full resync required for directory" ++msgstr "Dizin için tam bir yeniden eşzamanlama gerekli" + +-#. TRANS You specified a socket option that doesn't make sense for the +-#. TRANS particular protocol being used by the socket. @xref{Socket Options}. +-#: stdio-common/../sysdeps/gnu/errlist.c:485 +-msgid "Protocol not available" +-msgstr "İletişim kuralları müsait değil" ++#: nis/nis_error.h:41 ++msgid "NIS+ operation failed" ++msgstr "NIS+ işlemi başarısız" + +-#. TRANS The socket domain does not support the requested communications protocol +-#. TRANS (perhaps because the requested protocol is completely invalid). +-#. TRANS @xref{Creating a Socket}. +-#: stdio-common/../sysdeps/gnu/errlist.c:496 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:150 +-msgid "Protocol not supported" +-msgstr "İletişim kuralları desteklenmiyor" ++#: nis/nis_error.h:42 ++msgid "NIS+ service is unavailable or not installed" ++msgstr "NIS+ servisi işe yaramaz durumda ya da yüklenmemiş" + +-#. TRANS The socket type is not supported. +-#: stdio-common/../sysdeps/gnu/errlist.c:505 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:151 +-msgid "Socket type not supported" +-msgstr "Soket türü desteklenmiyor" ++#: nis/nis_error.h:43 ++msgid "Yes, 42 is the meaning of life" ++msgstr " " + +-#. TRANS The operation you requested is not supported. Some socket functions +-#. TRANS don't make sense for all types of sockets, and others may not be +-#. TRANS implemented for all communications protocols. In the GNU system, this +-#. TRANS error can happen for many calls when the object does not support the +-#. TRANS particular operation; it is a generic indication that the server knows +-#. TRANS nothing to do for that call. +-#: stdio-common/../sysdeps/gnu/errlist.c:519 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:78 +-msgid "Operation not supported" +-msgstr "İşlem desteklenmiyor" ++#: nis/nis_error.h:44 ++msgid "Unable to authenticate NIS+ server" ++msgstr "NIS+ sunucunun kimlik kanıtlaması yapılamıyor" + +-#. TRANS The socket communications protocol family you requested is not supported. +-#: stdio-common/../sysdeps/gnu/errlist.c:528 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:153 +-msgid "Protocol family not supported" +-msgstr "İletişim kuralları ailesi desteklenmiyor" ++#: nis/nis_error.h:45 ++msgid "Unable to authenticate NIS+ client" ++msgstr "NIS+ istemcinin kimlik kanıtlaması yapılamıyor" + +-#. TRANS The address family specified for a socket is not supported; it is +-#. TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}. +-#: stdio-common/../sysdeps/gnu/errlist.c:538 +-msgid "Address family not supported by protocol" +-msgstr "Adres ailesi protokol tarafından desteklenmiyor" ++#: nis/nis_error.h:46 ++msgid "No file space on server" ++msgstr "Sunucuda dosya alanı yok" + +-#. TRANS The requested socket address is already in use. @xref{Socket Addresses}. +-#: stdio-common/../sysdeps/gnu/errlist.c:547 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:155 +-msgid "Address already in use" +-msgstr "Adres zaten kullanımda" ++#: nis/nis_error.h:47 ++msgid "Unable to create process on server" ++msgstr "Sunucuda süreç oluşturulamadı" + +-#. TRANS The requested socket address is not available; for example, you tried +-#. TRANS to give a socket a name that doesn't match the local host name. +-#. TRANS @xref{Socket Addresses}. +-#: stdio-common/../sysdeps/gnu/errlist.c:558 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:156 +-msgid "Cannot assign requested address" +-msgstr "İstenen adres bulunamıyor" ++#: nis/nis_error.h:48 ++msgid "Master server busy, full dump rescheduled." ++msgstr "Ana sunucu meşgul, aktarmanın tamamı yeniden zamanlandı." + +-#. TRANS A socket operation failed because the network was down. +-#: stdio-common/../sysdeps/gnu/errlist.c:567 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:157 +-msgid "Network is down" +-msgstr "Ağ yok oldu" ++#: nis/nis_local_names.c:122 ++#, c-format ++msgid "LOCAL entry for UID %d in directory %s not unique\n" ++msgstr "%d kullanıcı-kimliği için YEREL girişi %s dizininde eşsiz değil\n" + +-#. TRANS A socket operation failed because the subnet containing the remote host +-#. TRANS was unreachable. +-#: stdio-common/../sysdeps/gnu/errlist.c:577 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:158 +-msgid "Network is unreachable" +-msgstr "Ağ erişilebilir durumda değil" ++#: nis/nis_print.c:51 ++msgid "UNKNOWN" ++msgstr "BİLİNMEYEN" + +-#. TRANS A network connection was reset because the remote host crashed. +-#: stdio-common/../sysdeps/gnu/errlist.c:586 +-msgid "Network dropped connection on reset" +-msgstr "Ağ bağlantısı karşı taraf çöktüğü için kesildi" ++#: nis/nis_print.c:109 ++msgid "BOGUS OBJECT\n" ++msgstr "SAHTE NESNE\n" + +-#. TRANS A network connection was aborted locally. +-#: stdio-common/../sysdeps/gnu/errlist.c:595 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:160 +-msgid "Software caused connection abort" +-msgstr "Yazılım bağlantının kopmasına sebep oldu" ++#: nis/nis_print.c:112 ++msgid "NO OBJECT\n" ++msgstr "NESNE YOK\n" + +-#. TRANS A network connection was closed for reasons outside the control of the +-#. TRANS local host, such as by the remote machine rebooting or an unrecoverable +-#. TRANS protocol violation. +-#: stdio-common/../sysdeps/gnu/errlist.c:606 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:161 +-msgid "Connection reset by peer" +-msgstr "Bağlantı karşıdan kesildi" ++#: nis/nis_print.c:115 ++msgid "DIRECTORY\n" ++msgstr "DİZİN\n" + +-#. TRANS The kernel's buffers for I/O operations are all in use. In GNU, this +-#. TRANS error is always synonymous with @code{ENOMEM}; you may get one or the +-#. TRANS other from network operations. +-#: stdio-common/../sysdeps/gnu/errlist.c:617 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:162 +-msgid "No buffer space available" +-msgstr "G/Ç önbelleklerinin hepsi kullanımda" ++#: nis/nis_print.c:118 ++msgid "GROUP\n" ++msgstr "GRUP\n" + +-#. TRANS You tried to connect a socket that is already connected. +-#. TRANS @xref{Connecting}. +-#: stdio-common/../sysdeps/gnu/errlist.c:627 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:163 +-msgid "Transport endpoint is already connected" +-msgstr "Diğer uç aktarım için zaten bağlı" ++#: nis/nis_print.c:121 ++msgid "TABLE\n" ++msgstr "TABLO\n" + +-#. TRANS The socket is not connected to anything. You get this error when you +-#. TRANS try to transmit data over a socket, without first specifying a +-#. TRANS destination for the data. For a connectionless socket (for datagram +-#. TRANS protocols, such as UDP), you get @code{EDESTADDRREQ} instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:639 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:164 +-msgid "Transport endpoint is not connected" +-msgstr "Diğer uç aktarım için bağlı değil" ++#: nis/nis_print.c:124 ++msgid "ENTRY\n" ++msgstr "GİRİŞ\n" + +-#. TRANS No default destination address was set for the socket. You get this +-#. TRANS error when you try to transmit data over a connectionless socket, +-#. TRANS without first specifying a destination for the data with @code{connect}. +-#: stdio-common/../sysdeps/gnu/errlist.c:650 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:126 +-msgid "Destination address required" +-msgstr "Hedef adres gerekli" ++#: nis/nis_print.c:127 ++msgid "LINK\n" ++msgstr "BAĞ\n" + +-#. TRANS The socket has already been shut down. +-#: stdio-common/../sysdeps/gnu/errlist.c:659 +-msgid "Cannot send after transport endpoint shutdown" +-msgstr "Aktarım ucu kapandıktan sonra yollanamaz" ++#: nis/nis_print.c:130 ++msgid "PRIVATE\n" ++msgstr "ÖZEL\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:668 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:174 +-msgid "Too many references: cannot splice" +-msgstr "Çok fazla başvuru var: kaynak bağlantısı kurulamaz" ++#: nis/nis_print.c:133 ++msgid "(Unknown object)\n" ++msgstr "(Bilinmeyen nesne)\n" + +-#. TRANS A socket operation with a specified timeout received no response during +-#. TRANS the timeout period. +-#: stdio-common/../sysdeps/gnu/errlist.c:678 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:175 +-msgid "Connection timed out" +-msgstr "Bağlantıda zaman aşımı" ++#: nis/nis_print.c:167 ++#, c-format ++msgid "Name : `%s'\n" ++msgstr "İsim : `%s'\n" + +-#. TRANS A remote host refused to allow the network connection (typically because +-#. TRANS it is not running the requested service). +-#: stdio-common/../sysdeps/gnu/errlist.c:688 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:176 +-msgid "Connection refused" +-msgstr "Bağlantı reddedildi" ++#: nis/nis_print.c:168 ++#, c-format ++msgid "Type : %s\n" ++msgstr "Türü : %s\n" + +-#. TRANS Too many levels of symbolic links were encountered in looking up a file name. +-#. TRANS This often indicates a cycle of symbolic links. +-#: stdio-common/../sysdeps/gnu/errlist.c:698 +-msgid "Too many levels of symbolic links" +-msgstr "Sembolik bağların seviyeleri çok fazla" ++#: nis/nis_print.c:173 ++msgid "Master Server :\n" ++msgstr "Ana Sunucu :\n" + +-#. TRANS Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for +-#. TRANS Files}) or host name too long (in @code{gethostname} or +-#. TRANS @code{sethostname}; @pxref{Host Identification}). +-#: stdio-common/../sysdeps/gnu/errlist.c:709 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:108 +-msgid "File name too long" +-msgstr "Dosya ismi çok uzun" ++#: nis/nis_print.c:175 ++msgid "Replicate :\n" ++msgstr "Örnekleme :\n" + +-#. TRANS The remote host for a requested network connection is down. +-#: stdio-common/../sysdeps/gnu/errlist.c:718 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:177 +-msgid "Host is down" +-msgstr "Makina çökük" ++#: nis/nis_print.c:176 ++#, c-format ++msgid "\tName : %s\n" ++msgstr "\tİsim : %s\n" + +-#. TRANS The remote host for a requested network connection is not reachable. +-#: stdio-common/../sysdeps/gnu/errlist.c:727 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:178 +-msgid "No route to host" +-msgstr "Makinaya ağ üzerinden yol yok" ++#: nis/nis_print.c:177 ++msgid "\tPublic Key : " ++msgstr "\tGenel Anahtar: " + +-#. TRANS Directory not empty, where an empty directory was expected. Typically, +-#. TRANS this error occurs when you are trying to delete a directory. +-#: stdio-common/../sysdeps/gnu/errlist.c:737 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:123 +-msgid "Directory not empty" +-msgstr "Dizin boş değil" ++#: nis/nis_print.c:181 ++msgid "None.\n" ++msgstr "Yok.\n" + +-#. TRANS This means that the per-user limit on new process would be exceeded by +-#. TRANS an attempted @code{fork}. @xref{Limits on Resources}, for details on +-#. TRANS the @code{RLIMIT_NPROC} limit. +-#: stdio-common/../sysdeps/gnu/errlist.c:748 +-msgid "Too many processes" +-msgstr "Çok fazla süreç var" ++#: nis/nis_print.c:184 ++#, c-format ++msgid "Diffie-Hellmann (%d bits)\n" ++msgstr "Diffie-Hellmann (%d bit)\n" + +-#. TRANS The file quota system is confused because there are too many users. +-#. TRANS @c This can probably happen in a GNU system when using NFS. +-#: stdio-common/../sysdeps/gnu/errlist.c:758 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:124 +-msgid "Too many users" +-msgstr "Çok fazla kullanıcı var" ++#: nis/nis_print.c:189 ++#, c-format ++msgid "RSA (%d bits)\n" ++msgstr "RSA (%d bit)\n" + +-#. TRANS The user's disk quota was exceeded. +-#: stdio-common/../sysdeps/gnu/errlist.c:767 +-msgid "Disk quota exceeded" +-msgstr "Disk kotası aşıldı" ++#: nis/nis_print.c:192 ++msgid "Kerberos.\n" ++msgstr "Kerberos.\n" + +-#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS +-#. TRANS system which is due to file system rearrangements on the server host. +-#. TRANS Repairing this condition usually requires unmounting and remounting +-#. TRANS the NFS file system on the local host. +-#: stdio-common/../sysdeps/gnu/errlist.c:779 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:181 +-msgid "Stale NFS file handle" +-msgstr "NFS dosya tanıtıcı geçersiz" ++#: nis/nis_print.c:195 ++#, c-format ++msgid "Unknown (type = %d, bits = %d)\n" ++msgstr "Bilinmeyen (tür = %d, bit = %d)\n" ++ ++#: nis/nis_print.c:206 ++#, c-format ++msgid "\tUniversal addresses (%u)\n" ++msgstr "\tEvrensel adresler (%u)\n" ++ ++#: nis/nis_print.c:228 ++msgid "Time to live : " ++msgstr "Yaşam süresi(ttl): " ++ ++#: nis/nis_print.c:230 ++msgid "Default Access rights :\n" ++msgstr "Öntanımlı Erişim hakları:\n" + +-#. TRANS An attempt was made to NFS-mount a remote file system with a file name that +-#. TRANS already specifies an NFS-mounted file. +-#. TRANS (This is an error on some operating systems, but we expect it to work +-#. TRANS properly on the GNU system, making this error code impossible.) +-#: stdio-common/../sysdeps/gnu/errlist.c:791 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:96 +-msgid "Object is remote" +-msgstr "Nesne uzakta" ++#: nis/nis_print.c:239 ++#, c-format ++msgid "\tType : %s\n" ++msgstr "\tTürü : %s\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:800 +-msgid "RPC struct is bad" +-msgstr "RPC yapısı hatalı" ++#: nis/nis_print.c:240 ++msgid "\tAccess rights: " ++msgstr "\tErişim hakları: " + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:809 +-msgid "RPC version wrong" +-msgstr "RPC sürümü yanlış" ++#: nis/nis_print.c:254 ++msgid "Group Flags :" ++msgstr "Grup Flamaları:" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:818 +-msgid "RPC program not available" +-msgstr "RPC uygulaması yok" ++#: nis/nis_print.c:257 ++msgid "" ++"\n" ++"Group Members :\n" ++msgstr "" ++"\n" ++" Grup Üyeleri:\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:827 +-msgid "RPC program version wrong" +-msgstr "RPC uygulaması sürümü yanlış" ++#: nis/nis_print.c:269 ++#, c-format ++msgid "Table Type : %s\n" ++msgstr "Tablo Türü : %s\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:836 +-msgid "RPC bad procedure for program" +-msgstr "RPC program için uygun altyordam değil" ++#: nis/nis_print.c:270 ++#, c-format ++msgid "Number of Columns : %d\n" ++msgstr "Sütun sayısı : %d\n" + +-#. TRANS No locks available. This is used by the file locking facilities; see +-#. TRANS @ref{File Locks}. This error is never generated by the GNU system, but +-#. TRANS it can result from an operation to an NFS server running another +-#. TRANS operating system. +-#: stdio-common/../sysdeps/gnu/errlist.c:848 +-msgid "No locks available" +-msgstr "işe yarar kilit yok" ++#: nis/nis_print.c:271 ++#, c-format ++msgid "Character Separator : %c\n" ++msgstr "Karakter Ayracı: %c\n" + +-#. TRANS Inappropriate file type or format. The file was the wrong type for the +-#. TRANS operation, or a data file had the wrong format. +-#. TRANS +-#. TRANS On some systems @code{chmod} returns this error if you try to set the +-#. TRANS sticky bit on a non-directory file; @pxref{Setting Permissions}. +-#: stdio-common/../sysdeps/gnu/errlist.c:861 +-msgid "Inappropriate file type or format" +-msgstr "Dosya türü ya da biçemi uygun değil" ++#: nis/nis_print.c:272 ++#, c-format ++msgid "Search Path : %s\n" ++msgstr "Dosya arama yolu : %s\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:870 +-msgid "Authentication error" +-msgstr "Kanıtlama hatası" ++#: nis/nis_print.c:273 ++msgid "Columns :\n" ++msgstr "Sütun :\n" + +-#. TRANS ??? +-#: stdio-common/../sysdeps/gnu/errlist.c:879 +-msgid "Need authenticator" +-msgstr "Kanıtlayıcı gerekir" ++#: nis/nis_print.c:276 ++#, c-format ++msgid "\t[%d]\tName : %s\n" ++msgstr "\t[%d]\tİsim : %s\n" + +-#. TRANS Function not implemented. This indicates that the function called is +-#. TRANS not implemented at all, either in the C library itself or in the +-#. TRANS operating system. When you get this error, you can be sure that this +-#. TRANS particular function will always fail with @code{ENOSYS} unless you +-#. TRANS install a new version of the C library or the operating system. +-#: stdio-common/../sysdeps/gnu/errlist.c:892 +-msgid "Function not implemented" +-msgstr "İşlev bulunamadı (Bir güncelleme gerekebilir)" ++#: nis/nis_print.c:278 ++msgid "\t\tAttributes : " ++msgstr "\t\tNiteleyiciler : " + +-#. TRANS Not supported. A function returns this error when certain parameter +-#. TRANS values are valid, but the functionality they request is not available. +-#. TRANS This can mean that the function does not implement a particular command +-#. TRANS or option value or flag bit at all. For functions that operate on some +-#. TRANS object given in a parameter, such as a file descriptor or a port, it +-#. TRANS might instead mean that only @emph{that specific object} (file +-#. TRANS descriptor, port, etc.) is unable to support the other parameters given; +-#. TRANS different file descriptors might support different ranges of parameter +-#. TRANS values. +-#. TRANS +-#. TRANS If the entire function is not available at all in the implementation, +-#. TRANS it returns @code{ENOSYS} instead. +-#: stdio-common/../sysdeps/gnu/errlist.c:912 +-msgid "Not supported" +-msgstr "Desteklenmiyor" ++#: nis/nis_print.c:280 ++msgid "\t\tAccess Rights : " ++msgstr "\t\tErişim Hakları: " + +-#. TRANS While decoding a multibyte character the function came along an invalid +-#. TRANS or an incomplete sequence of bytes or the given wide character is invalid. +-#: stdio-common/../sysdeps/gnu/errlist.c:922 +-msgid "Invalid or incomplete multibyte or wide character" +-msgstr "Çokbaytlı/geniş karakter geçersiz veya tamamlanmamış" ++#: nis/nis_print.c:290 ++msgid "Linked Object Type : " ++msgstr "Bağlı Nesne Türü : " + +-#. TRANS In the GNU system, servers supporting the @code{term} protocol return +-#. TRANS this error for certain operations when the caller is not in the +-#. TRANS foreground process group of the terminal. Users do not usually see this +-#. TRANS error because functions such as @code{read} and @code{write} translate +-#. TRANS it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control}, +-#. TRANS for information on process groups and these signals. +-#: stdio-common/../sysdeps/gnu/errlist.c:936 +-msgid "Inappropriate operation for background process" +-msgstr "Artalan süreç için işlem uygun değil" ++#: nis/nis_print.c:292 ++#, c-format ++msgid "Linked to : %s\n" ++msgstr "Bağ hedefi: %s\n" + +-#. TRANS In the GNU system, opening a file returns this error when the file is +-#. TRANS translated by a program and the translator program dies while starting +-#. TRANS up, before it has connected to the file. +-#: stdio-common/../sysdeps/gnu/errlist.c:947 +-msgid "Translator died" +-msgstr "Çevirmen uygulama ölmüş" ++#: nis/nis_print.c:302 ++#, c-format ++msgid "\tEntry data of type %s\n" ++msgstr "\t %s türü girdi verisi\n" + +-#. TRANS The experienced user will know what is wrong. +-#. TRANS @c This error code is a joke. Its perror text is part of the joke. +-#. TRANS @c Don't change it. +-#: stdio-common/../sysdeps/gnu/errlist.c:958 +-msgid "?" +-msgstr "?" ++#: nis/nis_print.c:305 ++#, c-format ++msgid "\t[%u] - [%u bytes] " ++msgstr "\t[%u] - [%u bayt] " + +-#. TRANS You did @strong{what}? +-#: stdio-common/../sysdeps/gnu/errlist.c:967 +-msgid "You really blew it this time" +-msgstr " " ++#: nis/nis_print.c:308 ++msgid "Encrypted data\n" ++msgstr "Şifreli veri\n" + +-#. TRANS Go home and have a glass of warm, dairy-fresh milk. +-#: stdio-common/../sysdeps/gnu/errlist.c:976 +-msgid "Computer bought the farm" +-msgstr "Yatarken sütünü içtin mi?" ++#: nis/nis_print.c:310 ++msgid "Binary data\n" ++msgstr "İkilik veri\n" + +-#. TRANS This error code has no purpose. +-#: stdio-common/../sysdeps/gnu/errlist.c:985 +-msgid "Gratuitous error" +-msgstr "Bu hata lotodan çıktı" ++#: nis/nis_print.c:326 ++#, c-format ++msgid "Object Name : %s\n" ++msgstr "Nesne İsmi : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:993 +-msgid "Bad message" +-msgstr "İleti hatalı" ++#: nis/nis_print.c:327 ++#, c-format ++msgid "Directory : %s\n" ++msgstr "Dizin : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1001 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:66 +-msgid "Identifier removed" +-msgstr "Tanıtıcı kaldırıldı" ++#: nis/nis_print.c:328 ++#, c-format ++msgid "Owner : %s\n" ++msgstr "Sahibi : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1009 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:104 +-msgid "Multihop attempted" +-msgstr "Çoklusekmeye kalkışıldı" ++#: nis/nis_print.c:329 ++#, c-format ++msgid "Group : %s\n" ++msgstr "Grup : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1017 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:91 +-msgid "No data available" +-msgstr "Veri yok" ++#: nis/nis_print.c:330 ++msgid "Access Rights : " ++msgstr "Erişim Hakları: " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1025 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:97 +-msgid "Link has been severed" +-msgstr "Bağ sadeleştirilmişti" ++#: nis/nis_print.c:332 ++#, c-format ++msgid "" ++"\n" ++"Time to Live : " ++msgstr "" ++"\n" ++"Yaşam süresi : " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1033 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:65 +-msgid "No message of desired type" +-msgstr "Arzulanan türde ileti yok" ++#: nis/nis_print.c:335 ++#, c-format ++msgid "Creation Time : %s" ++msgstr "Oluşturma Zamanı: %s" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1041 +-msgid "Out of streams resources" +-msgstr "Veri akımları kaynakları yetersiz" ++#: nis/nis_print.c:337 ++#, c-format ++msgid "Mod. Time : %s" ++msgstr "Değiş. Zamanı : %s" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1049 +-msgid "Device not a stream" +-msgstr "Aygıt veri alışverişine uygun değil" ++#: nis/nis_print.c:338 ++msgid "Object Type : " ++msgstr "Nesne Türü : " + +-#: stdio-common/../sysdeps/gnu/errlist.c:1057 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:109 +-msgid "Value too large for defined data type" +-msgstr "Atanan veri türü için değer çok büyük" ++#: nis/nis_print.c:358 ++#, c-format ++msgid " Data Length = %u\n" ++msgstr " Veri uzunluğu = %u\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1065 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:101 +-msgid "Protocol error" +-msgstr "İletişim kurallarında hata" ++#: nis/nis_print.c:372 ++#, c-format ++msgid "Status : %s\n" ++msgstr "Durum : %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1073 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:92 +-msgid "Timer expired" +-msgstr "Süre doldu" ++#: nis/nis_print.c:373 ++#, c-format ++msgid "Number of objects : %u\n" ++msgstr "Nesne sayısı : %u\n" + +-#. TRANS Operation canceled; an asynchronous operation was canceled before it +-#. TRANS completed. @xref{Asynchronous I/O}. When you call @code{aio_cancel}, +-#. TRANS the normal result is for the operations affected to complete with this +-#. TRANS error; @pxref{Cancel AIO Operations}. +-#: stdio-common/../sysdeps/gnu/errlist.c:1085 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:77 +-msgid "Operation canceled" +-msgstr "İşlem iptal edildi" ++#: nis/nis_print.c:377 ++#, c-format ++msgid "Object #%d:\n" ++msgstr "Nesne #%d:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1093 +-msgid "Interrupted system call should be restarted" +-msgstr "Kesme ile engellenen sistem çağrısı yeniden başlatılmalı" ++#: nis/nis_print_group_entry.c:117 ++#, c-format ++msgid "Group entry for \"%s.%s\" group:\n" ++msgstr "\"%s.%s\" grubu için grup girişi:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1101 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:67 +-msgid "Channel number out of range" +-msgstr "Kanal numarası kapsam dışı" ++#: nis/nis_print_group_entry.c:125 ++msgid " Explicit members:\n" ++msgstr " Doğrudan üye olanlar:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1109 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:68 +-msgid "Level 2 not synchronized" +-msgstr "Seviye-2 eşzamanlı değil" ++#: nis/nis_print_group_entry.c:130 ++msgid " No explicit members\n" ++msgstr " Doğrudan üye olan yok\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1117 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:69 +-msgid "Level 3 halted" +-msgstr "Seviye-3 durdu" ++#: nis/nis_print_group_entry.c:133 ++msgid " Implicit members:\n" ++msgstr " Dolaylı üye olanlar:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1125 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:70 +-msgid "Level 3 reset" +-msgstr "Seviye-3 başlangıçta" ++#: nis/nis_print_group_entry.c:138 ++msgid " No implicit members\n" ++msgstr " Dolaylı üye olan yok\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1133 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:71 +-msgid "Link number out of range" +-msgstr "Bağ numarası kapsam dışı" ++#: nis/nis_print_group_entry.c:141 ++msgid " Recursive members:\n" ++msgstr " Ardışık üyeler:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1141 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:72 +-msgid "Protocol driver not attached" +-msgstr "İletişim kuralları sürücüsü bağlı değil" ++#: nis/nis_print_group_entry.c:146 ++msgid " No recursive members\n" ++msgstr " Ardışık üye yok\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1149 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:73 +-msgid "No CSI structure available" +-msgstr "Hiç bir CSI değişken yapısı yok" ++#: nis/nis_print_group_entry.c:149 nis/nis_print_group_entry.c:165 ++msgid " Explicit nonmembers:\n" ++msgstr " Doğrudan üye olmayanlar:\n" ++ ++#: nis/nis_print_group_entry.c:154 ++msgid " No explicit nonmembers\n" ++msgstr " Doğrudan üye olmayan yok\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1157 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:74 +-msgid "Level 2 halted" +-msgstr "Seviye-2 durdu" ++#: nis/nis_print_group_entry.c:157 ++msgid " Implicit nonmembers:\n" ++msgstr " Dolaylı üye olmayanlar:\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1165 +-msgid "Invalid exchange" +-msgstr "Değiş tokuş geçersiz" ++#: nis/nis_print_group_entry.c:162 ++msgid " No implicit nonmembers\n" ++msgstr " Dolaylı üye olmayan yok\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1173 +-msgid "Invalid request descriptor" +-msgstr "İstem betimleyici geçersiz" ++#: nis/nis_print_group_entry.c:170 ++msgid " No recursive nonmembers\n" ++msgstr " Ardışık üye olmayan yok\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1181 +-msgid "Exchange full" +-msgstr "Değiş tokuş alanı dolu" ++#: nis/nss_nisplus/nisplus-publickey.c:101 ++#: nis/nss_nisplus/nisplus-publickey.c:183 ++#, c-format ++msgid "DES entry for netname %s not unique\n" ++msgstr "Ağ ismi %s için DES girişi eşsiz değil\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1189 +-msgid "No anode" +-msgstr "Anot yok" ++#: nis/nss_nisplus/nisplus-publickey.c:220 ++#, c-format ++msgid "netname2user: missing group id list in `%s'." ++msgstr "netname2user: `%s' içinde grup kimlikleri listesi yok." + +-#: stdio-common/../sysdeps/gnu/errlist.c:1197 +-msgid "Invalid request code" +-msgstr "İstem kodu geçersiz" ++#: nis/nss_nisplus/nisplus-publickey.c:302 ++#: nis/nss_nisplus/nisplus-publickey.c:308 ++#: nis/nss_nisplus/nisplus-publickey.c:373 ++#: nis/nss_nisplus/nisplus-publickey.c:382 ++#, c-format ++msgid "netname2user: (nis+ lookup): %s\n" ++msgstr "netname2user: (nis+ lookup): %s\n" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1205 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:85 +-msgid "Invalid slot" +-msgstr "Geçersiz yuva" ++#: nis/nss_nisplus/nisplus-publickey.c:321 ++#, c-format ++msgid "netname2user: DES entry for %s in directory %s not unique" ++msgstr "netname2user: %s (%s dizinindeki) için DES girdisi eşsiz değil" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1213 +-msgid "File locking deadlock error" +-msgstr "Dosya kilitlemede ölükilit hatası" ++#: nis/nss_nisplus/nisplus-publickey.c:339 ++#, c-format ++msgid "netname2user: principal name `%s' too long" ++msgstr "netname2user: `%s' ismi çok uzun" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1221 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:87 +-msgid "Bad font file format" +-msgstr "Yazıtipi dosyası biçemi hatalı" ++#: nis/nss_nisplus/nisplus-publickey.c:395 ++#, c-format ++msgid "netname2user: LOCAL entry for %s in directory %s not unique" ++msgstr "netname2user: %s (%s dizinindeki) için LOCAL girdisi eşsiz değil" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1229 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:94 +-msgid "Machine is not on the network" +-msgstr "Makina bir ağ üzerinde değil" ++#: nis/nss_nisplus/nisplus-publickey.c:402 ++msgid "netname2user: should not have uid 0" ++msgstr "netname2user: kullanıcı kimliği 0 olmamalıydı" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1237 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:95 +-msgid "Package not installed" +-msgstr "Paket yüklenmedi" ++#: nis/ypclnt.c:825 ++msgid "Request arguments bad" ++msgstr "İstem argümanları hatalı" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1245 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:98 +-msgid "Advertise error" +-msgstr "Tanıtım hatası" ++#: nis/ypclnt.c:828 ++msgid "RPC failure on NIS operation" ++msgstr "NIS işleminde RPC başarısız" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1253 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:99 +-msgid "Srmount error" +-msgstr "Srmount hatası" ++#: nis/ypclnt.c:831 ++msgid "Can't bind to server which serves this domain" ++msgstr "Bu alana hizmet veren sunucuya bağlantı kurulamadı" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1261 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:100 +-msgid "Communication error on send" +-msgstr "Yollama sırasında haberleşme hatası" ++#: nis/ypclnt.c:834 ++msgid "No such map in server's domain" ++msgstr "Sunucu sahasında böyle bir eşlem yok" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1269 +-msgid "RFS specific error" +-msgstr "RFS-özgü hata" ++#: nis/ypclnt.c:837 ++msgid "No such key in map" ++msgstr "Eşlemde böyle bir tuş yok" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1277 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:110 +-msgid "Name not unique on network" +-msgstr "Ağ üzerinde isim eşsiz değil" ++#: nis/ypclnt.c:840 ++msgid "Internal NIS error" ++msgstr "İçsel NIS hatası" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1285 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:111 +-msgid "File descriptor in bad state" +-msgstr "Dosya betimleyici hatalı durumda" ++#: nis/ypclnt.c:843 ++msgid "Local resource allocation failure" ++msgstr "Yerel çözüm tahsisi başarısız" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1293 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:112 +-msgid "Remote address changed" +-msgstr "Uzak adres değişti" ++#: nis/ypclnt.c:846 ++msgid "No more records in map database" ++msgstr "Artık kayıtlar eşlem veritabanında" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1301 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:113 +-msgid "Can not access a needed shared library" +-msgstr "Gereken paylaşımlı kitaplığa erişilemiyor" ++#: nis/ypclnt.c:849 ++msgid "Can't communicate with portmapper" ++msgstr "portmapper ile haberleşilemiyor" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1309 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:114 +-msgid "Accessing a corrupted shared library" +-msgstr "Bir bozulmuş paylaşımlı kitaplığa erişiliyor" ++#: nis/ypclnt.c:852 ++msgid "Can't communicate with ypbind" ++msgstr "ypbind ile haberleşilemiyor" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1317 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:115 +-msgid ".lib section in a.out corrupted" +-msgstr "a.out içindeki .lib bölümü bozulmuş" ++#: nis/ypclnt.c:855 ++msgid "Can't communicate with ypserv" ++msgstr "ypserv ile haberleşilemiyor" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1325 +-msgid "Attempting to link in too many shared libraries" +-msgstr "Çok fazla sayıdaki paylaşımlı kitaplıkta bağ kurulmaya çalışılıyor" ++#: nis/ypclnt.c:858 ++msgid "Local domain name not set" ++msgstr "Yerel alan ismi ayarlanmamış" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1333 +-msgid "Cannot exec a shared library directly" +-msgstr "Bir paylaşımlı kitaplık doğrudan çalıştırılamaz" ++#: nis/ypclnt.c:861 ++msgid "NIS map database is bad" ++msgstr "NIS eşleşme veritabanı hatalı" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1341 +-msgid "Streams pipe error" +-msgstr "Veri hattı hatası" ++#: nis/ypclnt.c:864 ++msgid "NIS client/server version mismatch - can't supply service" ++msgstr "NIS istemci/sunucu sürümü eşleşmiyor - servis sağlanamaz" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1349 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:165 +-msgid "Structure needs cleaning" +-msgstr "Veri ağacı temizlenmek ister" ++#: nis/ypclnt.c:870 ++msgid "Database is busy" ++msgstr "Veritabanı meşgul" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1357 +-msgid "Not a XENIX named type file" +-msgstr "Bir XENIX named türü dosya değil" ++#: nis/ypclnt.c:873 ++msgid "Unknown NIS error code" ++msgstr "Bilinmeyen NIS hata kodu" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1365 +-msgid "No XENIX semaphores available" +-msgstr "Hiç XENIX semaforu yok" ++#: nis/ypclnt.c:913 ++msgid "Internal ypbind error" ++msgstr "İçsel ypbind hatası" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1373 +-msgid "Is a named type file" +-msgstr "Bir \"named\" türü dosya" ++#: nis/ypclnt.c:916 ++msgid "Domain not bound" ++msgstr "Alan bağıntısı yapılamadı" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1381 +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:170 +-msgid "Remote I/O error" +-msgstr "Uzak G/Ç hatası" ++#: nis/ypclnt.c:919 ++msgid "System resource allocation failure" ++msgstr "Sistem öz kaynaklarının ayrılması başarısız" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1389 +-msgid "No medium found" +-msgstr "medium yok" ++#: nis/ypclnt.c:922 ++msgid "Unknown ypbind error" ++msgstr "Bilinmeyen ypbind hatası" + +-#: stdio-common/../sysdeps/gnu/errlist.c:1397 +-msgid "Wrong medium type" +-msgstr "Yanlış ortam türü" ++#: nis/ypclnt.c:963 ++msgid "yp_update: cannot convert host to netname\n" ++msgstr "yp_update: makina ismi ağ ismine dönüştürülemiyor\n" + +-#: stdio-common/../sysdeps/unix/siglist.c:26 +-msgid "Signal 0" +-msgstr "Sinyal 0" ++#: nis/ypclnt.c:981 ++msgid "yp_update: cannot get server address\n" ++msgstr "yp_update: sunucu adresi alınamıyor\n" + +-#: stdio-common/../sysdeps/unix/siglist.c:32 +-msgid "IOT trap" +-msgstr "IOT tuzağı" ++#: nscd/aicache.c:76 nscd/hstcache.c:461 ++#, c-format ++msgid "Haven't found \"%s\" in hosts cache!" ++msgstr "\"%s\" makinalar arabelleğinde yok!" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:30 +-msgid "Error 0" +-msgstr "Hata 0" ++#: nscd/aicache.c:78 nscd/hstcache.c:463 ++#, c-format ++msgid "Reloading \"%s\" in hosts cache!" ++msgstr "\"%s\" hosts arabelleğine yeniden yükleniyor!" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:31 +-#: nis/nis_error.c:40 +-msgid "Not owner" +-msgstr "Sahibi değil" ++#: nscd/cache.c:126 ++#, c-format ++msgid "add new entry \"%s\" of type %s for %s to cache%s" ++msgstr "%3$s için %2$s türündeki yeni girdi \"%1$s\" %4$s arabelleğine eklenir" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:35 +-msgid "I/O error" +-msgstr "G/Ç hatası" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:37 +-msgid "Arg list too long" +-msgstr "Arg listesi çok uzun" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:39 +-msgid "Bad file number" +-msgstr "Dosya numarası hatalı" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:42 +-msgid "Not enough space" +-msgstr "alan yetersiz" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:46 +-msgid "Device busy" +-msgstr "Aygıt meşgul" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:48 +-msgid "Cross-device link" +-msgstr "Çapraz-aygıt bağı" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:53 +-msgid "File table overflow" +-msgstr "Dosya tablosu taştı" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:63 +-msgid "Argument out of domain" +-msgstr "Argüman alan dışı" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:64 +-msgid "Result too large" +-msgstr "Sonuç çok büyük" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:75 +-msgid "Deadlock situation detected/avoided" +-msgstr "ÖlüKilit konumu saptandı/engellendi" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:76 +-msgid "No record locks available" +-msgstr "İşe yarar kayıt kilitleri yok" ++#: nscd/cache.c:233 nscd/connections.c:750 ++#, c-format ++msgid "cannot stat() file `%s': %s" ++msgstr "`%s' dosyası stat() olamıyor: %s" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:79 +-msgid "Disc quota exceeded" +-msgstr "Disk kotası aşıldı" ++#: nscd/cache.c:262 ++#, c-format ++msgid "pruning %s cache; time %ld" ++msgstr "%s arabelleği budanıyor; süre %ld" + +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:80 +-msgid "Bad exchange descriptor" +-msgstr "Değiş tokuş betimleyici hatalı" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:81 +-msgid "Bad request descriptor" +-msgstr "İstek betimleyici hatalı" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:82 +-msgid "Message tables full" +-msgstr "İleti tablosunda yer yok" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:83 +-msgid "Anode table overflow" +-msgstr "A-düğüm tablosu taştı" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:84 +-msgid "Bad request code" +-msgstr "İstek kodu hatalı" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:86 +-msgid "File locking deadlock" +-msgstr "Dosya kilitlemede ölükilit" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:88 +-msgid "Error 58" +-msgstr "Hata 58" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:89 +-msgid "Error 59" +-msgstr "Hata 59" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:90 +-msgid "Not a stream device" +-msgstr "Veri alışverişi yapılabilecek bir aygıt değil" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:93 +-msgid "Out of stream resources" +-msgstr "Veri akımı özkaynakları yetersiz" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:102 +-msgid "Error 72" +-msgstr "Hata 72" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:103 +-msgid "Error 73" +-msgstr "Hata 73" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:105 +-msgid "Error 75" +-msgstr "Hata 75" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:106 +-msgid "Error 76" +-msgstr "Hata 76" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:107 +-msgid "Not a data message" +-msgstr "Bir veri iletisi değil" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:116 +-msgid "Attempting to link in more shared libraries than system limit" +-msgstr "Sistem sınırlarından daha fazla sayıdaki paylaşımlı kitaplıkta bağ kurulmaya çalışılıyor" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:117 +-msgid "Can not exec a shared library directly" +-msgstr "Bir paylaşımlı kitaplık doğrudan icra edilemez" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:118 +-msgid "Illegal byte sequence" +-msgstr "Bayt serisi kuraldışı" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:119 +-msgid "Operation not applicable" +-msgstr "İşlem uygulanabilir değil" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:120 +-msgid "Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS" +-msgstr "Dosya yolu izlenirken saptanan sembolik bağların sayısı MAXSYMLINKS sayısını aşıyor" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:121 +-msgid "Error 91" +-msgstr "Hata 91" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:122 +-msgid "Error 92" +-msgstr "Hata 92" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:129 +-msgid "Option not supported by protocol" +-msgstr "Protokol işlemi desteklemedi" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:130 +-msgid "Error 100" +-msgstr "Hata 100" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:131 +-msgid "Error 101" +-msgstr "Hata 101" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:132 +-msgid "Error 102" +-msgstr "Hata 102" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:133 +-msgid "Error 103" +-msgstr "Hata 103" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:134 +-msgid "Error 104" +-msgstr "Hata 104" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:135 +-msgid "Error 105" +-msgstr "Hata 105" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:136 +-msgid "Error 106" +-msgstr "Hata 106" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:137 +-msgid "Error 107" +-msgstr "Hata 107" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:138 +-msgid "Error 108" +-msgstr "Hata 108" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:139 +-msgid "Error 109" +-msgstr "Hata 109" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:140 +-msgid "Error 110" +-msgstr "Hata 110" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:141 +-msgid "Error 111" +-msgstr "Hata 111" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:142 +-msgid "Error 112" +-msgstr "Hata 112" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:143 +-msgid "Error 113" +-msgstr "Hata 113" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:144 +-msgid "Error 114" +-msgstr "Hata 114" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:145 +-msgid "Error 115" +-msgstr "Hata 115" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:146 +-msgid "Error 116" +-msgstr "Hata 116" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:147 +-msgid "Error 117" +-msgstr "Hata 117" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:148 +-msgid "Error 118" +-msgstr "Hata 118" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:149 +-msgid "Error 119" +-msgstr "Hata 119" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:152 +-msgid "Operation not supported on transport endpoint" +-msgstr "Nakil hattının diğer ucunda işlem desteklenmedi" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:154 +-msgid "Address family not supported by protocol family" +-msgstr "Adres ailesi protokol ailesi tarafından desteklenmiyor" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:159 +-msgid "Network dropped connection because of reset" +-msgstr "Yeniden başlatma nedeniyle ağ bağlantısı kesildi" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:166 +-msgid "Error 136" +-msgstr "Hata 136" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:167 +-msgid "Not a name file" +-msgstr "Bir isim dosyası değil" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:168 +-msgid "Not available" +-msgstr "İşe yaramaz" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:169 +-msgid "Is a name file" +-msgstr "Bir \"name\" dosyası" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:171 +-msgid "Reserved for future use" +-msgstr "İlerde kullanmak üzere ayrıldı" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:172 +-msgid "Error 142" +-msgstr "Hata 142" +- +-#: stdio-common/../sysdeps/unix/sysv/sysv4/solaris2/sparc/errlist.c:173 +-msgid "Cannot send after socket shutdown" +-msgstr "Soket kapandıktan sonra yollanamaz" ++#: nscd/cache.c:289 ++#, c-format ++msgid "considering %s entry \"%s\", timeout %" ++msgstr "girdi \"%2$s\" %1$s olarak ele elınıyor, zamanaşımı %3$" + +-#: stdio-common/psignal.c:63 ++#: nscd/connections.c:469 nscd/connections.c:481 nscd/connections.c:493 ++#: nscd/connections.c:512 + #, c-format +-msgid "%s%sUnknown signal %d\n" +-msgstr "%s%sBilinmeyen sinyal %d\n" ++msgid "invalid persistent database file \"%s\": %s" ++msgstr "kalıcı veritabanı dosyası \"%s\" geçersiz: %s" + +-#: dlfcn/dlinfo.c:51 +-msgid "RTLD_SELF used in code not dynamically loaded" +-msgstr "RTLD_SELF kullanılan kod dinamik olarak yüklenmedi" ++#: nscd/connections.c:483 ++msgid "header size does not match" ++msgstr "başlık boyutu uyumsuz" + +-#: dlfcn/dlinfo.c:61 +-msgid "unsupported dlinfo request" +-msgstr "dlinfo isteği desteklenmiyor" ++#: nscd/connections.c:495 ++msgid "file size does not match" ++msgstr "dosya boyutu uyumsuz" + +-#: malloc/mcheck.c:346 +-msgid "memory is consistent, library is buggy\n" +-msgstr "bellek tutarlı, kitaplık hatalı\n" ++#: nscd/connections.c:514 ++msgid "verification failed" ++msgstr "doğrulanamadı" + +-#: malloc/mcheck.c:349 +-msgid "memory clobbered before allocated block\n" +-msgstr "bellek ayrılmış bloğun öncesine taştı\n" ++#: nscd/connections.c:528 ++#, c-format ++msgid "suggested size of table for database %s larger than the persistent database's table" ++msgstr "%s veritabanı için önerilen tablo boyutu kalıcı veritabanı tablosundan büyük" + +-#: malloc/mcheck.c:352 +-msgid "memory clobbered past end of allocated block\n" +-msgstr "bellek ayrılmış bloğun sonrasına taştı\n" ++#: nscd/connections.c:538 nscd/connections.c:619 ++#, c-format ++msgid "cannot create read-only descriptor for \"%s\"; no mmap" ++msgstr "\"%s\" için salt-okunur tanıtıcı oluşturulamıyor; mmap yok" + +-#: malloc/mcheck.c:355 +-msgid "block freed twice\n" +-msgstr "blok iki kere serbest bırakıldı\n" ++#: nscd/connections.c:598 ++#, c-format ++msgid "database for %s corrupted or simultaneously used; remove %s manually if necessary and restart" ++msgstr "%s için ya veritabanı yok ya da şu an kullanımda; gerekiyorsa %s'i kendiniz silip yeniden başlatın" + +-#: malloc/mcheck.c:358 +-msgid "bogus mcheck_status, library is buggy\n" +-msgstr "mcheck_status sahte, kitaplık hatalı\n" ++#: nscd/connections.c:605 ++#, c-format ++msgid "cannot create %s; no persistent database used" ++msgstr "%s oluşturulamıyor; kullanımda bir kalıcı veritabanı yok" + +-#: malloc/memusagestat.c:53 +-msgid "Name output file" +-msgstr "İsim çıktı dosyası" ++#: nscd/connections.c:608 ++#, c-format ++msgid "cannot create %s; no sharing possible" ++msgstr "%s oluşturulamıyor; paylaşım mümkün değil" + +-#: malloc/memusagestat.c:54 +-msgid "Title string used in output graphic" +-msgstr "Çıktı grafiğinde kullanılan başlık dizgesi" ++#: nscd/connections.c:679 ++#, c-format ++msgid "cannot write to database file %s: %s" ++msgstr "veritabanı dosyası %s yazılamıyor: %s" + +-#: malloc/memusagestat.c:55 +-msgid "Generate output linear to time (default is linear to number of function calls)" +-msgstr "" +-"Zamanla düzgün değişen çıktı üretilir. \n" +-"(işlev çağrılarının sayısıyla düzgün değişen çıktı üretimi öntanımlıdır)" ++#: nscd/connections.c:713 ++#, c-format ++msgid "cannot set socket to close on exec: %s; disabling paranoia mode" ++msgstr "exec üzerinde kapatılacak soket atanamadı: %s; paranoya kipi iptal ediliyor" + +-#: malloc/memusagestat.c:57 +-msgid "Also draw graph for total memory consumption" +-msgstr "Üstelik toplam bellek tüketimi grafiğini çizerken" ++#: nscd/connections.c:763 ++#, c-format ++msgid "cannot open socket: %s" ++msgstr "soket açılamıyor: %s" + +-#: malloc/memusagestat.c:58 +-msgid "make output graphic VALUE pixel wide" +-msgstr "çıktı grafik DEĞERini piksel genişliği yapar" ++#: nscd/connections.c:780 ++#, c-format ++msgid "cannot change socket to nonblocking mode: %s" ++msgstr "engellenmeyen kipte soket değiştirilemez: %s" + +-#: malloc/memusagestat.c:59 +-msgid "make output graphic VALUE pixel high" +-msgstr "çıktı grafik DEĞERini piksel yüksekliği yapar" ++#: nscd/connections.c:788 ++#, c-format ++msgid "cannot set socket to close on exec: %s" ++msgstr "exec üzerinde kapatılacak soket atanamadı: %s" + +-#: malloc/memusagestat.c:64 +-msgid "Generate graphic from memory profiling data" +-msgstr "Bellek profili verisinden grafik üretir" ++#: nscd/connections.c:799 ++#, c-format ++msgid "cannot enable socket to accept connections: %s" ++msgstr "bağlantıları kabul etmek üzere soket etkinleştirilemiyor: %s" + +-#: malloc/memusagestat.c:67 +-msgid "DATAFILE [OUTFILE]" +-msgstr "VERİDOSYASI [ÇIKTIDOSYASI]" ++#: nscd/connections.c:892 ++#, c-format ++msgid "provide access to FD %d, for %s" ++msgstr "%2$s için dosya tanıtıcı %1$d'ye erişim sağlar" + +-#: string/strerror.c:43 posix/../sysdeps/posix/gai_strerror.c:57 +-msgid "Unknown error" +-msgstr "Bilinmeyen hata" ++#: nscd/connections.c:904 ++#, c-format ++msgid "cannot handle old request version %d; current version is %d" ++msgstr "eski istem sürümü %d elde edilemedi; mevcut sürüm %d" + +-#: string/strsignal.c:69 ++#: nscd/connections.c:954 nscd/connections.c:1007 + #, c-format +-msgid "Real-time signal %d" +-msgstr "Gerçek-zamanlı sinyal %d" ++msgid "cannot write result: %s" ++msgstr "sonuç yazılamıyor: %s" + +-#: string/strsignal.c:73 ++#: nscd/connections.c:1082 + #, c-format +-msgid "Unknown signal %d" +-msgstr "Bilinmeyen sinyal %d" ++msgid "error getting caller's id: %s" ++msgstr "çağrıcı kimliği alınırken hata: %s" + +-#: timezone/zdump.c:176 ++#: nscd/connections.c:1140 nscd/connections.c:1154 + #, c-format +-msgid "%s: usage is %s [ --version ] [ -v ] [ -c cutoff ] zonename ...\n" +-msgstr "" +-"%s: kullanımı: %s [ --version ] [ -v ] [ -c kesimZamanı ]\n" +-"zamanDilimiİsmi ...\n" ++msgid "cannot open /proc/self/cmdline: %s; disabling paranoia mode" ++msgstr "/proc/self/cmdline açılamadı: %s; paranoya kipi iptal ediliyor" + +-#: timezone/zdump.c:269 +-msgid "Error writing to standard output" +-msgstr "Standart çıktıya yazarken hata" ++#: nscd/connections.c:1194 ++#, c-format ++msgid "cannot change to old UID: %s; disabling paranoia mode" ++msgstr "eski UID'e dönülemedi: %s; paranoya kipi iptal ediliyor" + +-#: timezone/zic.c:361 ++#: nscd/connections.c:1204 + #, c-format +-msgid "%s: Memory exhausted: %s\n" +-msgstr "%s: Bellek tükendi: %s\n" ++msgid "cannot change to old GID: %s; disabling paranoia mode" ++msgstr "eski GID'e dönülemedi: %s; paranoya kipi iptal ediliyor" + +-#: timezone/zic.c:386 misc/error.c:129 misc/error.c:157 +-msgid "Unknown system error" +-msgstr "Bilinmeyen sistem hatası" ++#: nscd/connections.c:1217 ++#, c-format ++msgid "cannot change to old working directory: %s; disabling paranoia mode" ++msgstr "eski çalışma dizinine dönülemiyor: %s; paranoya kipi iptal ediliyor" + +-#: timezone/zic.c:420 ++#: nscd/connections.c:1245 + #, c-format +-msgid "\"%s\", line %d: %s" +-msgstr "\"%s\", satır %d: %s" ++msgid "re-exec failed: %s; disabling paranoia mode" ++msgstr "re-exec başarısız: %s; paranoya kipi iptal ediliyor" + +-#: timezone/zic.c:423 ++#: nscd/connections.c:1254 + #, c-format +-msgid " (rule from \"%s\", line %d)" +-msgstr " (\"%s\", %d satırından kural)" ++msgid "cannot change current working directory to \"/\": %s" ++msgstr "çalışma dizini \"/\" yapılamadı: %s" + +-#: timezone/zic.c:435 +-msgid "warning: " +-msgstr "uyarı: " ++#: nscd/connections.c:1372 ++#, c-format ++msgid "short read while reading request: %s" ++msgstr "istenen okuma kısa: %s" + +-#: timezone/zic.c:445 ++#: nscd/connections.c:1404 + #, c-format +-msgid "" +-"%s: usage is %s [ --version ] [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n" +-"\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" +-msgstr "" +-"%s: kullanımı: %s [ --version ] [ -s ] [ -v ]\n" +-"\t[ -l yerelZaman ] [ -p posixKuralları ] [ -d dizin ]\n" +-"\t[ -L artıkSaniyeler ] [ -y yıltürü ] [ dosyaismi ... ]\n" ++msgid "key length in request too long: %d" ++msgstr "istenen anahtar/tuş uzunluğu fazla: %d" ++ ++#: nscd/connections.c:1417 ++#, c-format ++msgid "short read while reading request key: %s" ++msgstr "istenen anahtar/tuş okunurken kısa okuma: %s" ++ ++#: nscd/connections.c:1426 ++#, c-format ++msgid "handle_request: request received (Version = %d) from PID %ld" ++msgstr "handle_request: %2$ld numaralı süreçden istek alındı (Sürüm = %1$d)" + +-#: timezone/zic.c:492 ++#: nscd/connections.c:1431 + #, c-format +-msgid "%s: More than one -d option specified\n" +-msgstr "%s: Birden fazla -d seçeneği belirtilmiş\n" ++msgid "handle_request: request received (Version = %d)" ++msgstr "handle_request: istek alındı (Sürüm = %d)" + +-#: timezone/zic.c:502 ++#: nscd/connections.c:1792 + #, c-format +-msgid "%s: More than one -l option specified\n" +-msgstr "%s: Birden fazla -l seçeneği belirtilmiş\n" ++msgid "could only start %d threads; terminating" ++msgstr "sadece %d evre başlatılabilir; sonlanıyor" + +-#: timezone/zic.c:512 ++#: nscd/connections.c:1840 nscd/connections.c:1841 nscd/connections.c:1858 ++#: nscd/connections.c:1867 nscd/connections.c:1885 nscd/connections.c:1896 ++#: nscd/connections.c:1907 + #, c-format +-msgid "%s: More than one -p option specified\n" +-msgstr "%s: Birden fazla -p seçeneği belirtilmiş\n" ++msgid "Failed to run nscd as user '%s'" ++msgstr "nscd '%s' kullanıcısı olarak çalıştırılamadı" + +-#: timezone/zic.c:522 ++#: nscd/connections.c:1859 + #, c-format +-msgid "%s: More than one -y option specified\n" +-msgstr "%s: Birden fazla -y seçeneği belirtilmiş\n" ++msgid "initial getgrouplist failed" ++msgstr "ilk getgrouplist başarısız" + +-#: timezone/zic.c:532 ++#: nscd/connections.c:1868 + #, c-format +-msgid "%s: More than one -L option specified\n" +-msgstr "%s: Birden fazla -L seçeneği belirtilmiş\n" ++msgid "getgrouplist failed" ++msgstr "getgrouplist başarısız" + +-#: timezone/zic.c:639 ++#: nscd/connections.c:1886 + #, c-format +-msgid "%s: Can't unlink %s: %s\n" +-msgstr "%s: %s bağı kaldırılamıyor: %s\n" +- +-#: timezone/zic.c:646 +-msgid "hard link failed, symbolic link used" +-msgstr "sabit bağ başarısız, sembolik bağ kullanıldı" ++msgid "setgroups failed" ++msgstr "setgroups başarısız" + +-#: timezone/zic.c:654 ++#: nscd/grpcache.c:400 nscd/hstcache.c:411 nscd/initgrcache.c:411 ++#: nscd/pwdcache.c:395 + #, c-format +-msgid "%s: Can't link from %s to %s: %s\n" +-msgstr "%s: %s den %s e bağ kurulamıyor: %s\n" ++msgid "short write in %s: %s" ++msgstr "%s içinde kısa yazma: %s" + +-#: timezone/zic.c:752 timezone/zic.c:754 +-msgid "same rule name in multiple files" +-msgstr "bir çok dosyada aynı kural ismi var" ++#: nscd/grpcache.c:443 nscd/initgrcache.c:77 ++#, c-format ++msgid "Haven't found \"%s\" in group cache!" ++msgstr "\"%s\" grup arabelleğinde yok!" + +-#: timezone/zic.c:795 +-msgid "unruly zone" +-msgstr "kuralsız dilim" ++#: nscd/grpcache.c:445 nscd/initgrcache.c:79 ++#, c-format ++msgid "Reloading \"%s\" in group cache!" ++msgstr "\"%s\" grup arabelleğine yeniden yükleniyor!" + +-#: timezone/zic.c:802 ++#: nscd/grpcache.c:536 + #, c-format +-msgid "%s in ruleless zone" +-msgstr "%s kuralsız zaman diliminde" ++msgid "Invalid numeric gid \"%s\"!" ++msgstr "\"%s\" grup numarası geçersiz!" + +-#: timezone/zic.c:823 +-msgid "standard input" +-msgstr "standart girdi" ++#: nscd/mem.c:382 ++#, c-format ++msgid "freed %zu bytes in %s cache" ++msgstr "%2$s arabelleğinde %1$zu bayt serbest bırakıldı" + +-#: timezone/zic.c:828 ++#: nscd/mem.c:511 + #, c-format +-msgid "%s: Can't open %s: %s\n" +-msgstr "%s: %s açılamıyor: %s\n" ++msgid "no more memory for database '%s'" ++msgstr "veritabanı '%s' için bellek kalmadı" + +-#: timezone/zic.c:839 +-msgid "line too long" +-msgstr "satır çok uzun" ++#: nscd/nscd.c:97 ++msgid "Read configuration data from NAME" ++msgstr "Yapılandırma verisini İSİM den okur" + +-#: timezone/zic.c:859 +-msgid "input line of unknown type" +-msgstr "girdi satırının türü bilinmiyor" ++#: nscd/nscd.c:99 ++msgid "Do not fork and display messages on the current tty" ++msgstr "Üzerinde çalışılan tty de iletiler ayrılmaz ve gösterilir" + +-#: timezone/zic.c:875 +-#, c-format +-msgid "%s: Leap line in non leap seconds file %s\n" +-msgstr "%s: artık saniyeler olmayan %s dosyasında `Leap' satırı\n" ++#: nscd/nscd.c:100 ++msgid "NUMBER" ++msgstr "SAYI" + +-#: timezone/zic.c:882 timezone/zic.c:1297 timezone/zic.c:1322 +-#, c-format +-msgid "%s: panic: Invalid l_value %d\n" +-msgstr "%s: panik: sol değer (l_value) %d geçersiz\n" ++#: nscd/nscd.c:100 ++msgid "Start NUMBER threads" ++msgstr "SAYIlı başlıkları başlatır" + +-#: timezone/zic.c:890 +-#, c-format +-msgid "%s: Error reading %s\n" +-msgstr "%s: %s okunurken hata\n" ++#: nscd/nscd.c:101 ++msgid "Shut the server down" ++msgstr "Sunucuyu indirir" + +-#: timezone/zic.c:897 +-#, c-format +-msgid "%s: Error closing %s: %s\n" +-msgstr "%s: %s kapatılırken hata: %s\n" ++#: nscd/nscd.c:102 ++msgid "Print current configuration statistic" ++msgstr "Şu anki yapılandırma istatistiklerini basar" + +-#: timezone/zic.c:902 +-msgid "expected continuation line not found" +-msgstr "gereken süreklilik satırı bulunamadı" ++#: nscd/nscd.c:103 ++msgid "TABLE" ++msgstr "TABLO" + +-#: timezone/zic.c:958 +-msgid "wrong number of fields on Rule line" +-msgstr "`Rule' satırının alanları eksik ya da fazla" ++#: nscd/nscd.c:104 ++msgid "Invalidate the specified cache" ++msgstr "Belirtilen arabellek geçersiz kılındı" + +-#: timezone/zic.c:962 +-msgid "nameless rule" +-msgstr "adsız kural" ++#: nscd/nscd.c:105 ++msgid "TABLE,yes" ++msgstr "TABLO,evet" + +-#: timezone/zic.c:967 +-msgid "invalid saved time" +-msgstr "kazanılmış zaman geçersiz" ++#: nscd/nscd.c:106 ++msgid "Use separate cache for each user" ++msgstr "Her kullanıcı için ayrı arabellek kullanılır" + +-#: timezone/zic.c:986 +-msgid "wrong number of fields on Zone line" +-msgstr "`Zone' satırının alanları eksik ya da fazla" ++#: nscd/nscd.c:111 ++msgid "Name Service Cache Daemon." ++msgstr "Name Service Cache Daemon." + +-#: timezone/zic.c:992 ++#: nscd/nscd.c:143 nss/getent.c:858 nss/makedb.c:123 + #, c-format +-msgid "\"Zone %s\" line and -l option are mutually exclusive" +-msgstr "\"Zone %s\" satırı ve -l seçeneği çelişiyor" ++msgid "wrong number of arguments" ++msgstr "argüman sayısı hatalı" + +-#: timezone/zic.c:1000 ++#: nscd/nscd.c:153 + #, c-format +-msgid "\"Zone %s\" line and -p option are mutually exclusive" +-msgstr "\"Zone %s\" satırı ve -p seçeneği çelişiyor" ++msgid "failure while reading configuration file; this is fatal" ++msgstr "yapılandırma dosyası okunurken hata; bu ölümcül bir hata" + +-#: timezone/zic.c:1012 ++#: nscd/nscd.c:162 + #, c-format +-msgid "duplicate zone name %s (file \"%s\", line %d)" +-msgstr "dilim ismi %s tekrarlanmış (dosya \"%s\", satır %d)" ++msgid "already running" ++msgstr "Zaten çalışıyor" + +-#: timezone/zic.c:1028 +-msgid "wrong number of fields on Zone continuation line" +-msgstr "`Zone' devam satırının alanları eksik ya da fazla" ++#: nscd/nscd.c:177 nscd/nscd.c:232 ++#, c-format ++msgid "cannot fork" ++msgstr "çatallanamıyor" + +-#: timezone/zic.c:1068 +-msgid "invalid UTC offset" +-msgstr "UTC offset geçersiz" ++#: nscd/nscd.c:240 ++#, c-format ++msgid "cannot change current working directory to \"/\"" ++msgstr "çalışma dizini \"/\" yapılamıyor" + +-#: timezone/zic.c:1071 +-msgid "invalid abbreviation format" +-msgstr "kısaltma biçemi geçersiz" ++#: nscd/nscd.c:248 ++msgid "Could not create log file" ++msgstr "Günlük dosyası oluşturulamadı" + +-#: timezone/zic.c:1097 +-msgid "Zone continuation line end time is not after end time of previous line" +-msgstr "`Zone' devamlılık satırının bitiş zamanı önceki satırın bitiş zamanından sonra değil" ++#: nscd/nscd.c:301 nscd/nscd.c:326 nscd/nscd_stat.c:172 ++#, c-format ++msgid "Only root is allowed to use this option!" ++msgstr "Bu seçenek sadece root tarafından kullanılabilir!" + +-#: timezone/zic.c:1124 +-msgid "wrong number of fields on Leap line" +-msgstr "`Leap' satırının alanları eksik ya da fazla" ++#: nscd/nscd.c:359 nscd/nscd_stat.c:191 ++#, c-format ++msgid "write incomplete" ++msgstr "yazma tamamlanamıyor" + +-#: timezone/zic.c:1133 +-msgid "invalid leaping year" +-msgstr "artık yıl geçersiz" ++#: nscd/nscd.c:370 ++#, c-format ++msgid "cannot read invalidate ACK" ++msgstr "geçersizleştirme ACK'sı okunamıyor" + +-#: timezone/zic.c:1148 timezone/zic.c:1252 +-msgid "invalid month name" +-msgstr "ay ismi geçersiz" ++#: nscd/nscd.c:376 ++#, c-format ++msgid "invalidation failed" ++msgstr "geçersizleştirme başarısız" + +-#: timezone/zic.c:1161 timezone/zic.c:1374 timezone/zic.c:1388 +-msgid "invalid day of month" +-msgstr "ayın günü geçersiz" ++#: nscd/nscd.c:386 ++#, c-format ++msgid "secure services not implemented anymore" ++msgstr "güvenli hizmetler artık gerçeklenmiyor" + +-#: timezone/zic.c:1166 +-msgid "time before zero" +-msgstr "sıfırdan önceki zaman" ++#: nscd/nscd_conf.c:55 ++#, c-format ++msgid "database %s is not supported\n" ++msgstr "veritabanı %s desteklenmiyor\n" + +-#: timezone/zic.c:1170 +-msgid "time too small" +-msgstr "süre çok kısa" ++#: nscd/nscd_conf.c:106 ++#, c-format ++msgid "Parse error: %s" ++msgstr "Çözümleme hatası: %s" + +-#: timezone/zic.c:1174 +-msgid "time too large" +-msgstr "süre çok uzun" ++#: nscd/nscd_conf.c:191 ++#, c-format ++msgid "Must specify user name for server-user option" ++msgstr "server-user seçeneği için kullanıcı ismi belirtilmelidir" + +-#: timezone/zic.c:1178 timezone/zic.c:1281 +-msgid "invalid time of day" +-msgstr "günün tarihi geçersiz" ++#: nscd/nscd_conf.c:198 ++#, c-format ++msgid "Must specify user name for stat-user option" ++msgstr "stat-user seçeneği için kullanıcı ismi belirtilmelidir" + +-#: timezone/zic.c:1197 +-msgid "illegal CORRECTION field on Leap line" +-msgstr "`Leap' satırında kuraldışı CORRECTION alanı" ++#: nscd/nscd_conf.c:242 ++#, c-format ++msgid "invalid value for 'reload-count': %u" ++msgstr "'reload-count' için değer geçersiz: %u" + +-#: timezone/zic.c:1201 +-msgid "illegal Rolling/Stationary field on Leap line" +-msgstr "`Leap' satırında kuraldışı Rolling/Stationary alanı" ++#: nscd/nscd_conf.c:257 ++#, c-format ++msgid "Must specify value for restart-interval option" ++msgstr "restart-interval seçeneği için değer belirtilmelidir" + +-#: timezone/zic.c:1216 +-msgid "wrong number of fields on Link line" +-msgstr "`Link' satırının alanları eksik ya da fazla" ++#: nscd/nscd_conf.c:271 ++#, c-format ++msgid "Unknown option: %s %s %s" ++msgstr "Bilinmeyen seçenek: %s %s %s" + +-#: timezone/zic.c:1220 +-msgid "blank FROM field on Link line" +-msgstr "`Link' satırında FROM alanı boş" ++#: nscd/nscd_conf.c:284 ++#, c-format ++msgid "cannot get current working directory: %s; disabling paranoia mode" ++msgstr "çalışılmakta olan dizin alınamıyor: %s; paranoya kipi iptal ediliyor" + +-#: timezone/zic.c:1224 +-msgid "blank TO field on Link line" +-msgstr "`Link' satırında TO alanı boş" ++#: nscd/nscd_conf.c:304 ++#, c-format ++msgid "maximum file size for %s database too small" ++msgstr "%s veritabanı için azami dosya boyu çok küçük" + +-#: timezone/zic.c:1301 +-msgid "invalid starting year" +-msgstr "başlangıç yılı geçersiz" ++#: nscd/nscd_stat.c:141 ++#, c-format ++msgid "cannot write statistics: %s" ++msgstr "istatistikler yazılamıyor: %s" + +-#: timezone/zic.c:1305 +-msgid "starting year too low to be represented" +-msgstr "başlangıç yılı gösterilemeyecek kadar küçük" ++#: nscd/nscd_stat.c:156 ++msgid "yes" ++msgstr "evet" ++ ++#: nscd/nscd_stat.c:157 ++msgid "no" ++msgstr "hayır" + +-#: timezone/zic.c:1307 +-msgid "starting year too high to be represented" +-msgstr "başlangıç yılı gösterilemeyecek kadar büyük" ++#: nscd/nscd_stat.c:168 ++#, c-format ++msgid "Only root or %s is allowed to use this option!" ++msgstr "Bu seçenek sadece root veya %s tarafından kullanılabilir!" + +-#: timezone/zic.c:1326 +-msgid "invalid ending year" +-msgstr "bitiş yılı geçersiz" ++#: nscd/nscd_stat.c:179 ++#, c-format ++msgid "nscd not running!\n" ++msgstr "nscd çalışmıyor!\n" + +-#: timezone/zic.c:1330 +-msgid "ending year too low to be represented" +-msgstr "bitiş yılı gösterilemeyecek kadar küçük" ++#: nscd/nscd_stat.c:203 ++#, c-format ++msgid "cannot read statistics data" ++msgstr "istatistik verileri okunamıyor" + +-#: timezone/zic.c:1332 +-msgid "ending year too high to be represented" +-msgstr "bitiş yılı gösterilemeyecek kadar büyük" ++#: nscd/nscd_stat.c:206 ++#, c-format ++msgid "" ++"nscd configuration:\n" ++"\n" ++"%15d server debug level\n" ++msgstr "" ++"nscd yapılandırması:\n" ++"\n" ++"%15d sunucu hata ayıklama seviyesi\n" + +-#: timezone/zic.c:1335 +-msgid "starting year greater than ending year" +-msgstr "başlangıç yılı bitiş yılından büyük" ++#: nscd/nscd_stat.c:230 ++#, c-format ++msgid "%3ud %2uh %2um %2lus server runtime\n" ++msgstr "%3ud %2uh %2um %2lus sunucu çalışma zamanı\n" + +-#: timezone/zic.c:1342 +-msgid "typed single year" +-msgstr "türünde tek yıl" ++#: nscd/nscd_stat.c:233 ++#, c-format ++msgid " %2uh %2um %2lus server runtime\n" ++msgstr " %2uh %2um %2lus sunucu çalışma zamanı\n" + +-#: timezone/zic.c:1379 +-msgid "invalid weekday name" +-msgstr "gün ismi geçersiz" ++#: nscd/nscd_stat.c:235 ++#, c-format ++msgid " %2um %2lus server runtime\n" ++msgstr " %2um %2lus sunucu çalışma zamanı\n" + +-#: timezone/zic.c:1494 ++#: nscd/nscd_stat.c:237 + #, c-format +-msgid "%s: Can't remove %s: %s\n" +-msgstr "%s: %s silinemiyor: %s\n" ++msgid " %2lus server runtime\n" ++msgstr " %2lus sunucu çalışma zamanı\n" + +-#: timezone/zic.c:1504 ++#: nscd/nscd_stat.c:239 + #, c-format +-msgid "%s: Can't create %s: %s\n" +-msgstr "%s: %s oluşturulamıyor: %s\n" ++msgid "" ++"%15d current number of threads\n" ++"%15d maximum number of threads\n" ++"%15lu number of times clients had to wait\n" ++"%15s paranoia mode enabled\n" ++"%15lu restart internal\n" ++msgstr "" ++"%15d şu an ki evre sayısı\n" ++"%15d azami evre sayısı\n" ++"%15lu istemciler bu kadar defa bekleyecek\n" ++"%15s paranoya kipi etkin\n" ++"%15lu dahili yeniden başlatma\n" + +-#: timezone/zic.c:1570 ++#: nscd/nscd_stat.c:273 + #, c-format +-msgid "%s: Error writing %s\n" +-msgstr "%s: %s yazılırken hata oluştu\n" ++msgid "" ++"\n" ++"%s cache:\n" ++"\n" ++"%15s cache is enabled\n" ++"%15s cache is persistent\n" ++"%15s cache is shared\n" ++"%15zu suggested size\n" ++"%15zu total data pool size\n" ++"%15zu used data pool size\n" ++"%15lu seconds time to live for positive entries\n" ++"%15lu seconds time to live for negative entries\n" ++"%15 cache hits on positive entries\n" ++"%15 cache hits on negative entries\n" ++"%15 cache misses on positive entries\n" ++"%15 cache misses on negative entries\n" ++"%15lu%% cache hit rate\n" ++"%15zu current number of cached values\n" ++"%15zu maximum number of cached values\n" ++"%15zu maximum chain length searched\n" ++"%15 number of delays on rdlock\n" ++"%15 number of delays on wrlock\n" ++"%15 memory allocations failed\n" ++"%15s check /etc/%s for changes\n" ++msgstr "" ++"\n" ++"%s arabellek:\n" ++"\n" ++"%15s arabellek etkin\n" ++"%15s arabellek kalıcı\n" ++"%15s arabellek paylaşımlı\n" ++"%15zu önerilen boyut\n" ++"%15zu toplam veri havuzu boyu\n" ++"%15zu kullanılmış veri havuzu boyu\n" ++"%15lu saniye; pozitif girdiler için yaşam süresi\n" ++"%15lu saniye; negatif girdiler için yaşam süresi\n" ++"%15 arabellek; pozitif girdilerde ulaşılan\n" ++"%15 arabellek; negatif girdilerde ulaşılan\n" ++"%15 arabellek; pozitif girdilerde kaybedilen\n" ++"%15 arabellek; negatif girdilerde kaybedilen\n" ++"%15lu%% arabellekleme oranı\n" ++"%15zu arabellekli değerlerin şimdiki sayısı\n" ++"%15zu arabellekli değerlerin azami sayısı\n" ++"%15zu aranan azami zincir uzunluğu\n" ++"%15 rdlock üzerinde gecikmelerin sayısı\n" ++"%15 wrlocküzerinde gecikmelerin sayısı\n" ++"%15 bellek ayırma başarısız\n" ++"%15s /etc/%s'de değişiklikler için yapılan denetim sayısı\n" + +-#: timezone/zic.c:1760 +-msgid "can't determine time zone abbreviation to use just after until time" +-msgstr "süreye değinden hemen sonra kullanılacak zaman dilimi kısaltması saptanamadı" ++#: nscd/pwdcache.c:438 ++#, c-format ++msgid "Haven't found \"%s\" in password cache!" ++msgstr "\"%s\" parola arabelleğinde yok!" + +-#: timezone/zic.c:1803 +-msgid "too many transitions?!" +-msgstr "çok fazla geçiş?!" ++#: nscd/pwdcache.c:440 ++#, c-format ++msgid "Reloading \"%s\" in password cache!" ++msgstr "\"%s\" parola arabelleğine yeriden yükleniyor!" ++ ++#: nscd/pwdcache.c:532 ++#, c-format ++msgid "Invalid numeric uid \"%s\"!" ++msgstr "\"%s\" kullanıcı numarası geçersiz!" ++ ++#: nscd/selinux.c:151 ++#, c-format ++msgid "Failed opening connection to the audit subsystem: %m" ++msgstr "denetim altsistemine bağlantı kurulamadı: %m" ++ ++#: nscd/selinux.c:172 ++msgid "Failed to set keep-capabilities" ++msgstr "Tutma yetenekleri ayarlanamadı" ++ ++#: nscd/selinux.c:173 nscd/selinux.c:232 ++#, c-format ++msgid "prctl(KEEPCAPS) failed" ++msgstr "prctl(KEEPCAPS) başarısız" + +-#: timezone/zic.c:1822 +-msgid "internal error - addtype called with bad isdst" +-msgstr "iç hata -- addtype hatalı isdst ile çağrıldı" ++#: nscd/selinux.c:187 ++msgid "Failed to initialize drop of capabilities" ++msgstr "yeteneklerin kaldırılması başlatılamadı" + +-#: timezone/zic.c:1826 +-msgid "internal error - addtype called with bad ttisstd" +-msgstr "iç hata -- addtype hatalı ttisstd ile çağrıldı" ++#: nscd/selinux.c:188 ++#, c-format ++msgid "cap_init failed" ++msgstr "cap_init başarısız" + +-#: timezone/zic.c:1830 +-msgid "internal error - addtype called with bad ttisgmt" +-msgstr "iç hata -- addtype hatalı ttisgmt ile çağrıldı" ++#: nscd/selinux.c:205 ++msgid "Failed to drop capabilities\n" ++msgstr "yetenekler kaldırılamadı\n" + +-#: timezone/zic.c:1849 +-msgid "too many local time types" +-msgstr "yerel zaman türleri çok fazla" ++#: nscd/selinux.c:206 nscd/selinux.c:223 ++#, c-format ++msgid "cap_set_proc failed" ++msgstr "cap_set_proc başarısız" + +-#: timezone/zic.c:1877 +-msgid "too many leap seconds" +-msgstr "çok fazla artık saniye" ++#: nscd/selinux.c:222 ++msgid "Failed to drop capabilities" ++msgstr "Yetenekler kaldırılamadı" + +-#: timezone/zic.c:1883 +-msgid "repeated leap second moment" +-msgstr "tekrarlanan artık saniye anı" ++#: nscd/selinux.c:231 ++msgid "Failed to unset keep-capabilities" ++msgstr "Tutma yetenekleri kaldırılamadı" + +-#: timezone/zic.c:1935 +-msgid "Wild result from command execution" +-msgstr "Komut icrasından alınan sonuç garip" ++#: nscd/selinux.c:247 ++msgid "Failed to determine if kernel supports SELinux" ++msgstr "Çekirdek SELinux'u destekliyor mu, saptanamadı." + +-#: timezone/zic.c:1936 ++#: nscd/selinux.c:262 + #, c-format +-msgid "%s: command was '%s', result was %d\n" +-msgstr "%s: komut `%s' idi, sonuç %d oldu\n" ++msgid "Failed to start AVC thread" ++msgstr "EVA evresi başlatılamadı" + +-#: timezone/zic.c:2031 +-msgid "Odd number of quotation marks" +-msgstr "Tırnak işaretleri tek sayıda" ++#: nscd/selinux.c:284 ++#, c-format ++msgid "Failed to create AVC lock" ++msgstr "EVA kilidi oluşturulamadı" + +-#: timezone/zic.c:2051 timezone/zic.c:2070 +-msgid "time overflow" +-msgstr "zaman taşması" ++#: nscd/selinux.c:324 ++#, c-format ++msgid "Failed to start AVC" ++msgstr "EVA başlatılamadı" + +-#: timezone/zic.c:2117 +-msgid "use of 2/29 in non leap-year" +-msgstr "artık olmayan yıl içinde 2/29 kullanımı" ++#: nscd/selinux.c:326 ++msgid "Access Vector Cache (AVC) started" ++msgstr "Erişim Vektörleri Arabelleği (EVA) başlatıldı" + +-#: timezone/zic.c:2151 +-msgid "no day in month matches rule" +-msgstr "ay içinde kurala uyan gün yok" ++#: nscd/selinux.c:347 ++msgid "Error getting context of socket peer" ++msgstr "soket çifti bağlamı alınırken hata" + +-#: timezone/zic.c:2175 +-msgid "too many, or too long, time zone abbreviations" +-msgstr "çok fazla ya da çok uzun zaman dilimi kısaltmaları" ++#: nscd/selinux.c:352 ++msgid "Error getting context of nscd" ++msgstr "nscd bağlamı alınırken hata" + +-#: timezone/zic.c:2216 +-#, c-format +-msgid "%s: Can't create directory %s: %s\n" +-msgstr "%s: %s dizini oluşturulamıyor: %s\n" ++#: nscd/selinux.c:358 ++msgid "Error getting sid from context" ++msgstr "Bağlamdan sid alınırken hata" + +-#: timezone/zic.c:2238 ++#: nscd/selinux.c:390 + #, c-format +-msgid "%s: %d did not sign extend correctly\n" +-msgstr "%s: %d ölçüyü tutturamadı\n" +- +-#: posix/../sysdeps/generic/wordexp.c:1797 +-msgid "parameter null or not set" +-msgstr "parametre ya null ya da verilmemiş" ++msgid "" ++"\n" ++"SELinux AVC Statistics:\n" ++"\n" ++"%15u entry lookups\n" ++"%15u entry hits\n" ++"%15u entry misses\n" ++"%15u entry discards\n" ++"%15u CAV lookups\n" ++"%15u CAV hits\n" ++"%15u CAV probes\n" ++"%15u CAV misses\n" ++msgstr "" ++"\n" ++"SELinux EVA istatistikleri:\n" ++"\n" ++"%15u girdi arandı\n" ++"%15u girdi yapıldı\n" ++"%15u girdi kayıp\n" ++"%15u girdi iptal\n" ++"%15u vektör arandı\n" ++"%15u toplam vektör\n" ++"%15u vektör algılandı\n" ++"%15u vektör kayıp\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:31 +-msgid "Address family for hostname not supported" +-msgstr "Makina ismi için adres ailesi desteklenmiyor" ++#: nss/getent.c:52 ++msgid "database [key ...]" ++msgstr "veritabanı [anahtar/tuş ...]" + +-#: posix/../sysdeps/posix/gai_strerror.c:32 +-msgid "Temporary failure in name resolution" +-msgstr "İsim çözünürlüğünde geçici başarısızlık" ++#: nss/getent.c:57 ++msgid "Service configuration to be used" ++msgstr "Kullanılacak yapılandırmayı hizmete alır" + +-#: posix/../sysdeps/posix/gai_strerror.c:33 +-msgid "Bad value for ai_flags" +-msgstr "ai_flags için değer hatalı" ++#: nss/getent.c:62 ++msgid "" ++"Get entries from administrative database. For bug reporting instructions, please see:\n" ++".\n" ++msgstr "" ++"Yönetimsel veritabanındaki girdileri gösterir.\n" ++"Yazılım hatalarını bildirme işlemleri için,\n" ++" adresine bakınız.\n" ++"Çeviri hatalarını adresine bildiriniz.\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:34 +-msgid "Non-recoverable failure in name resolution" +-msgstr "İsim çözümlemesinde düzeltilebilir olmayan bozukluk" ++#: nss/getent.c:145 nss/getent.c:394 ++#, c-format ++msgid "Enumeration not supported on %s\n" ++msgstr "Numaralama %s ile desteklenmiyor\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:35 +-msgid "ai_family not supported" +-msgstr "ai_family desteklenmiyor" ++#: nss/getent.c:782 ++#, c-format ++msgid "Unknown database name" ++msgstr "Bilinmeyen veritabanı ismi" + +-#: posix/../sysdeps/posix/gai_strerror.c:36 +-msgid "Memory allocation failure" +-msgstr "Bellek tahsisi başarısız" ++#: nss/getent.c:808 ++msgid "Supported databases:\n" ++msgstr "Desteklenen veritabanları:\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:37 +-msgid "No address associated with hostname" +-msgstr "Makina ismiyle ilişkili adres yok" ++#: nss/getent.c:868 ++#, c-format ++msgid "Unknown database: %s\n" ++msgstr "Bilinmeyen veritabanı: %s\n" + +-#: posix/../sysdeps/posix/gai_strerror.c:38 +-msgid "Name or service not known" +-msgstr "İsim ya da servis bilinmiyor" ++#: nss/makedb.c:60 ++msgid "Convert key to lower case" ++msgstr "Küçük harfe çevirir" ++ ++#: nss/makedb.c:63 ++msgid "Do not print messages while building database" ++msgstr "Veritabanı oluşturulurken iletiler basılmaz" ++ ++#: nss/makedb.c:65 ++msgid "Print content of database file, one entry a line" ++msgstr "Veritabanı içeriği her satırda bir girdi olarak basılır" ++ ++#: nss/makedb.c:70 ++msgid "Create simple DB database from textual input." ++msgstr "Metinsel girdiden basit DB veritabanı oluşturur." + +-#: posix/../sysdeps/posix/gai_strerror.c:39 +-msgid "Servname not supported for ai_socktype" +-msgstr "ai_socktype için sunucu ismi desteklenmiyor" ++#: nss/makedb.c:73 ++msgid "" ++"INPUT-FILE OUTPUT-FILE\n" ++"-o OUTPUT-FILE INPUT-FILE\n" ++"-u INPUT-FILE" ++msgstr "" ++"GİRDİ-DOSYASI ÇIKTI-DOSYASI\n" ++"-o ÇIKTI-DOSYASI GİRDİ-DOSYASI\n" ++"-u GİRDİ-DOSYASI" + +-#: posix/../sysdeps/posix/gai_strerror.c:40 +-msgid "ai_socktype not supported" +-msgstr "ai_socktype desteklenmiyor" ++#: nss/makedb.c:142 ++#, c-format ++msgid "No usable database library found." ++msgstr "Kullanılabilir bir veritabanı kütüphanesi yok." + +-#: posix/../sysdeps/posix/gai_strerror.c:41 +-msgid "System error" +-msgstr "Sistem hatası" ++#: nss/makedb.c:149 ++#, c-format ++msgid "cannot open database file `%s': %s" ++msgstr "`%s' veritabanı dosyası açılamıyor: %s" + +-#: posix/../sysdeps/posix/gai_strerror.c:42 +-msgid "Processing request in progress" +-msgstr "İşlem zaten süreç dahilinde" ++#: nss/makedb.c:151 ++msgid "incorrectly formatted file" ++msgstr "yanlış biçimlenmiş dosya" + +-#: posix/../sysdeps/posix/gai_strerror.c:43 +-msgid "Request canceled" +-msgstr "İstem iptal edildi" ++#: nss/makedb.c:331 ++msgid "duplicate key" ++msgstr "yinelenen anahtar/tuş" + +-#: posix/../sysdeps/posix/gai_strerror.c:44 +-msgid "Request not canceled" +-msgstr "İstem iptal edilmedi" ++#: nss/makedb.c:337 ++#, c-format ++msgid "while writing database file" ++msgstr "veritabanı dosyası yazılırken" + +-#: posix/../sysdeps/posix/gai_strerror.c:45 +-msgid "All requests done" +-msgstr "Tüm istekler yerine getirildi" ++#: nss/makedb.c:348 ++#, c-format ++msgid "problems while reading `%s'" ++msgstr "`%s' okunurken sorunlar" + +-#: posix/../sysdeps/posix/gai_strerror.c:46 +-msgid "Interrupted by a signal" +-msgstr "Bir sinyal ile engellendi" ++#: nss/makedb.c:368 nss/makedb.c:385 ++#, c-format ++msgid "while reading database" ++msgstr "veritabanı okunurken" + +-#: posix/getconf.c:892 ++#: posix/getconf.c:940 + #, c-format + msgid "Usage: %s [-v specification] variable_name [pathname]\n" + msgstr "Kullanımı: %s [-v özellik] değişken_ismi [dosyayolu_ismi]\n" + +-#: posix/getconf.c:950 ++#: posix/getconf.c:943 ++#, c-format ++msgid " %s -a [pathname]\n" ++msgstr " %s -a [yolismi]\n" ++ ++#: posix/getconf.c:1062 + #, c-format + msgid "unknown specification \"%s\"" + msgstr "Özellik \"%s\" bilinmiyor" + +-#: posix/getconf.c:979 posix/getconf.c:995 ++#: posix/getconf.c:1090 ++#, c-format ++msgid "Couldn't execute %s" ++msgstr "%s çalıştırılamadı" ++ ++#: posix/getconf.c:1130 posix/getconf.c:1146 + msgid "undefined" + msgstr "atanmamış" + +-#: posix/getconf.c:1017 ++#: posix/getconf.c:1168 + #, c-format + msgid "Unrecognized variable `%s'" + msgstr "Tanınmayan değişken `%s'" + +-#: posix/getopt.c:692 posix/getopt.c:711 ++#: posix/getopt.c:571 posix/getopt.c:587 + #, c-format + msgid "%s: option `%s' is ambiguous\n" + msgstr "%s: `%s' seçeneği burada belirsiz\n" + +-#: posix/getopt.c:744 posix/getopt.c:748 ++#: posix/getopt.c:620 posix/getopt.c:624 + #, c-format + msgid "%s: option `--%s' doesn't allow an argument\n" + msgstr "%s: `--%s' seçeneği argümansız kullanılır\n" + +-#: posix/getopt.c:757 posix/getopt.c:762 ++#: posix/getopt.c:633 posix/getopt.c:638 + #, c-format + msgid "%s: option `%c%s' doesn't allow an argument\n" + msgstr "%s: `%c%s' seçeneği argümansız kullanılır\n" + +-#: posix/getopt.c:807 posix/getopt.c:829 posix/getopt.c:1159 +-#: posix/getopt.c:1181 ++#: posix/getopt.c:681 posix/getopt.c:700 posix/getopt.c:1016 ++#: posix/getopt.c:1035 + #, c-format + msgid "%s: option `%s' requires an argument\n" + msgstr "%s: `%s' seçeneği bir argümanla kullanılır\n" + +-#: posix/getopt.c:867 posix/getopt.c:870 ++#: posix/getopt.c:738 posix/getopt.c:741 + #, c-format + msgid "%s: unrecognized option `--%s'\n" + msgstr "%s: tanınmayan seçenek `--%s'\n" + +-#: posix/getopt.c:878 posix/getopt.c:881 ++#: posix/getopt.c:749 posix/getopt.c:752 + #, c-format + msgid "%s: unrecognized option `%c%s'\n" + msgstr "%s: tanınmayan seçenek: `%c%s'\n" + +-#: posix/getopt.c:936 posix/getopt.c:939 ++#: posix/getopt.c:804 posix/getopt.c:807 + #, c-format + msgid "%s: illegal option -- %c\n" + msgstr "%s: kuraldışı seçenek -- %c\n" + +-#: posix/getopt.c:945 posix/getopt.c:948 ++#: posix/getopt.c:813 posix/getopt.c:816 + #, c-format + msgid "%s: invalid option -- %c\n" + msgstr "%s: geçersiz seçenek -- %c\n" + +-#: posix/getopt.c:1003 posix/getopt.c:1022 posix/getopt.c:1234 +-#: posix/getopt.c:1255 ++#: posix/getopt.c:868 posix/getopt.c:884 posix/getopt.c:1088 ++#: posix/getopt.c:1106 + #, c-format + msgid "%s: option requires an argument -- %c\n" + msgstr "%s: seçenek bir argümanla kullanılır -- %c\n" + +-#: posix/getopt.c:1074 posix/getopt.c:1093 ++#: posix/getopt.c:937 posix/getopt.c:953 + #, c-format + msgid "%s: option `-W %s' is ambiguous\n" + msgstr "%s: `-W %s' seçeneği burada belirsiz\n" + +-#: posix/getopt.c:1117 posix/getopt.c:1138 ++#: posix/getopt.c:977 posix/getopt.c:995 + #, c-format + msgid "%s: option `-W %s' doesn't allow an argument\n" + msgstr "%s: `-W %s' seçeneği argümansız kullanılır\n" + +-#: posix/regcomp.c:150 ++#: posix/regcomp.c:135 + msgid "No match" + msgstr "Eşleşme yok" + +-#: posix/regcomp.c:153 ++#: posix/regcomp.c:138 + msgid "Invalid regular expression" + msgstr "Düzenli ifade geçersiz" + +-#: posix/regcomp.c:156 ++#: posix/regcomp.c:141 + msgid "Invalid collation character" + msgstr "Karşılaştırma karakteri geçersiz" + +-#: posix/regcomp.c:159 ++#: posix/regcomp.c:144 + msgid "Invalid character class name" + msgstr "Geçersiz karakter sınıfı ismi" + +-#: posix/regcomp.c:162 ++#: posix/regcomp.c:147 + msgid "Trailing backslash" + msgstr "İzleyen tersbölü" + +-#: posix/regcomp.c:165 ++#: posix/regcomp.c:150 + msgid "Invalid back reference" + msgstr "Geriye başvuru geçersiz" + +-#: posix/regcomp.c:168 ++#: posix/regcomp.c:153 + msgid "Unmatched [ or [^" + msgstr "[ ya da [^ eşleşmiyor" + +-#: posix/regcomp.c:171 ++#: posix/regcomp.c:156 + msgid "Unmatched ( or \\(" + msgstr "( ya da \\( eşleşmiyor" + +-#: posix/regcomp.c:174 ++#: posix/regcomp.c:159 + msgid "Unmatched \\{" + msgstr "\\{ eşleşmiyor" + +-#: posix/regcomp.c:177 ++#: posix/regcomp.c:162 + msgid "Invalid content of \\{\\}" + msgstr "\\{\\} içeriği geçersiz" + +-#: posix/regcomp.c:180 ++#: posix/regcomp.c:165 + msgid "Invalid range end" + msgstr "Geçersiz kapsam sonu" + +-#: posix/regcomp.c:183 ++#: posix/regcomp.c:168 + msgid "Memory exhausted" + msgstr "Bellek tükendi" + +-#: posix/regcomp.c:186 ++#: posix/regcomp.c:171 + msgid "Invalid preceding regular expression" + msgstr "Önceleme düzenli ifadesi geçersiz" + +-#: posix/regcomp.c:189 ++#: posix/regcomp.c:174 + msgid "Premature end of regular expression" + msgstr "Düzenli ifadenin sonu eksik" + +-#: posix/regcomp.c:192 ++#: posix/regcomp.c:177 + msgid "Regular expression too big" + msgstr "Düzenli ifade çok büyük" + +-#: posix/regcomp.c:195 ++#: posix/regcomp.c:180 + msgid "Unmatched ) or \\)" + msgstr ") ya da \\) eşleşmiyor" + +-#: posix/regcomp.c:661 ++#: posix/regcomp.c:660 + msgid "No previous regular expression" + msgstr "Önceki düzenli ifade yok" + +-#: argp/argp-help.c:224 +-#, c-format +-msgid "%.*s: ARGP_HELP_FMT parameter requires a value" +-msgstr "%.*s: ARGP_HELP_FMT parametresi ile bir değer vermek gerekir" +- +-#: argp/argp-help.c:233 +-#, c-format +-msgid "%.*s: Unknown ARGP_HELP_FMT parameter" +-msgstr "%.*s: ARGP_HELP_FMT parametresi bilinmiyor" +- +-#: argp/argp-help.c:245 +-#, c-format +-msgid "Garbage in ARGP_HELP_FMT: %s" +-msgstr "ARGP_HELP_FMT içinde bozulma saptandı: %s" +- +-#: argp/argp-help.c:1205 +-msgid "Mandatory or optional arguments to long options are also mandatory or optional for any corresponding short options." +-msgstr "Uzun seçeneklerdeki argümanlar zorunlu olsun olmasın kısa seçeneklerde de geçerlidir." +- +-#: argp/argp-help.c:1592 +-msgid "Usage:" +-msgstr "Kullanımı:" +- +-#: argp/argp-help.c:1596 +-msgid " or: " +-msgstr " veya: " +- +-#: argp/argp-help.c:1608 +-msgid " [OPTION...]" +-msgstr " [SEÇENEK...]" +- +-#: argp/argp-help.c:1635 +-#, c-format +-msgid "Try `%s --help' or `%s --usage' for more information.\n" +-msgstr "Daha fazla bilgi için `%s --help' veya `%s --usage' yazınız.\n" +- +-#: argp/argp-help.c:1663 +-#, c-format +-msgid "Report bugs to %s.\n" +-msgstr "" +-"Yazılım hatalarını %s adresine\n" +-"çeviri hatalarını adresine bildiriniz.\n" +- +-#: argp/argp-parse.c:115 +-msgid "Give this help list" +-msgstr "Bu yardım iletisi verilir" +- +-#: argp/argp-parse.c:116 +-msgid "Give a short usage message" +-msgstr "Kısa kullanım iletisi verilir" +- +-#: argp/argp-parse.c:117 +-msgid "Set the program name" +-msgstr "Uygulama ismi belirtilir" +- +-#: argp/argp-parse.c:119 +-msgid "Hang for SECS seconds (default 3600)" +-msgstr "SANİYE saniyede kapanır (öntanımlı 3600)" +- +-#: argp/argp-parse.c:180 +-msgid "Print program version" +-msgstr "Program sürümünü basar" +- +-#: argp/argp-parse.c:196 +-msgid "(PROGRAM ERROR) No version known!?" +-msgstr "(PROGRAM HATASI) Bilinen bir sürüm değil!?" +- +-#: argp/argp-parse.c:672 +-#, c-format +-msgid "%s: Too many arguments\n" +-msgstr "%s: Çok fazla argüman var\n" +- +-#: argp/argp-parse.c:813 +-msgid "(PROGRAM ERROR) Option should have been recognized!?" +-msgstr "(PROGRAM HATASI) Bu tanınan bir seçenek olmalıydı!?" ++#: posix/wordexp.c:1798 ++msgid "parameter null or not set" ++msgstr "parametre ya null ya da verilmemiş" + + #: resolv/herror.c:68 + msgid "Resolver Error 0 (no error)" +@@ -3739,202 +4474,74 @@ + msgstr "Bilinmeyen sunucu hatası" + + #: resolv/herror.c:72 +-msgid "No address associated with name" +-msgstr "İsimle ilişkili adres yok" +- +-#: resolv/herror.c:108 +-msgid "Resolver internal error" +-msgstr "Çözümleyici içsel hatası" +- +-#: resolv/herror.c:111 +-msgid "Unknown resolver error" +-msgstr "Bilinmeyen çözümleyici hatası" +- +-#: resolv/res_hconf.c:147 +-#, c-format +-msgid "%s: line %d: expected service, found `%s'\n" +-msgstr "%s: satır %d: `%s' bir servis olmalıydı\n" +- +-#: resolv/res_hconf.c:165 +-#, c-format +-msgid "%s: line %d: cannot specify more than %d services" +-msgstr "%s: satır %d: en çok %d servis belirtilebilir" +- +-#: resolv/res_hconf.c:191 +-#, c-format +-msgid "%s: line %d: list delimiter not followed by keyword" +-msgstr "%s: satır %d: liste ayracından sonra bir anahtar sözcük gelmemeli" +- +-#: resolv/res_hconf.c:231 +-#, c-format +-msgid "%s: line %d: cannot specify more than %d trim domains" +-msgstr "%s: satır %d: en çok %d saf alan ismi belirtilebilir" +- +-#: resolv/res_hconf.c:256 +-#, c-format +-msgid "%s: line %d: list delimiter not followed by domain" +-msgstr "%s: satır %d: liste ayracından sonra bir alan ismi gelmemeli" +- +-#: resolv/res_hconf.c:319 +-#, c-format +-msgid "%s: line %d: expected `on' or `off', found `%s'\n" +-msgstr "%s: satır %d: `%s' değil, `on' ya da `off' olmalıydı\n" +- +-#: resolv/res_hconf.c:366 +-#, c-format +-msgid "%s: line %d: bad command `%s'\n" +-msgstr "%s: satır %d: `%s' komutu hatalı\n" +- +-#: resolv/res_hconf.c:395 +-#, c-format +-msgid "%s: line %d: ignoring trailing garbage `%s'\n" +-msgstr "%s: satır %d: bozuk kısım `%s' yoksayılıyor\n" +- +-#: nss/getent.c:51 +-msgid "database [key ...]" +-msgstr "veritabanı [tuş ...]" +- +-#: nss/getent.c:56 +-msgid "Service configuration to be used" +-msgstr "Kullanılacak yapılandırmayı hizmete alır" +- +-#: nss/getent.c:136 nss/getent.c:375 +-#, c-format +-msgid "Enumeration not supported on %s\n" +-msgstr "Numaralama %s ile desteklenmiyor\n" +- +-#: nss/getent.c:800 +-msgid "getent - get entries from administrative database." +-msgstr "getent - yönetim veritabanından girdiler alınıyor." +- +-#: nss/getent.c:801 +-msgid "Supported databases:" +-msgstr "Desteklenen veritabanları:" +- +-#: nss/getent.c:858 nscd/nscd.c:131 nscd/nscd_nischeck.c:64 +-msgid "wrong number of arguments" +-msgstr "argüman sayısı hatalı" +- +-#: nss/getent.c:868 +-#, c-format +-msgid "Unknown database: %s\n" +-msgstr "Bilinmeyen veritabanı: %s\n" +- +-#: debug/pcprofiledump.c:52 +-msgid "Don't buffer output" +-msgstr "Tampon çıktılanmaz" +- +-#: debug/pcprofiledump.c:57 +-msgid "Dump information generated by PC profiling." +-msgstr "Üretilen PC profilini yazar." +- +-#: debug/pcprofiledump.c:60 +-msgid "[FILE]" +-msgstr "[DOSYA]" +- +-#: debug/pcprofiledump.c:100 +-msgid "cannot open input file" +-msgstr "girdi dosyası açılamıyor" +- +-#: debug/pcprofiledump.c:106 +-msgid "cannot read header" +-msgstr "başlık okunamıyor" +- +-#: debug/pcprofiledump.c:170 +-msgid "invalid pointer size" +-msgstr "imleyici uzunluğu geçersiz" ++msgid "No address associated with name" ++msgstr "İsimle ilişkili adres yok" + +-#: inet/rcmd.c:163 inet/rcmd.c:166 +-msgid "rcmd: Cannot allocate memory\n" +-msgstr "rcmd: Bellek ayrılamadı\n" ++#: resolv/herror.c:107 ++msgid "Resolver internal error" ++msgstr "Çözümleyici içsel hatası" + +-#: inet/rcmd.c:185 inet/rcmd.c:188 +-msgid "rcmd: socket: All ports in use\n" +-msgstr "rcmd: soket: Tüm portlar kullanımda\n" ++#: resolv/herror.c:110 ++msgid "Unknown resolver error" ++msgstr "Bilinmeyen çözümleyici hatası" + +-#: inet/rcmd.c:222 ++#: resolv/res_hconf.c:124 + #, c-format +-msgid "connect to address %s: " +-msgstr "%s adresine bağlantı:" ++msgid "%s: line %d: cannot specify more than %d trim domains" ++msgstr "%s: satır %d: en çok %d saf alan ismi belirtilebilir" + +-#: inet/rcmd.c:240 ++#: resolv/res_hconf.c:145 + #, c-format +-msgid "Trying %s...\n" +-msgstr "%s deneniyor...\n" ++msgid "%s: line %d: list delimiter not followed by domain" ++msgstr "%s: satır %d: liste ayracından sonra bir alan ismi gelmemeli" + +-#: inet/rcmd.c:289 ++#: resolv/res_hconf.c:204 + #, c-format +-msgid "rcmd: write (setting up stderr): %m\n" +-msgstr "rcmd: write (stderr ayarlaması): %m\n" ++msgid "%s: line %d: expected `on' or `off', found `%s'\n" ++msgstr "%s: satır %d: `%s' değil, `on' ya da `off' olmalıydı\n" + +-#: inet/rcmd.c:310 ++#: resolv/res_hconf.c:247 + #, c-format +-msgid "rcmd: poll (setting up stderr): %m\n" +-msgstr "rcmd: poll (stderr ayarlaması): %m\n" +- +-#: inet/rcmd.c:313 +-msgid "poll: protocol failure in circuit setup\n" +-msgstr "poll: devre ayarında protokol hatası\n" +- +-#: inet/rcmd.c:358 +-msgid "socket: protocol failure in circuit setup\n" +-msgstr "soket: devre ayarında protokol hatası\n" ++msgid "%s: line %d: bad command `%s'\n" ++msgstr "%s: satır %d: `%s' komutu hatalı\n" + +-#: inet/rcmd.c:387 ++#: resolv/res_hconf.c:282 + #, c-format +-msgid "rcmd: %s: short read" +-msgstr "rcmd: %s: kısa okuma" +- +-#: inet/rcmd.c:549 +-msgid "lstat failed" +-msgstr "lstat başarısız" +- +-#: inet/rcmd.c:551 +-msgid "not regular file" +-msgstr "düzenli dosya değil" +- +-#: inet/rcmd.c:556 +-msgid "cannot open" +-msgstr "açılamıyor" +- +-#: inet/rcmd.c:558 +-msgid "fstat failed" +-msgstr "fstat başarısız" +- +-#: inet/rcmd.c:560 +-msgid "bad owner" +-msgstr "Sahip hatalı" ++msgid "%s: line %d: ignoring trailing garbage `%s'\n" ++msgstr "%s: satır %d: bozuk kısım `%s' yoksayılıyor\n" + +-#: inet/rcmd.c:562 +-msgid "writeable by other than owner" +-msgstr "sahibinden başkası yazabilir" ++#: stdio-common/psignal.c:51 ++#, c-format ++msgid "%s%sUnknown signal %d\n" ++msgstr "%s%sBilinmeyen sinyal %d\n" + +-#: inet/rcmd.c:564 +-msgid "hard linked somewhere" +-msgstr "bir yere sabit bağlı" ++#: stdio-common/psignal.c:52 ++msgid "Unknown signal" ++msgstr "Bilinmeyen sinyal" + +-#: inet/ruserpass.c:170 inet/ruserpass.c:193 +-msgid "out of memory" +-msgstr "bellek yetersiz" ++#: string/_strerror.c:45 sysdeps/mach/_strerror.c:87 ++msgid "Unknown error " ++msgstr "Bilinmeyen hata " + +-#: inet/ruserpass.c:184 +-msgid "Error: .netrc file is readable by others." +-msgstr "Hata: .netrc dosyası başkaları tarafından okunabilir." ++#: string/strerror.c:43 ++msgid "Unknown error" ++msgstr "Bilinmeyen hata" + +-#: inet/ruserpass.c:185 +-msgid "Remove password or make file unreadable by others." +-msgstr "Parolayı kaldırır ya da dosyayı diğerleri tarafından okunamaz yapar." ++#: string/strsignal.c:65 ++#, c-format ++msgid "Real-time signal %d" ++msgstr "Gerçek-zamanlı sinyal %d" + +-#: inet/ruserpass.c:277 ++#: string/strsignal.c:69 + #, c-format +-msgid "Unknown .netrc keyword %s" +-msgstr "Bilinmeyen .netrc anahtar kelimesi %s" ++msgid "Unknown signal %d" ++msgstr "Bilinmeyen sinyal %d" + +-#: sunrpc/auth_unix.c:115 sunrpc/auth_unix.c:118 ++#: sunrpc/auth_unix.c:114 + msgid "authunix_create: out of memory\n" + msgstr "authunix_create: bellek yetersiz\n" + +-#: sunrpc/auth_unix.c:318 ++#: sunrpc/auth_unix.c:350 + msgid "auth_none.c - Fatal marshalling problem" + msgstr "auth_none.c - Ölümcül dizme sorunu" + +@@ -3952,111 +4559,111 @@ + msgid "(unknown authentication error - %d)" + msgstr "(bilinmeyen kanıtlama hatası - %d)" + +-#: sunrpc/clnt_perr.c:177 ++#: sunrpc/clnt_perr.c:172 + msgid "RPC: Success" + msgstr "RPC: Başarılı" + +-#: sunrpc/clnt_perr.c:180 ++#: sunrpc/clnt_perr.c:175 + msgid "RPC: Can't encode arguments" + msgstr "RPC: argümanlar kodlanamadı" + +-#: sunrpc/clnt_perr.c:184 ++#: sunrpc/clnt_perr.c:179 + msgid "RPC: Can't decode result" + msgstr "RPC: sonuç çözümlenemedi" + +-#: sunrpc/clnt_perr.c:188 ++#: sunrpc/clnt_perr.c:183 + msgid "RPC: Unable to send" + msgstr "RPC: Gönderilemedi" + +-#: sunrpc/clnt_perr.c:192 ++#: sunrpc/clnt_perr.c:187 + msgid "RPC: Unable to receive" + msgstr "RPC: Alınamadı" + +-#: sunrpc/clnt_perr.c:196 ++#: sunrpc/clnt_perr.c:191 + msgid "RPC: Timed out" + msgstr "RPC: Zaman aşımı" + +-#: sunrpc/clnt_perr.c:200 ++#: sunrpc/clnt_perr.c:195 + msgid "RPC: Incompatible versions of RPC" + msgstr "RPC: RPC sürümleri eksik" + +-#: sunrpc/clnt_perr.c:204 ++#: sunrpc/clnt_perr.c:199 + msgid "RPC: Authentication error" + msgstr "RPC: Kanıtlama hatası" + +-#: sunrpc/clnt_perr.c:208 ++#: sunrpc/clnt_perr.c:203 + msgid "RPC: Program unavailable" + msgstr "RPC: Uygulama kullanışsız" + +-#: sunrpc/clnt_perr.c:212 ++#: sunrpc/clnt_perr.c:207 + msgid "RPC: Program/version mismatch" + msgstr "RPC: Uygulama/sürüm çelişiyor" + +-#: sunrpc/clnt_perr.c:216 ++#: sunrpc/clnt_perr.c:211 + msgid "RPC: Procedure unavailable" + msgstr "RPC: Altyordam kullanışsız" + +-#: sunrpc/clnt_perr.c:220 ++#: sunrpc/clnt_perr.c:215 + msgid "RPC: Server can't decode arguments" + msgstr "RPC: Sunucu argümanları çözümleyemedi" + +-#: sunrpc/clnt_perr.c:224 ++#: sunrpc/clnt_perr.c:219 + msgid "RPC: Remote system error" + msgstr "RPC: Uzak sistem hatası" + +-#: sunrpc/clnt_perr.c:228 ++#: sunrpc/clnt_perr.c:223 + msgid "RPC: Unknown host" + msgstr "RPC: Bilinmeyen makina" + +-#: sunrpc/clnt_perr.c:232 ++#: sunrpc/clnt_perr.c:227 + msgid "RPC: Unknown protocol" + msgstr "RPC: Bilinmeyen protokol" + +-#: sunrpc/clnt_perr.c:236 ++#: sunrpc/clnt_perr.c:231 + msgid "RPC: Port mapper failure" + msgstr "RPC: Port eşlemci başarısız" + +-#: sunrpc/clnt_perr.c:240 ++#: sunrpc/clnt_perr.c:235 + msgid "RPC: Program not registered" + msgstr "RPC: Program kayıtlı değil" + +-#: sunrpc/clnt_perr.c:244 ++#: sunrpc/clnt_perr.c:239 + msgid "RPC: Failed (unspecified error)" + msgstr "RPC: Başarısız (belirtilmemiş hata)" + +-#: sunrpc/clnt_perr.c:285 ++#: sunrpc/clnt_perr.c:280 + msgid "RPC: (unknown error code)" + msgstr "RPC: (bilinmeyen hata kodu)" + +-#: sunrpc/clnt_perr.c:357 ++#: sunrpc/clnt_perr.c:342 + msgid "Authentication OK" + msgstr "Kimlik kanıtlama TAMAM" + +-#: sunrpc/clnt_perr.c:360 ++#: sunrpc/clnt_perr.c:345 + msgid "Invalid client credential" + msgstr "İstemci güven belgesi geçersiz" + +-#: sunrpc/clnt_perr.c:364 ++#: sunrpc/clnt_perr.c:349 + msgid "Server rejected credential" + msgstr "Sunucu güven belgesini reddetti" + +-#: sunrpc/clnt_perr.c:368 ++#: sunrpc/clnt_perr.c:353 + msgid "Invalid client verifier" + msgstr "İstemci doğrulaması geçersiz" + +-#: sunrpc/clnt_perr.c:372 ++#: sunrpc/clnt_perr.c:357 + msgid "Server rejected verifier" + msgstr "Sunucu doğrulayıcıyı reddetti" + +-#: sunrpc/clnt_perr.c:376 ++#: sunrpc/clnt_perr.c:361 + msgid "Client credential too weak" + msgstr "İstemci güven belgesi çok zayıf" + +-#: sunrpc/clnt_perr.c:380 ++#: sunrpc/clnt_perr.c:365 + msgid "Invalid server verifier" + msgstr "Sunucu doğrulaması geçersiz" + +-#: sunrpc/clnt_perr.c:384 ++#: sunrpc/clnt_perr.c:369 + msgid "Failed (unspecified error)" + msgstr "Başarılamadı (belirlenmemiş hata)" + +@@ -4064,192 +4671,176 @@ + msgid "clnt_raw.c - Fatal header serialization error." + msgstr "clnt_raw.c - Ölümcül başlık sıralama hatası." + +-#: sunrpc/clnt_tcp.c:134 sunrpc/clnt_tcp.c:137 ++#: sunrpc/clnt_tcp.c:131 + msgid "clnttcp_create: out of memory\n" + msgstr "clnttcp_create: bellek yetersiz\n" + +-#: sunrpc/clnt_udp.c:141 sunrpc/clnt_udp.c:144 ++#: sunrpc/clnt_udp.c:139 + msgid "clntudp_create: out of memory\n" + msgstr "clntudp_create: bellek yetersiz\n" + +-#: sunrpc/clnt_unix.c:131 sunrpc/clnt_unix.c:134 ++#: sunrpc/clnt_unix.c:128 + msgid "clntunix_create: out of memory\n" + msgstr "clntunix_create: bellek yetersiz\n" + +-#: sunrpc/get_myaddr.c:78 +-msgid "get_myaddress: ioctl (get interface configuration)" +-msgstr "get_myaddress: ioctl (arayüz yapılandırması alır)" +- +-#: sunrpc/pm_getmaps.c:74 ++#: sunrpc/pm_getmaps.c:83 + msgid "pmap_getmaps rpc problem" + msgstr "pmap_getmaps rpc problem" + +-#: sunrpc/pmap_clnt.c:72 +-msgid "__get_myaddress: ioctl (get interface configuration)" +-msgstr "__get_myaddress: ioctl (arayüz yapılandırmasını alır)" +- +-#: sunrpc/pmap_clnt.c:137 ++#: sunrpc/pmap_clnt.c:129 + msgid "Cannot register service" + msgstr "servis sicil kaydı yapılamıyor" + +-#: sunrpc/pmap_rmt.c:190 +-msgid "broadcast: ioctl (get interface configuration)" +-msgstr "broadcast: ioctl (arayüz yapılandırmasını alır)" +- +-#: sunrpc/pmap_rmt.c:199 +-msgid "broadcast: ioctl (get interface flags)" +-msgstr "broadcast: ioctl (arayüz flamalarını alır)" +- +-#: sunrpc/pmap_rmt.c:269 ++#: sunrpc/pmap_rmt.c:248 + msgid "Cannot create socket for broadcast rpc" + msgstr "Yayınlanmış rpc için soket oluşturulamıyor" + +-#: sunrpc/pmap_rmt.c:276 ++#: sunrpc/pmap_rmt.c:255 + msgid "Cannot set socket option SO_BROADCAST" + msgstr "Soket SO_BROADCAST seçeneğine ayarlanamıyor" + +-#: sunrpc/pmap_rmt.c:328 ++#: sunrpc/pmap_rmt.c:307 + msgid "Cannot send broadcast packet" + msgstr "Yayınlanmış paket yollanamıyor" + +-#: sunrpc/pmap_rmt.c:353 ++#: sunrpc/pmap_rmt.c:332 + msgid "Broadcast poll problem" + msgstr "Haberleşme yoklamasında sorun" + +-#: sunrpc/pmap_rmt.c:366 ++#: sunrpc/pmap_rmt.c:345 + msgid "Cannot receive reply to broadcast" + msgstr "yayından yanıt alınamıyor" + +-#: sunrpc/rpc_main.c:288 ++#: sunrpc/rpc_main.c:286 + #, c-format + msgid "%s: output would overwrite %s\n" + msgstr "%s: çıktı %s üzerine yazacak\n" + +-#: sunrpc/rpc_main.c:295 ++#: sunrpc/rpc_main.c:293 + #, c-format + msgid "%s: unable to open %s: %m\n" + msgstr "%s: %s dosyasını açmak mümkün değil: %m\n" + +-#: sunrpc/rpc_main.c:307 ++#: sunrpc/rpc_main.c:305 + #, c-format + msgid "%s: while writing output %s: %m" + msgstr "%s: %s çıktısını yazarken: %m" + +-#: sunrpc/rpc_main.c:342 ++#: sunrpc/rpc_main.c:340 + #, c-format + msgid "cannot find C preprocessor: %s \n" + msgstr "C ön işlemci bulunamıyor: %s \n" + +-#: sunrpc/rpc_main.c:350 ++#: sunrpc/rpc_main.c:348 + msgid "cannot find any C preprocessor (cpp)\n" + msgstr "hiç C ön işlemci (cpp) bulunamadı\n" + +-#: sunrpc/rpc_main.c:419 ++#: sunrpc/rpc_main.c:417 + #, c-format + msgid "%s: C preprocessor failed with signal %d\n" + msgstr "%s: C önişlemcisi %d sinyali vererek başarısız oldu\n" + +-#: sunrpc/rpc_main.c:422 ++#: sunrpc/rpc_main.c:420 + #, c-format + msgid "%s: C preprocessor failed with exit code %d\n" + msgstr "%s: C önişlemcisi %d çıkış kodu vererek başarısız oldu\n" + +-#: sunrpc/rpc_main.c:462 ++#: sunrpc/rpc_main.c:460 + #, c-format + msgid "illegal nettype :`%s'\n" + msgstr "kuraldışı ağ türü: `%s'\n" + +-#: sunrpc/rpc_main.c:1104 ++#: sunrpc/rpc_main.c:1122 + #, c-format + msgid "rpcgen: too many defines\n" + msgstr "rpcgen: çok fazla atama\n" + +-#: sunrpc/rpc_main.c:1116 ++#: sunrpc/rpc_main.c:1134 + #, c-format + msgid "rpcgen: arglist coding error\n" + msgstr "rpcgen: argüman listesi kodlama hatası\n" + + #. TRANS: the file will not be removed; this is an + #. TRANS: informative message. +-#: sunrpc/rpc_main.c:1149 ++#: sunrpc/rpc_main.c:1167 + #, c-format + msgid "file `%s' already exists and may be overwritten\n" + msgstr "`%s' dosyası zaten var ve üzerine yazılabilir\n" + +-#: sunrpc/rpc_main.c:1194 ++#: sunrpc/rpc_main.c:1212 + #, c-format + msgid "Cannot specify more than one input file!\n" + msgstr "Bir girdi dosyasından fazlası belirtilemez!\n" + +-#: sunrpc/rpc_main.c:1364 ++#: sunrpc/rpc_main.c:1382 + msgid "This implementation doesn't support newstyle or MT-safe code!\n" + msgstr "Bu tamamlama yenibiçimi ya da MT-safe kodu desteklemez!\n" + +-#: sunrpc/rpc_main.c:1373 ++#: sunrpc/rpc_main.c:1391 + #, c-format + msgid "Cannot use netid flag with inetd flag!\n" + msgstr "AğKimlik flaması inetd flaması ile kullanılamaz!\n" + +-#: sunrpc/rpc_main.c:1385 ++#: sunrpc/rpc_main.c:1403 + msgid "Cannot use netid flag without TIRPC!\n" + msgstr "AğKimlik flaması TIRPC olmaksızın kullanılamaz!\n" + +-#: sunrpc/rpc_main.c:1392 ++#: sunrpc/rpc_main.c:1410 + msgid "Cannot use table flags with newstyle!\n" + msgstr "Tablo flamaları yenibiçimle kullanılamaz!\n" + +-#: sunrpc/rpc_main.c:1411 ++#: sunrpc/rpc_main.c:1429 + #, c-format + msgid "\"infile\" is required for template generation flags.\n" + msgstr "\"girdiDosyası\" şablon üretim flamaları için gerekli.\n" + +-#: sunrpc/rpc_main.c:1416 ++#: sunrpc/rpc_main.c:1434 + #, c-format + msgid "Cannot have more than one file generation flag!\n" + msgstr "Birden fazla dosya üretim flaması olamaz!?\n" + +-#: sunrpc/rpc_main.c:1425 ++#: sunrpc/rpc_main.c:1443 + #, c-format + msgid "usage: %s infile\n" + msgstr "kullanımı: %s girdi-dosyası\n" + +-#: sunrpc/rpc_main.c:1426 ++#: sunrpc/rpc_main.c:1444 + #, c-format + msgid "\t%s [-abkCLNTM][-Dname[=value]] [-i size] [-I [-K seconds]] [-Y path] infile\n" + msgstr "\t%s [-abkCLNTM][-Disim[=değer]] [-i boyut] [-I [-K saniye]] [-Y dosyaYolu] girdiDosyası\n" + +-#: sunrpc/rpc_main.c:1428 ++#: sunrpc/rpc_main.c:1446 + #, c-format + msgid "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o outfile] [infile]\n" + msgstr "\t%s [-c | -h | -l | -m | -t | -Sc | -Ss | -Sm] [-o çıktıDosyası] [girdiDosyası]\n" + +-#: sunrpc/rpc_main.c:1430 ++#: sunrpc/rpc_main.c:1448 + #, c-format + msgid "\t%s [-s nettype]* [-o outfile] [infile]\n" + msgstr "\t%s [-s ağTürü]* [-o çıktıDosyası] [girdiDosyası]\n" + +-#: sunrpc/rpc_main.c:1431 ++#: sunrpc/rpc_main.c:1449 + #, c-format + msgid "\t%s [-n netid]* [-o outfile] [infile]\n" + msgstr "\t%s [-n ağKimlik]* [-o çıktıDosyası] [girdiDosyası]\n" + +-#: sunrpc/rpc_scan.c:116 ++#: sunrpc/rpc_scan.c:114 + msgid "constant or identifier expected" + msgstr "sabit ya da tanımlayıcı gerekli" + +-#: sunrpc/rpc_scan.c:312 ++#: sunrpc/rpc_scan.c:310 + msgid "illegal character in file: " + msgstr "dosyada kuraldışı karakter: " + +-#: sunrpc/rpc_scan.c:351 sunrpc/rpc_scan.c:377 ++#: sunrpc/rpc_scan.c:349 sunrpc/rpc_scan.c:375 + msgid "unterminated string constant" + msgstr "sonlandırılmamış dizge sabiti" + +-#: sunrpc/rpc_scan.c:383 ++#: sunrpc/rpc_scan.c:381 + msgid "empty char string" + msgstr "boş karakter dizgesi" + +-#: sunrpc/rpc_scan.c:525 sunrpc/rpc_scan.c:535 ++#: sunrpc/rpc_scan.c:523 sunrpc/rpc_scan.c:533 + msgid "preprocessor error" + msgstr "ön işlemci hatası" + +@@ -4339,25 +4930,25 @@ + msgid "can't reassign procedure number %ld\n" + msgstr "%ld altyordam numarası tekrar verilemez\n" + +-#: sunrpc/svc_simple.c:96 ++#: sunrpc/svc_simple.c:97 + msgid "couldn't create an rpc server\n" + msgstr "bir rpc sunucu oluşturulamadı\n" + +-#: sunrpc/svc_simple.c:104 ++#: sunrpc/svc_simple.c:105 + #, c-format + msgid "couldn't register prog %ld vers %ld\n" + msgstr "uygulama %ld sürüm %ld sicil kaydı yapılamadı\n" + +-#: sunrpc/svc_simple.c:111 ++#: sunrpc/svc_simple.c:113 + msgid "registerrpc: out of memory\n" + msgstr "registerrpc: bellek yetersiz\n" + +-#: sunrpc/svc_simple.c:175 ++#: sunrpc/svc_simple.c:173 + #, c-format + msgid "trouble replying to prog %d\n" + msgstr "%d uygulamasına yanıt vermede sorun\n" + +-#: sunrpc/svc_simple.c:183 ++#: sunrpc/svc_simple.c:182 + #, c-format + msgid "never registered prog %d\n" + msgstr "prog %d hiç kaydedilmemiş\n" +@@ -4370,11 +4961,11 @@ + msgid "svc_tcp.c - cannot getsockname or listen" + msgstr "svc_tcp.c - getsockname yapılamıyor veya dinlenemiyor" + +-#: sunrpc/svc_tcp.c:181 sunrpc/svc_tcp.c:184 ++#: sunrpc/svc_tcp.c:179 + msgid "svctcp_create: out of memory\n" + msgstr "svctcp_create: bellek yetersiz\n" + +-#: sunrpc/svc_tcp.c:225 sunrpc/svc_tcp.c:228 ++#: sunrpc/svc_tcp.c:218 + msgid "svc_tcp: makefd_xprt: out of memory\n" + msgstr "svc_tcp: makefd_xprt: bellek yetersiz\n" + +@@ -4386,39 +4977,39 @@ + msgid "svcudp_create - cannot getsockname" + msgstr "svcudp_create - getsockname yapılamıyor" + +-#: sunrpc/svc_udp.c:154 sunrpc/svc_udp.c:157 ++#: sunrpc/svc_udp.c:152 + msgid "svcudp_create: out of memory\n" + msgstr "svcudp_create: bellek yetersiz\n" + +-#: sunrpc/svc_udp.c:182 sunrpc/svc_udp.c:185 ++#: sunrpc/svc_udp.c:174 + msgid "svcudp_create: xp_pad is too small for IP_PKTINFO\n" + msgstr "svcudp_create: IP_PKTINFO için xp_pad çok küçük\n" + +-#: sunrpc/svc_udp.c:493 ++#: sunrpc/svc_udp.c:474 + msgid "enablecache: cache already enabled" + msgstr "enablecache: arabellek zaten etkin" + +-#: sunrpc/svc_udp.c:499 ++#: sunrpc/svc_udp.c:480 + msgid "enablecache: could not allocate cache" + msgstr "enablecache: arabellek ayrılamadı" + +-#: sunrpc/svc_udp.c:507 ++#: sunrpc/svc_udp.c:489 + msgid "enablecache: could not allocate cache data" + msgstr "enablecache: arabellek verisi ayrılamadı" + +-#: sunrpc/svc_udp.c:514 ++#: sunrpc/svc_udp.c:497 + msgid "enablecache: could not allocate cache fifo" + msgstr "enablecache: arabellek g/ç'ları ayrılamadı" + +-#: sunrpc/svc_udp.c:550 ++#: sunrpc/svc_udp.c:532 + msgid "cache_set: victim not found" + msgstr "cache_set: kurban bulunamadı" + +-#: sunrpc/svc_udp.c:561 ++#: sunrpc/svc_udp.c:543 + msgid "cache_set: victim alloc failed" + msgstr "cache_set: kurban ayrılamadı" + +-#: sunrpc/svc_udp.c:567 ++#: sunrpc/svc_udp.c:550 + msgid "cache_set: could not allocate new rpc_buffer" + msgstr "cache_set: yeni rpc_buffer ayrılamadı" + +@@ -4430,1582 +5021,1793 @@ + msgid "svc_unix.c - cannot getsockname or listen" + msgstr "svc_unix.c - getsockname yapılamıyor veya dinlenemiyor" + +-#: sunrpc/svc_unix.c:178 sunrpc/svc_unix.c:181 ++#: sunrpc/svc_unix.c:176 + msgid "svcunix_create: out of memory\n" + msgstr "svcunix_create: bellek yetersiz\n" + +-#: sunrpc/svc_unix.c:222 sunrpc/svc_unix.c:225 ++#: sunrpc/svc_unix.c:215 + msgid "svc_unix: makefd_xprt: out of memory\n" + msgstr "svc_unix: makefd_xprt: bellek yetersiz\n" + +-#: sunrpc/xdr.c:570 sunrpc/xdr.c:573 ++#: sunrpc/xdr.c:566 + msgid "xdr_bytes: out of memory\n" + msgstr "xdr_bytes: bellek yetersiz\n" + +-#: sunrpc/xdr.c:728 sunrpc/xdr.c:731 +-msgid "xdr_string: out of memory\n" +-msgstr "xdr_string: bellek yetersiz\n" ++#: sunrpc/xdr.c:718 ++msgid "xdr_string: out of memory\n" ++msgstr "xdr_string: bellek yetersiz\n" ++ ++#: sunrpc/xdr_array.c:106 ++msgid "xdr_array: out of memory\n" ++msgstr "xdr_array: bellek yetersiz\n" ++ ++#: sunrpc/xdr_rec.c:156 ++msgid "xdrrec_create: out of memory\n" ++msgstr "xdrrec_create: bellek yetersiz\n" ++ ++#: sunrpc/xdr_ref.c:86 ++msgid "xdr_reference: out of memory\n" ++msgstr "xdr_reference: bellek yetersiz\n" ++ ++#: sysdeps/generic/siglist.h:29 sysdeps/unix/siglist.c:27 ++msgid "Hangup" ++msgstr "Tıkanma" ++ ++#: sysdeps/generic/siglist.h:30 sysdeps/unix/siglist.c:28 ++msgid "Interrupt" ++msgstr "Sistem kesmesi" ++ ++#: sysdeps/generic/siglist.h:31 sysdeps/unix/siglist.c:29 ++msgid "Quit" ++msgstr "Çık" ++ ++#: sysdeps/generic/siglist.h:32 sysdeps/unix/siglist.c:30 ++msgid "Illegal instruction" ++msgstr "Yönerge kuraldışı" ++ ++#: sysdeps/generic/siglist.h:33 sysdeps/unix/siglist.c:31 ++msgid "Trace/breakpoint trap" ++msgstr "İzleme/kesme noktası yakalayıcı" ++ ++#: sysdeps/generic/siglist.h:34 ++msgid "Aborted" ++msgstr "İptal edildi" ++ ++#: sysdeps/generic/siglist.h:35 sysdeps/unix/siglist.c:34 ++msgid "Floating point exception" ++msgstr "Gerçel sayı istisnası" ++ ++#: sysdeps/generic/siglist.h:36 sysdeps/unix/siglist.c:35 ++msgid "Killed" ++msgstr "Süreç durduruldu" ++ ++#: sysdeps/generic/siglist.h:37 sysdeps/unix/siglist.c:36 ++msgid "Bus error" ++msgstr "Veri yolu hatası" ++ ++#: sysdeps/generic/siglist.h:38 sysdeps/unix/siglist.c:37 ++msgid "Segmentation fault" ++msgstr "Parçalama arızası" ++ ++#. TRANS Broken pipe; there is no process reading from the other end of a pipe. ++#. TRANS Every library function that returns this error code also generates a ++#. TRANS @code{SIGPIPE} signal; this signal terminates the program if not handled ++#. TRANS or blocked. Thus, your program will never actually see @code{EPIPE} ++#. TRANS unless it has handled or blocked @code{SIGPIPE}. ++#: sysdeps/generic/siglist.h:39 sysdeps/gnu/errlist.c:359 ++#: sysdeps/unix/siglist.c:39 ++msgid "Broken pipe" ++msgstr "Veri alınamıyor" ++ ++#: sysdeps/generic/siglist.h:40 sysdeps/unix/siglist.c:40 ++msgid "Alarm clock" ++msgstr "Alarm saati" ++ ++#: sysdeps/generic/siglist.h:41 sysdeps/unix/siglist.c:41 ++msgid "Terminated" ++msgstr "Sonlandırıldı" ++ ++#: sysdeps/generic/siglist.h:42 sysdeps/unix/siglist.c:42 ++msgid "Urgent I/O condition" ++msgstr "Acil G/Ç koşulu" ++ ++#: sysdeps/generic/siglist.h:43 sysdeps/unix/siglist.c:43 ++msgid "Stopped (signal)" ++msgstr "Durduruldu (sinyal)" ++ ++#: sysdeps/generic/siglist.h:44 sysdeps/unix/siglist.c:44 ++msgid "Stopped" ++msgstr "Durduruldu" ++ ++#: sysdeps/generic/siglist.h:45 sysdeps/unix/siglist.c:45 ++msgid "Continued" ++msgstr "Devam ediliyor" ++ ++#: sysdeps/generic/siglist.h:46 sysdeps/unix/siglist.c:46 ++msgid "Child exited" ++msgstr "Ast çıktı" ++ ++#: sysdeps/generic/siglist.h:47 sysdeps/unix/siglist.c:47 ++msgid "Stopped (tty input)" ++msgstr "Durduruldu (konsol girdisi)" ++ ++#: sysdeps/generic/siglist.h:48 sysdeps/unix/siglist.c:48 ++msgid "Stopped (tty output)" ++msgstr "Durduruldu (konsol çıktısı)" ++ ++#: sysdeps/generic/siglist.h:49 sysdeps/unix/siglist.c:49 ++msgid "I/O possible" ++msgstr "G/Ç mümkün" ++ ++#: sysdeps/generic/siglist.h:50 sysdeps/unix/siglist.c:50 ++msgid "CPU time limit exceeded" ++msgstr "CPU zaman sınırı aşıldı" ++ ++#: sysdeps/generic/siglist.h:51 sysdeps/unix/siglist.c:51 ++msgid "File size limit exceeded" ++msgstr "Dosya uzunluğu sınırı aşıldı" ++ ++#: sysdeps/generic/siglist.h:52 sysdeps/unix/siglist.c:52 ++msgid "Virtual timer expired" ++msgstr "Sanal süreölçer zaman aşımı" ++ ++#: sysdeps/generic/siglist.h:53 sysdeps/unix/siglist.c:53 ++msgid "Profiling timer expired" ++msgstr "Tanıtım süreölçerde zamanaşımı" ++ ++#: sysdeps/generic/siglist.h:54 sysdeps/unix/siglist.c:54 ++msgid "Window changed" ++msgstr "Pencere değiştirildi" ++ ++#: sysdeps/generic/siglist.h:55 sysdeps/unix/siglist.c:56 ++msgid "User defined signal 1" ++msgstr "Kullanıcı tanımlı sinyal 1" ++ ++#: sysdeps/generic/siglist.h:56 sysdeps/unix/siglist.c:57 ++msgid "User defined signal 2" ++msgstr "Kullanıcı tanımlı sinyal 2" ++ ++#: sysdeps/generic/siglist.h:60 sysdeps/unix/siglist.c:33 ++msgid "EMT trap" ++msgstr "EMT tuzağı" ++ ++#: sysdeps/generic/siglist.h:63 sysdeps/unix/siglist.c:38 ++msgid "Bad system call" ++msgstr "Sistem çağrısı hatalı" ++ ++#: sysdeps/generic/siglist.h:66 ++msgid "Stack fault" ++msgstr "Yığın hatası" ++ ++#: sysdeps/generic/siglist.h:69 ++msgid "Information request" ++msgstr "Bilgi isteği" ++ ++#: sysdeps/generic/siglist.h:71 ++msgid "Power failure" ++msgstr "Güç kesilmesi" ++ ++#: sysdeps/generic/siglist.h:74 sysdeps/unix/siglist.c:55 ++msgid "Resource lost" ++msgstr "Özkaynak kaybı" ++ ++#. TRANS Operation not permitted; only the owner of the file (or other resource) ++#. TRANS or processes with special privileges can perform the operation. ++#: sysdeps/gnu/errlist.c:25 ++msgid "Operation not permitted" ++msgstr "İşleme izin verilmedi" ++ ++#. TRANS No process matches the specified process ID. ++#: sysdeps/gnu/errlist.c:45 ++msgid "No such process" ++msgstr "Böyle bir süreç yok" ++ ++#. TRANS Interrupted function call; an asynchronous signal occurred and prevented ++#. TRANS completion of the call. When this happens, you should try the call ++#. TRANS again. ++#. TRANS ++#. TRANS You can choose to have functions resume after a signal that is handled, ++#. TRANS rather than failing with @code{EINTR}; see @ref{Interrupted ++#. TRANS Primitives}. ++#: sysdeps/gnu/errlist.c:60 ++msgid "Interrupted system call" ++msgstr "Sistem çağrısı kesme ile engellendi" ++ ++#. TRANS Input/output error; usually used for physical read or write errors. ++#: sysdeps/gnu/errlist.c:69 ++msgid "Input/output error" ++msgstr "Girdi/Çıktı hatası" ++ ++#. TRANS No such device or address. The system tried to use the device ++#. TRANS represented by a file you specified, and it couldn't find the device. ++#. TRANS This can mean that the device file was installed incorrectly, or that ++#. TRANS the physical device is missing or not correctly attached to the ++#. TRANS computer. ++#: sysdeps/gnu/errlist.c:82 ++msgid "No such device or address" ++msgstr "Böyle bir aygıt ya da adres yok" ++ ++#. TRANS Argument list too long; used when the arguments passed to a new program ++#. TRANS being executed with one of the @code{exec} functions (@pxref{Executing a ++#. TRANS File}) occupy too much memory space. This condition never arises in the ++#. TRANS GNU system. ++#: sysdeps/gnu/errlist.c:94 ++msgid "Argument list too long" ++msgstr "Argüman listesi çok uzun" ++ ++#. TRANS Invalid executable file format. This condition is detected by the ++#. TRANS @code{exec} functions; see @ref{Executing a File}. ++#: sysdeps/gnu/errlist.c:104 ++msgid "Exec format error" ++msgstr "Çalıştırılabilir biçem hatası" ++ ++#. TRANS Bad file descriptor; for example, I/O on a descriptor that has been ++#. TRANS closed or reading from a descriptor open only for writing (or vice ++#. TRANS versa). ++#: sysdeps/gnu/errlist.c:115 ++msgid "Bad file descriptor" ++msgstr "Dosya betimleyici hatalı" ++ ++#. TRANS There are no child processes. This error happens on operations that are ++#. TRANS supposed to manipulate child processes, when there aren't any processes ++#. TRANS to manipulate. ++#: sysdeps/gnu/errlist.c:126 ++msgid "No child processes" ++msgstr "Bir alt süreç yok " + +-#: sunrpc/xdr_array.c:111 sunrpc/xdr_array.c:114 +-msgid "xdr_array: out of memory\n" +-msgstr "xdr_array: bellek yetersiz\n" ++#. TRANS Deadlock avoided; allocating a system resource would have resulted in a ++#. TRANS deadlock situation. The system does not guarantee that it will notice ++#. TRANS all such situations. This error means you got lucky and the system ++#. TRANS noticed; it might just hang. @xref{File Locks}, for an example. ++#: sysdeps/gnu/errlist.c:138 ++msgid "Resource deadlock avoided" ++msgstr "Özkaynak ölükilidi engellendi" + +-#: sunrpc/xdr_rec.c:158 sunrpc/xdr_rec.c:161 +-msgid "xdrrec_create: out of memory\n" +-msgstr "xdrrec_create: bellek yetersiz\n" ++#. TRANS No memory available. The system cannot allocate more virtual memory ++#. TRANS because its capacity is full. ++#: sysdeps/gnu/errlist.c:148 ++msgid "Cannot allocate memory" ++msgstr "Bellek ayrılamadı" + +-#: sunrpc/xdr_ref.c:88 sunrpc/xdr_ref.c:91 +-msgid "xdr_reference: out of memory\n" +-msgstr "xdr_reference: bellek yetersiz\n" ++#. TRANS Bad address; an invalid pointer was detected. ++#. TRANS In the GNU system, this error never happens; you get a signal instead. ++#: sysdeps/gnu/errlist.c:167 ++msgid "Bad address" ++msgstr "Adres hatalı" + +-#: nis/nis_callback.c:189 +-msgid "unable to free arguments" +-msgstr "argümanlar serbest bırakılamadı" ++#. TRANS A file that isn't a block special file was given in a situation that ++#. TRANS requires one. For example, trying to mount an ordinary file as a file ++#. TRANS system in Unix gives this error. ++#: sysdeps/gnu/errlist.c:178 ++msgid "Block device required" ++msgstr "Blok aygıtı gerekli" + +-#: nis/nis_error.c:30 +-msgid "Probable success" +-msgstr "Büyük olasılıkla iyi" ++#. TRANS Resource busy; a system resource that can't be shared is already in use. ++#. TRANS For example, if you try to delete a file that is the root of a currently ++#. TRANS mounted filesystem, you get this error. ++#: sysdeps/gnu/errlist.c:189 ++msgid "Device or resource busy" ++msgstr "Aygıt ya da özkaynak meşgul" + +-#: nis/nis_error.c:31 +-msgid "Not found" +-msgstr "Bulunamadı" ++#. TRANS File exists; an existing file was specified in a context where it only ++#. TRANS makes sense to specify a new file. ++#: sysdeps/gnu/errlist.c:199 ++msgid "File exists" ++msgstr "Dosya var" + +-#: nis/nis_error.c:32 +-msgid "Probably not found" +-msgstr "Galiba bulunamadı" ++#. TRANS An attempt to make an improper link across file systems was detected. ++#. TRANS This happens not only when you use @code{link} (@pxref{Hard Links}) but ++#. TRANS also when you rename a file with @code{rename} (@pxref{Renaming Files}). ++#: sysdeps/gnu/errlist.c:210 ++msgid "Invalid cross-device link" ++msgstr "Karşı aygıta bağ geçersiz" + +-#: nis/nis_error.c:33 +-msgid "Cache expired" +-msgstr "Arabellek zaman aşımı" ++#. TRANS The wrong type of device was given to a function that expects a ++#. TRANS particular sort of device. ++#: sysdeps/gnu/errlist.c:220 ++msgid "No such device" ++msgstr "Böyle bir aygıt yok" + +-#: nis/nis_error.c:34 +-msgid "NIS+ servers unreachable" +-msgstr "NIS+ sunucuları erişilemez durumda" ++#. TRANS A file that isn't a directory was specified when a directory is required. ++#: sysdeps/gnu/errlist.c:229 ++msgid "Not a directory" ++msgstr "Bir dizin değil" + +-#: nis/nis_error.c:35 +-msgid "Unknown object" +-msgstr "Bilinmeyen nesne" ++#. TRANS File is a directory; you cannot open a directory for writing, ++#. TRANS or create or remove hard links to it. ++#: sysdeps/gnu/errlist.c:239 ++msgid "Is a directory" ++msgstr "Bir dizin" + +-#: nis/nis_error.c:36 +-msgid "Server busy, try again" +-msgstr "Sunucu meşgul, tekrar deneyin" ++#. TRANS Invalid argument. This is used to indicate various kinds of problems ++#. TRANS with passing the wrong argument to a library function. ++#: sysdeps/gnu/errlist.c:249 ++msgid "Invalid argument" ++msgstr "Geçersiz argüman" + +-#: nis/nis_error.c:37 +-msgid "Generic system error" +-msgstr "Genel sistem hatası" ++#. TRANS The current process has too many files open and can't open any more. ++#. TRANS Duplicate descriptors do count toward this limit. ++#. TRANS ++#. TRANS In BSD and GNU, the number of open files is controlled by a resource ++#. TRANS limit that can usually be increased. If you get this error, you might ++#. TRANS want to increase the @code{RLIMIT_NOFILE} limit or make it unlimited; ++#. TRANS @pxref{Limits on Resources}. ++#: sysdeps/gnu/errlist.c:264 ++msgid "Too many open files" ++msgstr "Çok fazla açık dosya var" + +-#: nis/nis_error.c:38 +-msgid "First/next chain broken" +-msgstr "İlk/sonraki zinciri kopuk" ++#. TRANS There are too many distinct file openings in the entire system. Note ++#. TRANS that any number of linked channels count as just one file opening; see ++#. TRANS @ref{Linked Channels}. This error never occurs in the GNU system. ++#: sysdeps/gnu/errlist.c:275 ++msgid "Too many open files in system" ++msgstr "Sistemde çok fazla açık dosya var" + +-#: nis/nis_error.c:41 +-msgid "Name not served by this server" +-msgstr "Bu sunucu tarafından isim sunulmadı" ++#. TRANS Inappropriate I/O control operation, such as trying to set terminal ++#. TRANS modes on an ordinary file. ++#: sysdeps/gnu/errlist.c:285 ++msgid "Inappropriate ioctl for device" ++msgstr "Aygıt için G/Ç kontrol işlemi uygun değil" + +-#: nis/nis_error.c:42 +-msgid "Server out of memory" +-msgstr "Sunucuda bellek yetersiz" ++#. TRANS An attempt to execute a file that is currently open for writing, or ++#. TRANS write to a file that is currently being executed. Often using a ++#. TRANS debugger to run a program is considered having it open for writing and ++#. TRANS will cause this error. (The name stands for ``text file busy''.) This ++#. TRANS is not an error in the GNU system; the text is copied as necessary. ++#: sysdeps/gnu/errlist.c:298 ++msgid "Text file busy" ++msgstr "Metin dosyası meşgul" + +-#: nis/nis_error.c:43 +-msgid "Object with same name exists" +-msgstr "Aynı isimde nesne var" ++#. TRANS File too big; the size of a file would be larger than allowed by the system. ++#: sysdeps/gnu/errlist.c:307 ++msgid "File too large" ++msgstr "Dosya çok büyük" + +-#: nis/nis_error.c:44 +-msgid "Not master server for this domain" +-msgstr "Bu saha için ana sunucu değil" ++#. TRANS No space left on device; write operation on a file failed because the ++#. TRANS disk is full. ++#: sysdeps/gnu/errlist.c:317 ++msgid "No space left on device" ++msgstr "Aygıt üzerinde boş yer yok" + +-#: nis/nis_error.c:45 +-msgid "Invalid object for operation" +-msgstr "İşlem için nesne geçersiz" ++#. TRANS Invalid seek operation (such as on a pipe). ++#: sysdeps/gnu/errlist.c:326 ++msgid "Illegal seek" ++msgstr "Arama kuraldışı" + +-#: nis/nis_error.c:46 +-msgid "Malformed name, or illegal name" +-msgstr "Bozulmuş ya da kuraldışı isim" ++#. TRANS An attempt was made to modify something on a read-only file system. ++#: sysdeps/gnu/errlist.c:335 ++msgid "Read-only file system" ++msgstr "Salt-okunur dosya sistemi" + +-#: nis/nis_error.c:47 +-msgid "Unable to create callback" +-msgstr "Geriye başvuru oluşturulamadı" ++#. TRANS Too many links; the link count of a single file would become too large. ++#. TRANS @code{rename} can cause this error if the file being renamed already has ++#. TRANS as many links as it can take (@pxref{Renaming Files}). ++#: sysdeps/gnu/errlist.c:346 ++msgid "Too many links" ++msgstr "Çok fazla bağ var" + +-#: nis/nis_error.c:48 +-msgid "Results sent to callback proc" +-msgstr "Sonuçlar geri başvuru işlevine gönderildi" ++#. TRANS Domain error; used by mathematical functions when an argument value does ++#. TRANS not fall into the domain over which the function is defined. ++#: sysdeps/gnu/errlist.c:369 ++msgid "Numerical argument out of domain" ++msgstr "Sayısal argüman saha dışı" + +-#: nis/nis_error.c:49 +-msgid "Not found, no such name" +-msgstr "Bulunamadı, böyle bir isim yok" ++#. TRANS Range error; used by mathematical functions when the result value is ++#. TRANS not representable because of overflow or underflow. ++#: sysdeps/gnu/errlist.c:379 ++msgid "Numerical result out of range" ++msgstr "Sayısal sonuç kapsam dışı" + +-#: nis/nis_error.c:50 +-msgid "Name/entry isn't unique" +-msgstr "İsim/giriş eşsiz değil" ++#. TRANS Resource temporarily unavailable; the call might work if you try again ++#. TRANS later. The macro @code{EWOULDBLOCK} is another name for @code{EAGAIN}; ++#. TRANS they are always the same in the GNU C library. ++#. TRANS ++#. TRANS This error can happen in a few different situations: ++#. TRANS ++#. TRANS @itemize @bullet ++#. TRANS @item ++#. TRANS An operation that would block was attempted on an object that has ++#. TRANS non-blocking mode selected. Trying the same operation again will block ++#. TRANS until some external condition makes it possible to read, write, or ++#. TRANS connect (whatever the operation). You can use @code{select} to find out ++#. TRANS when the operation will be possible; @pxref{Waiting for I/O}. ++#. TRANS ++#. TRANS @strong{Portability Note:} In many older Unix systems, this condition ++#. TRANS was indicated by @code{EWOULDBLOCK}, which was a distinct error code ++#. TRANS different from @code{EAGAIN}. To make your program portable, you should ++#. TRANS check for both codes and treat them the same. ++#. TRANS ++#. TRANS @item ++#. TRANS A temporary resource shortage made an operation impossible. @code{fork} ++#. TRANS can return this error. It indicates that the shortage is expected to ++#. TRANS pass, so your program can try the call again later and it may succeed. ++#. TRANS It is probably a good idea to delay for a few seconds before trying it ++#. TRANS again, to allow time for other processes to release scarce resources. ++#. TRANS Such shortages are usually fairly serious and affect the whole system, ++#. TRANS so usually an interactive program should report the error to the user ++#. TRANS and return to its command loop. ++#. TRANS @end itemize ++#: sysdeps/gnu/errlist.c:416 ++msgid "Resource temporarily unavailable" ++msgstr "Özkaynak geçici olarak kullanılamaz durumda" + +-#: nis/nis_error.c:51 +-msgid "Modification failed" +-msgstr "Değişiklik başarısız" ++#. TRANS In the GNU C library, this is another name for @code{EAGAIN} (above). ++#. TRANS The values are always the same, on every operating system. ++#. TRANS ++#. TRANS C libraries in many older Unix systems have @code{EWOULDBLOCK} as a ++#. TRANS separate error code. ++#: sysdeps/gnu/errlist.c:429 ++msgid "Operation would block" ++msgstr "İşlem bloklanacaktı" + +-#: nis/nis_error.c:52 +-msgid "Database for table does not exist" +-msgstr "Tablo için veritabanı yok" ++#. TRANS An operation that cannot complete immediately was initiated on an object ++#. TRANS that has non-blocking mode selected. Some functions that must always ++#. TRANS block (such as @code{connect}; @pxref{Connecting}) never return ++#. TRANS @code{EAGAIN}. Instead, they return @code{EINPROGRESS} to indicate that ++#. TRANS the operation has begun and will take some time. Attempts to manipulate ++#. TRANS the object before the call completes return @code{EALREADY}. You can ++#. TRANS use the @code{select} function to find out when the pending operation ++#. TRANS has completed; @pxref{Waiting for I/O}. ++#: sysdeps/gnu/errlist.c:445 ++msgid "Operation now in progress" ++msgstr "İşlem şimdi süreç içinde" + +-#: nis/nis_error.c:53 +-msgid "Entry/table type mismatch" +-msgstr "Girdi/tablo türleri uyumsuz" ++#. TRANS An operation is already in progress on an object that has non-blocking ++#. TRANS mode selected. ++#: sysdeps/gnu/errlist.c:455 ++msgid "Operation already in progress" ++msgstr "İşlem zaten süreç dahilinde" + +-#: nis/nis_error.c:54 +-msgid "Link points to illegal name" +-msgstr "Kuraldışı isme bağ" ++#. TRANS A file that isn't a socket was specified when a socket is required. ++#: sysdeps/gnu/errlist.c:464 ++msgid "Socket operation on non-socket" ++msgstr "Soket işlemi bir sokette değil" + +-#: nis/nis_error.c:55 +-msgid "Partial success" +-msgstr "Kısmen iyi" ++#. TRANS The size of a message sent on a socket was larger than the supported ++#. TRANS maximum size. ++#: sysdeps/gnu/errlist.c:474 ++msgid "Message too long" ++msgstr "İleti aktarım için çok uzun" + +-#: nis/nis_error.c:56 +-msgid "Too many attributes" +-msgstr "Çok fazla argüman" ++#. TRANS The socket type does not support the requested communications protocol. ++#: sysdeps/gnu/errlist.c:483 ++msgid "Protocol wrong type for socket" ++msgstr "Soket için bu iletişim kuralı yanlış" + +-#: nis/nis_error.c:57 +-msgid "Error in RPC subsystem" +-msgstr "RPC alt sisteminde hata" ++#. TRANS You specified a socket option that doesn't make sense for the ++#. TRANS particular protocol being used by the socket. @xref{Socket Options}. ++#: sysdeps/gnu/errlist.c:493 ++msgid "Protocol not available" ++msgstr "İletişim kuralları müsait değil" + +-#: nis/nis_error.c:58 +-msgid "Missing or malformed attribute" +-msgstr "Kayıp ya da bozulmuş öznitelik" ++#. TRANS The socket domain does not support the requested communications protocol ++#. TRANS (perhaps because the requested protocol is completely invalid). ++#. TRANS @xref{Creating a Socket}. ++#: sysdeps/gnu/errlist.c:504 ++msgid "Protocol not supported" ++msgstr "İletişim kuralları desteklenmiyor" + +-#: nis/nis_error.c:59 +-msgid "Named object is not searchable" +-msgstr "İsimli nesne araştırılabilir değil" ++#. TRANS The socket type is not supported. ++#: sysdeps/gnu/errlist.c:513 ++msgid "Socket type not supported" ++msgstr "Soket türü desteklenmiyor" + +-#: nis/nis_error.c:60 +-msgid "Error while talking to callback proc" +-msgstr "callback proc haberleşme hatası" ++#. TRANS The operation you requested is not supported. Some socket functions ++#. TRANS don't make sense for all types of sockets, and others may not be ++#. TRANS implemented for all communications protocols. In the GNU system, this ++#. TRANS error can happen for many calls when the object does not support the ++#. TRANS particular operation; it is a generic indication that the server knows ++#. TRANS nothing to do for that call. ++#: sysdeps/gnu/errlist.c:527 ++msgid "Operation not supported" ++msgstr "İşlem desteklenmiyor" + +-#: nis/nis_error.c:61 +-msgid "Non NIS+ namespace encountered" +-msgstr "NIS+ olmayan isim alanı ile karşılaşıldı" ++#. TRANS The socket communications protocol family you requested is not supported. ++#: sysdeps/gnu/errlist.c:536 ++msgid "Protocol family not supported" ++msgstr "İletişim kuralları ailesi desteklenmiyor" + +-#: nis/nis_error.c:62 +-msgid "Illegal object type for operation" +-msgstr "İşlem için nesne türü kuraldışı" ++#. TRANS The address family specified for a socket is not supported; it is ++#. TRANS inconsistent with the protocol being used on the socket. @xref{Sockets}. ++#: sysdeps/gnu/errlist.c:546 ++msgid "Address family not supported by protocol" ++msgstr "Adres ailesi protokol tarafından desteklenmiyor" + +-#: nis/nis_error.c:63 +-msgid "Passed object is not the same object on server" +-msgstr "Geçen nesne sunucudaki aynı nesne değil" ++#. TRANS The requested socket address is already in use. @xref{Socket Addresses}. ++#: sysdeps/gnu/errlist.c:555 ++msgid "Address already in use" ++msgstr "Adres zaten kullanımda" + +-#: nis/nis_error.c:64 +-msgid "Modify operation failed" +-msgstr "Değiştirme işlemi başarısız oldu" ++#. TRANS The requested socket address is not available; for example, you tried ++#. TRANS to give a socket a name that doesn't match the local host name. ++#. TRANS @xref{Socket Addresses}. ++#: sysdeps/gnu/errlist.c:566 ++msgid "Cannot assign requested address" ++msgstr "İstenen adres bulunamıyor" + +-#: nis/nis_error.c:65 +-msgid "Query illegal for named table" +-msgstr "named tablosu için sorgu kuraldışı" ++#. TRANS A socket operation failed because the network was down. ++#: sysdeps/gnu/errlist.c:575 ++msgid "Network is down" ++msgstr "Ağ yok oldu" + +-#: nis/nis_error.c:66 +-msgid "Attempt to remove a non-empty table" +-msgstr "Bir boş tabloyu silme gayreti" ++#. TRANS A socket operation failed because the subnet containing the remote host ++#. TRANS was unreachable. ++#: sysdeps/gnu/errlist.c:585 ++msgid "Network is unreachable" ++msgstr "Ağ erişilebilir durumda değil" + +-#: nis/nis_error.c:67 +-msgid "Error in accessing NIS+ cold start file. Is NIS+ installed?" +-msgstr "NIS+ soğuk başlatma dosyasına erişim hatası. NIS+ kurulu mu?" ++#. TRANS A network connection was reset because the remote host crashed. ++#: sysdeps/gnu/errlist.c:594 ++msgid "Network dropped connection on reset" ++msgstr "Ağ bağlantısı karşı taraf çöktüğü için kesildi" + +-#: nis/nis_error.c:68 +-msgid "Full resync required for directory" +-msgstr "Dizin için tam bir yeniden eşzamanlama gerekli" ++#. TRANS A network connection was aborted locally. ++#: sysdeps/gnu/errlist.c:603 ++msgid "Software caused connection abort" ++msgstr "Yazılım bağlantının kopmasına sebep oldu" + +-#: nis/nis_error.c:69 +-msgid "NIS+ operation failed" +-msgstr "NIS+ işlemi başarısız" ++#. TRANS A network connection was closed for reasons outside the control of the ++#. TRANS local host, such as by the remote machine rebooting or an unrecoverable ++#. TRANS protocol violation. ++#: sysdeps/gnu/errlist.c:614 ++msgid "Connection reset by peer" ++msgstr "Bağlantı karşıdan kesildi" + +-#: nis/nis_error.c:70 +-msgid "NIS+ service is unavailable or not installed" +-msgstr "NIS+ servisi işe yaramaz durumda ya da yüklenmemiş" ++#. TRANS The kernel's buffers for I/O operations are all in use. In GNU, this ++#. TRANS error is always synonymous with @code{ENOMEM}; you may get one or the ++#. TRANS other from network operations. ++#: sysdeps/gnu/errlist.c:625 ++msgid "No buffer space available" ++msgstr "G/Ç önbelleklerinin hepsi kullanımda" + +-#: nis/nis_error.c:71 +-msgid "Yes, 42 is the meaning of life" +-msgstr " " ++#. TRANS You tried to connect a socket that is already connected. ++#. TRANS @xref{Connecting}. ++#: sysdeps/gnu/errlist.c:635 ++msgid "Transport endpoint is already connected" ++msgstr "Diğer uç aktarım için zaten bağlı" + +-#: nis/nis_error.c:72 +-msgid "Unable to authenticate NIS+ server" +-msgstr "NIS+ sunucunun kimlik kanıtlaması yapılamıyor" ++#. TRANS The socket is not connected to anything. You get this error when you ++#. TRANS try to transmit data over a socket, without first specifying a ++#. TRANS destination for the data. For a connectionless socket (for datagram ++#. TRANS protocols, such as UDP), you get @code{EDESTADDRREQ} instead. ++#: sysdeps/gnu/errlist.c:647 ++msgid "Transport endpoint is not connected" ++msgstr "Diğer uç aktarım için bağlı değil" + +-#: nis/nis_error.c:73 +-msgid "Unable to authenticate NIS+ client" +-msgstr "NIS+ istemcinin kimlik kanıtlaması yapılamıyor" ++#. TRANS No default destination address was set for the socket. You get this ++#. TRANS error when you try to transmit data over a connectionless socket, ++#. TRANS without first specifying a destination for the data with @code{connect}. ++#: sysdeps/gnu/errlist.c:658 ++msgid "Destination address required" ++msgstr "Hedef adres gerekli" + +-#: nis/nis_error.c:74 +-msgid "No file space on server" +-msgstr "Sunucuda dosya alanı yok" ++#. TRANS The socket has already been shut down. ++#: sysdeps/gnu/errlist.c:667 ++msgid "Cannot send after transport endpoint shutdown" ++msgstr "Aktarım ucu kapandıktan sonra yollanamaz" + +-#: nis/nis_error.c:75 +-msgid "Unable to create process on server" +-msgstr "Sunucuda süreç oluşturulamadı" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:676 ++msgid "Too many references: cannot splice" ++msgstr "Çok fazla başvuru var: kaynak bağlantısı kurulamaz" + +-#: nis/nis_error.c:76 +-msgid "Master server busy, full dump rescheduled." +-msgstr "Ana sunucu meşgul, aktarmanın tamamı yeniden zamanlandı." ++#. TRANS A socket operation with a specified timeout received no response during ++#. TRANS the timeout period. ++#: sysdeps/gnu/errlist.c:686 ++msgid "Connection timed out" ++msgstr "Bağlantıda zaman aşımı" + +-#: nis/nis_local_names.c:126 +-#, c-format +-msgid "LOCAL entry for UID %d in directory %s not unique\n" +-msgstr "%d kullanıcı-kimliği için YEREL girişi %s dizininde eşsiz değil\n" ++#. TRANS A remote host refused to allow the network connection (typically because ++#. TRANS it is not running the requested service). ++#: sysdeps/gnu/errlist.c:696 ++msgid "Connection refused" ++msgstr "Bağlantı reddedildi" + +-#: nis/nis_print.c:51 +-msgid "UNKNOWN" +-msgstr "BİLİNMEYEN" ++#. TRANS Too many levels of symbolic links were encountered in looking up a file name. ++#. TRANS This often indicates a cycle of symbolic links. ++#: sysdeps/gnu/errlist.c:706 ++msgid "Too many levels of symbolic links" ++msgstr "Sembolik bağların seviyeleri çok fazla" + +-#: nis/nis_print.c:109 +-msgid "BOGUS OBJECT\n" +-msgstr "SAHTE NESNE\n" ++#. TRANS Filename too long (longer than @code{PATH_MAX}; @pxref{Limits for ++#. TRANS Files}) or host name too long (in @code{gethostname} or ++#. TRANS @code{sethostname}; @pxref{Host Identification}). ++#: sysdeps/gnu/errlist.c:717 ++msgid "File name too long" ++msgstr "Dosya ismi çok uzun" + +-#: nis/nis_print.c:112 +-msgid "NO OBJECT\n" +-msgstr "NESNE YOK\n" ++#. TRANS The remote host for a requested network connection is down. ++#: sysdeps/gnu/errlist.c:726 ++msgid "Host is down" ++msgstr "Makina çökük" + +-#: nis/nis_print.c:115 +-msgid "DIRECTORY\n" +-msgstr "DİZİN\n" ++#. TRANS The remote host for a requested network connection is not reachable. ++#: sysdeps/gnu/errlist.c:735 ++msgid "No route to host" ++msgstr "Makinaya ağ üzerinden yol yok" + +-#: nis/nis_print.c:118 +-msgid "GROUP\n" +-msgstr "GRUP\n" ++#. TRANS Directory not empty, where an empty directory was expected. Typically, ++#. TRANS this error occurs when you are trying to delete a directory. ++#: sysdeps/gnu/errlist.c:745 ++msgid "Directory not empty" ++msgstr "Dizin boş değil" + +-#: nis/nis_print.c:121 +-msgid "TABLE\n" +-msgstr "TABLO\n" ++#. TRANS This means that the per-user limit on new process would be exceeded by ++#. TRANS an attempted @code{fork}. @xref{Limits on Resources}, for details on ++#. TRANS the @code{RLIMIT_NPROC} limit. ++#: sysdeps/gnu/errlist.c:756 ++msgid "Too many processes" ++msgstr "Çok fazla süreç var" + +-#: nis/nis_print.c:124 +-msgid "ENTRY\n" +-msgstr "GİRİŞ\n" ++#. TRANS The file quota system is confused because there are too many users. ++#. TRANS @c This can probably happen in a GNU system when using NFS. ++#: sysdeps/gnu/errlist.c:766 ++msgid "Too many users" ++msgstr "Çok fazla kullanıcı var" + +-#: nis/nis_print.c:127 +-msgid "LINK\n" +-msgstr "BAĞ\n" ++#. TRANS The user's disk quota was exceeded. ++#: sysdeps/gnu/errlist.c:775 ++msgid "Disk quota exceeded" ++msgstr "Disk kotası aşıldı" + +-#: nis/nis_print.c:130 +-msgid "PRIVATE\n" +-msgstr "ÖZEL\n" ++#. TRANS Stale NFS file handle. This indicates an internal confusion in the NFS ++#. TRANS system which is due to file system rearrangements on the server host. ++#. TRANS Repairing this condition usually requires unmounting and remounting ++#. TRANS the NFS file system on the local host. ++#: sysdeps/gnu/errlist.c:787 ++msgid "Stale NFS file handle" ++msgstr "NFS dosya tanıtıcı geçersiz" + +-#: nis/nis_print.c:133 +-msgid "(Unknown object)\n" +-msgstr "(Bilinmeyen nesne)\n" ++#. TRANS An attempt was made to NFS-mount a remote file system with a file name that ++#. TRANS already specifies an NFS-mounted file. ++#. TRANS (This is an error on some operating systems, but we expect it to work ++#. TRANS properly on the GNU system, making this error code impossible.) ++#: sysdeps/gnu/errlist.c:799 ++msgid "Object is remote" ++msgstr "Nesne uzakta" + +-#: nis/nis_print.c:166 +-#, c-format +-msgid "Name : `%s'\n" +-msgstr "İsim : `%s'\n" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:808 ++msgid "RPC struct is bad" ++msgstr "RPC yapısı hatalı" + +-#: nis/nis_print.c:167 +-#, c-format +-msgid "Type : %s\n" +-msgstr "Türü : %s\n" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:817 ++msgid "RPC version wrong" ++msgstr "RPC sürümü yanlış" + +-#: nis/nis_print.c:172 +-msgid "Master Server :\n" +-msgstr "Ana Sunucu :\n" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:826 ++msgid "RPC program not available" ++msgstr "RPC uygulaması yok" + +-#: nis/nis_print.c:174 +-msgid "Replicate :\n" +-msgstr "Örnekleme :\n" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:835 ++msgid "RPC program version wrong" ++msgstr "RPC uygulaması sürümü yanlış" + +-#: nis/nis_print.c:175 +-#, c-format +-msgid "\tName : %s\n" +-msgstr "\tİsim : %s\n" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:844 ++msgid "RPC bad procedure for program" ++msgstr "RPC program için uygun altyordam değil" + +-#: nis/nis_print.c:176 +-msgid "\tPublic Key : " +-msgstr "\tGenel Anahtar: " ++#. TRANS No locks available. This is used by the file locking facilities; see ++#. TRANS @ref{File Locks}. This error is never generated by the GNU system, but ++#. TRANS it can result from an operation to an NFS server running another ++#. TRANS operating system. ++#: sysdeps/gnu/errlist.c:856 ++msgid "No locks available" ++msgstr "işe yarar kilit yok" + +-#: nis/nis_print.c:180 +-msgid "None.\n" +-msgstr "Yok.\n" ++#. TRANS Inappropriate file type or format. The file was the wrong type for the ++#. TRANS operation, or a data file had the wrong format. ++#. TRANS ++#. TRANS On some systems @code{chmod} returns this error if you try to set the ++#. TRANS sticky bit on a non-directory file; @pxref{Setting Permissions}. ++#: sysdeps/gnu/errlist.c:869 ++msgid "Inappropriate file type or format" ++msgstr "Dosya türü ya da biçemi uygun değil" + +-#: nis/nis_print.c:183 +-#, c-format +-msgid "Diffie-Hellmann (%d bits)\n" +-msgstr "Diffie-Hellmann (%d bit)\n" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:878 ++msgid "Authentication error" ++msgstr "Kanıtlama hatası" + +-#: nis/nis_print.c:188 +-#, c-format +-msgid "RSA (%d bits)\n" +-msgstr "RSA (%d bit)\n" ++#. TRANS ??? ++#: sysdeps/gnu/errlist.c:887 ++msgid "Need authenticator" ++msgstr "Kanıtlayıcı gerekir" + +-#: nis/nis_print.c:191 +-msgid "Kerberos.\n" +-msgstr "Kerberos.\n" ++#. TRANS Function not implemented. This indicates that the function called is ++#. TRANS not implemented at all, either in the C library itself or in the ++#. TRANS operating system. When you get this error, you can be sure that this ++#. TRANS particular function will always fail with @code{ENOSYS} unless you ++#. TRANS install a new version of the C library or the operating system. ++#: sysdeps/gnu/errlist.c:900 ++msgid "Function not implemented" ++msgstr "İşlev bulunamadı (Bir güncelleme gerekebilir)" + +-#: nis/nis_print.c:194 +-#, c-format +-msgid "Unknown (type = %d, bits = %d)\n" +-msgstr "Bilinmeyen (tür = %d, bit = %d)\n" ++#. TRANS Not supported. A function returns this error when certain parameter ++#. TRANS values are valid, but the functionality they request is not available. ++#. TRANS This can mean that the function does not implement a particular command ++#. TRANS or option value or flag bit at all. For functions that operate on some ++#. TRANS object given in a parameter, such as a file descriptor or a port, it ++#. TRANS might instead mean that only @emph{that specific object} (file ++#. TRANS descriptor, port, etc.) is unable to support the other parameters given; ++#. TRANS different file descriptors might support different ranges of parameter ++#. TRANS values. ++#. TRANS ++#. TRANS If the entire function is not available at all in the implementation, ++#. TRANS it returns @code{ENOSYS} instead. ++#: sysdeps/gnu/errlist.c:920 ++msgid "Not supported" ++msgstr "Desteklenmiyor" + +-#: nis/nis_print.c:205 +-#, c-format +-msgid "\tUniversal addresses (%u)\n" +-msgstr "\tEvrensel adresler (%u)\n" ++#. TRANS While decoding a multibyte character the function came along an invalid ++#. TRANS or an incomplete sequence of bytes or the given wide character is invalid. ++#: sysdeps/gnu/errlist.c:930 ++msgid "Invalid or incomplete multibyte or wide character" ++msgstr "Çokbaytlı/geniş karakter geçersiz veya tamamlanmamış" + +-#: nis/nis_print.c:227 +-msgid "Time to live : " +-msgstr "Yaşam süresi(ttl): " ++#. TRANS In the GNU system, servers supporting the @code{term} protocol return ++#. TRANS this error for certain operations when the caller is not in the ++#. TRANS foreground process group of the terminal. Users do not usually see this ++#. TRANS error because functions such as @code{read} and @code{write} translate ++#. TRANS it into a @code{SIGTTIN} or @code{SIGTTOU} signal. @xref{Job Control}, ++#. TRANS for information on process groups and these signals. ++#: sysdeps/gnu/errlist.c:944 ++msgid "Inappropriate operation for background process" ++msgstr "Artalan süreç için işlem uygun değil" + +-#: nis/nis_print.c:229 +-msgid "Default Access rights :\n" +-msgstr "Öntanımlı Erişim hakları:\n" ++#. TRANS In the GNU system, opening a file returns this error when the file is ++#. TRANS translated by a program and the translator program dies while starting ++#. TRANS up, before it has connected to the file. ++#: sysdeps/gnu/errlist.c:955 ++msgid "Translator died" ++msgstr "Çevirmen uygulama ölmüş" + +-#: nis/nis_print.c:238 +-#, c-format +-msgid "\tType : %s\n" +-msgstr "\tTürü : %s\n" ++#. TRANS The experienced user will know what is wrong. ++#. TRANS @c This error code is a joke. Its perror text is part of the joke. ++#. TRANS @c Don't change it. ++#: sysdeps/gnu/errlist.c:966 ++msgid "?" ++msgstr "?" + +-#: nis/nis_print.c:239 +-msgid "\tAccess rights: " +-msgstr "\tErişim hakları: " ++#. TRANS You did @strong{what}? ++#: sysdeps/gnu/errlist.c:975 ++msgid "You really blew it this time" ++msgstr " " + +-#: nis/nis_print.c:252 +-msgid "Group Flags :" +-msgstr "Grup Flamaları:" ++#. TRANS Go home and have a glass of warm, dairy-fresh milk. ++#: sysdeps/gnu/errlist.c:984 ++msgid "Computer bought the farm" ++msgstr "Yatarken sütünü içtin mi?" + +-#: nis/nis_print.c:255 +-msgid "" +-"\n" +-"Group Members :\n" +-msgstr "" +-"\n" +-" Grup Üyeleri:\n" ++#. TRANS This error code has no purpose. ++#: sysdeps/gnu/errlist.c:993 ++msgid "Gratuitous error" ++msgstr "Bu hata lotodan çıktı" + +-#: nis/nis_print.c:266 +-#, c-format +-msgid "Table Type : %s\n" +-msgstr "Tablo Türü : %s\n" ++#: sysdeps/gnu/errlist.c:1001 ++msgid "Bad message" ++msgstr "İleti hatalı" + +-#: nis/nis_print.c:267 +-#, c-format +-msgid "Number of Columns : %d\n" +-msgstr "Sütun sayısı : %d\n" ++#: sysdeps/gnu/errlist.c:1009 ++msgid "Identifier removed" ++msgstr "Tanıtıcı kaldırıldı" + +-#: nis/nis_print.c:268 +-#, c-format +-msgid "Character Separator : %c\n" +-msgstr "Karakter Ayracı: %c\n" ++#: sysdeps/gnu/errlist.c:1017 ++msgid "Multihop attempted" ++msgstr "Çoklusekmeye kalkışıldı" + +-#: nis/nis_print.c:269 +-#, c-format +-msgid "Search Path : %s\n" +-msgstr "Dosya arama yolu : %s\n" ++#: sysdeps/gnu/errlist.c:1025 ++msgid "No data available" ++msgstr "Veri yok" + +-#: nis/nis_print.c:270 +-msgid "Columns :\n" +-msgstr "Sütun :\n" ++#: sysdeps/gnu/errlist.c:1033 ++msgid "Link has been severed" ++msgstr "Bağ sadeleştirilmişti" + +-#: nis/nis_print.c:273 +-#, c-format +-msgid "\t[%d]\tName : %s\n" +-msgstr "\t[%d]\tİsim : %s\n" ++#: sysdeps/gnu/errlist.c:1041 ++msgid "No message of desired type" ++msgstr "Arzulanan türde ileti yok" + +-#: nis/nis_print.c:275 +-msgid "\t\tAttributes : " +-msgstr "\t\tNiteleyiciler : " ++#: sysdeps/gnu/errlist.c:1049 ++msgid "Out of streams resources" ++msgstr "Veri akımları kaynakları yetersiz" + +-#: nis/nis_print.c:277 +-msgid "\t\tAccess Rights : " +-msgstr "\t\tErişim Hakları: " ++#: sysdeps/gnu/errlist.c:1057 ++msgid "Device not a stream" ++msgstr "Aygıt veri alışverişine uygun değil" + +-#: nis/nis_print.c:286 +-msgid "Linked Object Type : " +-msgstr "Bağlı Nesne Türü : " ++#: sysdeps/gnu/errlist.c:1065 ++msgid "Value too large for defined data type" ++msgstr "Atanan veri türü için değer çok büyük" + +-#: nis/nis_print.c:288 +-#, c-format +-msgid "Linked to : %s\n" +-msgstr "Bağ hedefi: %s\n" ++#: sysdeps/gnu/errlist.c:1073 ++msgid "Protocol error" ++msgstr "İletişim kurallarında hata" + +-#: nis/nis_print.c:297 +-#, c-format +-msgid "\tEntry data of type %s\n" +-msgstr "\t %s türü girdi verisi\n" ++#: sysdeps/gnu/errlist.c:1081 ++msgid "Timer expired" ++msgstr "Süre doldu" + +-#: nis/nis_print.c:300 +-#, c-format +-msgid "\t[%u] - [%u bytes] " +-msgstr "\t[%u] - [%u bayt] " ++#. TRANS Operation canceled; an asynchronous operation was canceled before it ++#. TRANS completed. @xref{Asynchronous I/O}. When you call @code{aio_cancel}, ++#. TRANS the normal result is for the operations affected to complete with this ++#. TRANS error; @pxref{Cancel AIO Operations}. ++#: sysdeps/gnu/errlist.c:1093 ++msgid "Operation canceled" ++msgstr "İşlem iptal edildi" + +-#: nis/nis_print.c:303 +-msgid "Encrypted data\n" +-msgstr "Şifreli veri\n" ++#: sysdeps/gnu/errlist.c:1101 ++msgid "Interrupted system call should be restarted" ++msgstr "Kesme ile engellenen sistem çağrısı yeniden başlatılmalı" + +-#: nis/nis_print.c:305 +-msgid "Binary data\n" +-msgstr "İkilik veri\n" ++#: sysdeps/gnu/errlist.c:1109 ++msgid "Channel number out of range" ++msgstr "Kanal numarası kapsam dışı" + +-#: nis/nis_print.c:320 +-#, c-format +-msgid "Object Name : %s\n" +-msgstr "Nesne İsmi : %s\n" ++#: sysdeps/gnu/errlist.c:1117 ++msgid "Level 2 not synchronized" ++msgstr "Seviye-2 eşzamanlı değil" + +-#: nis/nis_print.c:321 +-#, c-format +-msgid "Directory : %s\n" +-msgstr "Dizin : %s\n" ++#: sysdeps/gnu/errlist.c:1125 ++msgid "Level 3 halted" ++msgstr "Seviye-3 durdu" + +-#: nis/nis_print.c:322 +-#, c-format +-msgid "Owner : %s\n" +-msgstr "Sahibi : %s\n" ++#: sysdeps/gnu/errlist.c:1133 ++msgid "Level 3 reset" ++msgstr "Seviye-3 başlangıçta" + +-#: nis/nis_print.c:323 +-#, c-format +-msgid "Group : %s\n" +-msgstr "Grup : %s\n" ++#: sysdeps/gnu/errlist.c:1141 ++msgid "Link number out of range" ++msgstr "Bağ numarası kapsam dışı" + +-#: nis/nis_print.c:324 +-msgid "Access Rights : " +-msgstr "Erişim Hakları: " ++#: sysdeps/gnu/errlist.c:1149 ++msgid "Protocol driver not attached" ++msgstr "İletişim kuralları sürücüsü bağlı değil" + +-#: nis/nis_print.c:326 +-#, c-format +-msgid "" +-"\n" +-"Time to Live : " +-msgstr "" +-"\n" +-"Yaşam süresi : " ++#: sysdeps/gnu/errlist.c:1157 ++msgid "No CSI structure available" ++msgstr "Hiç bir CSI değişken yapısı yok" + +-#: nis/nis_print.c:329 +-#, c-format +-msgid "Creation Time : %s" +-msgstr "Oluşturma Zamanı: %s" ++#: sysdeps/gnu/errlist.c:1165 ++msgid "Level 2 halted" ++msgstr "Seviye-2 durdu" + +-#: nis/nis_print.c:331 +-#, c-format +-msgid "Mod. Time : %s" +-msgstr "Değiş. Zamanı : %s" ++#: sysdeps/gnu/errlist.c:1173 ++msgid "Invalid exchange" ++msgstr "Değiş tokuş geçersiz" + +-#: nis/nis_print.c:332 +-msgid "Object Type : " +-msgstr "Nesne Türü : " ++#: sysdeps/gnu/errlist.c:1181 ++msgid "Invalid request descriptor" ++msgstr "İstem betimleyici geçersiz" + +-#: nis/nis_print.c:352 +-#, c-format +-msgid " Data Length = %u\n" +-msgstr " Veri uzunluğu = %u\n" ++#: sysdeps/gnu/errlist.c:1189 ++msgid "Exchange full" ++msgstr "Değiş tokuş alanı dolu" + +-#: nis/nis_print.c:365 +-#, c-format +-msgid "Status : %s\n" +-msgstr "Durum : %s\n" ++#: sysdeps/gnu/errlist.c:1197 ++msgid "No anode" ++msgstr "Anot yok" + +-#: nis/nis_print.c:366 +-#, c-format +-msgid "Number of objects : %u\n" +-msgstr "Nesne sayısı : %u\n" ++#: sysdeps/gnu/errlist.c:1205 ++msgid "Invalid request code" ++msgstr "İstem kodu geçersiz" + +-#: nis/nis_print.c:370 +-#, c-format +-msgid "Object #%d:\n" +-msgstr "Nesne #%d:\n" ++#: sysdeps/gnu/errlist.c:1213 ++msgid "Invalid slot" ++msgstr "Geçersiz yuva" + +-#: nis/nis_print_group_entry.c:115 +-#, c-format +-msgid "Group entry for \"%s.%s\" group:\n" +-msgstr "\"%s.%s\" grubu için grup girişi:\n" ++#: sysdeps/gnu/errlist.c:1221 ++msgid "File locking deadlock error" ++msgstr "Dosya kilitlemede ölükilit hatası" + +-#: nis/nis_print_group_entry.c:123 +-msgid " Explicit members:\n" +-msgstr " Doğrudan üye olanlar:\n" ++#: sysdeps/gnu/errlist.c:1229 ++msgid "Bad font file format" ++msgstr "Yazıtipi dosyası biçemi hatalı" + +-#: nis/nis_print_group_entry.c:128 +-msgid " No explicit members\n" +-msgstr " Doğrudan üye olan yok\n" ++#: sysdeps/gnu/errlist.c:1237 ++msgid "Machine is not on the network" ++msgstr "Makina bir ağ üzerinde değil" + +-#: nis/nis_print_group_entry.c:131 +-msgid " Implicit members:\n" +-msgstr " Dolaylı üye olanlar:\n" ++#: sysdeps/gnu/errlist.c:1245 ++msgid "Package not installed" ++msgstr "Paket yüklenmedi" + +-#: nis/nis_print_group_entry.c:136 +-msgid " No implicit members\n" +-msgstr " Dolaylı üye olan yok\n" ++#: sysdeps/gnu/errlist.c:1253 ++msgid "Advertise error" ++msgstr "Tanıtım hatası" + +-#: nis/nis_print_group_entry.c:139 +-msgid " Recursive members:\n" +-msgstr " Ardışık üyeler:\n" ++#: sysdeps/gnu/errlist.c:1261 ++msgid "Srmount error" ++msgstr "Srmount hatası" + +-#: nis/nis_print_group_entry.c:144 +-msgid " No recursive members\n" +-msgstr " Ardışık üye yok\n" ++#: sysdeps/gnu/errlist.c:1269 ++msgid "Communication error on send" ++msgstr "Yollama sırasında haberleşme hatası" + +-#: nis/nis_print_group_entry.c:147 nis/nis_print_group_entry.c:163 +-msgid " Explicit nonmembers:\n" +-msgstr " Doğrudan üye olmayanlar:\n" ++#: sysdeps/gnu/errlist.c:1277 ++msgid "RFS specific error" ++msgstr "RFS-özgü hata" + +-#: nis/nis_print_group_entry.c:152 +-msgid " No explicit nonmembers\n" +-msgstr " Doğrudan üye olmayan yok\n" ++#: sysdeps/gnu/errlist.c:1285 ++msgid "Name not unique on network" ++msgstr "Ağ üzerinde isim eşsiz değil" + +-#: nis/nis_print_group_entry.c:155 +-msgid " Implicit nonmembers:\n" +-msgstr " Dolaylı üye olmayanlar:\n" ++#: sysdeps/gnu/errlist.c:1293 ++msgid "File descriptor in bad state" ++msgstr "Dosya betimleyici hatalı durumda" + +-#: nis/nis_print_group_entry.c:160 +-msgid " No implicit nonmembers\n" +-msgstr " Dolaylı üye olmayan yok\n" ++#: sysdeps/gnu/errlist.c:1301 ++msgid "Remote address changed" ++msgstr "Uzak adres değişti" + +-#: nis/nis_print_group_entry.c:168 +-msgid " No recursive nonmembers\n" +-msgstr " Ardışık üye olmayan yok\n" ++#: sysdeps/gnu/errlist.c:1309 ++msgid "Can not access a needed shared library" ++msgstr "Gereken paylaşımlı kitaplığa erişilemiyor" + +-#: nis/nss_nisplus/nisplus-publickey.c:101 +-#: nis/nss_nisplus/nisplus-publickey.c:182 +-#, c-format +-msgid "DES entry for netname %s not unique\n" +-msgstr "Ağ ismi %s için DES girişi eşsiz değil\n" ++#: sysdeps/gnu/errlist.c:1317 ++msgid "Accessing a corrupted shared library" ++msgstr "Bir bozulmuş paylaşımlı kitaplığa erişiliyor" + +-#: nis/nss_nisplus/nisplus-publickey.c:218 +-#, c-format +-msgid "netname2user: missing group id list in `%s'." +-msgstr "netname2user: `%s' içinde grup kimlikleri listesi yok." ++#: sysdeps/gnu/errlist.c:1325 ++msgid ".lib section in a.out corrupted" ++msgstr "a.out içindeki .lib bölümü bozulmuş" + +-#: nis/nss_nisplus/nisplus-publickey.c:300 +-#: nis/nss_nisplus/nisplus-publickey.c:306 +-#: nis/nss_nisplus/nisplus-publickey.c:370 +-#: nis/nss_nisplus/nisplus-publickey.c:379 +-#, c-format +-msgid "netname2user: (nis+ lookup): %s\n" +-msgstr "netname2user: (nis+ lookup): %s\n" ++#: sysdeps/gnu/errlist.c:1333 ++msgid "Attempting to link in too many shared libraries" ++msgstr "Çok fazla sayıdaki paylaşımlı kitaplıkta bağ kurulmaya çalışılıyor" + +-#: nis/nss_nisplus/nisplus-publickey.c:319 +-#, c-format +-msgid "netname2user: DES entry for %s in directory %s not unique" +-msgstr "netname2user: %s (%s dizinindeki) için DES girdisi eşsiz değil" ++#: sysdeps/gnu/errlist.c:1341 ++msgid "Cannot exec a shared library directly" ++msgstr "Bir paylaşımlı kitaplık doğrudan çalıştırılamaz" + +-#: nis/nss_nisplus/nisplus-publickey.c:337 +-#, c-format +-msgid "netname2user: principal name `%s' too long" +-msgstr "netname2user: `%s' ismi çok uzun" ++#: sysdeps/gnu/errlist.c:1349 ++msgid "Streams pipe error" ++msgstr "Veri hattı hatası" + +-#: nis/nss_nisplus/nisplus-publickey.c:392 +-#, c-format +-msgid "netname2user: LOCAL entry for %s in directory %s not unique" +-msgstr "netname2user: %s (%s dizinindeki) için LOCAL girdisi eşsiz değil" ++#: sysdeps/gnu/errlist.c:1357 ++msgid "Structure needs cleaning" ++msgstr "Veri ağacı temizlenmek ister" + +-#: nis/nss_nisplus/nisplus-publickey.c:399 +-msgid "netname2user: should not have uid 0" +-msgstr "netname2user: kullanıcı kimliği 0 olmamalıydı" ++#: sysdeps/gnu/errlist.c:1365 ++msgid "Not a XENIX named type file" ++msgstr "Bir XENIX named türü dosya değil" + +-#: nis/ypclnt.c:171 +-#, c-format +-msgid "YPBINDPROC_DOMAIN: %s\n" +-msgstr "YPBINDPROC_DOMAIN: %s\n" ++#: sysdeps/gnu/errlist.c:1373 ++msgid "No XENIX semaphores available" ++msgstr "Hiç XENIX semaforu yok" + +-#: nis/ypclnt.c:780 +-msgid "Request arguments bad" +-msgstr "İstem argümanları hatalı" ++#: sysdeps/gnu/errlist.c:1381 ++msgid "Is a named type file" ++msgstr "Bir \"named\" türü dosya" + +-#: nis/ypclnt.c:782 +-msgid "RPC failure on NIS operation" +-msgstr "NIS işleminde RPC başarısız" ++#: sysdeps/gnu/errlist.c:1389 ++msgid "Remote I/O error" ++msgstr "Uzak G/Ç hatası" + +-#: nis/ypclnt.c:784 +-msgid "Can't bind to server which serves this domain" +-msgstr "Bu alana hizmet veren sunucuya bağlantı kurulamadı" ++#: sysdeps/gnu/errlist.c:1397 ++msgid "No medium found" ++msgstr "medium yok" + +-#: nis/ypclnt.c:786 +-msgid "No such map in server's domain" +-msgstr "Sunucu sahasında böyle bir eşlem yok" ++#: sysdeps/gnu/errlist.c:1405 ++msgid "Wrong medium type" ++msgstr "Yanlış ortam türü" + +-#: nis/ypclnt.c:788 +-msgid "No such key in map" +-msgstr "Eşlemde böyle bir tuş yok" ++#: sysdeps/gnu/errlist.c:1413 ++msgid "Required key not available" ++msgstr "Gerekli anahtar/tuş kullanılamaz durumda" ++ ++#: sysdeps/gnu/errlist.c:1421 ++msgid "Key has expired" ++msgstr "Anahtarın vakti doldu" ++ ++#: sysdeps/gnu/errlist.c:1429 ++msgid "Key has been revoked" ++msgstr "Anahtar yürürlükten kaldırılmıştı" ++ ++#: sysdeps/gnu/errlist.c:1437 ++msgid "Key was rejected by service" ++msgstr "Anahtar hizmet tarafından reddedildi" ++ ++#: sysdeps/gnu/errlist.c:1445 ++msgid "Owner died" ++msgstr "Sahibi öldü" ++ ++#: sysdeps/gnu/errlist.c:1453 ++msgid "State not recoverable" ++msgstr "Durum kurtarılabilir gibi değil" + +-#: nis/ypclnt.c:790 +-msgid "Internal NIS error" +-msgstr "İçsel NIS hatası" ++#: sysdeps/mach/_strerror.c:57 ++msgid "Error in unknown error system: " ++msgstr "Bilinmeyen hata sisteminde hata: " + +-#: nis/ypclnt.c:792 +-msgid "Local resource allocation failure" +-msgstr "Yerel çözüm tahsisi başarısız" ++#: sysdeps/posix/gai_strerror-strs.h:1 ++msgid "Address family for hostname not supported" ++msgstr "Makina ismi için adres ailesi desteklenmiyor" + +-#: nis/ypclnt.c:794 +-msgid "No more records in map database" +-msgstr "Artık kayıtlar eşlem veritabanında" ++#: sysdeps/posix/gai_strerror-strs.h:2 ++msgid "Temporary failure in name resolution" ++msgstr "İsim çözünürlüğünde geçici başarısızlık" + +-#: nis/ypclnt.c:796 +-msgid "Can't communicate with portmapper" +-msgstr "portmapper ile haberleşilemiyor" ++#: sysdeps/posix/gai_strerror-strs.h:3 ++msgid "Bad value for ai_flags" ++msgstr "ai_flags için değer hatalı" + +-#: nis/ypclnt.c:798 +-msgid "Can't communicate with ypbind" +-msgstr "ypbind ile haberleşilemiyor" ++#: sysdeps/posix/gai_strerror-strs.h:4 ++msgid "Non-recoverable failure in name resolution" ++msgstr "İsim çözümlemesinde düzeltilebilir olmayan bozukluk" + +-#: nis/ypclnt.c:800 +-msgid "Can't communicate with ypserv" +-msgstr "ypserv ile haberleşilemiyor" ++#: sysdeps/posix/gai_strerror-strs.h:5 ++msgid "ai_family not supported" ++msgstr "ai_family desteklenmiyor" + +-#: nis/ypclnt.c:802 +-msgid "Local domain name not set" +-msgstr "Yerel alan ismi ayarlanmamış" ++#: sysdeps/posix/gai_strerror-strs.h:6 ++msgid "Memory allocation failure" ++msgstr "Bellek tahsisi başarısız" + +-#: nis/ypclnt.c:804 +-msgid "NIS map database is bad" +-msgstr "NIS eşleşme veritabanı hatalı" ++#: sysdeps/posix/gai_strerror-strs.h:7 ++msgid "No address associated with hostname" ++msgstr "Makina ismiyle ilişkili adres yok" + +-#: nis/ypclnt.c:806 +-msgid "NIS client/server version mismatch - can't supply service" +-msgstr "NIS istemci/sunucu sürümü eşleşmiyor - servis sağlanamaz" ++#: sysdeps/posix/gai_strerror-strs.h:8 ++msgid "Name or service not known" ++msgstr "İsim ya da servis bilinmiyor" + +-#: nis/ypclnt.c:810 +-msgid "Database is busy" +-msgstr "Veritabanı meşgul" ++#: sysdeps/posix/gai_strerror-strs.h:9 ++msgid "Servname not supported for ai_socktype" ++msgstr "ai_socktype için sunucu ismi desteklenmiyor" + +-#: nis/ypclnt.c:812 +-msgid "Unknown NIS error code" +-msgstr "Bilinmeyen NIS hata kodu" ++#: sysdeps/posix/gai_strerror-strs.h:10 ++msgid "ai_socktype not supported" ++msgstr "ai_socktype desteklenmiyor" + +-#: nis/ypclnt.c:854 +-msgid "Internal ypbind error" +-msgstr "İçsel ypbind hatası" ++#: sysdeps/posix/gai_strerror-strs.h:11 ++msgid "System error" ++msgstr "Sistem hatası" + +-#: nis/ypclnt.c:856 +-msgid "Domain not bound" +-msgstr "Alan bağıntısı yapılamadı" ++#: sysdeps/posix/gai_strerror-strs.h:12 ++msgid "Processing request in progress" ++msgstr "İşlem zaten süreç dahilinde" + +-#: nis/ypclnt.c:858 +-msgid "System resource allocation failure" +-msgstr "Sistem öz kaynaklarının ayrılması başarısız" ++#: sysdeps/posix/gai_strerror-strs.h:13 ++msgid "Request canceled" ++msgstr "İstem iptal edildi" + +-#: nis/ypclnt.c:860 +-msgid "Unknown ypbind error" +-msgstr "Bilinmeyen ypbind hatası" ++#: sysdeps/posix/gai_strerror-strs.h:14 ++msgid "Request not canceled" ++msgstr "İstem iptal edilmedi" + +-#: nis/ypclnt.c:899 +-msgid "yp_update: cannot convert host to netname\n" +-msgstr "yp_update: makina ismi ağ ismine dönüştürülemiyor\n" ++#: sysdeps/posix/gai_strerror-strs.h:15 ++msgid "All requests done" ++msgstr "Tüm istekler yerine getirildi" + +-#: nis/ypclnt.c:911 +-msgid "yp_update: cannot get server address\n" +-msgstr "yp_update: sunucu adresi alınamıyor\n" ++#: sysdeps/posix/gai_strerror-strs.h:16 ++msgid "Interrupted by a signal" ++msgstr "Bir sinyal ile engellendi" + +-#: nscd/cache.c:94 +-msgid "while allocating hash table entry" +-msgstr "arama (hash) tablosu girdisi ayrılırken" ++#: sysdeps/posix/gai_strerror-strs.h:17 ++msgid "Parameter string not correctly encoded" ++msgstr "Parametre dizgesi yanlış kodlanmış" + +-#: nscd/cache.c:162 nscd/connections.c:184 +-#, c-format +-msgid "cannot stat() file `%s': %s" +-msgstr "`%s' dosyası stat() olamıyor: %s" ++#: sysdeps/unix/siglist.c:26 ++msgid "Signal 0" ++msgstr "Sinyal 0" + +-#: nscd/connections.c:150 +-msgid "Cannot run nscd in secure mode as unprivileged user" +-msgstr "nscd güvenli kipte yetkisiz kullanıcı olarak çalıştırılamaz" ++#: sysdeps/unix/siglist.c:32 ++msgid "IOT trap" ++msgstr "IOT tuzağı" + +-#: nscd/connections.c:172 ++#: sysdeps/unix/sysv/linux/i386/readelflib.c:49 + #, c-format +-msgid "while allocating cache: %s" +-msgstr "arabellek girdisi ayrılırken: %s" ++msgid "%s is for unknown machine %d.\n" ++msgstr "%s bilinmeyen makina %d içindir.\n" + +-#: nscd/connections.c:197 ++#: sysdeps/unix/sysv/linux/ia64/makecontext.c:63 + #, c-format +-msgid "cannot open socket: %s" +-msgstr "soket açılamıyor: %s" ++msgid "makecontext: does not know how to handle more than 8 arguments\n" ++msgstr "makecontext: 8 argümandan fazlasının nasıl elde edileceği bilinmiyor\n" + +-#: nscd/connections.c:215 ++#: sysdeps/unix/sysv/linux/lddlibc4.c:64 + #, c-format +-msgid "cannot enable socket to accept connections: %s" +-msgstr "bağlantıları kabul etmek üzere soket etkinleştirilemiyor: %s" ++msgid "cannot open `%s'" ++msgstr "`%s' açılamıyor" + +-#: nscd/connections.c:260 ++#: sysdeps/unix/sysv/linux/lddlibc4.c:68 + #, c-format +-msgid "cannot handle old request version %d; current version is %d" +-msgstr "eski istem sürümü %d elde edilemedi; mevcut sürüm %d" ++msgid "cannot read header from `%s'" ++msgstr "başlık `%s'den okunamıyor" + +-#: nscd/connections.c:298 nscd/connections.c:324 +-#, c-format +-msgid "cannot write result: %s" +-msgstr "sonuç yazılamıyor: %s" ++#: timezone/zdump.c:215 ++msgid "lacks alphabetic at start" ++msgstr "başlangıcı alfabetik değil" + +-#: nscd/connections.c:392 nscd/connections.c:514 +-#, c-format +-msgid "error getting caller's id: %s" +-msgstr "çağrıcı kimliği alınırken hata: %s" ++#: timezone/zdump.c:217 ++msgid "has fewer than 3 alphabetics" ++msgstr "3 harften az" + +-#: nscd/connections.c:485 +-#, c-format +-msgid "while accepting connection: %s" +-msgstr "bağlantı kabul edilirken: %s" ++#: timezone/zdump.c:219 ++msgid "has more than 6 alphabetics" ++msgstr "6 harften az" + +-#: nscd/connections.c:498 +-#, c-format +-msgid "short read while reading request: %s" +-msgstr "istenen okuma kısa: %s" ++#: timezone/zdump.c:227 ++msgid "differs from POSIX standard" ++msgstr "POSIX standardından farklar" + +-#: nscd/connections.c:542 ++#: timezone/zdump.c:233 + #, c-format +-msgid "key length in request too long: %d" +-msgstr "istenen anahtar uzunluğu fazla: %d" ++msgid "%s: warning: zone \"%s\" abbreviation \"%s\" %s\n" ++msgstr "%s: uyarı: zaman dilimi \"%s\" kısaltma \"%s\" %s\n" + +-#: nscd/connections.c:556 ++#: timezone/zdump.c:284 + #, c-format +-msgid "short read while reading request key: %s" +-msgstr "istenen tuş okunurken kısa okuma: %s" ++msgid "%s: usage is %s [ --version ] [ -v ] [ -c [loyear,]hiyear ] zonename ...\n" ++msgstr "" ++"%s: kullanımı şöyledir: %s [ --version ] [ -v ] [ -c [ düşükyıl, ] yüksekyıl ]\n" ++"zamanDilimiİsmi ...\n" + +-#: nscd/connections.c:566 ++#: timezone/zdump.c:301 + #, c-format +-msgid "handle_request: request received (Version = %d) from PID %ld" +-msgstr "handle_request: %2$ld numaralı süreçden istek alındı (Sürüm = %1$d)" ++msgid "%s: wild -c argument %s\n" ++msgstr "%s: ilkel -c argümanı %s\n" ++ ++#: timezone/zdump.c:392 ++msgid "Error writing to standard output" ++msgstr "Standart çıktıya yazarken hata" + +-#: nscd/connections.c:571 ++#: timezone/zdump.c:415 + #, c-format +-msgid "handle_request: request received (Version = %d)" +-msgstr "handle_request: istek alındı (Sürüm = %d)" ++msgid "%s: use of -v on system with floating time_t other than float or double\n" ++msgstr "%s: sistem üzerinde float veya double'dan başka gerçel time_t'li -v kullanımı\n" + +-#: nscd/connections.c:635 nscd/connections.c:636 nscd/connections.c:655 +-#: nscd/connections.c:668 nscd/connections.c:674 nscd/connections.c:681 ++#: timezone/zic.c:371 + #, c-format +-msgid "Failed to run nscd as user '%s'" +-msgstr "nscd '%s' kullanıcısı olarak çalıştırılamadı" ++msgid "%s: Memory exhausted: %s\n" ++msgstr "%s: Bellek tükendi: %s\n" + +-#: nscd/connections.c:656 +-msgid "getgrouplist failed" +-msgstr "getgrouplist başarısız" ++#: timezone/zic.c:430 ++#, c-format ++msgid "\"%s\", line %d: %s" ++msgstr "\"%s\", satır %d: %s" + +-#: nscd/connections.c:669 +-msgid "setgroups failed" +-msgstr "setgroups başarısız" ++#: timezone/zic.c:433 ++#, c-format ++msgid " (rule from \"%s\", line %d)" ++msgstr " (\"%s\", %d satırından kural)" + +-#: nscd/grpcache.c:103 nscd/hstcache.c:111 nscd/pwdcache.c:109 +-msgid "while allocating key copy" +-msgstr "tuş kopyası ayrılırken" +- +-#: nscd/grpcache.c:153 nscd/hstcache.c:168 nscd/pwdcache.c:146 +-msgid "while allocating cache entry" +-msgstr "arabellek girdisi ayrılırken" ++#: timezone/zic.c:445 ++msgid "warning: " ++msgstr "uyarı: " + +-#: nscd/grpcache.c:197 nscd/hstcache.c:283 nscd/pwdcache.c:193 ++#: timezone/zic.c:455 + #, c-format +-msgid "short write in %s: %s" +-msgstr "%s içinde kısa yazma: %s" ++msgid "" ++"%s: usage is %s [ --version ] [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] \\\n" ++"\t[ -d directory ] [ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n" ++msgstr "" ++"%s: kullanımı: %s [ --version ] [ -s ] [ -v ] \\\n" ++"\t[ -l yerelZaman ] [ -p posixKuralları ] [ -d dizin ] \\\n" ++"\t[ -L artıkSaniyeler ] [ -y yıltürü ] [ dosyaismi ... ]\n" + +-#: nscd/grpcache.c:219 ++#: timezone/zic.c:503 + #, c-format +-msgid "Haven't found \"%s\" in group cache!" +-msgstr "\"%s\" grup arabelleğinde yok!" ++msgid "%s: More than one -d option specified\n" ++msgstr "%s: Birden fazla -d seçeneği belirtilmiş\n" + +-#: nscd/grpcache.c:285 ++#: timezone/zic.c:513 + #, c-format +-msgid "Invalid numeric gid \"%s\"!" +-msgstr "\"%s\" grup numarası geçersiz!" ++msgid "%s: More than one -l option specified\n" ++msgstr "%s: Birden fazla -l seçeneği belirtilmiş\n" + +-#: nscd/grpcache.c:292 ++#: timezone/zic.c:523 + #, c-format +-msgid "Haven't found \"%d\" in group cache!" +-msgstr "\"%d\" grup arabelleğinde yok!" ++msgid "%s: More than one -p option specified\n" ++msgstr "%s: Birden fazla -p seçeneği belirtilmiş\n" + +-#: nscd/hstcache.c:305 nscd/hstcache.c:371 nscd/hstcache.c:436 +-#: nscd/hstcache.c:501 ++#: timezone/zic.c:533 + #, c-format +-msgid "Haven't found \"%s\" in hosts cache!" +-msgstr "\"%s\" makinalar arabelleğinde yok!" +- +-#: nscd/nscd.c:89 +-msgid "Read configuration data from NAME" +-msgstr "Yapılandırma verisini İSİM den okur" +- +-#: nscd/nscd.c:91 +-msgid "Do not fork and display messages on the current tty" +-msgstr "Üzerinde çalışılan tty de iletiler ayrılmaz ve gösterilir" +- +-#: nscd/nscd.c:92 +-msgid "NUMBER" +-msgstr "SAYI" +- +-#: nscd/nscd.c:92 +-msgid "Start NUMBER threads" +-msgstr "SAYIlı başlıkları başlatır" +- +-#: nscd/nscd.c:93 +-msgid "Shut the server down" +-msgstr "Sunucuyu indirir" +- +-#: nscd/nscd.c:94 +-msgid "Print current configuration statistic" +-msgstr "Şu anki yapılandırma istatistiklerini basar" +- +-#: nscd/nscd.c:95 +-msgid "TABLE" +-msgstr "TABLO" +- +-#: nscd/nscd.c:96 +-msgid "Invalidate the specified cache" +-msgstr "Belirtilen arabellek geçersiz kılındı" +- +-#: nscd/nscd.c:97 +-msgid "TABLE,yes" +-msgstr "TABLO,evet" +- +-#: nscd/nscd.c:97 +-msgid "Use separate cache for each user" +-msgstr "Her kullanıcı için ayrı arabellek kullanılır" +- +-#: nscd/nscd.c:102 +-msgid "Name Service Cache Daemon." +-msgstr "Name Service Cache Daemon." +- +-#: nscd/nscd.c:141 +-msgid "cannot read configuration file; this is fatal" +-msgstr "yapılandırma dosyası açılamıyor; bu ölümcül bir hata" ++msgid "%s: More than one -y option specified\n" ++msgstr "%s: Birden fazla -y seçeneği belirtilmiş\n" + +-#: nscd/nscd.c:152 +-msgid "already running" +-msgstr "Zaten çalışıyor" ++#: timezone/zic.c:543 ++#, c-format ++msgid "%s: More than one -L option specified\n" ++msgstr "%s: Birden fazla -L seçeneği belirtilmiş\n" + +-#: nscd/nscd.c:270 nscd/nscd.c:294 nscd/nscd_stat.c:132 +-msgid "Only root is allowed to use this option!" +-msgstr "Bu seçenek sadece root tarafından kullanılabilir!" ++#: timezone/zic.c:592 ++msgid "link to link" ++msgstr "bağlantıdan bağlantıya" + +-#: nscd/nscd_conf.c:88 +-#, c-format +-msgid "Parse error: %s" +-msgstr "Çözümleme hatası: %s" ++#: timezone/zic.c:657 ++msgid "hard link failed, symbolic link used" ++msgstr "sabit bağ başarısız, sembolik bağ kullanıldı" + +-#: nscd/nscd_conf.c:171 ++#: timezone/zic.c:665 + #, c-format +-msgid "Could not create log file \"%s\"" +-msgstr "\"%s\" günlük dosyası oluşturulamadı" ++msgid "%s: Can't link from %s to %s: %s\n" ++msgstr "%s: %s den %s e bağ kurulamıyor: %s\n" + +-#: nscd/nscd_conf.c:187 +-msgid "Must specify user name for server-user option" +-msgstr "server-user seçeneği için kullanıcı ismi belirtilmelidir" ++#: timezone/zic.c:774 timezone/zic.c:776 ++msgid "same rule name in multiple files" ++msgstr "bir çok dosyada aynı kural ismi var" + +-#: nscd/nscd_conf.c:194 +-msgid "Must specify user name for stat-user option" +-msgstr "stat-user seçeneği için kullanıcı ismi belirtilmelidir" ++#: timezone/zic.c:817 ++msgid "unruly zone" ++msgstr "kuralsız dilim" + +-#: nscd/nscd_conf.c:205 ++#: timezone/zic.c:824 + #, c-format +-msgid "Unknown option: %s %s %s" +-msgstr "Bilinmeyen seçenek: %s %s %s" ++msgid "%s in ruleless zone" ++msgstr "%s kuralsız zaman diliminde" + +-#: nscd/nscd_stat.c:103 +-#, c-format +-msgid "cannot write statistics: %s" +-msgstr "istatistikler yazılamıyor: %s" ++#: timezone/zic.c:845 ++msgid "standard input" ++msgstr "standart girdi" + +-#: nscd/nscd_stat.c:128 ++#: timezone/zic.c:850 + #, c-format +-msgid "Only root or %s is allowed to use this option!" +-msgstr "Bu seçenek sadece root veya %s tarafından kullanılabilir!" +- +-#: nscd/nscd_stat.c:139 +-msgid "nscd not running!\n" +-msgstr "nscd çalışmıyor!\n" ++msgid "%s: Can't open %s: %s\n" ++msgstr "%s: %s açılamıyor: %s\n" + +-#: nscd/nscd_stat.c:150 +-msgid "write incomplete" +-msgstr "yazma tamamlanamıyor" ++#: timezone/zic.c:861 ++msgid "line too long" ++msgstr "satır çok uzun" + +-#: nscd/nscd_stat.c:162 +-msgid "cannot read statistics data" +-msgstr "istatistik verileri okunamıyor" ++#: timezone/zic.c:881 ++msgid "input line of unknown type" ++msgstr "girdi satırının türü bilinmiyor" + +-#: nscd/nscd_stat.c:165 ++#: timezone/zic.c:897 + #, c-format +-msgid "" +-"nscd configuration:\n" +-"\n" +-"%15d server debug level\n" +-msgstr "" +-"nscd yapılandırması:\n" +-"\n" +-"%15d sunucu hata ayıklama seviyesi\n" ++msgid "%s: Leap line in non leap seconds file %s\n" ++msgstr "%s: artık saniyeler olmayan %s dosyasında `Leap' satırı\n" + +-#: nscd/nscd_stat.c:189 ++#: timezone/zic.c:904 timezone/zic.c:1325 timezone/zic.c:1350 + #, c-format +-msgid "%3ud %2uh %2um %2lus server runtime\n" +-msgstr "%3ud %2uh %2um %2lus sunucu çalışma zamanı\n" ++msgid "%s: panic: Invalid l_value %d\n" ++msgstr "%s: panik: sol değer (l_value) %d geçersiz\n" + +-#: nscd/nscd_stat.c:192 ++#: timezone/zic.c:912 + #, c-format +-msgid " %2uh %2um %2lus server runtime\n" +-msgstr " %2uh %2um %2lus sunucu çalışma zamanı\n" ++msgid "%s: Error reading %s\n" ++msgstr "%s: %s okunurken hata\n" + +-#: nscd/nscd_stat.c:194 ++#: timezone/zic.c:919 + #, c-format +-msgid " %2um %2lus server runtime\n" +-msgstr " %2um %2lus sunucu çalışma zamanı\n" ++msgid "%s: Error closing %s: %s\n" ++msgstr "%s: %s kapatılırken hata: %s\n" + +-#: nscd/nscd_stat.c:196 +-#, c-format +-msgid " %2lus server runtime\n" +-msgstr " %2lus sunucu çalışma zamanı\n" ++#: timezone/zic.c:924 ++msgid "expected continuation line not found" ++msgstr "gereken süreklilik satırı bulunamadı" + +-#: nscd/nscd_stat.c:198 +-#, c-format +-msgid "%15lu number of times clients had to wait\n" +-msgstr "%15lu kere istemciler beklemeye alındı\n" ++#: timezone/zic.c:968 ++msgid "24:00 not handled by pre-1998 versions of zic" ++msgstr "zic'in 1998 öncesi sürümlerinde 24:00 elde edilemez" + +-#: nscd/nscd_stat.c:213 nscd/nscd_stat.c:215 +-msgid " no" +-msgstr " hayır" ++#: timezone/zic.c:982 ++msgid "wrong number of fields on Rule line" ++msgstr "`Rule' satırının alanları eksik ya da fazla" + +-#: nscd/nscd_stat.c:213 nscd/nscd_stat.c:215 +-msgid " yes" +-msgstr " evet" ++#: timezone/zic.c:986 ++msgid "nameless rule" ++msgstr "adsız kural" + +-#: nscd/nscd_stat.c:221 +-#, c-format +-msgid "" +-"\n" +-"%s cache:\n" +-"\n" +-"%15s cache is enabled\n" +-"%15Zu suggested size\n" +-"%15lu seconds time to live for positive entries\n" +-"%15lu seconds time to live for negative entries\n" +-"%15lu cache hits on positive entries\n" +-"%15lu cache hits on negative entries\n" +-"%15lu cache misses on positive entries\n" +-"%15lu cache misses on negative entries\n" +-"%15lu%% cache hit rate\n" +-"%15lu current number of cached values\n" +-"%15lu maximum number of cached values\n" +-"%15lu maximum chain length searched\n" +-"%15lu number of delays on rdlock\n" +-"%15lu number of delays on wrlock\n" +-"%15s check /etc/%s for changes\n" +-msgstr "" +-"\n" +-"%s arabellek:\n" +-"\n" +-"%15s arabellek etkin\n" +-"%15Zu önerilen miktar\n" +-"%15lu saniye; pozitif girdiler için (ttl) yaşam süresi\n" +-"%15lu saniye; negatif girdiler için (ttl) yaşam süresi\n" +-"%15lu arabellek; pozitif girdilerde ulaşılan\n" +-"%15lu arabellek; negatif girdilerde ulaşılan\n" +-"%15lu arabellek; pozitif girdilerde kaybedilen\n" +-"%15lu arabellek; negatif girdilerde kaybedilen\n" +-"%15lu%% arabellekleme oranı\n" +-"%15lu arabellekli değerlerin şimdiki sayısı\n" +-"%15lu arabellekli değerlerin azami sayısı\n" +-"%15lu aranan azami zincir uzunluğu\n" +-"%15lu rdlock üzerinde gecikmelerin sayısı\n" +-"%15lu wrlocküzerinde gecikmelerin sayısı\n" +-"%15s /etc/%s'deki değişiklikler için yapılan denetim sayısı\n" ++#: timezone/zic.c:991 ++msgid "invalid saved time" ++msgstr "kazanılmış zaman geçersiz" + +-#: nscd/pwdcache.c:215 ++#: timezone/zic.c:1010 ++msgid "wrong number of fields on Zone line" ++msgstr "`Zone' satırının alanları eksik ya da fazla" ++ ++#: timezone/zic.c:1016 + #, c-format +-msgid "Haven't found \"%s\" in password cache!" +-msgstr "\"%s\" parola arabelleğinde yok!" ++msgid "\"Zone %s\" line and -l option are mutually exclusive" ++msgstr "\"Zone %s\" satırı ve -l seçeneği çelişiyor" + +-#: nscd/pwdcache.c:281 ++#: timezone/zic.c:1024 + #, c-format +-msgid "Invalid numeric uid \"%s\"!" +-msgstr "\"%s\" kullanıcı numarası geçersiz!" ++msgid "\"Zone %s\" line and -p option are mutually exclusive" ++msgstr "\"Zone %s\" satırı ve -p seçeneği çelişiyor" + +-#: nscd/pwdcache.c:288 ++#: timezone/zic.c:1036 + #, c-format +-msgid "Haven't found \"%d\" in password cache!" +-msgstr "\"%d\" parola arabelleğinde yok!" ++msgid "duplicate zone name %s (file \"%s\", line %d)" ++msgstr "dilim ismi %s tekrarlanmış (dosya \"%s\", satır %d)" + +-#: elf/../sysdeps/generic/dl-sysdep.c:422 +-msgid "cannot create capability list" +-msgstr "yetenek listesi oluşturulamıyor" ++#: timezone/zic.c:1052 ++msgid "wrong number of fields on Zone continuation line" ++msgstr "`Zone' devam satırının alanları eksik ya da fazla" + +-#: elf/../sysdeps/generic/readelflib.c:35 +-#, c-format +-msgid "file %s is truncated\n" +-msgstr "%s dosyası kırpılmış\n" ++#: timezone/zic.c:1092 ++msgid "invalid UTC offset" ++msgstr "UTC offset geçersiz" + +-#: elf/../sysdeps/generic/readelflib.c:67 +-#, c-format +-msgid "%s is a 32 bit ELF file.\n" +-msgstr "%s 32 bitlik bir ELF dosyasıdır.\n" ++#: timezone/zic.c:1095 ++msgid "invalid abbreviation format" ++msgstr "kısaltma biçemi geçersiz" + +-#: elf/../sysdeps/generic/readelflib.c:69 +-#, c-format +-msgid "%s is a 64 bit ELF file.\n" +-msgstr "%s 64 bitlik bir ELF dosyasıdır.\n" ++#: timezone/zic.c:1122 ++msgid "Zone continuation line end time is not after end time of previous line" ++msgstr "`Zone' devamlılık satırının bitiş zamanı önceki satırın bitiş zamanından sonra değil" + +-#: elf/../sysdeps/generic/readelflib.c:71 +-#, c-format +-msgid "Unknown ELFCLASS in file %s.\n" +-msgstr "%s dosyasında bilinmeyen ELFCLASS.\n" ++#: timezone/zic.c:1150 ++msgid "wrong number of fields on Leap line" ++msgstr "`Leap' satırının alanları eksik ya da fazla" + +-#: elf/../sysdeps/generic/readelflib.c:78 +-#, c-format +-msgid "%s is not a shared object file (Type: %d).\n" +-msgstr "%s paylaşımlı nesne dosyası değil (Tür: %d).\n" ++#: timezone/zic.c:1159 ++msgid "invalid leaping year" ++msgstr "artık yıl geçersiz" + +-#: elf/../sysdeps/generic/readelflib.c:109 +-msgid "more than one dynamic segment\n" +-msgstr "bir dinamik parçadan fazla\n" ++#: timezone/zic.c:1174 timezone/zic.c:1280 ++msgid "invalid month name" ++msgstr "ay ismi geçersiz" + +-#: elf/../sysdeps/unix/sysv/linux/i386/readelflib.c:49 +-#, c-format +-msgid "%s is for unknown machine %d.\n" +-msgstr "%s bilinmeyen makina %d içindir.\n" ++#: timezone/zic.c:1187 timezone/zic.c:1402 timezone/zic.c:1416 ++msgid "invalid day of month" ++msgstr "ayın günü geçersiz" + +-#: elf/cache.c:70 +-msgid "unknown" +-msgstr "bilinmiyor" ++#: timezone/zic.c:1192 ++msgid "time before zero" ++msgstr "sıfırdan önceki zaman" + +-#: elf/cache.c:111 +-msgid "Unknown OS" +-msgstr "Bilinmeyen işletim sistemi" ++#: timezone/zic.c:1196 ++msgid "time too small" ++msgstr "süre çok kısa" + +-#: elf/cache.c:116 +-#, c-format +-msgid ", OS ABI: %s %d.%d.%d" +-msgstr ", OS ABI: %s %d.%d.%d" ++#: timezone/zic.c:1200 ++msgid "time too large" ++msgstr "süre çok uzun" + +-#: elf/cache.c:142 elf/ldconfig.c:1078 +-#, c-format +-msgid "Can't open cache file %s\n" +-msgstr "Arabellek dosyası %s açılamıyor\n" ++#: timezone/zic.c:1204 timezone/zic.c:1309 ++msgid "invalid time of day" ++msgstr "günün tarihi geçersiz" + +-#: elf/cache.c:154 +-msgid "mmap of cache file failed.\n" +-msgstr "arabellek dosyasının mmap'lenmesi başarısız\n" ++#: timezone/zic.c:1223 ++msgid "illegal CORRECTION field on Leap line" ++msgstr "`Leap' satırında kuraldışı CORRECTION alanı" + +-#: elf/cache.c:158 elf/cache.c:168 +-msgid "File is not a cache file.\n" +-msgstr "Bir arabellek dosyası değil.\n" ++#: timezone/zic.c:1228 ++msgid "illegal Rolling/Stationary field on Leap line" ++msgstr "`Leap' satırında kuraldışı Rolling/Stationary alanı" + +-#: elf/cache.c:201 elf/cache.c:211 +-#, c-format +-msgid "%d libs found in cache `%s'\n" +-msgstr "%d kitaplık, `%s' arabelleğinde bulundu\n" ++#: timezone/zic.c:1244 ++msgid "wrong number of fields on Link line" ++msgstr "`Link' satırının alanları eksik ya da fazla" + +-#: elf/cache.c:410 +-#, c-format +-msgid "Can't remove old temporary cache file %s" +-msgstr "eski geçici arabellek dosyası %s silinemiyor" ++#: timezone/zic.c:1248 ++msgid "blank FROM field on Link line" ++msgstr "`Link' satırında FROM alanı boş" + +-#: elf/cache.c:417 +-#, c-format +-msgid "Can't create temporary cache file %s" +-msgstr "Geçici arabellek dosyası %s oluşturulamıyor" ++#: timezone/zic.c:1252 ++msgid "blank TO field on Link line" ++msgstr "`Link' satırında TO alanı boş" + +-#: elf/cache.c:425 elf/cache.c:434 elf/cache.c:438 +-msgid "Writing of cache data failed" +-msgstr "Arabellek verisini yazmada hata" ++#: timezone/zic.c:1329 ++msgid "invalid starting year" ++msgstr "başlangıç yılı geçersiz" + +-#: elf/cache.c:442 +-msgid "Writing of cache data failed." +-msgstr "Arabellek verisi yazılamadı." ++#: timezone/zic.c:1333 ++msgid "starting year too low to be represented" ++msgstr "başlangıç yılı gösterilemeyecek kadar küçük" + +-#: elf/cache.c:449 +-#, c-format +-msgid "Changing access rights of %s to %#o failed" +-msgstr "%s erişim hakları %#o olarak değiştirilemedi" ++#: timezone/zic.c:1335 ++msgid "starting year too high to be represented" ++msgstr "başlangıç yılı gösterilemeyecek kadar büyük" + +-#: elf/cache.c:454 +-#, c-format +-msgid "Renaming of %s to %s failed" +-msgstr "%s'in ismi %s olarak değiştirilemedi" ++#: timezone/zic.c:1354 ++msgid "invalid ending year" ++msgstr "bitiş yılı geçersiz" + +-#: elf/dl-close.c:128 +-msgid "shared object not open" +-msgstr "paylaşımlı nesne açık değil" ++#: timezone/zic.c:1358 ++msgid "ending year too low to be represented" ++msgstr "bitiş yılı gösterilemeyecek kadar küçük" + +-#: elf/dl-close.c:531 elf/dl-open.c:454 +-msgid "TLS generation counter wrapped! Please send report with the 'glibcbug' script." +-msgstr "TLS üretecinin sayacı başa döndü! Lütfen 'glibcbug' betiğini kullanarak bir hata raporu gönderin." ++#: timezone/zic.c:1360 ++msgid "ending year too high to be represented" ++msgstr "bitiş yılı gösterilemeyecek kadar büyük" + +-#: elf/dl-deps.c:111 elf/dl-open.c:183 +-msgid "DST not allowed in SUID/SGID programs" +-msgstr "SUID/SGID programlarda DST'ye izin verilmez" ++#: timezone/zic.c:1363 ++msgid "starting year greater than ending year" ++msgstr "başlangıç yılı bitiş yılından büyük" + +-#: elf/dl-deps.c:124 +-msgid "empty dynamics string token substitution" +-msgstr "boş dinamik dizge simge ikamesi" ++#: timezone/zic.c:1370 ++msgid "typed single year" ++msgstr "türünde tek yıl" + +-#: elf/dl-deps.c:130 ++#: timezone/zic.c:1407 ++msgid "invalid weekday name" ++msgstr "gün ismi geçersiz" ++ ++#: timezone/zic.c:1521 + #, c-format +-msgid "cannot load auxiliary `%s' because of empty dynamic string token substitution\n" +-msgstr "boş dinamik dizge simgesi ikamesi yüzünden yardımcı `%s' yüklenemiyor\n" ++msgid "%s: Can't remove %s: %s\n" ++msgstr "%s: %s silinemiyor: %s\n" + +-#: elf/dl-deps.c:461 +-msgid "cannot allocate dependency list" +-msgstr "bağımlılık listesi ayrılamadı" ++#: timezone/zic.c:1531 ++#, c-format ++msgid "%s: Can't create %s: %s\n" ++msgstr "%s: %s oluşturulamıyor: %s\n" + +-#: elf/dl-deps.c:494 elf/dl-deps.c:549 +-msgid "cannot allocate symbol search list" +-msgstr "sembol arama listesi ayrılamadı" ++#: timezone/zic.c:1598 ++#, c-format ++msgid "%s: Error writing %s\n" ++msgstr "%s: %s yazılırken hata oluştu\n" + +-#: elf/dl-deps.c:534 +-msgid "Filters not supported with LD_TRACE_PRELINKING" +-msgstr "LD_TRACE_PRELINKING'li süzgeçler destenlenmez" ++#: timezone/zic.c:1789 ++msgid "can't determine time zone abbreviation to use just after until time" ++msgstr "süreye değinden hemen sonra kullanılacak zaman dilimi kısaltması saptanamadı" + +-#: elf/dl-error.c:75 +-msgid "DYNAMIC LINKER BUG!!!" +-msgstr "DİNAMİK BAĞLAYICI HATASI!!!" ++#: timezone/zic.c:1832 ++msgid "too many transitions?!" ++msgstr "çok fazla geçiş?!" + +-#: elf/dl-error.c:108 +-msgid "error while loading shared libraries" +-msgstr "paylaşımlı kitaplıklar yüklenirken hata oluştu" ++#: timezone/zic.c:1851 ++msgid "internal error - addtype called with bad isdst" ++msgstr "iç hata -- addtype hatalı isdst ile çağrıldı" + +-#: elf/dl-load.c:347 +-msgid "cannot allocate name record" +-msgstr "isim kaydı ayrılamadı" ++#: timezone/zic.c:1855 ++msgid "internal error - addtype called with bad ttisstd" ++msgstr "iç hata -- addtype hatalı ttisstd ile çağrıldı" + +-#: elf/dl-load.c:449 elf/dl-load.c:528 elf/dl-load.c:648 elf/dl-load.c:743 +-msgid "cannot create cache for search path" +-msgstr "dosya arama yolu için arabellek oluşturulamıyor" ++#: timezone/zic.c:1859 ++msgid "internal error - addtype called with bad ttisgmt" ++msgstr "iç hata -- addtype hatalı ttisgmt ile çağrıldı" + +-#: elf/dl-load.c:551 +-msgid "cannot create RUNPATH/RPATH copy" +-msgstr "RUNPATH/RPATH kopyası oluşturulamıyor" ++#: timezone/zic.c:1878 ++msgid "too many local time types" ++msgstr "yerel zaman türleri çok fazla" + +-#: elf/dl-load.c:634 +-msgid "cannot create search path array" +-msgstr "dosya arama yolu dizisi oluşturulamıyor" ++#: timezone/zic.c:1906 ++msgid "too many leap seconds" ++msgstr "çok fazla artık saniye" ++ ++#: timezone/zic.c:1912 ++msgid "repeated leap second moment" ++msgstr "tekrarlanan artık saniye anı" + +-#: elf/dl-load.c:830 +-msgid "cannot stat shared object" +-msgstr "paylaşımlı nesne durumlanamıyor" ++#: timezone/zic.c:1964 ++msgid "Wild result from command execution" ++msgstr "Komut icrasından alınan sonuç garip" + +-#: elf/dl-load.c:874 +-msgid "cannot open zero fill device" +-msgstr "sıfırlar içeren aygıt açılamaz" ++#: timezone/zic.c:1965 ++#, c-format ++msgid "%s: command was '%s', result was %d\n" ++msgstr "%s: komut `%s' idi, sonuç %d oldu\n" + +-#: elf/dl-load.c:883 elf/dl-load.c:1929 +-msgid "cannot create shared object descriptor" +-msgstr "paylaşımlı nesne tanımlayıcı oluşturulamıyor" ++#: timezone/zic.c:2062 ++msgid "Odd number of quotation marks" ++msgstr "Tırnak işaretleri tek sayıda" + +-#: elf/dl-load.c:902 elf/dl-load.c:1470 elf/dl-load.c:1553 +-msgid "cannot read file data" +-msgstr "dosya verisi okunamıyor" ++#: timezone/zic.c:2083 timezone/zic.c:2102 ++msgid "time overflow" ++msgstr "zaman taşması" + +-#: elf/dl-load.c:946 +-msgid "ELF load command alignment not page-aligned" +-msgstr "ELF yükleme komutu hizalaması sayfa-hizalamalı değil" ++#: timezone/zic.c:2149 ++msgid "use of 2/29 in non leap-year" ++msgstr "artık olmayan yıl içinde 2/29 kullanımı" + +-#: elf/dl-load.c:953 +-msgid "ELF load command address/offset not properly aligned" +-msgstr "ELF yükleme komutu adresi/başvurusu gereği gibi hizalanamıyor" ++#: timezone/zic.c:2184 ++msgid "rule goes past start/end of month--will not work with pre-2004 versions of zic" ++msgstr "ayın başına/sonuna giden kural zic'in 2004 öncesi sürümlerinde çalışmaz" ++ ++#: timezone/zic.c:2218 ++msgid "time zone abbreviation lacks alphabetic at start" ++msgstr "zaman dilimi kısaltması bir harfle başlamıyor" ++ ++#: timezone/zic.c:2220 ++msgid "time zone abbreviation has more than 3 alphabetics" ++msgstr "zaman dilimi kısaltmasında 3 harften az harf var" ++ ++#: timezone/zic.c:2222 ++msgid "time zone abbreviation has too many alphabetics" ++msgstr "zaman dilimi kısaltmasında çok fazla harf var" ++ ++#: timezone/zic.c:2232 ++msgid "time zone abbreviation differs from POSIX standard" ++msgstr "zaman dilimi kısaltması POSIX standardından farklı" + +-#: elf/dl-load.c:1037 +-msgid "cannot allocate TLS data structures for initial thread" +-msgstr "ilk kanak için TLS veri yapıları oluşturulamıyor" ++#: timezone/zic.c:2244 ++msgid "too many, or too long, time zone abbreviations" ++msgstr "çok fazla ya da çok uzun zaman dilimi kısaltmaları" + +-#: elf/dl-load.c:1061 +-msgid "cannot handle TLS data" +-msgstr "TLS verisi alınamıyor" ++#: timezone/zic.c:2285 ++#, c-format ++msgid "%s: Can't create directory %s: %s\n" ++msgstr "%s: %s dizini oluşturulamıyor: %s\n" + +-#: elf/dl-load.c:1075 +-msgid "object file has no loadable segments" +-msgstr "nesne dosyasının yüklenebilir segmanı yok" ++#: timezone/zic.c:2307 ++#, c-format ++msgid "%s: %d did not sign extend correctly\n" ++msgstr "%s: %d ölçüyü tutturamadı\n" + +-#: elf/dl-load.c:1110 +-msgid "failed to map segment from shared object" +-msgstr "parça paylaşımlı nesneden eşleştirilemedi" ++#~ msgid "Report bugs using the `glibcbug' script to .\n" ++#~ msgstr "" ++#~ "Çeviri hatalarını adresine, diğerlerini\n" ++#~ "ise `glibcbug' betiğini kullanarak oluşturacağınız hata raporuyla\n" ++#~ " adresine bildiriniz.\n" + +-#: elf/dl-load.c:1135 +-msgid "cannot dynamically load executable" +-msgstr "çalıştırılabilir dosya dinamik olarak yüklenemiyor" ++#~ msgid "Get locale-specific information." ++#~ msgstr "Dile özel bilgiler alınır" + +-#: elf/dl-load.c:1191 +-msgid "cannot change memory protections" +-msgstr "bellek korumaları değiştirilemiyor" ++#~ msgid "cheese" ++#~ msgstr "mükemmel" + +-#: elf/dl-load.c:1210 +-msgid "cannot map zero-fill pages" +-msgstr "sıfırlar içeren sayfalar eşleştirilemez" ++#~ msgid "First string for testing." ++#~ msgstr "Test edilecek ilk dizge." + +-#: elf/dl-load.c:1228 +-msgid "cannot allocate memory for program header" +-msgstr "uygulama başlığı için bellek ayrılamadı" ++#~ msgid "Another string for testing." ++#~ msgstr "Test edilecek diğer dizge." + +-#: elf/dl-load.c:1259 +-msgid "object file has no dynamic section" +-msgstr "nesne dosyasının dinamik bölümü yok" ++#~ msgid "Error 0" ++#~ msgstr "Hata 0" + +-#: elf/dl-load.c:1299 +-msgid "shared object cannot be dlopen()ed" +-msgstr "paylaşımlı nesne dlopen()'lanamıyor" ++#~ msgid "I/O error" ++#~ msgstr "G/Ç hatası" + +-#: elf/dl-load.c:1322 +-msgid "cannot create searchlist" +-msgstr "arama listesi oluşturulamıyor" ++#~ msgid "Arg list too long" ++#~ msgstr "Arg listesi çok uzun" + +-#: elf/dl-load.c:1352 +-msgid "cannot enable executable stack as shared object requires" +-msgstr "paylaşımlı nesnenin gerektirdiği çalıştırılabilir yığıt etkinleştirilemiyor" ++#~ msgid "Bad file number" ++#~ msgstr "Dosya numarası hatalı" + +-#: elf/dl-load.c:1470 +-msgid "file too short" +-msgstr "dosya çok küçük" ++#~ msgid "Not enough space" ++#~ msgstr "alan yetersiz" + +-#: elf/dl-load.c:1493 +-msgid "invalid ELF header" +-msgstr "ELF başlığı geçersiz" ++#~ msgid "Device busy" ++#~ msgstr "Aygıt meşgul" + +-#: elf/dl-load.c:1502 +-msgid "ELF file data encoding not big-endian" +-msgstr "ELF dosyası verisinin kodlaması en-kıymetli-bayt-ilk (big-endian) değil" ++#~ msgid "Cross-device link" ++#~ msgstr "Çapraz-aygıt bağı" + +-#: elf/dl-load.c:1504 +-msgid "ELF file data encoding not little-endian" +-msgstr "ELF dosyası verisinin kodlaması en-kıymetli-bayt-son (little-endian) değil" ++#~ msgid "File table overflow" ++#~ msgstr "Dosya tablosu taştı" + +-#: elf/dl-load.c:1508 +-msgid "ELF file version ident does not match current one" +-msgstr "ELF dosyası sürüm kimliği mevcut biriyle eşleşmiyor" ++#~ msgid "Argument out of domain" ++#~ msgstr "Argüman alan dışı" + +-#: elf/dl-load.c:1512 +-msgid "ELF file OS ABI invalid" +-msgstr "ELF dosyası OS ABI geçersiz" ++#~ msgid "Result too large" ++#~ msgstr "Sonuç çok büyük" + +-#: elf/dl-load.c:1514 +-msgid "ELF file ABI version invalid" +-msgstr "ELF dosyası ABI sürümü geçersiz" ++#~ msgid "Deadlock situation detected/avoided" ++#~ msgstr "ÖlüKilit konumu saptandı/engellendi" + +-#: elf/dl-load.c:1517 +-msgid "internal error" +-msgstr "iç hata" ++#~ msgid "No record locks available" ++#~ msgstr "İşe yarar kayıt kilitleri yok" + +-#: elf/dl-load.c:1524 +-msgid "ELF file version does not match current one" +-msgstr "ELF dosyası sürümü mevcut biriyle eşleşmiyor" ++#~ msgid "Disc quota exceeded" ++#~ msgstr "Disk kotası aşıldı" + +-#: elf/dl-load.c:1532 +-msgid "ELF file's phentsize not the expected size" +-msgstr "ELF dosyasının phent uzunluğu beklenen uzunlukta değil" ++#~ msgid "Bad exchange descriptor" ++#~ msgstr "Değiş tokuş betimleyici hatalı" + +-#: elf/dl-load.c:1538 +-msgid "only ET_DYN and ET_EXEC can be loaded" +-msgstr "sadece ET_DYN ve ET_EXEC yüklü olabilir" ++#~ msgid "Bad request descriptor" ++#~ msgstr "İstek betimleyici hatalı" + +-#: elf/dl-load.c:1944 +-msgid "cannot open shared object file" +-msgstr "paylaşımlı nesne dosyası açılamıyor" ++#~ msgid "Message tables full" ++#~ msgstr "İleti tablosunda yer yok" + +-#: elf/dl-lookup.c:265 elf/dl-lookup.c:443 +-msgid "relocation error" +-msgstr "yeniden konumlama hatası" ++#~ msgid "Anode table overflow" ++#~ msgstr "A-düğüm tablosu taştı" + +-#: elf/dl-open.c:111 +-msgid "cannot extend global scope" +-msgstr "genel kapsam genişletilemiyor" ++#~ msgid "Bad request code" ++#~ msgstr "İstek kodu hatalı" + +-#: elf/dl-open.c:214 +-msgid "empty dynamic string token substitution" +-msgstr "boş dinamik dizge simge ikamesi" ++#~ msgid "File locking deadlock" ++#~ msgstr "Dosya kilitlemede ölükilit" + +-#: elf/dl-open.c:361 elf/dl-open.c:372 +-msgid "cannot create scope list" +-msgstr "etki alanı listesi oluşturulamıyor" ++#~ msgid "Error 58" ++#~ msgstr "Hata 58" + +-#: elf/dl-open.c:434 +-msgid "cannot create TLS data structures" +-msgstr "TLS veri yapıları oluşturulamıyor" ++#~ msgid "Error 59" ++#~ msgstr "Hata 59" + +-#: elf/dl-open.c:496 +-msgid "invalid mode for dlopen()" +-msgstr "dlopen() için kip geçersiz" ++#~ msgid "Not a stream device" ++#~ msgstr "Veri alışverişi yapılabilecek bir aygıt değil" + +-#: elf/dl-reloc.c:57 +-msgid "cannot allocate memory in static TLS block" +-msgstr "durağan TLS bloğunda bellek ayrılamıyor" ++#~ msgid "Out of stream resources" ++#~ msgstr "Veri akımı özkaynakları yetersiz" + +-#: elf/dl-reloc.c:176 +-msgid "cannot make segment writable for relocation" +-msgstr "yeniden konumlama için parça yazılabilir yapılamıyor" ++#~ msgid "Error 72" ++#~ msgstr "Hata 72" + +-#: elf/dl-reloc.c:277 +-#, c-format +-msgid "%s: profiler found no PLTREL in object %s\n" +-msgstr "%s: profiler %s nesnesinde PLTREL bulamadı\n" ++#~ msgid "Error 73" ++#~ msgstr "Hata 73" + +-#: elf/dl-reloc.c:289 +-#, c-format +-msgid "%s: profiler out of memory shadowing PLTREL of %s\n" +-msgstr "%s: %s PLTREL gölgelenirken profiler bellekdışı\n" ++#~ msgid "Error 75" ++#~ msgstr "Hata 75" + +-#: elf/dl-reloc.c:304 +-msgid "cannot restore segment prot after reloc" +-msgstr "reloc işleminden sonra prot segmanı eski haline getirilemedi" ++#~ msgid "Error 76" ++#~ msgstr "Hata 76" + +-#: elf/dl-sym.c:74 elf/dl-sym.c:145 +-msgid "RTLD_NEXT used in code not dynamically loaded" +-msgstr "RTLD_NEXT kullanılan kod dinamik olarak yüklenmedi" ++#~ msgid "Not a data message" ++#~ msgstr "Bir veri iletisi değil" + +-#: elf/dl-version.c:303 +-msgid "cannot allocate version reference table" +-msgstr "sürüm başvuru tablosu ayrılamadı" ++#~ msgid "Attempting to link in more shared libraries than system limit" ++#~ msgstr "Sistem sınırlarından daha fazla sayıdaki paylaşımlı kitaplıkta bağ kurulmaya çalışılıyor" + +-#: elf/ldconfig.c:122 +-msgid "Print cache" +-msgstr "Yazıcı ön belleği" ++#~ msgid "Can not exec a shared library directly" ++#~ msgstr "Bir paylaşımlı kitaplık doğrudan icra edilemez" + +-#: elf/ldconfig.c:123 +-msgid "Generate verbose messages" +-msgstr "Çok detaylı iletiler üretilir" ++#~ msgid "Illegal byte sequence" ++#~ msgstr "Bayt serisi kuraldışı" + +-#: elf/ldconfig.c:124 +-msgid "Don't build cache" +-msgstr "Arabellek oluşturulamıyor" ++#~ msgid "Operation not applicable" ++#~ msgstr "İşlem uygulanabilir değil" + +-#: elf/ldconfig.c:125 +-msgid "Don't generate links" +-msgstr "Bağlar üretilemiyor" ++#~ msgid "Number of symbolic links encountered during path name traversal exceeds MAXSYMLINKS" ++#~ msgstr "Dosya yolu izlenirken saptanan sembolik bağların sayısı MAXSYMLINKS sayısını aşıyor" + +-#: elf/ldconfig.c:126 +-msgid "Change to and use ROOT as root directory" +-msgstr "Dizine geçilir ve kök dizin olarak ROOT kullanır" ++#~ msgid "Error 91" ++#~ msgstr "Hata 91" + +-#: elf/ldconfig.c:127 +-msgid "Use CACHE as cache file" +-msgstr "Arabellek dosyası olarak ARABELLEK kullanılır" ++#~ msgid "Error 92" ++#~ msgstr "Hata 92" + +-#: elf/ldconfig.c:128 +-msgid "Use CONF as configuration file" +-msgstr "Yapılandırma dosyası olarak YAPD kullanılır" ++#~ msgid "Option not supported by protocol" ++#~ msgstr "Protokol işlemi desteklemedi" + +-#: elf/ldconfig.c:129 +-msgid "Only process directories specified on the command line. Don't build cache." +-msgstr "Komut satırında sadece süreç dizinleri belirtilmiş. Önbellek oluşturulamadı." ++#~ msgid "Error 100" ++#~ msgstr "Hata 100" + +-#: elf/ldconfig.c:130 +-msgid "Manually link individual libraries." +-msgstr "Her bir kitaplığı kendiniz bağlayın." ++#~ msgid "Error 101" ++#~ msgstr "Hata 101" + +-#: elf/ldconfig.c:131 +-msgid "Format to use: new, old or compat (default)" +-msgstr "Kullanılacak biçem: new, old ya da compat (öntanımlı)" ++#~ msgid "Error 102" ++#~ msgstr "Hata 102" + +-#: elf/ldconfig.c:139 +-msgid "Configure Dynamic Linker Run Time Bindings." +-msgstr "Dinamik Bağlayıcının İcra Zamanı Bağıntılarını Yapılandırır." ++#~ msgid "Error 103" ++#~ msgstr "Hata 103" + +-#: elf/ldconfig.c:297 +-#, c-format +-msgid "Path `%s' given more than once" +-msgstr "`%s' dosya yolu birden fazla verilmiş" ++#~ msgid "Error 104" ++#~ msgstr "Hata 104" + +-#: elf/ldconfig.c:341 +-#, c-format +-msgid "%s is not a known library type" +-msgstr "%s bilinen bir kitaplık türü değil" ++#~ msgid "Error 105" ++#~ msgstr "Hata 105" + +-#: elf/ldconfig.c:361 +-#, c-format +-msgid "Can't stat %s" +-msgstr "stat %s yapılamıyor" ++#~ msgid "Error 106" ++#~ msgstr "Hata 106" + +-#: elf/ldconfig.c:431 +-#, c-format +-msgid "Can't stat %s\n" +-msgstr "stat %s yapılamıyor\n" ++#~ msgid "Error 107" ++#~ msgstr "Hata 107" + +-#: elf/ldconfig.c:441 +-#, c-format +-msgid "%s is not a symbolic link\n" +-msgstr "%s bir sembolik bağ değil\n" ++#~ msgid "Error 108" ++#~ msgstr "Hata 108" + +-#: elf/ldconfig.c:460 +-#, c-format +-msgid "Can't unlink %s" +-msgstr "%s bağı kaldırılamadı" ++#~ msgid "Error 109" ++#~ msgstr "Hata 109" + +-#: elf/ldconfig.c:466 +-#, c-format +-msgid "Can't link %s to %s" +-msgstr "%s den %s'e bağ yapılamıyor" ++#~ msgid "Error 110" ++#~ msgstr "Hata 110" + +-#: elf/ldconfig.c:472 +-msgid " (changed)\n" +-msgstr " (değişti)\n" ++#~ msgid "Error 111" ++#~ msgstr "Hata 111" + +-#: elf/ldconfig.c:474 +-msgid " (SKIPPED)\n" +-msgstr " (ATLANDI)\n" ++#~ msgid "Error 112" ++#~ msgstr "Hata 112" + +-#: elf/ldconfig.c:529 +-#, c-format +-msgid "Can't find %s" +-msgstr "%s bulunamıyor" ++#~ msgid "Error 113" ++#~ msgstr "Hata 113" + +-#: elf/ldconfig.c:545 +-#, c-format +-msgid "Can't lstat %s" +-msgstr "lstat %s yapılamıyor" ++#~ msgid "Error 114" ++#~ msgstr "Hata 114" + +-#: elf/ldconfig.c:552 +-#, c-format +-msgid "Ignored file %s since it is not a regular file." +-msgstr "Normal bir dosya olmadığından %s dosyası yoksayıldı" ++#~ msgid "Error 115" ++#~ msgstr "Hata 115" + +-#: elf/ldconfig.c:560 +-#, c-format +-msgid "No link created since soname could not be found for %s" +-msgstr "%s için kitaplık ismi bulunamadığından bağ oluşturulmadı" ++#~ msgid "Error 116" ++#~ msgstr "Hata 116" + +-#: elf/ldconfig.c:651 +-#, c-format +-msgid "Can't open directory %s" +-msgstr "%s dizini açılamıyor" ++#~ msgid "Error 117" ++#~ msgstr "Hata 117" + +-#: elf/ldconfig.c:706 elf/ldconfig.c:753 +-#, c-format +-msgid "Cannot lstat %s" +-msgstr "lstat %s yapılamıyor" ++#~ msgid "Error 118" ++#~ msgstr "Hata 118" + +-#: elf/ldconfig.c:718 +-#, c-format +-msgid "Cannot stat %s" +-msgstr "stat %s yapılamıyor" ++#~ msgid "Error 119" ++#~ msgstr "Hata 119" + +-#: elf/ldconfig.c:775 elf/readlib.c:92 +-#, c-format +-msgid "Input file %s not found.\n" +-msgstr "Girdi dosyası %s bulunamadı.\n" ++#~ msgid "Operation not supported on transport endpoint" ++#~ msgstr "Nakil hattının diğer ucunda işlem desteklenmedi" + +-#: elf/ldconfig.c:826 +-#, c-format +-msgid "libc5 library %s in wrong directory" +-msgstr "libc5 kitaplığı %s yanlış dizinde" ++#~ msgid "Address family not supported by protocol family" ++#~ msgstr "Adres ailesi protokol ailesi tarafından desteklenmiyor" + +-#: elf/ldconfig.c:829 +-#, c-format +-msgid "libc6 library %s in wrong directory" +-msgstr "libc6 kitaplığı %s yanlış dizinde" ++#~ msgid "Network dropped connection because of reset" ++#~ msgstr "Yeniden başlatma nedeniyle ağ bağlantısı kesildi" + +-#: elf/ldconfig.c:832 +-#, c-format +-msgid "libc4 library %s in wrong directory" +-msgstr "libc4 kitaplığı %s yanlış dizinde" ++#~ msgid "Error 136" ++#~ msgstr "Hata 136" + +-#: elf/ldconfig.c:859 +-#, c-format +-msgid "libraries %s and %s in directory %s have same soname but different type." +-msgstr "%s ve %s kitaplıkları %s dizininde ve aynı isme sahip oldukları halde farklı türde." ++#~ msgid "Not available" ++#~ msgstr "İşe yaramaz" + +-#: elf/ldconfig.c:962 +-#, c-format +-msgid "Can't open configuration file %s" +-msgstr "Yapılandırma dosyası %s açılamıyor" ++#~ msgid "Is a name file" ++#~ msgstr "Bir \"name\" dosyası" + +-#: elf/ldconfig.c:1033 +-#, c-format +-msgid "relative path `%s' used to build cache" +-msgstr "arabelleğin oluşturulduğu göreli yol `%s'" ++#~ msgid "Reserved for future use" ++#~ msgstr "İlerde kullanmak üzere ayrıldı" + +-#: elf/ldconfig.c:1057 +-msgid "Can't chdir to /" +-msgstr "/ dizinine geçilemiyor" ++#~ msgid "Error 142" ++#~ msgstr "Hata 142" + +-#: elf/ldconfig.c:1099 +-#, c-format +-msgid "Can't open cache file directory %s\n" +-msgstr "Arabellek dosyasının dizini %s açılamıyor\n" ++#~ msgid "Cannot send after socket shutdown" ++#~ msgstr "Soket kapandıktan sonra yollanamaz" + +-#: elf/readlib.c:98 +-#, c-format +-msgid "Cannot fstat file %s.\n" +-msgstr "%s dosyası fstat yapılamıyor.\n" ++#~ msgid "%s: Can't unlink %s: %s\n" ++#~ msgstr "%s: %s bağı kaldırılamıyor: %s\n" + +-#: elf/readlib.c:108 +-#, c-format +-msgid "File %s is too small, not checked." +-msgstr "%s dosyası çok küçük, kontrol edilemedi." ++#~ msgid "no day in month matches rule" ++#~ msgstr "ay içinde kurala uyan gün yok" + +-#: elf/readlib.c:117 +-#, c-format +-msgid "Cannot mmap file %s.\n" +-msgstr "%s dosyası mmap yapılamıyor.\n" ++#~ msgid "%s: line %d: expected service, found `%s'\n" ++#~ msgstr "%s: satır %d: `%s' bir servis olmalıydı\n" + +-#: elf/readlib.c:155 +-#, c-format +-msgid "%s is not an ELF file - it has the wrong magic bytes at the start.\n" +-msgstr "%s bir ELF dosyası değil - Başlangıcındaki dosya tanımı hatalı.\n" ++#~ msgid "%s: line %d: cannot specify more than %d services" ++#~ msgstr "%s: satır %d: en çok %d servis belirtilebilir" + +-#: elf/sprof.c:72 +-msgid "Output selection:" +-msgstr "Çıktı seçimi:" ++#~ msgid "%s: line %d: list delimiter not followed by keyword" ++#~ msgstr "%s: satır %d: liste ayracından sonra bir anahtar sözcük gelmemeli" + +-#: elf/sprof.c:74 +-msgid "print list of count paths and their number of use" +-msgstr "sayım yollarının listesini ve kullanımdaki miktarını basar" ++#~ msgid "getent - get entries from administrative database." ++#~ msgstr "getent - yönetim veritabanından girdiler alınıyor." + +-#: elf/sprof.c:76 +-msgid "generate flat profile with counts and ticks" +-msgstr "sayım ve darbelerle düz kesit üretir" ++#~ msgid "get_myaddress: ioctl (get interface configuration)" ++#~ msgstr "get_myaddress: ioctl (arayüz yapılandırması alır)" + +-#: elf/sprof.c:77 +-msgid "generate call graph" +-msgstr "çağrı grafiği üretir" ++#~ msgid "__get_myaddress: ioctl (get interface configuration)" ++#~ msgstr "__get_myaddress: ioctl (arayüz yapılandırmasını alır)" + +-#: elf/sprof.c:84 +-msgid "Read and display shared object profiling data" +-msgstr "Paylaşımlı nesne şekillendirici verisini okur ve gösterir" ++#~ msgid "broadcast: ioctl (get interface configuration)" ++#~ msgstr "broadcast: ioctl (arayüz yapılandırmasını alır)" + +-#: elf/sprof.c:87 +-msgid "SHOBJ [PROFDATA]" +-msgstr "SHOBJ [PROFDATA]" ++#~ msgid "broadcast: ioctl (get interface flags)" ++#~ msgstr "broadcast: ioctl (arayüz flamalarını alır)" + +-#: elf/sprof.c:398 +-#, c-format +-msgid "failed to load shared object `%s'" +-msgstr "paylaşımlı nesne `%s' yüklenemedi" ++#~ msgid "YPBINDPROC_DOMAIN: %s\n" ++#~ msgstr "YPBINDPROC_DOMAIN: %s\n" + +-#: elf/sprof.c:407 +-msgid "cannot create internal descriptors" +-msgstr "iç tanıtıcılar oluşturulamıyor" ++#~ msgid "while allocating hash table entry" ++#~ msgstr "arama (hash) tablosu girdisi ayrılırken" + +-#: elf/sprof.c:526 +-#, c-format +-msgid "Reopening shared object `%s' failed" +-msgstr "`%s' paylaşımlı nesnesinin yeniden açılması başarısız" ++#~ msgid "Cannot run nscd in secure mode as unprivileged user" ++#~ msgstr "nscd güvenli kipte yetkisiz kullanıcı olarak çalıştırılamaz" + +-#: elf/sprof.c:534 +-msgid "mapping of section headers failed" +-msgstr "bölüm başlıkları eşlemi başarısız" +- +-#: elf/sprof.c:544 +-msgid "mapping of section header string table failed" +-msgstr "bölüm başlık dizgeleri tablosunun eşlemi başarısız" ++#~ msgid "while allocating cache: %s" ++#~ msgstr "arabellek girdisi ayrılırken: %s" + +-#: elf/sprof.c:564 +-#, c-format +-msgid "*** The file `%s' is stripped: no detailed analysis possible\n" +-msgstr "*** `%s' dosyası lime lime edildi: detaylı çözümleme mümkün değil\n" ++#~ msgid "while accepting connection: %s" ++#~ msgstr "bağlantı kabul edilirken: %s" + +-#: elf/sprof.c:594 +-msgid "failed to load symbol data" +-msgstr "sembol verisi yüklenemedi" ++#~ msgid "while allocating key copy" ++#~ msgstr "tuş kopyası ayrılırken" + +-#: elf/sprof.c:664 +-msgid "cannot load profiling data" +-msgstr "şekillendirici verisi yüklenemiyor" ++#~ msgid "while allocating cache entry" ++#~ msgstr "arabellek girdisi ayrılırken" + +-#: elf/sprof.c:673 +-msgid "while stat'ing profiling data file" +-msgstr "şekillendirici veri dosyası durumlanırken" ++#~ msgid "Haven't found \"%d\" in group cache!" ++#~ msgstr "\"%d\" grup arabelleğinde yok!" + +-#: elf/sprof.c:681 +-#, c-format +-msgid "profiling data file `%s' does not match shared object `%s'" +-msgstr "şekillendirme veri dosyası `%s' paylaşımlı nesne `%s' ile uyuşmuyor" ++#~ msgid "%15lu number of times clients had to wait\n" ++#~ msgstr "%15lu kere istemciler beklemeye alındı\n" + +-#: elf/sprof.c:692 +-msgid "failed to mmap the profiling data file" +-msgstr "şekillendirme verisi dosyası mmap olamadı" ++#~ msgid " no" ++#~ msgstr " hayır" + +-#: elf/sprof.c:700 +-msgid "error while closing the profiling data file" +-msgstr "şekillendirici verisi dosyası kapatılırken hata" ++#~ msgid " yes" ++#~ msgstr " evet" + +-#: elf/sprof.c:709 elf/sprof.c:779 +-msgid "cannot create internal descriptor" +-msgstr "iç tanıtıcı oluşturulamıyor" ++#~ msgid "Haven't found \"%d\" in password cache!" ++#~ msgstr "\"%d\" parola arabelleğinde yok!" + +-#: elf/sprof.c:755 +-#, c-format +-msgid "`%s' is no correct profile data file for `%s'" +-msgstr "`%s' `%s' için doğru olmayan şekillendirici verisi dosyası" ++#~ msgid "%s: profiler out of memory shadowing PLTREL of %s\n" ++#~ msgstr "%s: %s PLTREL gölgelenirken profiler bellekdışı\n" + +-#: elf/sprof.c:936 elf/sprof.c:988 +-msgid "cannot allocate symbol data" +-msgstr "sembol verisi ayrılamadı" ++#~ msgid "Read and display shared object profiling data" ++#~ msgstr "Paylaşımlı nesne şekillendirici verisini okur ve gösterir" + + #~ msgid "shared object cannot be dlopen()ed: static TLS memory too small" + #~ msgstr "paylaşımlı nesne dlopen()'lanamıyor: statik TLS belleği çok küçük" +diff -urN --exclude=CVS glibc-2_5/libc/posix/glob.c glibc-2_5-branch/libc/posix/glob.c +--- glibc-2_5/libc/posix/glob.c 2006-09-25 17:31:56.000000000 +0200 ++++ glibc-2_5-branch/libc/posix/glob.c 2007-03-20 14:22:27.000000000 +0100 +@@ -1287,8 +1287,15 @@ + for (size_t i = 0; i < cur; ++i) + free (names->name[i]); + names = names->next; ++ /* NB: we will not leak memory here if we exit without ++ freeing the current block assigned to OLD. At least ++ the very first block is always allocated on the stack ++ and this is the block assigned to OLD here. */ + if (names == NULL) +- break; ++ { ++ assert (old == &init_names); ++ break; ++ } + cur = names->count; + if (old == names_alloca) + names_alloca = names; +@@ -1306,8 +1313,15 @@ + new_gl_pathv[pglob->gl_offs + pglob->gl_pathc++] + = names->name[i]; + names = names->next; ++ /* NB: we will not leak memory here if we exit without ++ freeing the current block assigned to OLD. At least ++ the very first block is always allocated on the stack ++ and this is the block assigned to OLD here. */ + if (names == NULL) +- break; ++ { ++ assert (old == &init_names); ++ break; ++ } + cur = names->count; + if (old == names_alloca) + names_alloca = names; +diff -urN --exclude=CVS glibc-2_5/libc/README glibc-2_5-branch/libc/README +--- glibc-2_5/libc/README 2006-09-29 20:42:12.000000000 +0200 ++++ glibc-2_5-branch/libc/README 2007-03-20 14:21:30.000000000 +0100 +@@ -10,13 +10,6 @@ + implement the operating system behavior seen by user applications. + In GNU/Hurd systems, it works with a microkernel and Hurd servers. + +-Version 2.4 is the first release after a long period of development, and +-introduces changes to the API and a new ABI for all configurations. It +-has been tested and deployed in new production systems, but should still +-be considered somewhat experimental. The stable 2.3 release series +-continues to be maintained, and implements a widely-deployed ABI. +-Version 2.3.6 is available, and we will release 2.3.7 with more bug fixes. +- + The GNU C Library implements much of the POSIX.1 functionality in the + GNU/Hurd system, using configurations i[34567]86-*-gnu. + +diff -urN --exclude=CVS glibc-2_5/libc/README.template glibc-2_5-branch/libc/README.template +--- glibc-2_5/libc/README.template 2006-03-06 11:59:31.000000000 +0100 ++++ glibc-2_5-branch/libc/README.template 2007-03-20 14:21:31.000000000 +0100 +@@ -10,13 +10,6 @@ + implement the operating system behavior seen by user applications. + In GNU/Hurd systems, it works with a microkernel and Hurd servers. + +-Version 2.4 is the first release after a long period of development, and +-introduces changes to the API and a new ABI for all configurations. It +-has been tested and deployed in new production systems, but should still +-be considered somewhat experimental. The stable 2.3 release series +-continues to be maintained, and implements a widely-deployed ABI. +-Version 2.3.6 is available, and we will release 2.3.7 with more bug fixes. +- + The GNU C Library implements much of the POSIX.1 functionality in the + GNU/Hurd system, using configurations i[34567]86-*-gnu. + +diff -urN --exclude=CVS glibc-2_5/libc/stdlib/jrand48_r.c glibc-2_5-branch/libc/stdlib/jrand48_r.c +--- glibc-2_5/libc/stdlib/jrand48_r.c 2001-07-06 06:55:41.000000000 +0200 ++++ glibc-2_5-branch/libc/stdlib/jrand48_r.c 2007-03-20 14:22:34.000000000 +0100 +@@ -1,4 +1,4 @@ +-/* Copyright (C) 1995, 1997, 1998, 2001 Free Software Foundation, Inc. ++/* Copyright (C) 1995, 1997, 1998, 2001, 2006 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper , August 1995. + +@@ -30,7 +30,7 @@ + return -1; + + /* Store the result. */ +- *result = ((xsubi[2] << 16) | xsubi[1]) & 0xffffffffl; ++ *result = (int32_t) ((xsubi[2] << 16) | xsubi[1]); + + return 0; + } +diff -urN --exclude=CVS glibc-2_5/libc/stdlib/Makefile glibc-2_5-branch/libc/stdlib/Makefile +--- glibc-2_5/libc/stdlib/Makefile 2006-08-21 23:02:11.000000000 +0200 ++++ glibc-2_5-branch/libc/stdlib/Makefile 2007-03-20 14:22:33.000000000 +0100 +@@ -1,4 +1,4 @@ +-# Copyright (C) 1991-2002,2003,2004,2005,2006 Free Software Foundation, Inc. ++# Copyright (C) 1991-2006, 2007 Free Software Foundation, Inc. + # This file is part of the GNU C Library. + + # The GNU C Library is free software; you can redistribute it and/or +@@ -66,7 +66,9 @@ + test-canon test-canon2 tst-strtoll tst-environ \ + tst-xpg-basename tst-random tst-random2 tst-bsearch \ + tst-limits tst-rand48 bug-strtod tst-setcontext \ +- test-a64l tst-qsort tst-system testmb2 bug-strtod2 ++ test-a64l tst-qsort tst-system testmb2 bug-strtod2 \ ++ tst-atof1 tst-atof2 tst-strtod2 tst-strtod3 tst-rand48-2 \ ++ tst-makecontext tst-strtod4 + + include ../Makeconfig + +@@ -115,6 +117,8 @@ + test-canon-ARGS = --test-dir=${common-objpfx}stdlib + + tst-strtod-ENV = LOCPATH=$(common-objpfx)localedata ++tst-strtod3-ENV = LOCPATH=$(common-objpfx)localedata ++tst-strtod4-ENV = LOCPATH=$(common-objpfx)localedata + testmb2-ENV = LOCPATH=$(common-objpfx)localedata + + # Run a test on the header files we use. +diff -urN --exclude=CVS glibc-2_5/libc/stdlib/strtod_l.c glibc-2_5-branch/libc/stdlib/strtod_l.c +--- glibc-2_5/libc/stdlib/strtod_l.c 2006-01-14 13:09:09.000000000 +0100 ++++ glibc-2_5-branch/libc/stdlib/strtod_l.c 2007-03-20 14:22:34.000000000 +0100 +@@ -1,5 +1,6 @@ + /* Convert string representing a number to float value, using given locale. +- Copyright (C) 1997,1998,2002,2004,2005,2006 Free Software Foundation, Inc. ++ Copyright (C) 1997,1998,2002,2004,2005,2006,2007 ++ Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper , 1997. + +@@ -650,10 +651,11 @@ + if (c != '0') + { + for (cnt = 0; thousands[cnt] != '\0'; ++cnt) +- if (c != thousands[cnt]) ++ if (thousands[cnt] != cp[cnt]) + break; + if (thousands[cnt] != '\0') + break; ++ cp += cnt - 1; + } + c = *++cp; + } +@@ -662,20 +664,29 @@ + + /* If no other digit but a '0' is found the result is 0.0. + Return current read pointer. */ +- if ((c < L_('0') || c > L_('9')) +- && (base == 16 && (c < (CHAR_TYPE) TOLOWER (L_('a')) +- || c > (CHAR_TYPE) TOLOWER (L_('f')))) ++ if (!((c >= L_('0') && c <= L_('9')) ++ || (base == 16 && ((CHAR_TYPE) TOLOWER (c) >= L_('a') ++ && (CHAR_TYPE) TOLOWER (c) <= L_('f'))) ++ || ( + #ifdef USE_WIDE_CHAR +- && c != (wint_t) decimal ++ c == (wint_t) decimal + #else +- && ({ for (cnt = 0; decimal[cnt] != '\0'; ++cnt) +- if (decimal[cnt] != cp[cnt]) +- break; +- decimal[cnt] != '\0'; }) +-#endif +- && (base == 16 && (cp == start_of_digits +- || (CHAR_TYPE) TOLOWER (c) != L_('p'))) +- && (base != 16 && (CHAR_TYPE) TOLOWER (c) != L_('e'))) ++ ({ for (cnt = 0; decimal[cnt] != '\0'; ++cnt) ++ if (decimal[cnt] != cp[cnt]) ++ break; ++ decimal[cnt] == '\0'; }) ++#endif ++ /* '0x.' alone is not a valid hexadecimal number. ++ '.' alone is not valid either, but that has been checked ++ already earlier. */ ++ && (base != 16 ++ || cp != start_of_digits ++ || (cp[decimal_len] >= L_('0') && cp[decimal_len] <= L_('9')) ++ || ((CHAR_TYPE) TOLOWER (cp[decimal_len]) >= L_('a') ++ && (CHAR_TYPE) TOLOWER (cp[decimal_len]) <= L_('f')))) ++ || (base == 16 && (cp != start_of_digits ++ && (CHAR_TYPE) TOLOWER (c) == L_('p'))) ++ || (base != 16 && (CHAR_TYPE) TOLOWER (c) == L_('e')))) + { + #ifdef USE_WIDE_CHAR + tp = __correctly_grouped_prefixwc (start_of_digits, cp, thousands, +@@ -715,13 +726,14 @@ + break; + if (thousands[cnt] != '\0') + break; ++ cp += cnt - 1; + } + #endif + } + c = *++cp; + } + +- if (grouping && dig_no > 0) ++ if (grouping && cp > start_of_digits) + { + /* Check the grouping of the digits. */ + #ifdef USE_WIDE_CHAR +@@ -759,13 +771,15 @@ + } + } + +- /* We have the number digits in the integer part. Whether these are all or +- any is really a fractional digit will be decided later. */ ++ /* We have the number of digits in the integer part. Whether these ++ are all or any is really a fractional digit will be decided ++ later. */ + int_no = dig_no; + lead_zero = int_no == 0 ? -1 : 0; + +- /* Read the fractional digits. A special case are the 'american style' +- numbers like `16.' i.e. with decimal but without trailing digits. */ ++ /* Read the fractional digits. A special case are the 'american ++ style' numbers like `16.' i.e. with decimal point but without ++ trailing digits. */ + if ( + #ifdef USE_WIDE_CHAR + c == (wint_t) decimal +@@ -815,15 +829,16 @@ + if (base == 16) + exp_limit = (exp_negative ? + -MIN_EXP + MANT_DIG + 4 * int_no : +- MAX_EXP - 4 * int_no + lead_zero); ++ MAX_EXP - 4 * int_no + 4 * lead_zero + 3); + else + exp_limit = (exp_negative ? + -MIN_10_EXP + MANT_DIG + int_no : +- MAX_10_EXP - int_no + lead_zero); ++ MAX_10_EXP - int_no + lead_zero + 1); + + do + { + exponent *= 10; ++ exponent += c - L_('0'); + + if (exponent > exp_limit) + /* The exponent is too large/small to represent a valid +@@ -853,7 +868,6 @@ + /* NOTREACHED */ + } + +- exponent += c - L_('0'); + c = *++cp; + } + while (c >= L_('0') && c <= L_('9')); +@@ -888,7 +902,7 @@ + --expp; + --dig_no; + --int_no; +- ++exponent; ++ exponent += base == 16 ? 4 : 1; + } + while (dig_no > 0 && exponent < 0); + +diff -urN --exclude=CVS glibc-2_5/libc/stdlib/tst-atof1.c glibc-2_5-branch/libc/stdlib/tst-atof1.c +--- glibc-2_5/libc/stdlib/tst-atof1.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/stdlib/tst-atof1.c 2007-01-12 19:07:19.000000000 +0100 +@@ -0,0 +1,19 @@ ++#include ++#include ++#include ++ ++static int ++do_test (void) ++{ ++ char buf[100]; ++ snprintf (buf, sizeof (buf), "%g", atof ("0x10p-1")); ++ if (strcmp (buf, "8") != 0) ++ { ++ printf ("got \"%s\", expected \"8\"\n", buf); ++ return 1; ++ } ++ return 0; ++} ++ ++#define TEST_FUNCTION do_test () ++#include "../test-skeleton.c" +diff -urN --exclude=CVS glibc-2_5/libc/stdlib/tst-atof2.c glibc-2_5-branch/libc/stdlib/tst-atof2.c +--- glibc-2_5/libc/stdlib/tst-atof2.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/stdlib/tst-atof2.c 2007-01-12 19:07:19.000000000 +0100 +@@ -0,0 +1,55 @@ ++#include ++#include ++#include ++ ++ ++static const struct ++{ ++ const char *str; ++ const char *expected; ++} tests[] = ++ { ++ { "1e308", "1e+308" }, ++ { "100000000e300", "1e+308" }, ++ { "0x1p1023", "8.98847e+307" }, ++ { "0x1000p1011", "8.98847e+307" }, ++ { "0x1p1020", "1.12356e+307" }, ++ { "0x0.00001p1040", "1.12356e+307" }, ++ { "1e-307", "1e-307" }, ++ { "0.000001e-301", "1e-307" }, ++ { "0.0000001e-300", "1e-307" }, ++ { "0.00000001e-299", "1e-307" }, ++ { "1000000e-313", "1e-307" }, ++ { "10000000e-314", "1e-307" }, ++ { "100000000e-315", "1e-307" }, ++ { "0x1p-1021", "4.45015e-308" }, ++ { "0x1000p-1033", "4.45015e-308" }, ++ { "0x10000p-1037", "4.45015e-308" }, ++ { "0x0.001p-1009", "4.45015e-308" }, ++ { "0x0.0001p-1005", "4.45015e-308" }, ++ }; ++#define NTESTS (sizeof (tests) / sizeof (tests[0])) ++ ++ ++static int ++do_test (void) ++{ ++ int status = 0; ++ ++ for (int i = 0; i < NTESTS; ++i) ++ { ++ char buf[100]; ++ snprintf (buf, sizeof (buf), "%g", atof (tests[i].str)); ++ if (strcmp (buf, tests[i].expected) != 0) ++ { ++ printf ("%d: got \"%s\", expected \"%s\"\n", ++ i, buf, tests[i].expected); ++ status = 1; ++ } ++ } ++ ++ return status; ++} ++ ++#define TEST_FUNCTION do_test () ++#include "../test-skeleton.c" +diff -urN --exclude=CVS glibc-2_5/libc/stdlib/tst-makecontext.c glibc-2_5-branch/libc/stdlib/tst-makecontext.c +--- glibc-2_5/libc/stdlib/tst-makecontext.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/stdlib/tst-makecontext.c 2007-01-12 19:24:52.000000000 +0100 +@@ -0,0 +1,67 @@ ++/* Copyright (C) 2006, 2007 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++ucontext_t ucp; ++char st1[8192]; ++__thread int thr; ++ ++void ++cf (int i) ++{ ++ if (i != 78 || thr != 94) ++ { ++ printf ("i %d thr %d\n", i, thr); ++ exit (1); ++ } ++ exit (0); ++} ++ ++int ++do_test (void) ++{ ++ if (getcontext (&ucp) != 0) ++ { ++ if (errno == ENOSYS) ++ { ++ puts ("context handling not supported"); ++ return 0; ++ } ++ ++ puts ("getcontext failed"); ++ return 1; ++ } ++ thr = 94; ++ ucp.uc_link = NULL; ++ ucp.uc_stack.ss_sp = st1; ++ ucp.uc_stack.ss_size = sizeof st1; ++ makecontext (&ucp, (void (*) (void)) cf, 1, 78); ++ if (setcontext (&ucp) != 0) ++ { ++ puts ("setcontext failed"); ++ return 1; ++ } ++ return 2; ++} ++ ++#define TEST_FUNCTION do_test () ++#include "../test-skeleton.c" +diff -urN --exclude=CVS glibc-2_5/libc/stdlib/tst-rand48-2.c glibc-2_5-branch/libc/stdlib/tst-rand48-2.c +--- glibc-2_5/libc/stdlib/tst-rand48-2.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/stdlib/tst-rand48-2.c 2007-01-12 18:52:07.000000000 +0100 +@@ -0,0 +1,113 @@ ++#include ++#include ++#include ++#include ++ ++int ++main (void) ++{ ++ time_t t = time (NULL); ++ int i, ret = 0; ++ double d; ++ long int l; ++ struct drand48_data data; ++ unsigned short int buf[3]; ++ ++ srand48 ((long int) t); ++ for (i = 0; i < 50; i++) ++ if ((d = drand48 ()) < 0.0 || d >= 1.0) ++ { ++ printf ("drand48 %d %g\n", i, d); ++ ret = 1; ++ } ++ ++ srand48_r ((long int) t, &data); ++ for (i = 0; i < 50; i++) ++ if (drand48_r (&data, &d) != 0 || d < 0.0 || d >= 1.0) ++ { ++ printf ("drand48_r %d %g\n", i, d); ++ ret = 1; ++ } ++ ++ buf[2] = (t & 0xffff0000) >> 16; buf[1] = (t & 0xffff); buf[0] = 0x330e; ++ for (i = 0; i < 50; i++) ++ if ((d = erand48 (buf)) < 0.0 || d >= 1.0) ++ { ++ printf ("erand48 %d %g\n", i, d); ++ ret = 1; ++ } ++ ++ buf[2] = (t & 0xffff0000) >> 16; buf[1] = (t & 0xffff); buf[0] = 0x330e; ++ for (i = 0; i < 50; i++) ++ if (erand48_r (buf, &data, &d) != 0 || d < 0.0 || d >= 1.0) ++ { ++ printf ("erand48_r %d %g\n", i, d); ++ ret = 1; ++ } ++ ++ srand48 ((long int) t); ++ for (i = 0; i < 50; i++) ++ if ((l = lrand48 ()) < 0 || l > INT32_MAX) ++ { ++ printf ("lrand48 %d %ld\n", i, l); ++ ret = 1; ++ } ++ ++ srand48_r ((long int) t, &data); ++ for (i = 0; i < 50; i++) ++ if (lrand48_r (&data, &l) != 0 || l < 0 || l > INT32_MAX) ++ { ++ printf ("lrand48_r %d %ld\n", i, l); ++ ret = 1; ++ } ++ ++ buf[2] = (t & 0xffff0000) >> 16; buf[1] = (t & 0xffff); buf[0] = 0x330e; ++ for (i = 0; i < 50; i++) ++ if ((l = nrand48 (buf)) < 0 || l > INT32_MAX) ++ { ++ printf ("nrand48 %d %ld\n", i, l); ++ ret = 1; ++ } ++ ++ buf[2] = (t & 0xffff0000) >> 16; buf[1] = (t & 0xffff); buf[0] = 0x330e; ++ for (i = 0; i < 50; i++) ++ if (nrand48_r (buf, &data, &l) != 0 || l < 0 || l > INT32_MAX) ++ { ++ printf ("nrand48_r %d %ld\n", i, l); ++ ret = 1; ++ } ++ ++ srand48 ((long int) t); ++ for (i = 0; i < 50; i++) ++ if ((l = mrand48 ()) < INT32_MIN || l > INT32_MAX) ++ { ++ printf ("mrand48 %d %ld\n", i, l); ++ ret = 1; ++ } ++ ++ srand48_r ((long int) t, &data); ++ for (i = 0; i < 50; i++) ++ if (mrand48_r (&data, &l) != 0 || l < INT32_MIN || l > INT32_MAX) ++ { ++ printf ("mrand48_r %d %ld\n", i, l); ++ ret = 1; ++ } ++ ++ buf[2] = (t & 0xffff0000) >> 16; buf[1] = (t & 0xffff); buf[0] = 0x330e; ++ for (i = 0; i < 50; i++) ++ if ((l = jrand48 (buf)) < INT32_MIN || l > INT32_MAX) ++ { ++ printf ("jrand48 %d %ld\n", i, l); ++ ret = 1; ++ } ++ ++ buf[2] = (t & 0xffff0000) >> 16; buf[1] = (t & 0xffff); buf[0] = 0x330e; ++ for (i = 0; i < 50; i++) ++ if (jrand48_r (buf, &data, &l) != 0 || l < INT32_MIN || l > INT32_MAX) ++ { ++ printf ("jrand48_r %d %ld\n", i, l); ++ ret = 1; ++ } ++ ++ return ret; ++} +diff -urN --exclude=CVS glibc-2_5/libc/stdlib/tst-rand48.c glibc-2_5-branch/libc/stdlib/tst-rand48.c +--- glibc-2_5/libc/stdlib/tst-rand48.c 2001-01-20 04:32:19.000000000 +0100 ++++ glibc-2_5-branch/libc/stdlib/tst-rand48.c 2007-03-20 14:22:34.000000000 +0100 +@@ -44,10 +44,10 @@ + } + + l = mrand48 (); +- if (l != 0xa28c1003l) ++ if (l != -0x5d73effdl) + { + printf ("mrand48() in line %d failed: expected %lx, seen %lx\n", +- __LINE__ - 4, 0xa28c1003l, l); ++ __LINE__ - 4, -0x5d73effdl, l); + result = 1; + } + +@@ -60,10 +60,10 @@ + } + + l = mrand48 (); +- if (l != 0x9e88f474l) ++ if (l != -0x61770b8cl) + { + printf ("mrand48() in line %d failed: expected %lx, seen %lx\n", +- __LINE__ - 4, 0x9e88f474l, l); ++ __LINE__ - 4, -0x61770b8cl, l); + result = 1; + } + +@@ -92,10 +92,10 @@ + } + + l = mrand48 (); +- if (l != 0xeb7a1fa3l) ++ if (l != -0x1485e05dl) + { + printf ("mrand48() in line %d failed: expected %lx, seen %lx\n", +- __LINE__ - 4, 0xeb7a1fa3l, l); ++ __LINE__ - 4, -0x1485e05dl, l); + result = 1; + } + +@@ -171,10 +171,10 @@ + } + + l = mrand48 (); +- if (l != 0xa28c1003l) ++ if (l != -0x5d73effdl) + { + printf ("mrand48() in line %d failed: expected %lx, seen %lx\n", +- __LINE__ - 4, 0xa28c1003l, l); ++ __LINE__ - 4, -0x5d73effdl, l); + result = 1; + } + +@@ -187,10 +187,10 @@ + } + + l = mrand48 (); +- if (l != 0x9e88f474l) ++ if (l != -0x61770b8cl) + { + printf ("mrand48() in line %d failed: expected %lx, seen %lx\n", +- __LINE__ - 4, 0x9e88f474l, l); ++ __LINE__ - 4, -0x61770b8cl, l); + result = 1; + } + +@@ -231,10 +231,10 @@ + } + + l = mrand48 (); +- if (l != 0xeb7a1fa3l) ++ if (l != -0x1485e05dl) + { + printf ("mrand48() in line %d failed: expected %lx, seen %lx\n", +- __LINE__ - 4, 0xeb7a1fa3l, l); ++ __LINE__ - 4, -0x1485e05dl, l); + result = 1; + } + +@@ -287,10 +287,10 @@ + } + + l = jrand48 (xs); +- if (l != 0xf568c7a0l) ++ if (l != -0xa973860l) + { + printf ("jrand48() in line %d failed: expected %lx, seen %lx\n", +- __LINE__ - 4, 0xf568c7a0l, l); ++ __LINE__ - 4, -0xa973860l, l); + result = 1; + } + +diff -urN --exclude=CVS glibc-2_5/libc/stdlib/tst-strtod2.c glibc-2_5-branch/libc/stdlib/tst-strtod2.c +--- glibc-2_5/libc/stdlib/tst-strtod2.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/stdlib/tst-strtod2.c 2007-01-12 19:23:27.000000000 +0100 +@@ -0,0 +1,44 @@ ++#include ++#include ++ ++struct test ++{ ++ const char *str; ++ double result; ++ size_t offset; ++} tests[] = ++{ ++ { "0xy", 0.0, 1 }, ++ { "0x.y", 0.0, 1 }, ++ { "0x0.y", 0.0, 4 }, ++ { "0x.0y", 0.0, 4 }, ++ { ".y", 0.0, 0 }, ++ { "0.y", 0.0, 2 }, ++ { ".0y", 0.0, 2 } ++}; ++ ++static int ++do_test (void) ++{ ++ int status = 0; ++ for (size_t i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i) ++ { ++ char *ep; ++ double r = strtod (tests[i].str, &ep); ++ if (r != tests[i].result) ++ { ++ printf ("test %zu r = %g, expect %g\n", i, r, tests[i].result); ++ status = 1; ++ } ++ if (ep != tests[i].str + tests[i].offset) ++ { ++ printf ("test %zu strtod parsed %ju characters, expected %zu\n", ++ i, ep - tests[i].str, tests[i].offset); ++ status = 1; ++ } ++ } ++ return status; ++} ++ ++#define TEST_FUNCTION do_test () ++#include "../test-skeleton.c" +diff -urN --exclude=CVS glibc-2_5/libc/stdlib/tst-strtod3.c glibc-2_5-branch/libc/stdlib/tst-strtod3.c +--- glibc-2_5/libc/stdlib/tst-strtod3.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/stdlib/tst-strtod3.c 2007-01-12 19:07:19.000000000 +0100 +@@ -0,0 +1,55 @@ ++#include ++#include ++#include ++#include ++ ++static const struct ++{ ++ const char *in; ++ const char *out; ++ double expected; ++} tests[] = ++ { ++ { "000,,,e1", ",,,e1", 0.0 }, ++ { "000e1", "", 0.0 }, ++ { "000,1e1", ",1e1", 0.0 } ++ }; ++#define NTESTS (sizeof (tests) / sizeof (tests[0])) ++ ++ ++static int ++do_test (void) ++{ ++ if (setlocale (LC_ALL, "en_US.ISO-8859-1") == NULL) ++ { ++ puts ("could not set locale"); ++ return 1; ++ } ++ ++ int status = 0; ++ ++ for (int i = 0; i < NTESTS; ++i) ++ { ++ char *ep; ++ double r = __strtod_internal (tests[i].in, &ep, 1); ++ ++ if (strcmp (ep, tests[i].out) != 0) ++ { ++ printf ("%d: got rest string \"%s\", expected \"%s\"\n", ++ i, ep, tests[i].out); ++ status = 1; ++ } ++ ++ if (r != tests[i].expected) ++ { ++ printf ("%d: got wrong results %g, expected %g\n", ++ i, r, tests[i].expected); ++ status = 1; ++ } ++ } ++ ++ return status; ++} ++ ++#define TEST_FUNCTION do_test () ++#include "../test-skeleton.c" +diff -urN --exclude=CVS glibc-2_5/libc/stdlib/tst-strtod4.c glibc-2_5-branch/libc/stdlib/tst-strtod4.c +--- glibc-2_5/libc/stdlib/tst-strtod4.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/stdlib/tst-strtod4.c 2007-01-12 19:23:27.000000000 +0100 +@@ -0,0 +1,56 @@ ++#include ++#include ++#include ++#include ++ ++#define NBSP "\xc2\xa0" ++ ++static const struct ++{ ++ const char *in; ++ const char *out; ++ double expected; ++} tests[] = ++ { ++ { "000"NBSP"000"NBSP"000", "", 0.0 }, ++ { "1"NBSP"000"NBSP"000,5x", "x", 1000000.5 } ++ }; ++#define NTESTS (sizeof (tests) / sizeof (tests[0])) ++ ++ ++static int ++do_test (void) ++{ ++ if (setlocale (LC_ALL, "cs_CZ.UTF-8") == NULL) ++ { ++ puts ("could not set locale"); ++ return 1; ++ } ++ ++ int status = 0; ++ ++ for (int i = 0; i < NTESTS; ++i) ++ { ++ char *ep; ++ double r = __strtod_internal (tests[i].in, &ep, 1); ++ ++ if (strcmp (ep, tests[i].out) != 0) ++ { ++ printf ("%d: got rest string \"%s\", expected \"%s\"\n", ++ i, ep, tests[i].out); ++ status = 1; ++ } ++ ++ if (r != tests[i].expected) ++ { ++ printf ("%d: got wrong results %g, expected %g\n", ++ i, r, tests[i].expected); ++ status = 1; ++ } ++ } ++ ++ return status; ++} ++ ++#define TEST_FUNCTION do_test () ++#include "../test-skeleton.c" +diff -urN --exclude=CVS glibc-2_5/libc/string/Makefile glibc-2_5-branch/libc/string/Makefile +--- glibc-2_5/libc/string/Makefile 2006-06-04 18:35:25.000000000 +0200 ++++ glibc-2_5-branch/libc/string/Makefile 2007-03-20 14:22:34.000000000 +0100 +@@ -1,4 +1,4 @@ +-# Copyright (C) 1991-2002, 2005, 2006 Free Software Foundation, Inc. ++# Copyright (C) 1991-2002, 2005, 2006, 2007 Free Software Foundation, Inc. + # This file is part of the GNU C Library. + + # The GNU C Library is free software; you can redistribute it and/or +@@ -54,7 +54,7 @@ + bug-strncat1 bug-strspn1 bug-strpbrk1 tst-bswap \ + tst-strtok tst-strxfrm bug-strcoll1 tst-strfry \ + bug-strtok1 $(addprefix test-,$(strop-tests)) \ +- bug-envz1 ++ bug-envz1 tst-strxfrm2 + distribute := memcopy.h pagecopy.h tst-svc.expect test-string.h + + +@@ -64,6 +64,7 @@ + inl-tester-ENV = LANGUAGE=C + noinl-tester-ENV = LANGUAGE=C + tst-strxfrm-ENV = LOCPATH=$(common-objpfx)localedata ++tst-strxfrm2-ENV = LOCPATH=$(common-objpfx)localedata + bug-strcoll1-ENV = LOCPATH=$(common-objpfx)localedata + CFLAGS-inl-tester.c = -fno-builtin + CFLAGS-noinl-tester.c = -fno-builtin +diff -urN --exclude=CVS glibc-2_5/libc/string/strxfrm_l.c glibc-2_5-branch/libc/string/strxfrm_l.c +--- glibc-2_5/libc/string/strxfrm_l.c 2005-10-15 22:49:18.000000000 +0200 ++++ glibc-2_5-branch/libc/string/strxfrm_l.c 2007-03-20 14:22:34.000000000 +0100 +@@ -1,4 +1,5 @@ +-/* Copyright (C) 1995,96,97,2002, 2004, 2005 Free Software Foundation, Inc. ++/* Copyright (C) 1995, 1996, 1997, 2002, 2004, 2005, 2006 ++ Free Software Foundation, Inc. + This file is part of the GNU C Library. + Written by Ulrich Drepper , 1995. + +@@ -96,6 +97,7 @@ + const int32_t *indirect; + uint_fast32_t pass; + size_t needed; ++ size_t last_needed; + const USTRING_TYPE *usrc; + size_t srclen = STRLEN (src); + int32_t *idxarr; +@@ -197,6 +199,7 @@ + this is true for all of them. */ + int position = rule & sort_position; + ++ last_needed = needed; + if (position == 0) + { + for (idxcnt = 0; idxcnt < idxmax; ++idxcnt) +@@ -426,11 +429,11 @@ + a `position' rule at the end and if no non-ignored character + is found the last \1 byte is immediately followed by a \0 byte + signalling this. We can avoid the \1 byte(s). */ +- if (needed <= n && needed > 2 && dest[needed - 2] == L('\1')) ++ if (needed > 2 && needed == last_needed + 1) + { + /* Remove the \1 byte. */ +- --needed; +- dest[needed - 1] = L('\0'); ++ if (--needed <= n) ++ dest[needed - 1] = L('\0'); + } + + /* Free the memory if needed. */ +diff -urN --exclude=CVS glibc-2_5/libc/string/tst-strxfrm2.c glibc-2_5-branch/libc/string/tst-strxfrm2.c +--- glibc-2_5/libc/string/tst-strxfrm2.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/string/tst-strxfrm2.c 2007-01-12 19:02:24.000000000 +0100 +@@ -0,0 +1,83 @@ ++#include ++#include ++#include ++ ++static int ++do_test (void) ++{ ++ int res = 0; ++ ++ char buf[20]; ++ size_t l1 = strxfrm (NULL, "ab", 0); ++ size_t l2 = strxfrm (buf, "ab", 1); ++ size_t l3 = strxfrm (buf, "ab", sizeof (buf)); ++ if (l3 < sizeof (buf) && strlen (buf) != l3) ++ { ++ puts ("C locale l3 test failed"); ++ res = 1; ++ } ++ ++ size_t l4 = strxfrm (buf, "ab", l1 + 1); ++ if (l4 < l1 + 1 && strlen (buf) != l4) ++ { ++ puts ("C locale l4 test failed"); ++ res = 1; ++ } ++ ++ buf[l1] = 'Z'; ++ size_t l5 = strxfrm (buf, "ab", l1); ++ if (buf[l1] != 'Z') ++ { ++ puts ("C locale l5 test failed"); ++ res = 1; ++ } ++ ++ if (l1 != l2 || l1 != l3 || l1 != l4 || l1 != l5) ++ { ++ puts ("C locale retval test failed"); ++ res = 1; ++ } ++ ++ if (setlocale (LC_ALL, "de_DE.UTF-8") == NULL) ++ { ++ puts ("setlocale failed"); ++ res = 1; ++ } ++ else ++ { ++ l1 = strxfrm (NULL, "ab", 0); ++ l2 = strxfrm (buf, "ab", 1); ++ l3 = strxfrm (buf, "ab", sizeof (buf)); ++ if (l3 < sizeof (buf) && strlen (buf) != l3) ++ { ++ puts ("UTF-8 locale l3 test failed"); ++ res = 1; ++ } ++ ++ l4 = strxfrm (buf, "ab", l1 + 1); ++ if (l4 < l1 + 1 && strlen (buf) != l4) ++ { ++ puts ("UTF-8 locale l4 test failed"); ++ res = 1; ++ } ++ ++ buf[l1] = 'Z'; ++ l5 = strxfrm (buf, "ab", l1); ++ if (buf[l1] != 'Z') ++ { ++ puts ("UTF-8 locale l5 test failed"); ++ res = 1; ++ } ++ ++ if (l1 != l2 || l1 != l3 || l1 != l4 || l1 != l5) ++ { ++ puts ("UTF-8 locale retval test failed"); ++ res = 1; ++ } ++ } ++ ++ return res; ++} ++ ++#define TEST_FUNCTION do_test () ++#include "../test-skeleton.c" +diff -urN --exclude=CVS glibc-2_5/libc/sunrpc/Makefile glibc-2_5-branch/libc/sunrpc/Makefile +--- glibc-2_5/libc/sunrpc/Makefile 2005-06-26 20:24:19.000000000 +0200 ++++ glibc-2_5-branch/libc/sunrpc/Makefile 2007-03-20 14:22:35.000000000 +0100 +@@ -85,7 +85,7 @@ + + include ../Makeconfig + +-tests = tst-xdrmem ++tests = tst-xdrmem tst-xdrmem2 + xtests := tst-getmyaddr + + ifeq ($(have-thread-library),yes) +diff -urN --exclude=CVS glibc-2_5/libc/sunrpc/svc_run.c glibc-2_5-branch/libc/sunrpc/svc_run.c +--- glibc-2_5/libc/sunrpc/svc_run.c 2002-05-15 02:21:01.000000000 +0200 ++++ glibc-2_5-branch/libc/sunrpc/svc_run.c 2007-03-20 14:22:35.000000000 +0100 +@@ -60,6 +60,12 @@ + return; + + my_pollfd = malloc (sizeof (struct pollfd) * svc_max_pollfd); ++ if (my_pollfd == NULL) ++ { ++ perror (_("svc_run: - out of memory")); ++ return; ++ } ++ + for (i = 0; i < svc_max_pollfd; ++i) + { + my_pollfd[i].fd = svc_pollfd[i].fd; +diff -urN --exclude=CVS glibc-2_5/libc/sunrpc/tst-xdrmem2.c glibc-2_5-branch/libc/sunrpc/tst-xdrmem2.c +--- glibc-2_5/libc/sunrpc/tst-xdrmem2.c 1970-01-01 01:00:00.000000000 +0100 ++++ glibc-2_5-branch/libc/sunrpc/tst-xdrmem2.c 2007-01-12 16:09:57.000000000 +0100 +@@ -0,0 +1,114 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Jakub Jelinek , 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++static int ++do_test (void) ++{ ++ XDR xdrs; ++ void *buf; ++ size_t ps = sysconf (_SC_PAGESIZE); ++ uintptr_t half = -1; ++ int v_int; ++ u_short v_u_short; ++ ++ half = (half >> 1) & ~(uintptr_t) (ps - 1); ++ buf = mmap ((void *) half, 2 * ps, PROT_READ | PROT_WRITE, ++ MAP_PRIVATE | MAP_ANON, -1, 0); ++ if (buf == MAP_FAILED || buf != (void *) half) ++ { ++ puts ("Couldn't mmap 2 pages in the middle of address space"); ++ return 0; ++ } ++ ++ xdrmem_create (&xdrs, (char *) buf, 2 * ps, XDR_ENCODE); ++ ++#define T(type, val) \ ++ v_##type = val; \ ++ if (! xdr_##type (&xdrs, &v_##type)) \ ++ { \ ++ puts ("encoding of " #type \ ++ " " #val " failed"); \ ++ return 1; \ ++ } ++ ++ T(int, 127) ++ ++ u_int pos = xdr_getpos (&xdrs); ++ ++ T(u_short, 31) ++ ++ if (! xdr_setpos (&xdrs, pos)) ++ { ++ puts ("xdr_setpos during encoding failed"); ++ return 1; ++ } ++ ++ T(u_short, 36) ++ ++#undef T ++ ++ xdr_destroy (&xdrs); ++ ++ xdrmem_create (&xdrs, (char *) buf, 2 * ps, XDR_DECODE); ++ ++#define T(type, val) \ ++ v_##type = 0x15; \ ++ if (! xdr_##type (&xdrs, &v_##type)) \ ++ { \ ++ puts ("decoding of " #type \ ++ " " #val " failed"); \ ++ return 1; \ ++ } \ ++ if (v_##type != val) \ ++ { \ ++ puts ("decoded value differs, " \ ++ "type " #type " " #val); \ ++ return 1; \ ++ } ++ ++ T(int, 127) ++ ++ pos = xdr_getpos (&xdrs); ++ ++ T(u_short, 36) ++ ++ if (! xdr_setpos (&xdrs, pos)) ++ { ++ puts ("xdr_setpos during encoding failed"); ++ return 1; ++ } ++ ++ T(u_short, 36) ++ ++#undef T ++ ++ xdr_destroy (&xdrs); ++ ++ return 0; ++} ++ ++#define TEST_FUNCTION do_test () ++#include "../test-skeleton.c" +diff -urN --exclude=CVS glibc-2_5/libc/sunrpc/xdr_mem.c glibc-2_5-branch/libc/sunrpc/xdr_mem.c +--- glibc-2_5/libc/sunrpc/xdr_mem.c 2002-12-16 11:25:27.000000000 +0100 ++++ glibc-2_5-branch/libc/sunrpc/xdr_mem.c 2007-03-20 14:22:35.000000000 +0100 +@@ -177,13 +177,15 @@ + { + caddr_t newaddr = xdrs->x_base + pos; + caddr_t lastaddr = xdrs->x_private + xdrs->x_handy; ++ size_t handy = lastaddr - newaddr; + +- if ((long) newaddr > (long) lastaddr +- || (UINT_MAX < LONG_MAX +- && (long) UINT_MAX < (long) lastaddr - (long) newaddr)) ++ if (newaddr > lastaddr ++ || newaddr < xdrs->x_base ++ || handy != (u_int) handy) + return FALSE; ++ + xdrs->x_private = newaddr; +- xdrs->x_handy = (long) lastaddr - (long) newaddr; ++ xdrs->x_handy = (u_int) handy; + return TRUE; + } + +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/generic/unsecvars.h glibc-2_5-branch/libc/sysdeps/generic/unsecvars.h +--- glibc-2_5/libc/sysdeps/generic/unsecvars.h 2005-01-06 23:40:19.000000000 +0100 ++++ glibc-2_5-branch/libc/sysdeps/generic/unsecvars.h 2007-03-20 14:22:41.000000000 +0100 +@@ -18,6 +18,7 @@ + "LOCALDOMAIN\0" \ + "LOCPATH\0" \ + "MALLOC_TRACE\0" \ ++ "NIS_PATH\0" \ + "NLSPATH\0" \ + "RESOLV_HOST_CONF\0" \ + "RES_OPTIONS\0" \ +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/i386/fpu/bits/mathinline.h glibc-2_5-branch/libc/sysdeps/i386/fpu/bits/mathinline.h +--- glibc-2_5/libc/sysdeps/i386/fpu/bits/mathinline.h 2004-09-08 00:23:42.000000000 +0200 ++++ glibc-2_5-branch/libc/sysdeps/i386/fpu/bits/mathinline.h 2007-03-20 14:22:47.000000000 +0100 +@@ -1,5 +1,5 @@ + /* Inline math functions for i387. +- Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004 ++ Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2006 + Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by John C. Bowman , 1995. +@@ -529,24 +529,38 @@ + + __inline_mathcodeNP (floor, __x, \ + register long double __value; \ +- __volatile unsigned short int __cw; \ +- __volatile unsigned short int __cwtmp; \ +- __asm __volatile ("fnstcw %0" : "=m" (__cw)); \ +- __cwtmp = (__cw & 0xf3ff) | 0x0400; /* rounding down */ \ +- __asm __volatile ("fldcw %0" : : "m" (__cwtmp)); \ +- __asm __volatile ("frndint" : "=t" (__value) : "0" (__x)); \ +- __asm __volatile ("fldcw %0" : : "m" (__cw)); \ ++ register int __ignore; \ ++ unsigned short int __cw; \ ++ unsigned short int __cwtmp; \ ++ __asm __volatile ("fnstcw %3\n\t" \ ++ "movzwl %3, %1\n\t" \ ++ "andl $0xf3ff, %1\n\t" \ ++ "orl $0x0400, %1\n\t" /* rounding down */ \ ++ "movw %w1, %2\n\t" \ ++ "fldcw %2\n\t" \ ++ "frndint\n\t" \ ++ "fldcw %3" \ ++ : "=t" (__value), "=&q" (__ignore), "=m" (__cwtmp), \ ++ "=m" (__cw) \ ++ : "0" (__x)); \ + return __value) + + __inline_mathcodeNP (ceil, __x, \ + register long double __value; \ +- __volatile unsigned short int __cw; \ +- __volatile unsigned short int __cwtmp; \ +- __asm __volatile ("fnstcw %0" : "=m" (__cw)); \ +- __cwtmp = (__cw & 0xf3ff) | 0x0800; /* rounding up */ \ +- __asm __volatile ("fldcw %0" : : "m" (__cwtmp)); \ +- __asm __volatile ("frndint" : "=t" (__value) : "0" (__x)); \ +- __asm __volatile ("fldcw %0" : : "m" (__cw)); \ ++ register int __ignore; \ ++ unsigned short int __cw; \ ++ unsigned short int __cwtmp; \ ++ __asm __volatile ("fnstcw %3\n\t" \ ++ "movzwl %3, %1\n\t" \ ++ "andl $0xf3ff, %1\n\t" \ ++ "orl $0x0800, %1\n\t" /* rounding up */ \ ++ "movw %w1, %2\n\t" \ ++ "fldcw %2\n\t" \ ++ "frndint\n\t" \ ++ "fldcw %3" \ ++ : "=t" (__value), "=&q" (__ignore), "=m" (__cwtmp), \ ++ "=m" (__cw) \ ++ : "0" (__x)); \ + return __value) + + #ifdef __FAST_MATH__ +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/posix/getaddrinfo.c glibc-2_5-branch/libc/sysdeps/posix/getaddrinfo.c +--- glibc-2_5/libc/sysdeps/posix/getaddrinfo.c 2006-09-24 18:51:50.000000000 +0200 ++++ glibc-2_5-branch/libc/sysdeps/posix/getaddrinfo.c 2007-03-20 14:23:00.000000000 +0100 +@@ -1291,8 +1291,8 @@ + for (idx = 0; ; ++idx) + { + unsigned int bits = list[idx].bits; +- uint8_t *mask = list[idx].prefix.s6_addr; +- uint8_t *val = in6->sin6_addr.s6_addr; ++ const uint8_t *mask = list[idx].prefix.s6_addr; ++ const uint8_t *val = in6->sin6_addr.s6_addr; + + while (bits >= 8) + { +@@ -1395,10 +1395,10 @@ + { + if (!(a1->source_addr_flags & in6ai_homeaddress) + && (a2->source_addr_flags & in6ai_homeaddress)) +- return -1; ++ return 1; + if ((a1->source_addr_flags & in6ai_homeaddress) + && !(a2->source_addr_flags & in6ai_homeaddress)) +- return 1; ++ return -1; + } + + /* Rule 5: Prefer matching label. */ +@@ -1435,11 +1435,11 @@ + if (a1->got_source_addr) + { + if (!(a1->source_addr_flags & in6ai_temporary) +- && (a1->source_addr_flags & in6ai_temporary)) ++ && (a2->source_addr_flags & in6ai_temporary)) + return -1; + if ((a1->source_addr_flags & in6ai_temporary) +- && !(a1->source_addr_flags & in6ai_temporary)) +- return -1; ++ && !(a2->source_addr_flags & in6ai_temporary)) ++ return 1; + + /* XXX Do we need to check anything beside temporary addresses? */ + } +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/powerpc/dl-procinfo.c glibc-2_5-branch/libc/sysdeps/powerpc/dl-procinfo.c +--- glibc-2_5/libc/sysdeps/powerpc/dl-procinfo.c 2006-09-15 09:47:28.000000000 +0200 ++++ glibc-2_5-branch/libc/sysdeps/powerpc/dl-procinfo.c 2007-03-20 14:23:01.000000000 +0100 +@@ -46,10 +46,11 @@ + #if !defined PROCINFO_DECL && defined SHARED + ._dl_powerpc_cap_flags + #else +-PROCINFO_CLASS const char _dl_powerpc_cap_flags[20][10] ++PROCINFO_CLASS const char _dl_powerpc_cap_flags[23][10] + #endif + #ifndef PROCINFO_DECL + = { ++ "power6x", "dfp", "pa6t", + "arch_2_05", "ic_snoop", "smt", "booke", + "cellbe", "power5+", "power5", "power4", + "notb", "efpdouble", "efpsingle", "spe", +@@ -66,11 +67,17 @@ + #if !defined PROCINFO_DECL && defined SHARED + ._dl_powerpc_platforms + #else +-PROCINFO_CLASS const char _dl_powerpc_platforms[6][12] ++PROCINFO_CLASS const char _dl_powerpc_platforms[7][12] + #endif + #ifndef PROCINFO_DECL + = { +- "power4", "ppc970", "power5", "power5+", "power6", "ppc-cell-be" ++ [PPC_PLATFORM_POWER4] = "power4", ++ [PPC_PLATFORM_PPC970] = "ppc970", ++ [PPC_PLATFORM_POWER5] = "power5", ++ [PPC_PLATFORM_POWER5_PLUS] = "power5+", ++ [PPC_PLATFORM_POWER6] = "power6", ++ [PPC_PLATFORM_CELL_BE] = "ppc-cell-be", ++ [PPC_PLATFORM_POWER6X] = "power6x" + } + #endif + #if !defined SHARED || defined PROCINFO_DECL +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/powerpc/dl-procinfo.h glibc-2_5-branch/libc/sysdeps/powerpc/dl-procinfo.h +--- glibc-2_5/libc/sysdeps/powerpc/dl-procinfo.h 2006-09-15 09:47:45.000000000 +0200 ++++ glibc-2_5-branch/libc/sysdeps/powerpc/dl-procinfo.h 2007-03-20 14:23:01.000000000 +0100 +@@ -24,19 +24,29 @@ + #include /* This defines the PPC_FEATURE_* macros. */ + + /* There are 20 bits used, but they are bits 12..31. */ +-#define _DL_HWCAP_FIRST 12 ++#define _DL_HWCAP_FIRST 9 + #define _DL_HWCAP_COUNT 32 + + /* These bits influence library search. */ +-#define HWCAP_IMPORTANT (PPC_FEATURE_HAS_ALTIVEC) ++#define HWCAP_IMPORTANT (PPC_FEATURE_HAS_ALTIVEC \ ++ + PPC_FEATURE_HAS_DFP) + +-#define _DL_PLATFORMS_COUNT 6 ++#define _DL_PLATFORMS_COUNT 7 + + #define _DL_FIRST_PLATFORM 32 + /* Mask to filter out platforms. */ + #define _DL_HWCAP_PLATFORM (((1ULL << _DL_PLATFORMS_COUNT) - 1) \ + << _DL_FIRST_PLATFORM) + ++/* Platform bits (relative to _DL_FIRST_PLATFORM). */ ++#define PPC_PLATFORM_POWER4 0 ++#define PPC_PLATFORM_PPC970 1 ++#define PPC_PLATFORM_POWER5 2 ++#define PPC_PLATFORM_POWER5_PLUS 3 ++#define PPC_PLATFORM_POWER6 4 ++#define PPC_PLATFORM_CELL_BE 5 ++#define PPC_PLATFORM_POWER6X 6 ++ + static inline const char * + __attribute__ ((unused)) + _dl_hwcap_string (int idx) +@@ -68,22 +78,30 @@ + if (str == NULL) + return -1; + +- if (strncmp (str, GLRO(dl_powerpc_platforms)[0], 5) == 0) ++ if (strncmp (str, GLRO(dl_powerpc_platforms)[PPC_PLATFORM_POWER4], 5) == 0) + { + int ret; + str += 5; + switch (*str) + { + case '4': +- ret = _DL_FIRST_PLATFORM + 0; ++ ret = _DL_FIRST_PLATFORM + PPC_PLATFORM_POWER4; + break; + case '5': +- ret = _DL_FIRST_PLATFORM + 2; ++ ret = _DL_FIRST_PLATFORM + PPC_PLATFORM_POWER5; + if (str[1] == '+') +- ++ret, ++str; ++ { ++ ret = _DL_FIRST_PLATFORM + PPC_PLATFORM_POWER5_PLUS; ++ ++str; ++ } + break; + case '6': +- ret = _DL_FIRST_PLATFORM + 4; ++ ret = _DL_FIRST_PLATFORM + PPC_PLATFORM_POWER6; ++ if (str[1] == 'x') ++ { ++ ret = _DL_FIRST_PLATFORM + PPC_PLATFORM_POWER6X; ++ ++str; ++ } + break; + default: + return -1; +@@ -91,12 +109,16 @@ + if (str[1] == '\0') + return ret; + } +- else if (strncmp (str, GLRO(dl_powerpc_platforms)[1], 3) == 0) ++ else if (strncmp (str, GLRO(dl_powerpc_platforms)[PPC_PLATFORM_PPC970], ++ 3) == 0) + { +- if (strcmp (str + 3, GLRO(dl_powerpc_platforms)[1] + 3) == 0) +- return _DL_FIRST_PLATFORM + 1; +- else if (strcmp (str + 3, GLRO(dl_powerpc_platforms)[5] + 3) == 0) +- return _DL_FIRST_PLATFORM + 5; ++ if (strcmp (str + 3, GLRO(dl_powerpc_platforms)[PPC_PLATFORM_PPC970] ++ + 3) == 0) ++ return _DL_FIRST_PLATFORM + PPC_PLATFORM_PPC970; ++ else if (strcmp (str + 3, ++ GLRO(dl_powerpc_platforms)[PPC_PLATFORM_CELL_BE] + 3) ++ == 0) ++ return _DL_FIRST_PLATFORM + PPC_PLATFORM_CELL_BE; + } + + return -1; +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/powerpc/sysdep.h glibc-2_5-branch/libc/sysdeps/powerpc/sysdep.h +--- glibc-2_5/libc/sysdeps/powerpc/sysdep.h 2006-09-15 09:48:04.000000000 +0200 ++++ glibc-2_5-branch/libc/sysdeps/powerpc/sysdep.h 2007-03-20 14:23:01.000000000 +0100 +@@ -34,13 +34,16 @@ + #define PPC_FEATURE_HAS_EFP_DOUBLE 0x00200000 /* SPE Double. */ + #define PPC_FEATURE_NO_TB 0x00100000 /* 601/403gx have no timebase */ + #define PPC_FEATURE_POWER4 0x00080000 /* POWER4 ISA 2.00 */ +-#define PPC_FEATURE_POWER5 0x00040000 /* POWER5 ISA 2.01 */ +-#define PPC_FEATURE_POWER5_PLUS 0x00020000 /* POWER5+ ISA 2.02 */ ++#define PPC_FEATURE_POWER5 0x00040000 /* POWER5 ISA 2.02 */ ++#define PPC_FEATURE_POWER5_PLUS 0x00020000 /* POWER5+ ISA 2.03 */ + #define PPC_FEATURE_CELL_BE 0x00010000 /* CELL Broadband Engine */ + #define PPC_FEATURE_BOOKE 0x00008000 +-#define PPC_FEATURE_SMT 0x00004000 ++#define PPC_FEATURE_SMT 0x00004000 /* Simultaneous Multi-Threading */ + #define PPC_FEATURE_ICACHE_SNOOP 0x00002000 + #define PPC_FEATURE_ARCH_2_05 0x00001000 /* ISA 2.05 */ ++#define PPC_FEATURE_PA6T 0x00000800 /* PA Semi 6T Core */ ++#define PPC_FEATURE_HAS_DFP 0x00000400 /* Decimal FP Unit */ ++#define PPC_FEATURE_POWER6_EXT 0x00000200 /* P6 + mffgpr/mftgpr */ + #define PPC_FEATURE_970 (PPC_FEATURE_POWER4 + PPC_FEATURE_HAS_ALTIVEC) + + #ifdef __ASSEMBLER__ +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/unix/sysv/linux/i386/sysconf.c glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/i386/sysconf.c +--- glibc-2_5/libc/sysdeps/unix/sysv/linux/i386/sysconf.c 2006-03-06 09:25:57.000000000 +0100 ++++ glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/i386/sysconf.c 2007-03-20 14:23:17.000000000 +0100 +@@ -97,7 +97,7 @@ + { 0x45, _SC_LEVEL2_CACHE_SIZE, 2097152, 4, 32 }, + { 0x46, _SC_LEVEL3_CACHE_SIZE, 4194304, 4, 64 }, + { 0x47, _SC_LEVEL3_CACHE_SIZE, 8388608, 8, 64 }, +- { 0x49, _SC_LEVEL3_CACHE_SIZE, 4194304, 16, 64 }, ++ { 0x49, _SC_LEVEL2_CACHE_SIZE, 4194304, 16, 64 }, + { 0x4a, _SC_LEVEL3_CACHE_SIZE, 6291456, 12, 64 }, + { 0x4b, _SC_LEVEL3_CACHE_SIZE, 8388608, 16, 64 }, + { 0x4c, _SC_LEVEL3_CACHE_SIZE, 12582912, 12, 64 }, +@@ -140,6 +140,7 @@ + + + static long int ++__attribute__ ((noinline)) + intel_check_word (int name, unsigned int value, bool *has_level_2, + bool *no_level_2_or_3) + { +@@ -166,6 +167,33 @@ + } + else + { ++ if (byte == 0x49 && folded_name == _SC_LEVEL3_CACHE_SIZE) ++ { ++ /* Intel reused this value. For family 15, model 6 it ++ specifies the 3rd level cache. Otherwise the 2nd ++ level cache. */ ++ unsigned int eax; ++ unsigned int ebx; ++ unsigned int ecx; ++ unsigned int edx; ++ asm volatile ("xchgl %%ebx, %1; cpuid; xchgl %%ebx, %1" ++ : "=a" (eax), "=r" (ebx), "=c" (ecx), "=d" (edx) ++ : "0" (1)); ++ ++ unsigned int family = ((eax >> 20) & 0xff) + ((eax >> 8) & 0xf); ++ unsigned int model = ((((eax >>16) & 0xf) << 4) ++ + ((eax >> 4) & 0xf)); ++ if (family == 15 && model == 6) ++ { ++ /* The level 3 cache is encoded for this model like ++ the level 2 cache is for other models. Pretend ++ the caller asked for the level 2 cache. */ ++ name = (_SC_LEVEL2_CACHE_SIZE ++ + (name - _SC_LEVEL3_CACHE_SIZE)); ++ folded_name = _SC_LEVEL3_CACHE_SIZE; ++ } ++ } ++ + struct intel_02_cache_info *found; + struct intel_02_cache_info search; + +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/unix/sysv/linux/i386/sysdep.h glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/i386/sysdep.h +--- glibc-2_5/libc/sysdeps/unix/sysv/linux/i386/sysdep.h 2006-04-01 21:53:51.000000000 +0200 ++++ glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/i386/sysdep.h 2007-03-20 14:23:17.000000000 +0100 +@@ -297,7 +297,7 @@ + cfi_restore (edi); L(POPDI1): + + #define PUSHARGS_6 _PUSHARGS_6 +-#define DOARGS_6 _DOARGS_6 (36) ++#define DOARGS_6 _DOARGS_6 (40) + #define POPARGS_6 _POPARGS_6 + #define _PUSHARGS_6 pushl %ebp; cfi_adjust_cfa_offset (4); \ + cfi_rel_offset (ebp, 0); L(PUSHBP1): _PUSHARGS_5 +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S +--- glibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S 2006-01-07 04:51:11.000000000 +0100 ++++ glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/powerpc/powerpc32/makecontext.S 2007-03-20 14:23:19.000000000 +0100 +@@ -26,9 +26,7 @@ + + ENTRY(__makecontext) + /* Set up the first 7 args to the function in its registers */ +- addi r11,r3,_UC_REG_SPACE+12 +- clrrwi r11,r11,4 +- stw r11,_UC_REGS_PTR(r3) ++ lwz r11,_UC_REGS_PTR(r3) + stw r6,_UC_GREGS+(PT_R3*4)(r11) + stw r7,_UC_GREGS+(PT_R4*4)(r11) + stw r8,_UC_GREGS+(PT_R5*4)(r11) +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S +--- glibc-2_5/libc/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S 2005-12-29 22:03:38.000000000 +0100 ++++ glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/powerpc/powerpc32/setcontext.S 2007-03-20 14:23:19.000000000 +0100 +@@ -1,5 +1,5 @@ + /* Jump to a new context. +- Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. ++ Copyright (C) 2002, 2004, 2005, 2006 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -20,6 +20,7 @@ + #include + #include + #include ++#include + + #define __ASSEMBLY__ + #include +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/unix/sysv/linux/sparc/sparc64/pause.c glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/sparc/sparc64/pause.c +--- glibc-2_5/libc/sysdeps/unix/sysv/linux/sparc/sparc64/pause.c 2006-08-15 07:27:23.000000000 +0200 ++++ glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/sparc/sparc64/pause.c 2007-03-20 14:23:21.000000000 +0100 +@@ -1 +1,9 @@ ++#include ++#include ++#include ++#include ++ ++#define __sigprocmask(how, set, oset) \ ++ INLINE_SYSCALL (rt_sigprocmask, 4, how, set, oset, _NSIG / 8) ++ + #include +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/unix/sysv/linux/ttyname.c glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/ttyname.c +--- glibc-2_5/libc/sysdeps/unix/sysv/linux/ttyname.c 2006-04-19 09:26:48.000000000 +0200 ++++ glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/ttyname.c 2007-03-20 14:23:16.000000000 +0100 +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + #include + #include + #include +@@ -118,12 +119,12 @@ + int dostat = 0; + char *name; + int save = errno; ++ struct termios term; + +- if (__builtin_expect (!__isatty (fd), 0)) +- { +- __set_errno (ENOTTY); +- return NULL; +- } ++ /* isatty check, tcgetattr is used because it sets the correct ++ errno (EBADF resp. ENOTTY) on error. */ ++ if (__builtin_expect (__tcgetattr (fd, &term) < 0, 0)) ++ return NULL; + + /* We try using the /proc filesystem. */ + *_fitoa_word (fd, __stpcpy (procname, "/proc/self/fd/"), 10, 0) = '\0'; +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/unix/sysv/linux/ttyname_r.c glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/ttyname_r.c +--- glibc-2_5/libc/sysdeps/unix/sysv/linux/ttyname_r.c 2006-04-19 09:26:48.000000000 +0200 ++++ glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/ttyname_r.c 2007-03-20 14:23:16.000000000 +0100 +@@ -22,6 +22,7 @@ + #include + #include + #include ++#include + #include + #include + #include +@@ -115,11 +116,11 @@ + return ERANGE; + } + +- if (__builtin_expect (!__isatty (fd), 0)) +- { +- __set_errno (ENOTTY); +- return ENOTTY; +- } ++ /* isatty check, tcgetattr is used because it sets the correct ++ errno (EBADF resp. ENOTTY) on error. */ ++ struct termios term; ++ if (__builtin_expect (__tcgetattr (fd, &term) < 0, 0)) ++ return errno; + + /* We try using the /proc filesystem. */ + *_fitoa_word (fd, __stpcpy (procname, "/proc/self/fd/"), 10, 0) = '\0'; +diff -urN --exclude=CVS glibc-2_5/libc/sysdeps/unix/sysv/linux/x86_64/sysconf.c glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/x86_64/sysconf.c +--- glibc-2_5/libc/sysdeps/unix/sysv/linux/x86_64/sysconf.c 2006-03-06 09:25:57.000000000 +0100 ++++ glibc-2_5-branch/libc/sysdeps/unix/sysv/linux/x86_64/sysconf.c 2007-03-20 14:23:22.000000000 +0100 +@@ -58,7 +58,7 @@ + { 0x45, _SC_LEVEL2_CACHE_SIZE, 2097152, 4, 32 }, + { 0x46, _SC_LEVEL3_CACHE_SIZE, 4194304, 4, 64 }, + { 0x47, _SC_LEVEL3_CACHE_SIZE, 8388608, 8, 64 }, +- { 0x49, _SC_LEVEL3_CACHE_SIZE, 4194304, 16, 64 }, ++ { 0x49, _SC_LEVEL2_CACHE_SIZE, 4194304, 16, 64 }, + { 0x4a, _SC_LEVEL3_CACHE_SIZE, 6291456, 12, 64 }, + { 0x4b, _SC_LEVEL3_CACHE_SIZE, 8388608, 16, 64 }, + { 0x4c, _SC_LEVEL3_CACHE_SIZE, 12582912, 12, 64 }, +@@ -101,6 +101,7 @@ + + + static long int ++__attribute__ ((noinline)) + intel_check_word (int name, unsigned int value, bool *has_level_2, + bool *no_level_2_or_3) + { +@@ -127,6 +128,33 @@ + } + else + { ++ if (byte == 0x49 && folded_name == _SC_LEVEL3_CACHE_SIZE) ++ { ++ /* Intel reused this value. For family 15, model 6 it ++ specifies the 3rd level cache. Otherwise the 2nd ++ level cache. */ ++ unsigned int eax; ++ unsigned int ebx; ++ unsigned int ecx; ++ unsigned int edx; ++ asm volatile ("xchgl %%ebx, %1; cpuid; xchgl %%ebx, %1" ++ : "=a" (eax), "=r" (ebx), "=c" (ecx), "=d" (edx) ++ : "0" (1)); ++ ++ unsigned int family = ((eax >> 20) & 0xff) + ((eax >> 8) & 0xf); ++ unsigned int model = ((((eax >>16) & 0xf) << 4) ++ + ((eax >> 4) & 0xf)); ++ if (family == 15 && model == 6) ++ { ++ /* The level 3 cache is encoded for this model like ++ the level 2 cache is for other models. Pretend ++ the caller asked for the level 2 cache. */ ++ name = (_SC_LEVEL2_CACHE_SIZE ++ + (name - _SC_LEVEL3_CACHE_SIZE)); ++ folded_name = _SC_LEVEL3_CACHE_SIZE; ++ } ++ } ++ + struct intel_02_cache_info *found; + struct intel_02_cache_info search; + --- glibc-2.5.orig/debian/patches/any/local-asserth-decls.diff +++ glibc-2.5/debian/patches/any/local-asserth-decls.diff @@ -0,0 +1,34 @@ +# DP: Description: /usr/include/assert.h +# DP: One must be allowed to include multiple times with different +# DP: values for NDEBUG, so the file is not protected against multiple +# DP: inclusions. Unfortunately this means that the declarations for +# DP: __assert_fail() and the like may occur multiple times in a compilation +# DP: unit, causing gcc to issue a batch of warnings. +# DP: I believe this can be fixed by protecting the declarations (but only +# DP: those declarations) against repetition. +# DP: Author: Jeroen T. Vermeulen +# DP: Upstream status: Not submitted +# DP: Status Details: Plan to submit +# DP: Date: 2003-01-01 + +Index: assert/assert.h +=================================================================== +--- assert/assert.h.orig ++++ assert/assert.h +@@ -62,6 +62,8 @@ + + #else /* Not NDEBUG. */ + ++#ifndef _ASSERT_H_DECLS ++#define _ASSERT_H_DECLS + __BEGIN_DECLS + + /* This prints an "Assertion failed" message and aborts. */ +@@ -83,6 +85,7 @@ + + + __END_DECLS ++#endif /* Not _ASSERT_H_DECLS */ + + # define assert(expr) \ + ((expr) \ --- glibc-2.5.orig/debian/patches/any/local-bashisms.diff +++ glibc-2.5/debian/patches/any/local-bashisms.diff @@ -0,0 +1,33 @@ +Index: iconvdata/run-iconv-test.sh +=================================================================== +--- iconvdata/run-iconv-test.sh.orig ++++ iconvdata/run-iconv-test.sh +@@ -130,7 +130,7 @@ + done + fi + +- if test "$subset" == N; then ++ if test "$subset" = N; then + echo $ac_n " suntzu: ASCII -> $to -> ASCII $ac_c" + $PROG -f ASCII -t $to testdata/suntzus | + $PROG -f $to -t ASCII > $temp1 || +Index: linuxthreads/tst-tls2.sh +=================================================================== +--- linuxthreads/tst-tls2.sh.orig ++++ linuxthreads/tst-tls2.sh +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/bin/bash + + common_objpfx=$1; shift + elf_objpfx=$1; shift +Index: nptl/tst-tls6.sh +=================================================================== +--- nptl/tst-tls6.sh.orig ++++ nptl/tst-tls6.sh +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/bin/bash + + common_objpfx=$1; shift + elf_objpfx=$1; shift --- glibc-2.5.orig/debian/patches/any/local-base.diff +++ glibc-2.5/debian/patches/any/local-base.diff @@ -0,0 +1,64 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: hjl libc-base patch + +2003-05-15 + + * elf/do-lookup.h (FCT): Try the base version, the first + version and then the default version, in that order, for + the old unversioned reference. + +--- elf/do-lookup.h.base 2003-05-15 09:29:25.000000000 -0700 ++++ elf/do-lookup.h 2003-05-15 09:24:24.000000000 -0700 +@@ -52,7 +52,8 @@ FCT (const char *undef_name, unsigned lo + const ElfW(Sym) *sym; + #if ! VERSIONED + int num_versions = 0; +- const ElfW(Sym) *versioned_sym = NULL; ++ const ElfW(Sym) *default_version = NULL; ++ const ElfW(Sym) *first_version = NULL; + #endif + + map = list[i]; +@@ -155,16 +156,29 @@ FCT (const char *undef_name, unsigned lo + public interface should be returned. */ + if (verstab != NULL) + { +- if ((verstab[symidx] & 0x7fff) +- >= ((flags & DL_LOOKUP_RETURN_NEWEST) ? 2 : 3)) ++ ElfW(Half) ndx = verstab[symidx] & 0x7fff; ++ if (ndx >= ((flags & DL_LOOKUP_RETURN_NEWEST) ? 2 : 3)) + { + /* Don't accept hidden symbols. */ + if ((verstab[symidx] & 0x8000) == 0 && num_versions++ == 0) + /* No version so far. */ +- versioned_sym = sym; ++ default_version = sym; + + continue; + } ++ if ((flags & DL_LOOKUP_RETURN_NEWEST) == 0 && ndx != 0) ++ { ++ /* ndx == 1 is the base version. We will use it for ++ old unversioned application. */ ++ if (ndx != 1) ++ { ++ /* We remember the first version and keep looking ++ for the base version. */ ++ if (ndx == 2) ++ first_version = sym; ++ continue; ++ } ++ } + } + #endif + +@@ -179,7 +193,8 @@ FCT (const char *undef_name, unsigned lo + #if VERSIONED + sym = NULL; + #else +- sym = num_versions == 1 ? versioned_sym : NULL; ++ sym = first_version ?: (num_versions == 1 ++ ? default_version : NULL); + #endif + + if (sym != NULL) --- glibc-2.5.orig/debian/patches/any/local-makeconfig.diff +++ glibc-2.5/debian/patches/any/local-makeconfig.diff @@ -0,0 +1,21 @@ +# DP: Carried over from glibc2.2, need to figure out why it's here. +# DP: (Probably has something to do with fakeroot) +# DP: Date: (Updated 2005-01-02 gotom) + +Index: Makeconfig +=================================================================== +--- Makeconfig.orig ++++ Makeconfig +@@ -562,10 +562,11 @@ + $(subst $(empty) ,:,$(strip $(patsubst -Wl$(comma)-rpath-link=%, %,\ + $(filter -Wl$(comma)-rpath-link=%,\ + $(sysdep-LDFLAGS))))) ++ld_envlib_path = $(shell test x$$LD_LIBRARY_PATH = x || echo -n :$$LD_LIBRARY_PATH) + run-program-prefix = $(if $(filter $(notdir $(built-program-file)),\ + $(tests-static) $(xtests-static)),, \ + $(elf-objpfx)$(rtld-installed-name) \ +- --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path))) ++ --library-path $(rpath-link)$(patsubst %,:%,$(sysdep-library-path))$(ld_envlib_path)) + else + run-program-prefix = + endif --- glibc-2.5.orig/debian/patches/any/local-ldd.diff +++ glibc-2.5/debian/patches/any/local-ldd.diff @@ -0,0 +1,51 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Make ldd handle non-executable shared objects. Discard the error +# DP: message if the kernel does not support one of the dynamic loaders. +# DP: Updated by gotom, it's nice to merge to the upstream after my review. +# Date: (Updated 2007-04-22 aurel32) + +Index: elf/ldd.bash.in +=================================================================== +--- elf/ldd.bash.in.orig ++++ elf/ldd.bash.in +@@ -31,6 +31,7 @@ + warn= + bind_now= + verbose= ++filename_magic_regex="((^|/)lib|.so$)" + + while test $# -gt 0; do + case "$1" in +@@ -151,13 +152,16 @@ + echo "ldd: ${file}:" $"not regular file" >&2 + result=1 + elif test -r "$file"; then +- test -x "$file" || echo 'ldd:' $"\ +-warning: you do not have execution permission for" "\`$file'" >&2 ++ if test ! -x "$file" && eval echo "$file" \ ++ | egrep -v "$filename_magic_regex" > /dev/null; then ++ echo 'ldd:' $"warning: you do not have execution permission for"\ ++ "\`$file'" >&2 ++ fi + RTLD= + ret=1 + for rtld in ${RTLDLIST}; do + if test -x $rtld; then +- verify_out=`${rtld} --verify "$file"` ++ verify_out=`${rtld} --verify "$file" 2>/dev/null` + ret=$? + case $ret in + [02]) RTLD=${rtld}; break;; +@@ -169,7 +173,11 @@ + # If the program exits with exit code 5, it means the process has been + # invoked with __libc_enable_secure. Fall back to running it through + # the dynamic linker. +- try_trace "$file" ++ if test -x "$file"; then ++ try_trace "$file" ++ else ++ try_trace "${RTLD}" "$file" ++ fi + rc=$? + if [ $rc = 5 ]; then + try_trace "$RTLD" "$file" --- glibc-2.5.orig/debian/patches/any/local-localedef-fix-trampoline.diff +++ glibc-2.5/debian/patches/any/local-localedef-fix-trampoline.diff @@ -0,0 +1,55 @@ +# DP: Description: Fix localedef segfault when run under exec-shield, +# PaX or similar. (#231438, #198099) +# DP: Dpatch Author: James Troup +# DP: Patch Author: (probably) Jakub Jelinek +# DP: Upstream status: Unknown +# DP: Status Details: Unknown +# DP: Date: 2004-03-16 + +Index: locale/programs/3level.h +=================================================================== +--- locale/programs/3level.h.orig ++++ locale/programs/3level.h +@@ -202,6 +202,42 @@ + } + } + } ++ ++/* GCC ATM seems to do a poor job with pointers to nested functions passed ++ to inlined functions. Help it a little bit with this hack. */ ++#define wchead_table_iterate(tp, fn) \ ++do \ ++ { \ ++ struct wchead_table *t = (tp); \ ++ uint32_t index1; \ ++ for (index1 = 0; index1 < t->level1_size; index1++) \ ++ { \ ++ uint32_t lookup1 = t->level1[index1]; \ ++ if (lookup1 != ((uint32_t) ~0)) \ ++ { \ ++ uint32_t lookup1_shifted = lookup1 << t->q; \ ++ uint32_t index2; \ ++ for (index2 = 0; index2 < (1 << t->q); index2++) \ ++ { \ ++ uint32_t lookup2 = t->level2[index2 + lookup1_shifted]; \ ++ if (lookup2 != ((uint32_t) ~0)) \ ++ { \ ++ uint32_t lookup2_shifted = lookup2 << t->p; \ ++ uint32_t index3; \ ++ for (index3 = 0; index3 < (1 << t->p); index3++) \ ++ { \ ++ struct element_t *lookup3 \ ++ = t->level3[index3 + lookup2_shifted]; \ ++ if (lookup3 != NULL) \ ++ fn ((((index1 << t->q) + index2) << t->p) + index3, \ ++ lookup3); \ ++ } \ ++ } \ ++ } \ ++ } \ ++ } \ ++ } while (0) ++ + #endif + + #ifndef NO_FINALIZE --- glibc-2.5.orig/debian/patches/any/local-dl-execstack.diff +++ glibc-2.5/debian/patches/any/local-dl-execstack.diff @@ -0,0 +1,33 @@ +# DP: Description: Support libraries that has execstack on <= 2.4.18 kernels. +# DP: Related bugs: #321718 +# DP: Dpatch author: GOTO Masanori +# DP: Patch author: GOTO Masanori +# DP: Upstream status: Not submitted +# DP: Status Details: Will be submitted +# DP: Date: 2005-08-19 + +2005-08-19 GOTO Masanori + + * sysdeps/unix/sysv/linux/dl-execstack.c: Check not only ENOMEM but + also EFAULT for pre 2.4.19 kernels. + +--- sysdeps/unix/sysv/linux/dl-execstack.c.old 2006-01-28 22:25:42.000000000 -0500 ++++ sysdeps/unix/sysv/linux/dl-execstack.c 2006-01-28 22:26:06.000000000 -0500 +@@ -89,7 +89,7 @@ + page -= size; + else + { +- if (errno != ENOMEM) /* Unexpected failure mode. */ ++ if (errno != ENOMEM && errno != EFAULT) /* Unexpected failure mode. */ + { + result = errno; + goto out; +@@ -115,7 +115,7 @@ + page += size; + else + { +- if (errno != ENOMEM) /* Unexpected failure mode. */ ++ if (errno != ENOMEM && errno != EFAULT) /* Unexpected failure mode. */ + { + result = errno; + goto out; --- glibc-2.5.orig/debian/patches/any/local-dynamic-resolvconf.diff +++ glibc-2.5/debian/patches/any/local-dynamic-resolvconf.diff @@ -0,0 +1,41 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: allow dynamic long-running processes to +# DP: re-read a dynamically updated resolv.conf on the fly +# DP: Dpatch author: Adam Conrad +# DP: Patch author: Thorsten Kukuk +# DP: Upstream status: Ubuntu-Specific +# DP: Date: 2006-01-13 08:14:21 UTC + +Index: resolv/res_libc.c +=================================================================== +--- resolv/res_libc.c.orig ++++ resolv/res_libc.c +@@ -22,7 +22,7 @@ + #include + #include + #include +- ++#include + + /* The following bit is copied from res_data.c (where it is #ifdef'ed + out) since res_init() should go into libc.so but the rest of that +@@ -94,8 +94,17 @@ + int + __res_maybe_init (res_state resp, int preinit) + { +- if (resp->options & RES_INIT) { +- if (__res_initstamp != resp->_u._ext.initstamp) { ++ static time_t last_mtime; ++ struct stat statbuf; ++ int ret; ++ ++ ++ if (resp->options & RES_INIT) { ++ ret = stat (_PATH_RESCONF, &statbuf); ++ if (__res_initstamp != resp->_u._ext.initstamp ++ || (ret == 0) && (last_mtime != statbuf.st_mtime)) ++ { ++ last_mtime = statbuf.st_mtime; + if (resp->nscount > 0) { + __res_iclose (resp, true); + return __res_vinit (resp, 1); --- glibc-2.5.orig/debian/patches/any/submitted-nis-netgrp.diff +++ glibc-2.5/debian/patches/any/submitted-nis-netgrp.diff @@ -0,0 +1,27 @@ +This assertion breaks applications if they redefine malloc/free functions, +malloc_usable_size may then report wrong values. This is true for instance +with bash, whereas bash-static works fine because it does not use its own +wrapper functions. See #322011 and merged bugs. + +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: BZ692 +# DP: Date: 2006-01-12 + + +Index: nis/nss_nis/nis-netgrp.c +=================================================================== +--- nis/nss_nis/nis-netgrp.c.orig ++++ nis/nss_nis/nis-netgrp.c +@@ -72,7 +72,10 @@ + and the last byte is filled with NUL. So we can simply + use that buffer. */ + assert (len >= 0); +- assert (malloc_usable_size (netgrp->data) >= len + 1); ++ /* Call to malloc_usable_size disabled, this breaks if applications ++ redefine malloc/free with a different implementation. ++ This assert is always true, see yp_match. */ ++ /* assert (malloc_usable_size (netgrp->data) >= len + 1); */ + assert (netgrp->data[len] == '\0'); + + netgrp->data_size = len; --- glibc-2.5.orig/debian/patches/any/local-fhs-linux-paths.diff +++ glibc-2.5/debian/patches/any/local-fhs-linux-paths.diff @@ -0,0 +1,19 @@ +# DP: Description: Correct linux paths for FHS +# DP: Author: Unknown +# DP: Upstream status: Debian-Specific +# DP: Status Details: GNU doesn't follow the FHS. +# DP: Date: Unknown + +Index: sysdeps/unix/sysv/linux/paths.h +=================================================================== +--- sysdeps/unix/sysv/linux/paths.h.orig ++++ sysdeps/unix/sysv/linux/paths.h +@@ -67,7 +67,7 @@ + /* Provide trailing slash, since mostly used for building pathnames. */ + #define _PATH_DEV "/dev/" + #define _PATH_TMP "/tmp/" +-#define _PATH_VARDB "/var/db/" ++#define _PATH_VARDB "/var/lib/misc/" + #define _PATH_VARRUN "/var/run/" + #define _PATH_VARTMP "/var/tmp/" + --- glibc-2.5.orig/debian/patches/any/local-version-sanity.diff +++ glibc-2.5/debian/patches/any/local-version-sanity.diff @@ -0,0 +1,26 @@ +# DP: Description: Only parse three parts of a kernel version number. +# DP: Related bugs: 218546 +# DP: Author: Daniel Jacobowitz +# DP: Upstream status: Debian-specic +# DP: Status details: Rejected by Ulrich, needed for Debian. +# DP: http://sources.redhat.com/ml/libc-alpha/2003-11/msg00025.html +# DP: Date: 2003-11-01 + +2003-11-01 Daniel Jacobowitz + + * sysdeps/unix/sysv/linux/dl-osinfo.h (DL_SYSDEP_OSCHECK): Don't + parse more than three parts of the version number. + +Index: sysdeps/unix/sysv/linux/dl-osinfo.h +=================================================================== +--- sysdeps/unix/sysv/linux/dl-osinfo.h.orig ++++ sysdeps/unix/sysv/linux/dl-osinfo.h +@@ -126,7 +126,7 @@ + version <<= 8; + version |= here; + +- if (*cp++ != '.') ++ if (*cp++ != '.' || parts == 3) + /* Another part following? */ + break; + } --- glibc-2.5.orig/debian/patches/any/local-nss-upgrade.diff +++ glibc-2.5/debian/patches/any/local-nss-upgrade.diff @@ -0,0 +1,31 @@ +# DP: This patch makes future upgrades easier. It resolves problems with +# DP: running daemons having NSS modules upgraded out from under them. + +Index: nss/nsswitch.c +=================================================================== +--- nss/nsswitch.c.orig ++++ nss/nsswitch.c +@@ -345,9 +345,20 @@ + ni->library->lib_handle = __libc_dlopen (shlib_name); + if (ni->library->lib_handle == NULL) + { +- /* Failed to load the library. */ +- ni->library->lib_handle = (void *) -1l; +- __set_errno (saved_errno); ++ /* Failed to load the library. Try a fallback. */ ++ int n = __snprintf(shlib_name, shlen, "libnss_%s.so.%d.%d", ++ ni->library->name, __GLIBC__, __GLIBC_MINOR__); ++ if (n >= shlen) ++ ni->library->lib_handle = NULL; ++ else ++ ni->library->lib_handle = __libc_dlopen (shlib_name); ++ ++ if (ni->library->lib_handle == NULL) ++ { ++ /* Ok, really fail now. */ ++ ni->library->lib_handle = (void *) -1l; ++ __set_errno (saved_errno); ++ } + } + } + --- glibc-2.5.orig/debian/patches/any/local-libgcc-compat-main.diff +++ glibc-2.5/debian/patches/any/local-libgcc-compat-main.diff @@ -0,0 +1,968 @@ +# DP: Description: libgcc-compat symbols for i386, sparc, +# alpha, ia64 (derived from RedHat's), s390 +# DP: Author: Guido Guenther, GOTO Masanori +# DP: Upstream status: Not submitted +# DP: Date: 2002-10-13, updated 2006-05-28 + +Index: sysdeps/i386/libgcc-compat.c +=================================================================== +--- /dev/null ++++ sysdeps/i386/libgcc-compat.c +@@ -0,0 +1,75 @@ ++/* pre-.hidden libgcc compatibility ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Guido Guenther ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++#include ++#include ++ ++#if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_2_6) ++ ++extern int32_t __cmpdi2 (int64_t, int64_t); ++int32_t __cmpdi2_internal (int64_t u, int64_t v) ++{ ++ return __cmpdi2 (u, v); ++} ++symbol_version (__cmpdi2_internal, __cmpdi2, GLIBC_2.0); ++ ++ ++extern int32_t __ucmpdi2 (int64_t, int64_t); ++int32_t __ucmpdi2_internal (int64_t u, int64_t v) ++{ ++ return __ucmpdi2 (u, v); ++} ++symbol_version (__ucmpdi2_internal, __ucmpdi2, GLIBC_2.0); ++ ++ ++extern int64_t __fixunsdfdi (double); ++int64_t __fixunsdfdi_internal (double d) ++{ ++ return __fixunsdfdi (d); ++} ++symbol_version (__fixunsdfdi_internal, __fixunsdfdi, GLIBC_2.0); ++ ++extern int64_t __fixunssfdi (float); ++int64_t __fixunssfdi_internal (float d) ++{ ++ return __fixunssfdi (d); ++} ++ ++symbol_version (__fixunsfdi_internal, __fixunsfdi, GLIBC_2.0); ++ ++typedef float XFtype __attribute__ ((mode (XF))); ++ ++extern int64_t __fixunsxfdi (XFtype); ++int64_t __fixunsxfdi_internal (XFtype d) ++{ ++ return __fixunsxfdi (d); ++} ++ ++symbol_version (__fixunsxfdi_internal, __fixunsxfdi, GLIBC_2.0); ++ ++extern double __floatdidf (int64_t); ++double __floatdidf_internal (int64_t u) ++{ ++ return __floatdidf (u); ++} ++symbol_version (__floatdidf_internal, __floatdidf, GLIBC_2.0); ++ ++#endif +Index: sysdeps/i386/Makefile +=================================================================== +--- sysdeps/i386/Makefile.orig ++++ sysdeps/i386/Makefile +@@ -9,6 +9,11 @@ + # On i686 we must avoid generating the trampoline functions generated + # to get the GOT pointer. + CFLAGS-initfini.s += -march=i386 -mtune=i386 ++ifeq (yes,$(build-shared)) ++# Compatibility ++sysdep_routines += libgcc-compat ++shared-only-routines += libgcc-compat ++endif + endif + + ifeq ($(subdir),gmon) +Index: sysdeps/i386/Versions +=================================================================== +--- sysdeps/i386/Versions.orig ++++ sysdeps/i386/Versions +@@ -2,6 +2,9 @@ + GLIBC_2.0 { + # Functions from libgcc. + __divdi3; __moddi3; __udivdi3; __umoddi3; ++ __cmpdi2; __ucmpdi2; ++ __fixunsdfdi; __fixunssfdi; __fixunsxfdi; ++ __floatdidf; + } + GLIBC_2.1 { + # global variable +Index: sysdeps/sparc/sparc32/libgcc-compat.c +=================================================================== +--- /dev/null ++++ sysdeps/sparc/sparc32/libgcc-compat.c +@@ -0,0 +1,121 @@ ++/* pre-.hidden libgcc compatibility ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Guido Guenther ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++#include ++#include ++ ++#if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_2_6) ++ ++extern int64_t __ashldi3 (int64_t, int32_t); ++int64_t __ashldi3_internal (int64_t u, int32_t b) ++{ ++ return __ashldi3 (u, b); ++} ++symbol_version (__ashldi3_internal, __ashldi3, GLIBC_2.0); ++ ++ ++extern int64_t __ashrdi3 (int64_t, int32_t); ++int64_t __ashrdi3_internal (int64_t u, int32_t b) ++{ ++ return __ashrdi3 (u, b); ++} ++symbol_version (__ashrdi3_internal, __ashrdi3, GLIBC_2.0); ++ ++ ++extern int64_t __lshrdi3 (int64_t, int32_t); ++int64_t __lshrdi3_internal (int64_t u, int32_t b) ++{ ++ return __lshrdi3 (u, b); ++} ++symbol_version (__lshrdi3_internal, __lshrdi3, GLIBC_2.0); ++ ++extern int32_t __cmpdi2 (int64_t, int64_t); ++int32_t __cmpdi2_internal (int64_t u, int64_t v) ++{ ++ return __cmpdi2 (u, v); ++} ++symbol_version (__cmpdi2_internal, __cmpdi2, GLIBC_2.0); ++ ++ ++extern int32_t __ucmpdi2 (int64_t, int64_t); ++int32_t __ucmpdi2_internal (int64_t u, int64_t v) ++{ ++ return __ucmpdi2 (u, v); ++} ++symbol_version (__ucmpdi2_internal, __ucmpdi2, GLIBC_2.0); ++ ++ ++extern int64_t __fixdfdi (double); ++int64_t __fixdfdi_internal (double d) ++{ ++ return __fixdfdi (d); ++} ++symbol_version (__fixdfdi_internal, __fixdfdi, GLIBC_2.0); ++ ++ ++extern int64_t __fixsfdi (float); ++int64_t __fixsfdi_internal (float d) ++{ ++ return __fixsfdi (d); ++} ++symbol_version (__fixsfdi_internal, __fixsfdi, GLIBC_2.0); ++ ++ ++extern int64_t __fixunsdfdi (double); ++int64_t __fixunsdfdi_internal (double d) ++{ ++ return __fixunsdfdi (d); ++} ++symbol_version (__fixunsdfdi_internal, __fixunsdfdi, GLIBC_2.0); ++ ++extern int64_t __fixunssfdi (float); ++int64_t __fixunssfdi_internal (float d) ++{ ++ return __fixunssfdi (d); ++} ++ ++symbol_version (__fixunssfdi_internal, __fixunssfdi, GLIBC_2.0); ++ ++ ++extern double __floatdidf (int64_t); ++double __floatdidf_internal (int64_t u) ++{ ++ return __floatdidf (u); ++} ++symbol_version (__floatdidf_internal, __floatdidf, GLIBC_2.0); ++ ++ ++extern float floatdisf (int64_t); ++float __floatdisf_internal (int64_t u) ++{ ++ return __floatdisf (u); ++} ++symbol_version (__floatdisf_internal, __floatdisf, GLIBC_2.0); ++ ++ ++extern int64_t __muldi3 (int64_t, int64_t); ++int64_t __muldi3_internal (int64_t u, int64_t v) ++{ ++ return __muldi3 (u, v); ++} ++symbol_version (__muldi3_internal, __muldi3, GLIBC_2.0); ++ ++#endif +Index: sysdeps/sparc/sparc32/Makefile +=================================================================== +--- sysdeps/sparc/sparc32/Makefile.orig ++++ sysdeps/sparc/sparc32/Makefile +@@ -20,6 +20,14 @@ + sysdep_routines = dotmul umul $(divrem) alloca + endif # gnulib + ++ifeq ($(subdir),csu) ++ifeq (yes,$(build-shared)) ++# Compatibility ++sysdep_routines += libgcc-compat ++shared-only-routines += libgcc-compat ++endif ++endif ++ + # We distribute these files, even though they are generated, + # so as to avoid the need for a functioning m4 to build the library. + divrem := sdiv udiv rem urem +Index: sysdeps/sparc/sparc32/Versions +=================================================================== +--- sysdeps/sparc/sparc32/Versions.orig ++++ sysdeps/sparc/sparc32/Versions +@@ -1,5 +1,9 @@ + libc { + GLIBC_2.0 { + .div; .mul; .rem; .udiv; .umul; .urem; ++ __divdi3; __moddi3; __udivdi3; __umoddi3; __muldi3; ++ __ashldi3; __ashrdi3; __lshrdi3; __cmpdi2; __ucmpdi2; ++ __fixdfdi; __fixsfdi; __fixunsdfdi; __fixunssfdi; ++ __floatdidf; __floatdisf; + } + } +Index: sysdeps/alpha/libgcc-compat.c +=================================================================== +--- /dev/null ++++ sysdeps/alpha/libgcc-compat.c +@@ -0,0 +1,35 @@ ++/* pre-.hidden libgcc compatibility ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Guido Guenther ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++#if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_2_6) ++ ++typedef int int128_t __attribute__((__mode__(TI))); ++ ++extern int128_t __multi3 (int128_t, int128_t); ++int128_t INTUSE (__multi3) (int128_t x, int128_t y) ++{ ++ return __multi3 (x, y); ++} ++symbol_version (INTUSE (__multi3), __multi3, GLIBC_2.0); ++ ++#endif +Index: sysdeps/alpha/Versions +=================================================================== +--- sysdeps/alpha/Versions.orig ++++ sysdeps/alpha/Versions +@@ -3,6 +3,8 @@ + # functions with special/multiple interfaces + __divqu; __remqu; __divqs; __remqs; __divlu; __remlu; __divls; + __remls; __divl; __reml; __divq; __remq; __divqu; __remqu; ++ # libgcc-compat ++ __multi3; + } + } + libm { +Index: sysdeps/alpha/Makefile +=================================================================== +--- sysdeps/alpha/Makefile.orig ++++ sysdeps/alpha/Makefile +@@ -45,3 +45,11 @@ + # libc.so requires about 16k for the small data area, which is well + # below the 64k maximum. + pic-ccflag = -fpic ++ ++ifeq ($(subdir),csu) ++ifeq (yes,$(build-shared)) ++# Compatibility ++sysdep_routines += libgcc-compat ++shared-only-routines += libgcc-compat ++endif ++endif +Index: sysdeps/ia64/Makefile +=================================================================== +--- sysdeps/ia64/Makefile.orig ++++ sysdeps/ia64/Makefile +@@ -12,8 +12,8 @@ + + ifeq (yes,$(build-shared)) + # Compatibility +-sysdep_routines += ia64libgcc +-shared-only-routines += ia64libgcc ++sysdep_routines += libgcc-compat ++shared-only-routines += libgcc-compat + endif + endif + +Index: sysdeps/ia64/Versions +=================================================================== +--- sysdeps/ia64/Versions.orig ++++ sysdeps/ia64/Versions +@@ -10,6 +10,10 @@ + # Functions from libgcc. + __divtf3; __divdf3; __divsf3; __divdi3; __moddi3; __udivdi3; __umoddi3; + __multi3; ++ __divsi3; ++ __modsi3; ++ __udivsi3; ++ __umodsi3; + } + } + libm { +Index: sysdeps/ia64/ia64libgcc.S +=================================================================== +--- sysdeps/ia64/ia64libgcc.S ++++ /dev/null +@@ -1,350 +0,0 @@ +-/* From the Intel IA-64 Optimization Guide, choose the minimum latency +- alternative. */ +- +-#include +-#undef ret +- +-#include +- +-#if SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_2_6) +- +-/* __divtf3 +- Compute a 80-bit IEEE double-extended quotient. +- farg0 holds the dividend. farg1 holds the divisor. */ +- +-ENTRY(___divtf3) +- cmp.eq p7, p0 = r0, r0 +- frcpa.s0 f10, p6 = farg0, farg1 +- ;; +-(p6) cmp.ne p7, p0 = r0, r0 +- .pred.rel.mutex p6, p7 +-(p6) fnma.s1 f11 = farg1, f10, f1 +-(p6) fma.s1 f12 = farg0, f10, f0 +- ;; +-(p6) fma.s1 f13 = f11, f11, f0 +-(p6) fma.s1 f14 = f11, f11, f11 +- ;; +-(p6) fma.s1 f11 = f13, f13, f11 +-(p6) fma.s1 f13 = f14, f10, f10 +- ;; +-(p6) fma.s1 f10 = f13, f11, f10 +-(p6) fnma.s1 f11 = farg1, f12, farg0 +- ;; +-(p6) fma.s1 f11 = f11, f10, f12 +-(p6) fnma.s1 f12 = farg1, f10, f1 +- ;; +-(p6) fma.s1 f10 = f12, f10, f10 +-(p6) fnma.s1 f12 = farg1, f11, farg0 +- ;; +-(p6) fma.s0 fret0 = f12, f10, f11 +-(p7) mov fret0 = f10 +- br.ret.sptk rp +-END(___divtf3) +- .symver ___divtf3, __divtf3@GLIBC_2.2 +- +-/* __divdf3 +- Compute a 64-bit IEEE double quotient. +- farg0 holds the dividend. farg1 holds the divisor. */ +- +-ENTRY(___divdf3) +- cmp.eq p7, p0 = r0, r0 +- frcpa.s0 f10, p6 = farg0, farg1 +- ;; +-(p6) cmp.ne p7, p0 = r0, r0 +- .pred.rel.mutex p6, p7 +-(p6) fmpy.s1 f11 = farg0, f10 +-(p6) fnma.s1 f12 = farg1, f10, f1 +- ;; +-(p6) fma.s1 f11 = f12, f11, f11 +-(p6) fmpy.s1 f13 = f12, f12 +- ;; +-(p6) fma.s1 f10 = f12, f10, f10 +-(p6) fma.s1 f11 = f13, f11, f11 +- ;; +-(p6) fmpy.s1 f12 = f13, f13 +-(p6) fma.s1 f10 = f13, f10, f10 +- ;; +-(p6) fma.d.s1 f11 = f12, f11, f11 +-(p6) fma.s1 f10 = f12, f10, f10 +- ;; +-(p6) fnma.d.s1 f8 = farg1, f11, farg0 +- ;; +-(p6) fma.d fret0 = f8, f10, f11 +-(p7) mov fret0 = f10 +- br.ret.sptk rp +- ;; +-END(___divdf3) +- .symver ___divdf3, __divdf3@GLIBC_2.2 +- +-/* __divsf3 +- Compute a 32-bit IEEE float quotient. +- farg0 holds the dividend. farg1 holds the divisor. */ +- +-ENTRY(___divsf3) +- cmp.eq p7, p0 = r0, r0 +- frcpa.s0 f10, p6 = farg0, farg1 +- ;; +-(p6) cmp.ne p7, p0 = r0, r0 +- .pred.rel.mutex p6, p7 +-(p6) fmpy.s1 f8 = farg0, f10 +-(p6) fnma.s1 f9 = farg1, f10, f1 +- ;; +-(p6) fma.s1 f8 = f9, f8, f8 +-(p6) fmpy.s1 f9 = f9, f9 +- ;; +-(p6) fma.s1 f8 = f9, f8, f8 +-(p6) fmpy.s1 f9 = f9, f9 +- ;; +-(p6) fma.d.s1 f10 = f9, f8, f8 +- ;; +-(p6) fnorm.s.s0 fret0 = f10 +-(p7) mov fret0 = f10 +- br.ret.sptk rp +- ;; +-END(___divsf3) +- .symver ___divsf3, __divsf3@GLIBC_2.2 +- +-/* __divdi3 +- Compute a 64-bit integer quotient. +- in0 holds the dividend. in1 holds the divisor. */ +- +-ENTRY(___divdi3) +- .regstk 2,0,0,0 +- /* Transfer inputs to FP registers. */ +- setf.sig f8 = in0 +- setf.sig f9 = in1 +- ;; +- /* Convert the inputs to FP, so that they won't be treated as +- unsigned. */ +- fcvt.xf f8 = f8 +- fcvt.xf f9 = f9 +- ;; +- /* Compute the reciprocal approximation. */ +- frcpa.s1 f10, p6 = f8, f9 +- ;; +- /* 3 Newton-Raphson iterations. */ +-(p6) fnma.s1 f11 = f9, f10, f1 +-(p6) fmpy.s1 f12 = f8, f10 +- ;; +-(p6) fmpy.s1 f13 = f11, f11 +-(p6) fma.s1 f12 = f11, f12, f12 +- ;; +-(p6) fma.s1 f10 = f11, f10, f10 +-(p6) fma.s1 f11 = f13, f12, f12 +- ;; +-(p6) fma.s1 f10 = f13, f10, f10 +-(p6) fnma.s1 f12 = f9, f11, f8 +- ;; +-(p6) fma.s1 f10 = f12, f10, f11 +- ;; +- /* Round quotient to an integer. */ +- fcvt.fx.trunc.s1 f10 = f10 +- ;; +- /* Transfer result to GP registers. */ +- getf.sig ret0 = f10 +- br.ret.sptk rp +- ;; +-END(___divdi3) +- .symver ___divdi3, __divdi3@GLIBC_2.2 +- +-/* __moddi3 +- Compute a 64-bit integer modulus. +- in0 holds the dividend (a). in1 holds the divisor (b). */ +- +-ENTRY(___moddi3) +- .regstk 2,0,0,0 +- /* Transfer inputs to FP registers. */ +- setf.sig f14 = in0 +- setf.sig f9 = in1 +- ;; +- /* Convert the inputs to FP, so that they won't be treated as +- unsigned. */ +- fcvt.xf f8 = f14 +- fcvt.xf f9 = f9 +- ;; +- /* Compute the reciprocal approximation. */ +- frcpa.s1 f10, p6 = f8, f9 +- ;; +- /* 3 Newton-Raphson iterations. */ +-(p6) fmpy.s1 f12 = f8, f10 +-(p6) fnma.s1 f11 = f9, f10, f1 +- ;; +-(p6) fma.s1 f12 = f11, f12, f12 +-(p6) fmpy.s1 f13 = f11, f11 +- ;; +-(p6) fma.s1 f10 = f11, f10, f10 +-(p6) fma.s1 f11 = f13, f12, f12 +- ;; +- sub in1 = r0, in1 +-(p6) fma.s1 f10 = f13, f10, f10 +-(p6) fnma.s1 f12 = f9, f11, f8 +- ;; +- setf.sig f9 = in1 +-(p6) fma.s1 f10 = f12, f10, f11 +- ;; +- fcvt.fx.trunc.s1 f10 = f10 +- ;; +- /* r = q * (-b) + a */ +- xma.l f10 = f10, f9, f14 +- ;; +- /* Transfer result to GP registers. */ +- getf.sig ret0 = f10 +- br.ret.sptk rp +- ;; +-END(___moddi3) +- .symver ___moddi3, __moddi3@GLIBC_2.2 +- +-/* __udivdi3 +- Compute a 64-bit unsigned integer quotient. +- in0 holds the dividend. in1 holds the divisor. */ +- +-ENTRY(___udivdi3) +- .regstk 2,0,0,0 +- /* Transfer inputs to FP registers. */ +- setf.sig f8 = in0 +- setf.sig f9 = in1 +- ;; +- /* Convert the inputs to FP, to avoid FP software-assist faults. */ +- fcvt.xuf.s1 f8 = f8 +- fcvt.xuf.s1 f9 = f9 +- ;; +- /* Compute the reciprocal approximation. */ +- frcpa.s1 f10, p6 = f8, f9 +- ;; +- /* 3 Newton-Raphson iterations. */ +-(p6) fnma.s1 f11 = f9, f10, f1 +-(p6) fmpy.s1 f12 = f8, f10 +- ;; +-(p6) fmpy.s1 f13 = f11, f11 +-(p6) fma.s1 f12 = f11, f12, f12 +- ;; +-(p6) fma.s1 f10 = f11, f10, f10 +-(p6) fma.s1 f11 = f13, f12, f12 +- ;; +-(p6) fma.s1 f10 = f13, f10, f10 +-(p6) fnma.s1 f12 = f9, f11, f8 +- ;; +-(p6) fma.s1 f10 = f12, f10, f11 +- ;; +- /* Round quotient to an unsigned integer. */ +- fcvt.fxu.trunc.s1 f10 = f10 +- ;; +- /* Transfer result to GP registers. */ +- getf.sig ret0 = f10 +- br.ret.sptk rp +- ;; +-END(___udivdi3) +- .symver ___udivdi3, __udivdi3@GLIBC_2.2 +- +-/* __umoddi3 +- Compute a 64-bit unsigned integer modulus. +- in0 holds the dividend (a). in1 holds the divisor (b). */ +- +-ENTRY(___umoddi3) +- .regstk 2,0,0,0 +- /* Transfer inputs to FP registers. */ +- setf.sig f14 = in0 +- setf.sig f9 = in1 +- ;; +- /* Convert the inputs to FP, to avoid FP software assist faults. */ +- fcvt.xuf.s1 f8 = f14 +- fcvt.xuf.s1 f9 = f9 +- ;; +- /* Compute the reciprocal approximation. */ +- frcpa.s1 f10, p6 = f8, f9 +- ;; +- /* 3 Newton-Raphson iterations. */ +-(p6) fmpy.s1 f12 = f8, f10 +-(p6) fnma.s1 f11 = f9, f10, f1 +- ;; +-(p6) fma.s1 f12 = f11, f12, f12 +-(p6) fmpy.s1 f13 = f11, f11 +- ;; +-(p6) fma.s1 f10 = f11, f10, f10 +-(p6) fma.s1 f11 = f13, f12, f12 +- ;; +- sub in1 = r0, in1 +-(p6) fma.s1 f10 = f13, f10, f10 +-(p6) fnma.s1 f12 = f9, f11, f8 +- ;; +- setf.sig f9 = in1 +-(p6) fma.s1 f10 = f12, f10, f11 +- ;; +- /* Round quotient to an unsigned integer. */ +- fcvt.fxu.trunc.s1 f10 = f10 +- ;; +- /* r = q * (-b) + a */ +- xma.l f10 = f10, f9, f14 +- ;; +- /* Transfer result to GP registers. */ +- getf.sig ret0 = f10 +- br.ret.sptk rp +- ;; +-END(___umoddi3) +- .symver ___umoddi3, __umoddi3@GLIBC_2.2 +- +-/* __multi3 +- Compute a 128-bit multiply of 128-bit multiplicands. +- in0/in1 holds one multiplicand (a), in2/in3 holds the other one (b). */ +- +-ENTRY(___multi3) +- .regstk 4,0,0,0 +- setf.sig f6 = in1 +- movl r19 = 0xffffffff +- setf.sig f7 = in2 +- ;; +- and r14 = r19, in0 +- ;; +- setf.sig f10 = r14 +- and r14 = r19, in2 +- xmpy.l f9 = f6, f7 +- ;; +- setf.sig f6 = r14 +- shr.u r14 = in0, 32 +- ;; +- setf.sig f7 = r14 +- shr.u r14 = in2, 32 +- ;; +- setf.sig f8 = r14 +- xmpy.l f11 = f10, f6 +- xmpy.l f6 = f7, f6 +- ;; +- getf.sig r16 = f11 +- xmpy.l f7 = f7, f8 +- ;; +- shr.u r14 = r16, 32 +- and r16 = r19, r16 +- getf.sig r17 = f6 +- setf.sig f6 = in0 +- ;; +- setf.sig f11 = r14 +- getf.sig r21 = f7 +- setf.sig f7 = in3 +- ;; +- xma.l f11 = f10, f8, f11 +- xma.l f6 = f6, f7, f9 +- ;; +- getf.sig r18 = f11 +- ;; +- add r18 = r18, r17 +- ;; +- and r15 = r19, r18 +- cmp.ltu p7, p6 = r18, r17 +- ;; +- getf.sig r22 = f6 +-(p7) adds r14 = 1, r19 +- ;; +-(p7) add r21 = r21, r14 +- shr.u r14 = r18, 32 +- shl r15 = r15, 32 +- ;; +- add r20 = r21, r14 +- ;; +- add ret0 = r15, r16 +- add ret1 = r22, r20 +- br.ret.sptk rp +- ;; +-END(___multi3) +- .symver ___multi3, __multi3@GLIBC_2.2 +- +-#endif +Index: sysdeps/ia64/libgcc-compat.c +=================================================================== +--- /dev/null ++++ sysdeps/ia64/libgcc-compat.c +@@ -0,0 +1,112 @@ ++/* pre-.hidden libgcc compatibility ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++#include ++#include ++ ++#if SHLIB_COMPAT(libc, GLIBC_2_2, GLIBC_2_2_6) ++ ++typedef int int128_t __attribute__((__mode__(TI))); ++ ++extern long double __divtf3 (long double, long double) attribute_hidden; ++long double INTUSE (__divtf3) (long double x, long double y) ++{ ++ return __divtf3 (x, y); ++} ++symbol_version (INTUSE (__divtf3), __divtf3, GLIBC_2.2); ++ ++extern double __divdf3 (double, double) attribute_hidden; ++double INTUSE (__divdf3) (double x, double y) ++{ ++ return __divdf3 (x, y); ++} ++symbol_version (INTUSE (__divdf3), __divdf3, GLIBC_2.2); ++ ++extern float __divsf3 (float, float) attribute_hidden; ++float INTUSE (__divsf3) (float x, float y) ++{ ++ return __divsf3 (x, y); ++} ++symbol_version (INTUSE (__divsf3), __divsf3, GLIBC_2.2); ++ ++extern int64_t __divdi3 (int64_t, int64_t) attribute_hidden; ++int64_t INTUSE (__divdi3) (int64_t x, int64_t y) ++{ ++ return __divdi3 (x, y); ++} ++symbol_version (INTUSE (__divdi3), __divdi3, GLIBC_2.2); ++ ++extern int64_t __moddi3 (int64_t, int64_t) attribute_hidden; ++int64_t INTUSE (__moddi3) (int64_t x, int64_t y) ++{ ++ return __moddi3 (x, y); ++} ++symbol_version (INTUSE (__moddi3), __moddi3, GLIBC_2.2); ++ ++extern uint64_t __udivdi3 (uint64_t, uint64_t) attribute_hidden; ++uint64_t INTUSE (__udivdi3) (uint64_t x, uint64_t y) ++{ ++ return __udivdi3 (x, y); ++} ++symbol_version (INTUSE (__udivdi3), __udivdi3, GLIBC_2.2); ++ ++extern uint64_t __umoddi3 (uint64_t, uint64_t) attribute_hidden; ++uint64_t INTUSE (__umoddi3) (uint64_t x, uint64_t y) ++{ ++ return __umoddi3 (x, y); ++} ++symbol_version (INTUSE (__umoddi3), __umoddi3, GLIBC_2.2); ++ ++extern int128_t __multi3 (int128_t, int128_t) attribute_hidden; ++int128_t INTUSE (__multi3) (int128_t x, int128_t y) ++{ ++ return __multi3 (x, y); ++} ++symbol_version (INTUSE (__multi3), __multi3, GLIBC_2.2); ++ ++extern int64_t __divsi3 (int64_t, int64_t) attribute_hidden; ++int64_t INTUSE (__divsi3) (int64_t x, int64_t y) ++{ ++ return __divsi3 (x, y); ++} ++symbol_version (INTUSE (__divsi3), __divsi3, GLIBC_2.2); ++ ++extern int64_t __modsi3 (int64_t, int64_t) attribute_hidden; ++int64_t INTUSE (__modsi3) (int64_t x, int64_t y) ++{ ++ return __modsi3 (x, y); ++} ++symbol_version (INTUSE (__modsi3), __modsi3, GLIBC_2.2); ++ ++extern uint64_t __udivsi3 (uint64_t, uint64_t) attribute_hidden; ++uint64_t INTUSE (__udivsi3) (uint64_t x, uint64_t y) ++{ ++ return __udivsi3 (x, y); ++} ++symbol_version (INTUSE (__udivsi3), __udivsi3, GLIBC_2.2); ++ ++extern uint64_t __umodsi3 (uint64_t, uint64_t) attribute_hidden; ++uint64_t INTUSE (__umodsi3) (uint64_t x, uint64_t y) ++{ ++ return __umodsi3 (x, y); ++} ++symbol_version (INTUSE (__umodsi3), __umodsi3, GLIBC_2.2); ++ ++#endif +Index: sysdeps/s390/s390-32/Makefile +=================================================================== +--- sysdeps/s390/s390-32/Makefile.orig ++++ sysdeps/s390/s390-32/Makefile +@@ -9,3 +9,11 @@ + CFLAGS-dl-load.c += -Wno-unused + CFLAGS-dl-reloc.c += -Wno-unused + endif ++ ++ifeq ($(subdir),csu) ++ifeq (yes,$(build-shared)) ++# Compatibility ++sysdep_routines += libgcc-compat ++shared-only-routines += libgcc-compat ++endif ++endif +Index: sysdeps/s390/s390-32/Versions +=================================================================== +--- sysdeps/s390/s390-32/Versions.orig ++++ sysdeps/s390/s390-32/Versions +@@ -2,5 +2,13 @@ + GLIBC_2.0 { + # Functions from libgcc. + __divdi3; __moddi3; __udivdi3; __umoddi3; ++ __cmpdi2; ++ __fixdfdi; ++ __fixsfdi; ++ __fixunsdfdi; ++ __fixunssfdi; ++ __floatdidf; ++ __floatdisf; ++ __ucmpdi2; + } + } +Index: sysdeps/s390/s390-32/libgcc-compat.c +=================================================================== +--- /dev/null ++++ sysdeps/s390/s390-32/libgcc-compat.c +@@ -0,0 +1,83 @@ ++/* pre-.hidden libgcc compatibility ++ Copyright (C) 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by GOTO Masanori ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++#include ++#include ++ ++#if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_2_6) ++ ++extern int32_t __cmpdi2 (int64_t, int64_t); ++int32_t __cmpdi2_internal (int64_t u, int64_t v) ++{ ++ return __cmpdi2 (u, v); ++} ++symbol_version (__cmpdi2_internal, __cmpdi2, GLIBC_2.0); ++ ++extern int64_t __fixdfdi (double); ++int64_t __fixdfdi_internal (double d) ++{ ++ return __fixdfdi (d); ++} ++symbol_version (__fixdfdi_internal, __fixdfdi, GLIBC_2.0); ++ ++extern int64_t __fixsfdi (float); ++int64_t __fixsfdi_internal (float d) ++{ ++ return __fixsfdi (d); ++} ++symbol_version (__fixsfdi_internal, __fixsfdi, GLIBC_2.0); ++ ++extern int64_t __fixunsdfdi (double); ++int64_t __fixunsdfdi_internal (double d) ++{ ++ return __fixunsdfdi (d); ++} ++symbol_version (__fixunsdfdi_internal, __fixunsdfdi, GLIBC_2.0); ++ ++extern int64_t __fixunssfdi (float); ++int64_t __fixunssfdi_internal (float d) ++{ ++ return __fixunssfdi (d); ++} ++symbol_version (__fixunssfdi_internal, __fixunssfdi, GLIBC_2.0); ++ ++extern double __floatdidf (int64_t); ++double __floatdidf_internal (int64_t u) ++{ ++ return __floatdidf (u); ++} ++symbol_version (__floatdidf_internal, __floatdidf, GLIBC_2.0); ++ ++extern float __floatdisf (int64_t); ++float __floatdisf_internal (int64_t u) ++{ ++ return __floatdisf (u); ++} ++symbol_version (__floatdisf_internal, __floatdisf, GLIBC_2.0); ++ ++extern int32_t __ucmpdi2 (int64_t, int64_t); ++int32_t __ucmpdi2_internal (int64_t u, int64_t v) ++{ ++ return __ucmpdi2 (u, v); ++} ++symbol_version (__ucmpdi2_internal, __ucmpdi2, GLIBC_2.0); ++ ++#endif --- glibc-2.5.orig/debian/patches/any/local-forward-backward-collation.diff +++ glibc-2.5/debian/patches/any/local-forward-backward-collation.diff @@ -0,0 +1,63 @@ +# DP: Description: Fix segfault when strings contain a mix of forward +# and backward rules. +# DP: Related bugs: #310635 BZ645 +# DP: Dpatch Author: Denis Barbier +# DP: Patch Author: Denis Barbier +# DP: Upstream status: not yet submitted. +# DP: Test case: the following command segfaults in en_US.UTF-8 locale +# DP: when BZ645 is fixed: +# DP: echo 2d d194 0a 2d d194 0a | xxd -r -p | sort +# DP: Date: 2006-03-17 + +Index: glibc-2.3.6/string/strcoll_l.c +=================================================================== +--- glibc-2.3.6.orig/string/strcoll_l.c ++++ glibc-2.3.6/string/strcoll_l.c +@@ -186,7 +186,10 @@ + /* The last pushed character was handled. Continue + with forward characters. */ + if (idx1cnt < idx1max) +- idx1now = idx1cnt; ++ { ++ idx1now = idx1cnt; ++ backw1_stop = ~0ul; ++ } + else + /* Nothing anymore. The backward sequence ended with + the last sequence in the string. Note that seq1len +@@ -245,7 +248,10 @@ + /* The last pushed character was handled. Continue + with forward characters. */ + if (idx2cnt < idx2max) +- idx2now = idx2cnt; ++ { ++ idx2now = idx2cnt; ++ backw2_stop = ~0ul; ++ } + else + /* Nothing anymore. The backward sequence ended with + the last sequence in the string. Note that seq2len +@@ -370,7 +376,10 @@ + /* The last pushed character was handled. Continue + with forward characters. */ + if (idx1cnt < idx1max) +- idx1now = idx1cnt; ++ { ++ idx1now = idx1cnt; ++ backw1_stop = ~0ul; ++ } + else + { + /* Nothing anymore. The backward sequence +@@ -426,7 +435,10 @@ + /* The last pushed character was handled. Continue + with forward characters. */ + if (idx2cnt < idx2max) +- idx2now = idx2cnt; ++ { ++ idx2now = idx2cnt; ++ backw2_stop = ~0ul; ++ } + else + { + /* Nothing anymore. The backward sequence --- glibc-2.5.orig/debian/patches/any/local-ld-multiarch.diff +++ glibc-2.5/debian/patches/any/local-ld-multiarch.diff @@ -0,0 +1,31 @@ +2005-01-20 Tollef Fog Heen + + * Makeconfig: add multiarch support + +Index: Makeconfig +=================================================================== +--- Makeconfig.orig ++++ Makeconfig +@@ -190,6 +190,11 @@ + endif + inst_libdir = $(install_root)$(libdir) + ++# Extra places to look for libraries ++ifndef extra_libdir ++extra_libdir = /lib/$(config-machine)-$(config-os):$(exec_prefix)/lib/$(config-machine)-$(config-os) ++endif ++ + # Where to install the shared library and dynamic linker. + ifndef slibdir + slibdir = $(exec_prefix)/lib +@@ -502,6 +507,10 @@ + default-rpath = $(libdir) + endif + ++ifdef extra_libdir ++default-rpath += :$(extra_libdir) ++endif ++ + ifndef link-extra-libs + link-extra-libs = $(LDLIBS-$(@F)) + link-extra-libs-static = $(link-extra-libs) --- glibc-2.5.orig/debian/patches/any/local-gcc4-wcstol_l.diff +++ glibc-2.5/debian/patches/any/local-gcc4-wcstol_l.diff @@ -0,0 +1,46 @@ +# DP: Description: Make glibc-2.3.5 compile with gcc-4.0 on 64bit archs. +# DP: Related bugs: +# DP: Dpatch author: GOTO Masanori +# DP: Patch author: Jakub Jelinek +# DP: Upstream status: Debian-Specific +# DP: Status Details: +# DP: Date: 2005-07-14 + +https://www.redhat.com/archives/fedora-cvs-commits/2005-March/msg00408.html + + * sysdeps/wordsize-64/strtol_l.c: Don't add aliases if UNSIGNED. + * sysdeps/wordsize-64/wcstol_l.c: Likewise. + +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/wordsize-64/strtol_l.c,v +retrieving revision 1.4 +retrieving revision 1.4.2.1 +diff -u -r1.4 -r1.4.2.1 +--- libc/sysdeps/wordsize-64/strtol_l.c 2003/03/03 09:45:12 1.4 ++++ libc/sysdeps/wordsize-64/strtol_l.c 2005/03/25 11:59:01 1.4.2.1 +@@ -8,7 +8,9 @@ + #undef ____strtoll_l_internal + #undef __strtoll_l + #undef strtoll_l ++#if !UNSIGNED + strong_alias (____strtol_l_internal, ____strtoll_l_internal) + libc_hidden_ver (____strtol_l_internal, ____strtoll_l_internal) + weak_alias (__strtol_l, __strtoll_l) + weak_alias (__strtol_l, strtoll_l) ++#endif +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/wordsize-64/wcstol_l.c,v +retrieving revision 1.4 +retrieving revision 1.4.2.1 +diff -u -r1.4 -r1.4.2.1 +--- libc/sysdeps/wordsize-64/wcstol_l.c 2002/08/08 11:44:51 1.4 ++++ libc/sysdeps/wordsize-64/wcstol_l.c 2005/03/25 11:59:01 1.4.2.1 +@@ -8,6 +8,8 @@ + #undef ____wcstoll_l_internal + #undef __wcstoll_l + #undef wcstoll_l ++#if !UNSIGNED + strong_alias (____wcstol_l_internal, ____wcstoll_l_internal) + weak_alias (__wcstol_l, __wcstoll_l) + weak_alias (__wcstol_l, wcstoll_l) ++#endif --- glibc-2.5.orig/debian/patches/any/local-ldconfig.diff +++ glibc-2.5/debian/patches/any/local-ldconfig.diff @@ -0,0 +1,68 @@ +# DP: Make it so that a missing /etc/ld.so.conf does not cause an error +# DP: message, unless --verbose is enabled. This keeps the debian +# DP: installer from barfing during bootstrap of the system. +# DP: +# DP: Updated by gotom, the previous one seems being wrong because it supresses +# DP: _all_ warnings about "can't open configuration file". otoh, I introduce +# DP: newer patches. it should be checked using chroot and should be contacted +# DP: to the upstream. +# DP: Date: (Updated 2005-01-02 gotom) + +# previous patch. +#--- elf/ldconfig.c 2003-07-08 23:26:27.000000000 +0900 +#+++ elf/ldconfig.c.debian 2003-07-08 23:29:43.000000000 +0900 +#@@ -920,26 +920,24 @@ +# { +# FILE *file = NULL; +# char *line = NULL; +#- const char *canon; +#+ const char *canon = filename; +# size_t len = 0; +#+ int file_fd; +# +# if (opt_chroot) +# { +# canon = chroot_canon (opt_chroot, filename); +#- if (canon) +#- file = fopen (canon, "r"); +#- else +#+ if (!canon) +# canon = filename; +# } +#- else +#- { +#- canon = filename; +#- file = fopen (filename, "r"); +#- } +#+ +#+ if ((file_fd = open(canon, O_RDONLY | O_EXCL, 0022)) != -1) +#+ file = fdopen (file_fd, "r"); +# +# if (file == NULL) +# { +#- error (0, errno, _("Can't open configuration file %s"), canon); +#+ if (opt_verbose) +#+ error (0, errno, _("Can't open configuration file %s"), canon); +# if (canon != filename) +# free ((char *) canon); +# return; + +2004-10-25 GOTO Masanori + + * elf/ldconfig.c: Don't print error when default ld.so.conf + is not existed. + +Index: elf/ldconfig.c +=================================================================== +--- elf/ldconfig.c.orig ++++ elf/ldconfig.c +@@ -996,7 +996,8 @@ + + if (file == NULL) + { +- error (0, errno, _("Can't open configuration file %s"), canon); ++ if (strcmp(canon, LD_SO_CONF) != 0 || opt_verbose) ++ error (0, errno, _("Can't open configuration file %s"), canon); + if (canon != filename) + free ((char *) canon); + return; --- glibc-2.5.orig/debian/patches/any/local-globfree-clear.diff +++ glibc-2.5/debian/patches/any/local-globfree-clear.diff @@ -0,0 +1,24 @@ +# DP: Description: Workaround patch to make globfree() clear pglob->gl_pathc +# DP: Related bugs: #264884 +# DP: Dpatch author: Jeff Licquia +# DP: Patch author: Jeff Licquia +# DP: Upstream status: Not submitted +# DP: Status Details: (gotom) I think it's harmless, but I doubt it's sanity. +# It's applied for sarge LFS conformance. +# However my test does not show any problems. Moreover, +# if gl_pathv is not cleared after GLOB_ABORTED under +# gl_pathc == 0, it's glob() bug. +# This patch should be reconsidered to apply after sarge. +# DP: Date: 2004-07-22 + +--- glibc-2.3.2-old/sysdeps/generic/glob.c 2004-07-26 17:49:07.000000000 -0400 ++++ glibc-2.3.2/sysdeps/generic/glob.c 2004-07-26 17:51:14.000000000 -0400 +@@ -1105,6 +1105,8 @@ + if (pglob->gl_pathv[pglob->gl_offs + i] != NULL) + free ((__ptr_t) pglob->gl_pathv[pglob->gl_offs + i]); + free ((__ptr_t) pglob->gl_pathv); ++ pglob->gl_pathc = 0; ++ pglob->gl_pathv = NULL; + } + } + #if defined _LIBC && !defined globfree --- glibc-2.5.orig/debian/patches/any/local-sysctl.diff +++ glibc-2.5/debian/patches/any/local-sysctl.diff @@ -0,0 +1,85 @@ +Index: linuxthreads/sysdeps/unix/sysv/linux/smp.h +=================================================================== +--- linuxthreads/sysdeps/unix/sysv/linux/smp.h.orig ++++ linuxthreads/sysdeps/unix/sysv/linux/smp.h +@@ -25,24 +25,6 @@ + static inline int + is_smp_system (void) + { +- static const int sysctl_args[] = { CTL_KERN, KERN_VERSION }; +- char buf[512]; +- size_t reslen = sizeof (buf); +- +- /* Try reading the number using `sysctl' first. */ +- if (__sysctl ((int *) sysctl_args, +- sizeof (sysctl_args) / sizeof (sysctl_args[0]), +- buf, &reslen, NULL, 0) < 0) +- { +- /* This was not successful. Now try reading the /proc filesystem. */ +- int fd = __open ("/proc/sys/kernel/version", O_RDONLY); +- if (__builtin_expect (fd, 0) == -1 +- || (reslen = __read (fd, buf, sizeof (buf))) <= 0) +- /* This also didn't work. We give up and say it's a UP machine. */ +- buf[0] = '\0'; +- +- __close (fd); +- } +- +- return strstr (buf, "SMP") != NULL; ++ /* Assume all machines are SMP and/or CMT and/or SMT. */ ++ return 1; + } +Index: ports/sysdeps/unix/sysv/linux/arm/ioperm.c +=================================================================== +--- ports/sysdeps/unix/sysv/linux/arm/ioperm.c.orig ++++ ports/sysdeps/unix/sysv/linux/arm/ioperm.c +@@ -50,6 +50,8 @@ + + #define PATH_ARM_SYSTYPE "/etc/arm_systype" + #define PATH_CPUINFO "/proc/cpuinfo" ++#define PATH_PORTBASE "/proc/bus/isa/portbase" ++#define PATH_PORTSHIFT "/proc/bus/isa/portshift" + + #define MAX_PORT 0x10000 + +@@ -107,15 +109,25 @@ + { + char systype[256]; + int i, n; +- static int iobase_name[] = { CTL_BUS, CTL_BUS_ISA, BUS_ISA_PORT_BASE }; +- static int ioshift_name[] = { CTL_BUS, CTL_BUS_ISA, BUS_ISA_PORT_SHIFT }; ++ FILE * fp; ++ + size_t len = sizeof(io.base); + +- if (! sysctl (iobase_name, 3, &io.io_base, &len, NULL, 0) +- && ! sysctl (ioshift_name, 3, &io.shift, &len, NULL, 0)) ++ if ((fp = fopen (PATH_PORTBASE, "r"))) + { +- io.initdone = 1; +- return 0; ++ n = fscanf (fp, "%li", &io.io_base); ++ fclose(fp); ++ ++ if (n == 1 && (fp = fopen(PATH_PORTSHIFT, "r"))) ++ { ++ n = fscanf (fp, "%i", &io.shift); ++ fclose(fp); ++ if (n == 1) ++ { ++ io.initdone = 1; ++ return 0; ++ } ++ } + } + + n = readlink (PATH_ARM_SYSTYPE, systype, sizeof (systype) - 1); +@@ -134,8 +146,6 @@ + } + else + { +- FILE * fp; +- + fp = fopen (PATH_CPUINFO, "r"); + if (! fp) + return -1; --- glibc-2.5.orig/debian/patches/any/cvs-ftw-c.diff +++ glibc-2.5/debian/patches/any/cvs-ftw-c.diff @@ -0,0 +1,53 @@ +2007-02-21 Ulrich Drepper + + [BZ #4076] + * io/ftw.c (ftw_startup): Handle special case of FTW_CHDIR in /. + (open_dir_stream): Likewise. + +=================================================================== +RCS file: /cvs/glibc/libc/io/ftw.c,v +retrieving revision 1.54 +retrieving revision 1.55 +diff -u -r1.54 -r1.55 +--- libc/io/ftw.c 2006/05/10 06:35:59 1.54 ++++ libc/io/ftw.c 2007/02/21 09:36:15 1.55 +@@ -348,8 +348,17 @@ + } + else + { +- const char *name = ((data->flags & FTW_CHDIR) +- ? data->dirbuf + data->ftw.base: data->dirbuf); ++ const char *name; ++ ++ if (data->flags & FTW_CHDIR) ++ { ++ name = data->dirbuf + data->ftw.base; ++ if (name[0] == '\0') ++ name = "."; ++ } ++ else ++ name = data->dirbuf; ++ + dirp->stream = __opendir (name); + } + +@@ -721,9 +730,16 @@ + /* Get stat info for start directory. */ + if (result == 0) + { +- const char *name = ((data.flags & FTW_CHDIR) +- ? data.dirbuf + data.ftw.base +- : data.dirbuf); ++ const char *name; ++ ++ if (data.flags & FTW_CHDIR) ++ { ++ name = data.dirbuf + data.ftw.base; ++ if (name[0] == '\0') ++ name = "."; ++ } ++ else ++ name = data.dirbuf; + + if (((flags & FTW_PHYS) + ? LXSTAT (_STAT_VER, name, &st) --- glibc-2.5.orig/debian/patches/any/local-mktemp.diff +++ glibc-2.5/debian/patches/any/local-mktemp.diff @@ -0,0 +1,8 @@ +--- misc/mktemp.c 2007-02-19 00:44:35.000000000 +0100 ++++ misc/mktemp.c 2007-02-19 00:45:26.000000000 +0100 +@@ -33,4 +33,4 @@ + return template; + } + +-link_warning (mktemp, "the use of `mktemp' is dangerous, better use `mkstemp'") ++link_warning (mktemp, "the use of `mktemp' is dangerous, better use `mkstemp' or `mkdtemp'") --- glibc-2.5.orig/debian/patches/any/submitted-getcwd-sys_param_h.diff +++ glibc-2.5/debian/patches/any/submitted-getcwd-sys_param_h.diff @@ -0,0 +1,16 @@ +2006-06-18 Mike Frysinger + + * sysdeps/unix/sysv/linux/getcwd.c: Include sys/param.h. + +Index: sysdeps/unix/sysv/linux/getcwd.c +=================================================================== +--- sysdeps/unix/sysv/linux/getcwd.c.orig ++++ sysdeps/unix/sysv/linux/getcwd.c +@@ -24,6 +24,7 @@ + #include + #include + #include ++#include + + #include + #include --- glibc-2.5.orig/debian/patches/any/cvs-itoa-c.diff +++ glibc-2.5/debian/patches/any/cvs-itoa-c.diff @@ -0,0 +1,29 @@ +2007-01-22 Ulrich Drepper + + [BZ #3902] + * stdio-common/_itoa.c (_itoa): Make sure at least a zero is emitted. + +=================================================================== +RCS file: /cvs/glibc/libc/stdio-common/_itoa.c,v +retrieving revision 1.21 +retrieving revision 1.22 +diff -u -r1.21 -r1.22 +--- libc/stdio-common/_itoa.c 2004/06/06 06:02:14 1.21 ++++ libc/stdio-common/_itoa.c 2007/01/22 16:16:08 1.22 +@@ -269,6 +269,7 @@ + + default: + { ++ char *bufend = buflim; + #if BITS_PER_MP_LIMB == 64 + mp_limb_t base_multiplier = brec->base_multiplier; + if (brec->flag) +@@ -454,6 +455,8 @@ + } + while (n != 0); + #endif ++ if (buflim == bufend) ++ *--buflim = '0'; + } + break; + } --- glibc-2.5.orig/debian/patches/any/local-linuxthreads-semaphore_h.diff +++ glibc-2.5/debian/patches/any/local-linuxthreads-semaphore_h.diff @@ -0,0 +1,181 @@ +--- glibc-2.5.orig/linuxthreads/semaphore.h 2004-04-18 01:01:39.000000000 +0200 ++++ glibc-2.5/linuxthreads/semaphore.h 2007-01-05 02:44:21.677153107 +0100 +@@ -1,87 +0,0 @@ +-/* Linuxthreads - a simple clone()-based implementation of Posix */ +-/* threads for Linux. */ +-/* Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr) */ +-/* */ +-/* This program is free software; you can redistribute it and/or */ +-/* modify it under the terms of the GNU Library General Public License */ +-/* as published by the Free Software Foundation; either version 2 */ +-/* of the License, or (at your option) any later version. */ +-/* */ +-/* This program is distributed in the hope that it will be useful, */ +-/* but WITHOUT ANY WARRANTY; without even the implied warranty of */ +-/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ +-/* GNU Library General Public License for more details. */ +- +-#ifndef _SEMAPHORE_H +-#define _SEMAPHORE_H 1 +- +-#include +-#include +-#ifdef __USE_XOPEN2K +-# define __need_timespec +-# include +-#endif +- +-#ifndef _PTHREAD_DESCR_DEFINED +-/* Thread descriptors. Needed for `sem_t' definition. */ +-typedef struct _pthread_descr_struct *_pthread_descr; +-# define _PTHREAD_DESCR_DEFINED +-#endif +- +-/* System specific semaphore definition. */ +-typedef struct +-{ +- struct _pthread_fastlock __sem_lock; +- int __sem_value; +- _pthread_descr __sem_waiting; +-} sem_t; +- +- +- +-/* Value returned if `sem_open' failed. */ +-#define SEM_FAILED ((sem_t *) 0) +- +-/* Maximum value the semaphore can have. */ +-#define SEM_VALUE_MAX (2147483647) +- +- +-__BEGIN_DECLS +- +-/* Initialize semaphore object SEM to VALUE. If PSHARED then share it +- with other processes. */ +-extern int sem_init (sem_t *__sem, int __pshared, unsigned int __value) __THROW; +- +-/* Free resources associated with semaphore object SEM. */ +-extern int sem_destroy (sem_t *__sem) __THROW; +- +-/* Open a named semaphore NAME with open flaot OFLAG. */ +-extern sem_t *sem_open (__const char *__name, int __oflag, ...) __THROW; +- +-/* Close descriptor for named semaphore SEM. */ +-extern int sem_close (sem_t *__sem) __THROW; +- +-/* Remove named semaphore NAME. */ +-extern int sem_unlink (__const char *__name) __THROW; +- +-/* Wait for SEM being posted. */ +-extern int sem_wait (sem_t *__sem); +- +-#ifdef __USE_XOPEN2K +-/* Similar to `sem_wait' but wait only until ABSTIME. */ +-extern int sem_timedwait (sem_t *__restrict __sem, +- __const struct timespec *__restrict __abstime); +-#endif +- +-/* Test whether SEM is posted. */ +-extern int sem_trywait (sem_t *__sem) __THROW; +- +-/* Post SEM. */ +-extern int sem_post (sem_t *__sem) __THROW; +- +-/* Get current value of SEM and store it in *SVAL. */ +-extern int sem_getvalue (sem_t *__restrict __sem, int *__restrict __sval) +- __THROW; +- +-__END_DECLS +- +-#endif /* semaphore.h */ +--- glibc-2.5.orig/linuxthreads/sysdeps/pthread/semaphore.h 1998-09-07 01:40:57.000000000 +0200 ++++ glibc-2.5.orig/linuxthreads/sysdeps/pthread/semaphore.h 2004-04-18 01:01:39.000000000 +0200 +@@ -1 +1,87 @@ +-#include ++/* Linuxthreads - a simple clone()-based implementation of Posix */ ++/* threads for Linux. */ ++/* Copyright (C) 1996 Xavier Leroy (Xavier.Leroy@inria.fr) */ ++/* */ ++/* This program is free software; you can redistribute it and/or */ ++/* modify it under the terms of the GNU Library General Public License */ ++/* as published by the Free Software Foundation; either version 2 */ ++/* of the License, or (at your option) any later version. */ ++/* */ ++/* This program is distributed in the hope that it will be useful, */ ++/* but WITHOUT ANY WARRANTY; without even the implied warranty of */ ++/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */ ++/* GNU Library General Public License for more details. */ ++ ++#ifndef _SEMAPHORE_H ++#define _SEMAPHORE_H 1 ++ ++#include ++#include ++#ifdef __USE_XOPEN2K ++# define __need_timespec ++# include ++#endif ++ ++#ifndef _PTHREAD_DESCR_DEFINED ++/* Thread descriptors. Needed for `sem_t' definition. */ ++typedef struct _pthread_descr_struct *_pthread_descr; ++# define _PTHREAD_DESCR_DEFINED ++#endif ++ ++/* System specific semaphore definition. */ ++typedef struct ++{ ++ struct _pthread_fastlock __sem_lock; ++ int __sem_value; ++ _pthread_descr __sem_waiting; ++} sem_t; ++ ++ ++ ++/* Value returned if `sem_open' failed. */ ++#define SEM_FAILED ((sem_t *) 0) ++ ++/* Maximum value the semaphore can have. */ ++#define SEM_VALUE_MAX (2147483647) ++ ++ ++__BEGIN_DECLS ++ ++/* Initialize semaphore object SEM to VALUE. If PSHARED then share it ++ with other processes. */ ++extern int sem_init (sem_t *__sem, int __pshared, unsigned int __value) __THROW; ++ ++/* Free resources associated with semaphore object SEM. */ ++extern int sem_destroy (sem_t *__sem) __THROW; ++ ++/* Open a named semaphore NAME with open flaot OFLAG. */ ++extern sem_t *sem_open (__const char *__name, int __oflag, ...) __THROW; ++ ++/* Close descriptor for named semaphore SEM. */ ++extern int sem_close (sem_t *__sem) __THROW; ++ ++/* Remove named semaphore NAME. */ ++extern int sem_unlink (__const char *__name) __THROW; ++ ++/* Wait for SEM being posted. */ ++extern int sem_wait (sem_t *__sem); ++ ++#ifdef __USE_XOPEN2K ++/* Similar to `sem_wait' but wait only until ABSTIME. */ ++extern int sem_timedwait (sem_t *__restrict __sem, ++ __const struct timespec *__restrict __abstime); ++#endif ++ ++/* Test whether SEM is posted. */ ++extern int sem_trywait (sem_t *__sem) __THROW; ++ ++/* Post SEM. */ ++extern int sem_post (sem_t *__sem) __THROW; ++ ++/* Get current value of SEM and store it in *SVAL. */ ++extern int sem_getvalue (sem_t *__restrict __sem, int *__restrict __sval) ++ __THROW; ++ ++__END_DECLS ++ ++#endif /* semaphore.h */ --- glibc-2.5.orig/debian/patches/any/submitted-clock-settime.diff +++ glibc-2.5/debian/patches/any/submitted-clock-settime.diff @@ -0,0 +1,12 @@ +http://sourceware.org/bugzilla/show_bug.cgi?id=4026 + +--- sysdeps/unix/sysv/linux/clock_settime.c 2007-02-11 18:53:19.000000000 +0100 ++++ sysdeps/unix/sysv/linux/clock_settime.c 2007-02-11 18:53:31.000000000 +0100 +@@ -18,6 +18,7 @@ + + #include + #include ++#include + + #include "kernel-posix-cpu-timers.h" + #include --- glibc-2.5.orig/debian/patches/any/cvs-pow.diff +++ glibc-2.5/debian/patches/any/cvs-pow.diff @@ -0,0 +1,220 @@ +2007-03-01 Jakub Jelinek + + [BZ #4096] + * sysdeps/ieee754/dbl-64/e_pow.c (__ieee754_pow): Check for NaN earlier. + + * sysdeps/i386/fpu/e_powf.S (__ieee754_powf): Avoid invalid exception + for x qNaN and y either +-inf or non-integer value. + * sysdeps/i386/fpu/e_pow.S (__ieee754_pow): Likewise. + * sysdeps/i386/fpu/e_powl.S (__ieee754_powl): Likewise. + * sysdeps/x86_64/fpu/e_powl.S (__ieee754_powl): Likewise. + +--- libc/sysdeps/i386/fpu/e_pow.S.jj 2005-05-04 19:45:15.000000000 +0200 ++++ libc/sysdeps/i386/fpu/e_pow.S 2007-03-01 16:10:28.000000000 +0100 +@@ -1,5 +1,5 @@ + /* ix87 specific implementation of pow function. +- Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, 2005 ++ Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, 2005, 2007 + Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper , 1996. +@@ -161,10 +161,11 @@ ENTRY(__ieee754_pow) + 2: /* y is a real number. */ + fxch // x : y + fldl MO(one) // 1.0 : x : y +- fld %st(1) // x : 1.0 : x : y +- fsub %st(1) // x-1 : 1.0 : x : y +- fabs // |x-1| : 1.0 : x : y +- fcompl MO(limit) // 1.0 : x : y ++ fldl MO(limit) // 0.29 : 1.0 : x : y ++ fld %st(2) // x : 0.29 : 1.0 : x : y ++ fsub %st(2) // x-1 : 0.29 : 1.0 : x : y ++ fabs // |x-1| : 0.29 : 1.0 : x : y ++ fucompp // 1.0 : x : y + fnstsw + fxch // x : 1.0 : y + sahf +@@ -197,9 +198,10 @@ ENTRY(__ieee754_pow) + // y == inf + .align ALIGNARG(4) + 12: fstp %st(0) // pop y +- fldl 4(%esp) // x +- fabs +- fcompl MO(one) // < 1, == 1, or > 1 ++ fldl MO(one) // 1 ++ fldl 4(%esp) // x : 1 ++ fabs // abs(x) : 1 ++ fucompp // < 1, == 1, or > 1 + fnstsw + andb $0x45, %ah + cmpb $0x45, %ah +--- libc/sysdeps/i386/fpu/e_powl.S.jj 2005-05-04 19:45:15.000000000 +0200 ++++ libc/sysdeps/i386/fpu/e_powl.S 2007-03-01 16:02:21.000000000 +0100 +@@ -1,5 +1,5 @@ + /* ix87 specific implementation of pow function. +- Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, 2005 ++ Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, 2005, 2007 + Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper , 1996. +@@ -161,10 +161,11 @@ ENTRY(__ieee754_powl) + 2: /* y is a real number. */ + fxch // x : y + fldl MO(one) // 1.0 : x : y +- fld %st(1) // x : 1.0 : x : y +- fsub %st(1) // x-1 : 1.0 : x : y +- fabs // |x-1| : 1.0 : x : y +- fcompl MO(limit) // 1.0 : x : y ++ fldl MO(limit) // 0.29 : 1.0 : x : y ++ fld %st(2) // x : 0.29 : 1.0 : x : y ++ fsub %st(2) // x-1 : 0.29 : 1.0 : x : y ++ fabs // |x-1| : 0.29 : 1.0 : x : y ++ fucompp // 1.0 : x : y + fnstsw + fxch // x : 1.0 : y + sahf +@@ -210,9 +211,10 @@ ENTRY(__ieee754_powl) + // y == inf + .align ALIGNARG(4) + 12: fstp %st(0) // pop y +- fldt 4(%esp) // x +- fabs +- fcompl MO(one) // < 1, == 1, or > 1 ++ fldl MO(one) // 1 ++ fldt 4(%esp) // x : 1 ++ fabs // abs(x) : 1 ++ fucompp // < 1, == 1, or > 1 + fnstsw + andb $0x45, %ah + cmpb $0x45, %ah +--- libc/sysdeps/i386/fpu/e_powf.S.jj 2005-05-04 19:45:15.000000000 +0200 ++++ libc/sysdeps/i386/fpu/e_powf.S 2007-03-01 16:11:59.000000000 +0100 +@@ -1,5 +1,5 @@ + /* ix87 specific implementation of pow function. +- Copyright (C) 1996, 1997, 1999, 2001, 2004, 2005 ++ Copyright (C) 1996, 1997, 1999, 2001, 2004, 2005, 2007 + Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper , 1996. +@@ -155,10 +155,11 @@ ENTRY(__ieee754_powf) + 2: /* y is a real number. */ + fxch // x : y + fldl MO(one) // 1.0 : x : y +- fld %st(1) // x : 1.0 : x : y +- fsub %st(1) // x-1 : 1.0 : x : y +- fabs // |x-1| : 1.0 : x : y +- fcompl MO(limit) // 1.0 : x : y ++ fldl MO(limit) // 0.29 : 1.0 : x : y ++ fld %st(2) // x : 0.29 : 1.0 : x : y ++ fsub %st(2) // x-1 : 0.29 : 1.0 : x : y ++ fabs // |x-1| : 0.29 : 1.0 : x : y ++ fucompp // 1.0 : x : y + fnstsw + fxch // x : 1.0 : y + sahf +@@ -191,9 +192,10 @@ ENTRY(__ieee754_powf) + // y == inf + .align ALIGNARG(4) + 12: fstp %st(0) // pop y +- flds 4(%esp) // x +- fabs +- fcompl MO(one) // < 1, == 1, or > 1 ++ fldl MO(one) // 1 ++ flds 4(%esp) // x : 1 ++ fabs // abs(x) : 1 ++ fucompp // < 1, == 1, or > 1 + fnstsw + andb $0x45, %ah + cmpb $0x45, %ah +--- libc/sysdeps/ieee754/dbl-64/e_pow.c.jj 2004-01-23 14:16:24.000000000 +0100 ++++ libc/sysdeps/ieee754/dbl-64/e_pow.c 2007-03-01 14:23:31.000000000 +0100 +@@ -106,20 +106,28 @@ double __ieee754_pow(double x, double y) + else + return y < 0 ? 1.0/ABS(x) : 0.0; /* return 0 */ + } ++ ++ qx = u.i[HIGH_HALF]&0x7fffffff; /* no sign */ ++ qy = v.i[HIGH_HALF]&0x7fffffff; /* no sign */ ++ ++ if (qx >= 0x7ff00000 && (qx > 0x7ff00000 || u.i[LOW_HALF] != 0)) return NaNQ.x; ++ if (qy >= 0x7ff00000 && (qy > 0x7ff00000 || v.i[LOW_HALF] != 0)) ++ return x == 1.0 ? 1.0 : NaNQ.x; ++ + /* if x<0 */ + if (u.i[HIGH_HALF] < 0) { + k = checkint(y); + if (k==0) { +- if ((v.i[HIGH_HALF] & 0x7fffffff) == 0x7ff00000 && v.i[LOW_HALF] == 0) { ++ if (qy == 0x7ff00000) { + if (x == -1.0) return 1.0; + else if (x > -1.0) return v.i[HIGH_HALF] < 0 ? INF.x : 0.0; + else return v.i[HIGH_HALF] < 0 ? 0.0 : INF.x; + } +- else if (u.i[HIGH_HALF] == 0xfff00000 && u.i[LOW_HALF] == 0) ++ else if (qx == 0x7ff00000) + return y < 0 ? 0.0 : INF.x; + return NaNQ.x; /* y not integer and x<0 */ + } +- else if (u.i[HIGH_HALF] == 0xfff00000 && u.i[LOW_HALF] == 0) ++ else if (qx == 0x7ff00000) + { + if (k < 0) + return y < 0 ? nZERO.x : nINF.x; +@@ -129,14 +137,6 @@ double __ieee754_pow(double x, double y) + return (k==1)?__ieee754_pow(-x,y):-__ieee754_pow(-x,y); /* if y even or odd */ + } + /* x>0 */ +- qx = u.i[HIGH_HALF]&0x7fffffff; /* no sign */ +- qy = v.i[HIGH_HALF]&0x7fffffff; /* no sign */ +- +- if (qx > 0x7ff00000 || (qx == 0x7ff00000 && u.i[LOW_HALF] != 0)) return NaNQ.x; +- /* if 0 0x7ff00000 || (qy == 0x7ff00000 && v.i[LOW_HALF] != 0)) +- return x == 1.0 ? 1.0 : NaNQ.x; +- /* if y<2^-0x7fe */ + + if (qx == 0x7ff00000) /* x= 2^-0x3ff */ + {if (y == 0) return NaNQ.x; +--- libc/sysdeps/x86_64/fpu/e_powl.S.jj 2004-07-20 09:05:58.000000000 +0200 ++++ libc/sysdeps/x86_64/fpu/e_powl.S 2007-03-01 15:30:42.000000000 +0100 +@@ -1,5 +1,6 @@ + /* ix87 specific implementation of pow function. +- Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004 Free Software Foundation, Inc. ++ Copyright (C) 1996, 1997, 1998, 1999, 2001, 2004, 2007 ++ Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Ulrich Drepper , 1996. + +@@ -146,10 +147,11 @@ ENTRY(__ieee754_powl) + 2: /* y is a real number. */ + fxch // x : y + fldl MO(one) // 1.0 : x : y +- fld %st(1) // x : 1.0 : x : y +- fsub %st(1) // x-1 : 1.0 : x : y +- fabs // |x-1| : 1.0 : x : y +- fcompl MO(limit) // 1.0 : x : y ++ fldl MO(limit) // 0.29 : 1.0 : x : y ++ fld %st(2) // x : 0.29 : 1.0 : x : y ++ fsub %st(2) // x-1 : 0.29 : 1.0 : x : y ++ fabs // |x-1| : 0.29 : 1.0 : x : y ++ fucompp // 1.0 : x : y + fnstsw + fxch // x : 1.0 : y + test $4500,%eax +@@ -190,9 +192,10 @@ ENTRY(__ieee754_powl) + // y == inf + .align ALIGNARG(4) + 12: fstp %st(0) // pop y +- fldt 8(%rsp) // x +- fabs +- fcompl MO(one) // < 1, == 1, or > 1 ++ fldl MO(one) // 1 ++ fldt 8(%rsp) // x : 1 ++ fabs // abs(x) : 1 ++ fucompp // < 1, == 1, or > 1 + fnstsw + andb $0x45, %ah + cmpb $0x45, %ah + + Jakub + --- glibc-2.5.orig/debian/patches/any/local-ldso-disable-hwcap.diff +++ glibc-2.5/debian/patches/any/local-ldso-disable-hwcap.diff @@ -0,0 +1,81 @@ +# DP: Allow hwcap's to be disabled with the existence of a file. This +# DP: makes it easier to do upgrades with optimized (hwcap) library +# DP: packages. +# DP: Author: Rewritten by Daniel Jacobowitz +# DP: Upstream status: Debian-Specific +# DP: Status Details: This isn't going to be acceptable upstream, we +# DP: only need it because we support in-place upgrades. +# DP: Date: 2003-10-28, (Updated 2005-01-02 gotom) + +Index: elf/dl-sysdep.c +=================================================================== +RCS file: /cvs/glibc/libc/elf/dl-sysdep.c,v +retrieving revision 1.113 +diff -u -r1.113 dl-sysdep.c +--- elf/dl-sysdep.c 6 Nov 2004 00:24:47 -0000 1.113 ++++ elf/dl-sysdep.c 2 Jan 2005 10:24:13 -0000 +@@ -408,7 +408,11 @@ + #ifdef USE_TLS + /* For TLS enabled builds always add 'tls'. */ + ++cnt; +-#else ++#endif ++ ++ if (__access ("/etc/ld.so.nohwcap", F_OK) == 0) ++ cnt = 0; ++ + if (cnt == 0) + { + /* If we no have platform name and no important capability we only +@@ -423,7 +427,6 @@ + *sz = 1; + return result; + } +-#endif + + /* Create temporary data structure to generate result table. */ + temp = (struct r_strlenpair *) alloca (cnt * sizeof (*temp)); +@@ -488,9 +491,7 @@ + result = (struct r_strlenpair *) malloc (*sz * sizeof (*result) + total); + if (result == NULL) + { +-#ifndef USE_TLS + no_memory: +-#endif + _dl_signal_error (ENOMEM, NULL, NULL, + N_("cannot create capability list")); + } +Index: elf/dl-cache.c +=================================================================== +RCS file: /cvs/glibc/libc/elf/dl-cache.c,v +retrieving revision 1.46 +diff -u -r1.46 dl-cache.c +--- elf/dl-cache.c 19 Mar 2004 00:36:32 -0000 1.46 ++++ elf/dl-cache.c 2 Jan 2005 10:23:42 -0000 +@@ -244,6 +244,7 @@ + if (cache_new != (void *) -1) + { + uint64_t platform; ++ int disable_hwcap = 0; + + /* This is where the strings start. */ + cache_data = (const char *) cache_new; +@@ -255,6 +256,9 @@ + if (platform != (uint64_t) -1) + platform = 1ULL << platform; + ++ if (__access ("/etc/ld.so.nohwcap", F_OK) == 0) ++ disable_hwcap = 1; ++ + /* Only accept hwcap if it's for the right platform. */ + #ifdef USE_TLS + # define _DL_HWCAP_TLS_MASK (1LL << 63) +@@ -264,6 +268,8 @@ + #define HWCAP_CHECK \ + if (GLRO(dl_osversion) && lib->osversion > GLRO(dl_osversion)) \ + continue; \ ++ if (disable_hwcap && lib->hwcap != 0) \ ++ continue; \ + if (_DL_PLATFORMS_COUNT \ + && (lib->hwcap & _DL_HWCAP_PLATFORM) != 0 \ + && (lib->hwcap & _DL_HWCAP_PLATFORM) != platform) \ --- glibc-2.5.orig/debian/patches/any/local-no-pagesize.diff +++ glibc-2.5/debian/patches/any/local-no-pagesize.diff @@ -0,0 +1,78 @@ +--- glibc-2.3.6.orig/sysdeps/unix/sysv/linux/alpha/sys/user.h 2001-07-06 06:56:13.000000000 +0200 ++++ glibc-2.3.6/sysdeps/unix/sysv/linux/alpha/sys/user.h 2006-10-21 22:38:36.108043157 +0200 +@@ -23,6 +23,7 @@ + only. Don't read too much into it. Don't use it for anything other + than gdb/strace unless you know what you are doing. */ + ++#include + #include + #include + +@@ -41,7 +42,7 @@ + char u_comm[32]; /* user command name */ + }; + +-#define NBPG PAGE_SIZE ++#define NBPG sysconf(_SC_PAGESIZE) + #define UPAGES 1 + #define HOST_TEXT_START_ADDR (u.start_code) + #define HOST_DATA_START_ADDR (u.start_data) +--- glibc-2.3.6.orig/sysdeps/unix/sysv/linux/ia64/sys/user.h 2002-08-25 05:57:38.000000000 +0200 ++++ glibc-2.3.6/sysdeps/unix/sysv/linux/ia64/sys/user.h 2006-10-21 22:38:50.554268504 +0200 +@@ -21,6 +21,7 @@ + + #include + #include ++#include + + /* This definition comes directly from the kernel headers. If + anything changes in them this header has to be changed, too. */ +@@ -45,7 +46,7 @@ + char u_comm[32]; /* User command name. */ + }; + +-#define NBPG PAGE_SIZE ++#define NBPG sysconf(_SC_PAGESIZE) + #define UPAGES 1 + #define HOST_TEXT_START_ADDR (u.start_code) + #define HOST_DATA_START_ADDR (u.start_data) +--- glibc-2.3.6.orig/ports/sysdeps/unix/sysv/linux/mips/sys/user.h 2004-11-24 05:37:35.000000000 +0100 ++++ glibc-2.3.6/ports/sysdeps/unix/sysv/linux/mips/sys/user.h 2006-10-21 22:39:01.575151737 +0200 +@@ -20,6 +20,7 @@ + #define _SYS_USER_H 1 + + #include ++#include + + /* The whole purpose of this file is for GDB and GDB only. Don't read + too much into it. Don't use it for anything other than GDB unless +@@ -207,8 +208,7 @@ + + #endif + +-#define PAGE_SHIFT 12 +-#define PAGE_SIZE (1UL << PAGE_SHIFT) ++#define PAGE_SIZE sysconf(_SC_PAGESIZE) + #define PAGE_MASK (~(PAGE_SIZE-1)) + #define NBPG PAGE_SIZE + #define UPAGES 1 +--- glibc-2.3.6.orig/sysdeps/unix/sysv/linux/x86_64/sys/user.h 2004-11-05 00:37:34.000000000 +0100 ++++ glibc-2.3.6/sysdeps/unix/sysv/linux/x86_64/sys/user.h 2006-10-21 22:39:08.237872033 +0200 +@@ -24,6 +24,7 @@ + you know what you are doing. */ + + #include ++#include + + #if __WORDSIZE == 64 + +@@ -164,8 +165,7 @@ + }; + #endif /* __WORDSIZE */ + +-#define PAGE_SHIFT 12 +-#define PAGE_SIZE (1UL << PAGE_SHIFT) ++#define PAGE_SIZE sysconf(_SC_PAGESIZE) + #define PAGE_MASK (~(PAGE_SIZE-1)) + #define NBPG PAGE_SIZE + #define UPAGES 1 --- glibc-2.5.orig/debian/patches/any/cvs-lt-update.diff +++ glibc-2.5/debian/patches/any/cvs-lt-update.diff @@ -0,0 +1,119 @@ +diff -Nurd linuxthreads.orig/ChangeLog linuxthreads/ChangeLog +--- linuxthreads.orig/ChangeLog 2006-10-01 19:05:33.000000000 +0200 ++++ linuxthreads/ChangeLog 2007-01-08 03:14:22.000000000 +0100 +@@ -1,3 +1,34 @@ ++2006-10-31 Ian Lance Taylor ++ ++ * specific.c (__pthread_destroy_specifics): Clear pointer before ++ freeing. ++ ++2006-10-31 Mike Frysinger ++ ++ * sysdeps/ia64/tcb-offsets.sym (MULTIPLE_THREADS_OFFSET): Fix typo ++ TLS_PRE_TCB_SIZE. ++ ++2006-10-03 Richard Sandiford ++ ++ * sysdeps/m68k/pt-machine.h (__compare_and_swap): Don't define for ++ Coldfire. ++ (HAS_COMPARE_AND_SWAP): Likewise. ++ * sysdeps/unix/sysv/linux/m68k/sysdep-cancel.h (PSEUDO): Pass a ++ temporary register to SINGLE_THREAD_P. ++ (__local_multiple_threads): Do not mark hidden in librt. ++ (SINGLE_THREAD_P): Make the assembler version take a temporary ++ register argument. Load __local_multiple_threads from the GOT ++ when generating PIC for librt. Use separate PIC implementations ++ for m680x0 and Coldfire. ++ * sysdeps/unix/sysv/linux/m68k/vfork.S (__vfork): On Coldfire targets, ++ load the GOTPC offset into a temporary register first. ++ ++2006-10-02 Daniel Jacobowitz ++ ++ * sysdeps/pthread/gai_misc.h (__gai_start_notify_thread): Use ++ sigprocmask instead. ++ (__gai_create_helper_thread): Likewise. ++ + 2006-10-01 Petr Salinger + + * sysdeps/pthread/gai_misc.h (__gai_start_notify_thread): Use +diff -Nurd linuxthreads.orig/specific.c linuxthreads/specific.c +--- linuxthreads.orig/specific.c 2006-07-24 19:25:34.000000000 +0200 ++++ linuxthreads/specific.c 2007-01-08 03:14:22.000000000 +0100 +@@ -204,8 +204,9 @@ + __pthread_lock(THREAD_GETMEM(self, p_lock), self); + for (i = 0; i < PTHREAD_KEY_1STLEVEL_SIZE; i++) { + if (THREAD_GETMEM_NC(self, p_specific[i]) != NULL) { +- free(THREAD_GETMEM_NC(self, p_specific[i])); ++ void *p = THREAD_GETMEM_NC(self, p_specific[i]); + THREAD_SETMEM_NC(self, p_specific[i], NULL); ++ free(p); + } + } + __pthread_unlock(THREAD_GETMEM(self, p_lock)); +diff -Nurd linuxthreads.orig/sysdeps/ia64/tcb-offsets.sym linuxthreads/sysdeps/ia64/tcb-offsets.sym +--- linuxthreads.orig/sysdeps/ia64/tcb-offsets.sym 2006-04-26 17:04:13.000000000 +0200 ++++ linuxthreads/sysdeps/ia64/tcb-offsets.sym 2007-01-08 03:14:22.000000000 +0100 +@@ -3,7 +3,7 @@ + + -- + #ifdef USE_TLS +-MULTIPLE_THREADS_OFFSET offsetof (struct _pthread_descr_struct, p_multiple_threads) - TCB_PRE_SIZE ++MULTIPLE_THREADS_OFFSET offsetof (struct _pthread_descr_struct, p_multiple_threads) - TLS_PRE_TCB_SIZE + #else + MULTIPLE_THREADS_OFFSET offsetof (tcbhead_t, multiple_threads) + #endif +diff -Nurd linuxthreads.orig/sysdeps/m68k/pt-machine.h linuxthreads/sysdeps/m68k/pt-machine.h +--- linuxthreads.orig/sysdeps/m68k/pt-machine.h 2003-07-31 21:15:42.000000000 +0200 ++++ linuxthreads/sysdeps/m68k/pt-machine.h 2007-01-08 03:14:22.000000000 +0100 +@@ -27,7 +27,9 @@ + #endif + + extern long int testandset (int *spinlock); ++#ifndef __mcoldfire__ + extern int __compare_and_swap (long int *p, long int oldval, long int newval); ++#endif + + /* Spinlock implementation; required. */ + PT_EI long int +@@ -50,6 +52,7 @@ + register char * stack_pointer __asm__ ("%sp"); + + ++#ifndef __mcoldfire__ + /* Compare-and-swap for semaphores. */ + + #define HAS_COMPARE_AND_SWAP +@@ -65,5 +68,6 @@ + + return ret; + } ++#endif + + #endif /* pt-machine.h */ +diff -Nurd linuxthreads.orig/sysdeps/pthread/gai_misc.h linuxthreads/sysdeps/pthread/gai_misc.h +--- linuxthreads.orig/sysdeps/pthread/gai_misc.h 2006-10-01 06:06:14.000000000 +0200 ++++ linuxthreads/sysdeps/pthread/gai_misc.h 2007-01-08 03:14:22.000000000 +0100 +@@ -34,7 +34,7 @@ + { + sigset_t ss; + sigemptyset (&ss); +- __sigprocmask (SIG_SETMASK, &ss, NULL); ++ sigprocmask (SIG_SETMASK, &ss, NULL); + } + + extern inline int +@@ -55,12 +55,12 @@ + sigset_t ss; + sigset_t oss; + sigfillset (&ss); +- __sigprocmask (SIG_SETMASK, &ss, &oss); ++ sigprocmask (SIG_SETMASK, &ss, &oss); + + int ret = pthread_create (threadp, &attr, tf, arg); + + /* Restore the signal mask. */ +- __sigprocmask (SIG_SETMASK, &oss, NULL); ++ sigprocmask (SIG_SETMASK, &oss, NULL); + + (void) pthread_attr_destroy (&attr); + return ret; --- glibc-2.5.orig/debian/patches/any/submitted-date-and-unknown-tz.diff +++ glibc-2.5/debian/patches/any/submitted-date-and-unknown-tz.diff @@ -0,0 +1,49 @@ +Patch from Andrew Suffield: +> 'TZ=MOO date' gives confusing output; it uses UTC but claims to be +> whatever timezone you told it. If you were expecting the timezone to +> be valid, this output is not correct. +> +> This is caused by the way that glibc parses $TZ; if the string is +> unrecognised, it interprets it as a name followed by an offset from +> UTC. (The relevant code is tzset_internal() in time/tzset.c) +> +> The code already checks to see whether there is a valid offset in the +> string or not. Currently it copies the timezone name first; since the +> intent was probably not to change the name if no offset was specified, +> I propose this change: +> +> [... see patch below ...] +> +> The old behaviour is still available by using TZ="MOO+0", if it is +> really desirable to change the name of the timezone in this manner. + +Index: time/tzset.c +=================================================================== +--- time/tzset.c.orig ++++ time/tzset.c +@@ -216,7 +216,7 @@ + + /* Clear out old state and reset to unnamed UTC. */ + memset (tz_rules, 0, sizeof tz_rules); +- tz_rules[0].name = tz_rules[1].name = ""; ++ tz_rules[0].name = tz_rules[1].name = "UTC"; + + /* Get the standard timezone name. */ + tzbuf = strdupa (tz); +@@ -225,14 +225,14 @@ + (l = strlen (tzbuf)) < 3) + goto out; + +- tz_rules[0].name = __tzstring (tzbuf); +- + tz += l; + + /* Figure out the standard offset from UTC. */ + if (*tz == '\0' || (*tz != '+' && *tz != '-' && !isdigit (*tz))) + goto out; + ++ tz_rules[0].name = __tzstring (tzbuf); ++ + if (*tz == '-' || *tz == '+') + tz_rules[0].offset = *tz++ == '-' ? 1L : -1L; + else --- glibc-2.5.orig/debian/patches/any/cvs-zdump-64-bit.diff +++ glibc-2.5/debian/patches/any/cvs-zdump-64-bit.diff @@ -0,0 +1,37 @@ +Fix for 64-bit architectures. + +=================================================================== +RCS file: /cvs/glibc/libc/timezone/zdump.c,v +retrieving revision 1.14 +retrieving revision 1.15 +diff -u -r1.14 -r1.15 +--- libc/timezone/zdump.c 2006/09/21 03:57:30 1.14 ++++ libc/timezone/zdump.c 2006/11/11 02:04:43 1.15 +@@ -418,14 +414,21 @@ + } + } else if (0 > (time_t) -1) { + /* +- ** time_t is signed. ++ ** time_t is signed. Assume overflow wraps around. + */ +- register time_t hibit; ++ time_t t = 0; ++ time_t t1 = 1; + +- for (hibit = 1; (hibit * 2) != 0; hibit *= 2) +- continue; +- absolute_min_time = hibit; +- absolute_max_time = -(hibit + 1); ++ while (t < t1) { ++ t = t1; ++ t1 = 2 * t1 + 1; ++ } ++ ++ absolute_max_time = t; ++ t = -t; ++ absolute_min_time = t - 1; ++ if (t < absolute_min_time) ++ absolute_min_time = t; + } else { + /* + ** time_t is unsigned. --- glibc-2.5.orig/debian/patches/any/local-libgcc-compat-ports.diff +++ glibc-2.5/debian/patches/any/local-libgcc-compat-ports.diff @@ -0,0 +1,383 @@ +# DP: Description: libgcc-compat symbols for mips, arm, m68k +# DP: Author: Guido Guenther, GOTO Masanori +# DP: Upstream status: Not submitted +# DP: Date: 2002-10-13, updated 2006-08-27 + +Index: ports/sysdeps/mips/mips32/libgcc-compat.c +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ ports/sysdeps/mips/mips32/libgcc-compat.c 2006-08-05 13:41:56.000000000 -0400 +@@ -0,0 +1,66 @@ ++/* pre-.hidden libgcc compatibility ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Guido Guenther ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++#include ++#include ++ ++#if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_2_6) ++ ++extern int32_t __cmpdi2 (int64_t, int64_t); ++int32_t __cmpdi2_internal (int64_t u, int64_t v) ++{ ++ return __cmpdi2 (u, v); ++} ++symbol_version (__cmpdi2_internal, __cmpdi2, GLIBC_2.0); ++ ++ ++extern int32_t __ucmpdi2 (int64_t, int64_t); ++int32_t __ucmpdi2_internal (int64_t u, int64_t v) ++{ ++ return __ucmpdi2 (u, v); ++} ++symbol_version (__ucmpdi2_internal, __ucmpdi2, GLIBC_2.0); ++ ++ ++extern int64_t __fixdfdi (double); ++int64_t __fixdfdi_internal (double d) ++{ ++ return __fixdfdi (d); ++} ++symbol_version (__fixdfdi_internal, __fixdfdi, GLIBC_2.0); ++ ++ ++extern double __floatdidf (int64_t); ++double __floatdidf_internal (int64_t u) ++{ ++ return __floatdidf (u); ++} ++symbol_version (__floatdidf_internal, __floatdidf, GLIBC_2.0); ++ ++ ++extern float floatdisf (int64_t); ++float __floatdisf_internal (int64_t u) ++{ ++ return __floatdisf (u); ++} ++symbol_version (__floatdisf_internal, __floatdisf, GLIBC_2.0); ++ ++#endif +Index: ports/sysdeps/mips/Versions +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ ports/sysdeps/mips/mips32/Versions 2006-08-05 13:41:56.000000000 -0400 +@@ -0,0 +1,8 @@ ++libc { ++ GLIBC_2.0 { ++ # Functions from libgcc. ++ __cmpdi2; __ucmpdi2; ++ __divdi3; __moddi3; __udivdi3; __umoddi3; ++ __fixdfdi; __floatdidf; __floatdisf; ++ } ++} +Index: ports/sysdeps/arm/Makefile +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ ports/sysdeps/arm/Makefile 2006-08-05 13:41:56.000000000 -0400 +@@ -0,0 +1,7 @@ ++ifeq ($(subdir),csu) ++ifeq (yes,$(build-shared)) ++# Compatibility ++sysdep_routines += libgcc-compat ++shared-only-routines += libgcc-compat ++endif ++endif +Index: ports/sysdeps/arm/Versions +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ ports/sysdeps/arm/Versions 2006-08-05 13:41:56.000000000 -0400 +@@ -0,0 +1,16 @@ ++libc { ++ GLIBC_2.0 { ++ # Functions from libgcc. ++ __ashldi3; __ashrdi3; ++ __cmpdi2; ++ __divsi3; ++ __fixdfdi; ++ __floatdidf; ++ __floatdisf; ++ __modsi3; ++ __muldi3; ++ __ucmpdi2; ++ __udivsi3; ++ __umodsi3; ++ } ++} +Index: ports/sysdeps/arm/libgcc-compat.c +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ ports/sysdeps/arm/libgcc-compat.c 2006-08-05 13:41:56.000000000 -0400 +@@ -0,0 +1,111 @@ ++/* pre-.hidden libgcc compatibility ++ Copyright (C) 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by GOTO Masanori ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++#include ++#include ++ ++#if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_2_6) ++ ++extern int64_t __ashldi3 (int64_t, int32_t); ++int64_t __ashldi3_internal (int64_t u, int32_t b) ++{ ++ return __ashldi3 (u, b); ++} ++symbol_version (__ashldi3_internal, __ashldi3, GLIBC_2.0); ++ ++extern int64_t __ashrdi3 (int64_t, int32_t); ++int32_t __ashrdi3_internal (int64_t u, int32_t b) ++{ ++ return __ashrdi3 (u, b); ++} ++symbol_version (__ashrdi3_internal, __ashrdi3, GLIBC_2.0); ++ ++extern int32_t __cmpdi2 (int64_t, int64_t); ++int32_t __cmpdi2_internal (int64_t u, int64_t v) ++{ ++ return __cmpdi2 (u, v); ++} ++symbol_version (__cmpdi2_internal, __cmpdi2, GLIBC_2.0); ++ ++extern int32_t __divsi3 (int32_t, int32_t); ++int32_t __divsi3_internal (int32_t u, int32_t v) ++{ ++ return __divsi3 (u, v); ++} ++symbol_version (__divsi3_internal, __divsi3, GLIBC_2.0); ++ ++extern int64_t __fixdfdi (double); ++int64_t __fixdfdi_internal (double d) ++{ ++ return __fixdfdi (d); ++} ++symbol_version (__fixdfdi_internal, __fixdfdi, GLIBC_2.0); ++ ++extern double __floatdidf (int64_t); ++double __floatdidf_internal (int64_t u) ++{ ++ return __floatdidf (u); ++} ++symbol_version (__floatdidf_internal, __floatdidf, GLIBC_2.0); ++ ++extern float __floatdisf (int64_t); ++float __floatdisf_internal (int64_t u) ++{ ++ return __floatdisf (u); ++} ++symbol_version (__floatdisf_internal, __floatdisf, GLIBC_2.0); ++ ++extern int32_t __modsi3 (int32_t, int32_t); ++int32_t __modsi3_internal (int32_t u, int32_t v) ++{ ++ return __modsi3 (u, v); ++} ++symbol_version (__modsi3_internal, __modsi3, GLIBC_2.0); ++ ++extern int64_t __muldi3 (int64_t, int64_t); ++int64_t __muldi3_internal (int64_t u, int64_t v) ++{ ++ return __muldi3 (u, v); ++} ++symbol_version (__muldi3_internal, __muldi3, GLIBC_2.0); ++ ++extern int32_t __ucmpdi2 (int64_t, int64_t); ++int32_t __ucmpdi2_internal (int64_t u, int64_t v) ++{ ++ return __ucmpdi2 (u, v); ++} ++symbol_version (__ucmpdi2_internal, __ucmpdi2, GLIBC_2.0); ++ ++extern int32_t __udivsi3 (int32_t, int32_t); ++int32_t __udivsi3_internal (int32_t u, int32_t v) ++{ ++ return __udivsi3 (u, v); ++} ++symbol_version (__udivsi3_internal, __udivsi3, GLIBC_2.0); ++ ++extern int32_t __umodsi3 (int32_t, int32_t); ++int32_t __umodsi3_internal (int32_t u, int32_t v) ++{ ++ return __umodsi3 (u, v); ++} ++symbol_version (__umodsi3_internal, __umodsi3, GLIBC_2.0); ++ ++#endif +Index: ports/sysdeps/m68k/Deps +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ ports/sysdeps/m68k/Deps 2006-08-05 13:41:56.000000000 -0400 +@@ -0,0 +1 @@ ++libgcc-compat.c +Index: ports/sysdeps/m68k/Makefile +=================================================================== +--- ports/sysdeps/m68k/Makefile.orig 2006-08-05 13:31:35.000000000 -0400 ++++ ports/sysdeps/m68k/Makefile 2006-08-05 13:41:56.000000000 -0400 +@@ -40,3 +40,11 @@ + # Build objects in libc_nonshared.a with -fPIC (instead of -fpic) to avoid + # possible linkage problems. + CFLAGS-.oS += -fPIC ++ ++ifeq ($(subdir),csu) ++ifeq (yes,$(build-shared)) ++# Compatibility ++sysdep_routines += libgcc-compat ++shared-only-routines += libgcc-compat ++endif ++endif +Index: ports/sysdeps/m68k/Versions +=================================================================== +--- ports/sysdeps/m68k/Versions.orig 2006-08-05 13:23:15.000000000 -0400 ++++ ports/sysdeps/m68k/Versions 2006-08-05 13:41:56.000000000 -0400 +@@ -2,6 +2,14 @@ + GLIBC_2.0 { + # Functions from libgcc. + __divdi3; __moddi3; __udivdi3; __umoddi3; ++ __ashldi3; ++ __ashrdi3; ++ __fixdfdi; ++ __fixsfdi; ++ __fixunsdfdi; ++ __fixunssfdi; ++ __floatdidf; ++ __floatdisf; + } + } + libm { +Index: ports/sysdeps/m68k/libgcc-compat.c +=================================================================== +--- /dev/null 1970-01-01 00:00:00.000000000 +0000 ++++ ports/sysdeps/m68k/libgcc-compat.c 2006-08-05 13:41:56.000000000 -0400 +@@ -0,0 +1,83 @@ ++/* pre-.hidden libgcc compatibility ++ Copyright (C) 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by GOTO Masanori ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++#include ++#include ++ ++#if SHLIB_COMPAT(libc, GLIBC_2_0, GLIBC_2_2_6) ++ ++extern int64_t __ashldi3 (int64_t, int32_t); ++int64_t __ashldi3_internal (int64_t u, int32_t b) ++{ ++ return __ashldi3 (u, b); ++} ++symbol_version (__ashldi3_internal, __ashldi3, GLIBC_2.0); ++ ++extern int64_t __ashrdi3 (int64_t, int32_t); ++int64_t __ashrdi3_internal (int64_t u, int32_t b) ++{ ++ return __ashrdi3 (u, b); ++} ++symbol_version (__ashrdi3_internal, __ashrdi3, GLIBC_2.0); ++ ++extern int64_t __fixdfdi (double); ++int64_t __fixdfdi_internal (double d) ++{ ++ return __fixdfdi (d); ++} ++symbol_version (__fixdfdi_internal, __fixdfdi, GLIBC_2.0); ++ ++extern int64_t __fixsfdi (float); ++int64_t __fixsfdi_internal (float d) ++{ ++ return __fixsfdi (d); ++} ++symbol_version (__fixsfdi_internal, __fixsfdi, GLIBC_2.0); ++ ++extern int64_t __fixunsdfdi (double); ++int64_t __fixunsdfdi_internal (double d) ++{ ++ return __fixunsdfdi (d); ++} ++symbol_version (__fixunsdfdi_internal, __fixunsdfdi, GLIBC_2.0); ++ ++extern int64_t __fixunssfdi (float); ++int64_t __fixunssfdi_internal (float d) ++{ ++ return __fixunssfdi (d); ++} ++symbol_version (__fixunssfdi_internal, __fixunssfdi, GLIBC_2.0); ++ ++extern double __floatdidf (int64_t); ++double __floatdidf_internal (int64_t u) ++{ ++ return __floatdidf (u); ++} ++symbol_version (__floatdidf_internal, __floatdidf, GLIBC_2.0); ++ ++extern float __floatdisf (int64_t); ++float __floatdisf_internal (int64_t u) ++{ ++ return __floatdisf (u); ++} ++symbol_version (__floatdisf_internal, __floatdisf, GLIBC_2.0); ++ ++#endif +Index: ports/sysdeps/mips/mips32/Makefile +=================================================================== +--- ports/sysdeps/mips/mips32/Makefile.orig 2006-08-05 13:42:10.000000000 -0400 ++++ ports/sysdeps/mips/mips32/Makefile 2006-08-05 13:42:24.000000000 -0400 +@@ -1,3 +1,11 @@ + ifeq ($(filter -mabi=32,$(CC)),) + CC += -mabi=32 + endif ++ ++ifeq ($(subdir),csu) ++ifeq (yes,$(build-shared)) ++# Compatibility ++sysdep_routines += libgcc-compat ++shared-only-routines += libgcc-compat ++endif ++endif --- glibc-2.5.orig/debian/patches/any/local-ldconfig-timestamps.diff +++ glibc-2.5/debian/patches/any/local-ldconfig-timestamps.diff @@ -0,0 +1,104 @@ +Index: elf/ldconfig.c +=================================================================== +--- elf/ldconfig.c.orig ++++ elf/ldconfig.c +@@ -81,6 +81,7 @@ + int flag; + ino64_t ino; + dev_t dev; ++ time_t last_changed; + struct dir_entry *next; + }; + +@@ -100,6 +101,7 @@ + int opt_format = 1; + + /* Build cache. */ ++/* 0: don't build cache; 1: build if not up-to-date; 2: always build it. */ + static int opt_build_cache = 1; + + /* Generate links. */ +@@ -137,6 +139,7 @@ + { "print-cache", 'p', NULL, 0, N_("Print cache"), 0}, + { "verbose", 'v', NULL, 0, N_("Generate verbose messages"), 0}, + { NULL, 'N', NULL, 0, N_("Don't build cache"), 0}, ++ { "force", 'F', NULL, 0, N_("Generate cache even if it looks up-to-date"), 0}, + { NULL, 'X', NULL, 0, N_("Don't generate links"), 0}, + { NULL, 'r', N_("ROOT"), 0, N_("Change to and use ROOT as root directory"), 0}, + { NULL, 'C', N_("CACHE"), 0, N_("Use CACHE as cache file"), 0}, +@@ -147,6 +150,9 @@ + { NULL, 0, NULL, 0, NULL, 0 } + }; + ++/* Most recent modification time of the configuration files */ ++static time_t config_timestamp = 0; ++ + #define PROCINFO_CLASS static + #include + +@@ -250,6 +256,9 @@ + case 'N': + opt_build_cache = 0; + break; ++ case 'F': ++ opt_build_cache = 2; ++ break; + case 'n': + opt_build_cache = 0; + opt_only_cline = 1; +@@ -382,6 +391,7 @@ + { + entry->ino = stat_buf.st_ino; + entry->dev = stat_buf.st_dev; ++ entry->last_changed = stat_buf.st_mtime; + + add_single_dir (entry, 1); + } +@@ -966,6 +976,26 @@ + } + } + ++/* Tells whether one of the directories is more recent than the cache */ ++static bool ++cache_needs_update (void) ++{ ++ struct stat64 stat_buf; ++ struct dir_entry *entry; ++ ++ if (stat64 (cache_file, &stat_buf)) ++ return true; ++ ++ if (config_timestamp >= stat_buf.st_mtime) ++ return true; ++ ++ for (entry = dir_entries; entry != NULL; entry = entry->next) ++ { ++ if (entry->last_changed >= stat_buf.st_mtime) ++ return true; ++ } ++ return false; ++} + + static void parse_conf_include (const char *config_file, unsigned int lineno, + bool do_chroot, const char *pattern); +@@ -1003,6 +1033,10 @@ + return; + } + ++ struct stat64 stat_buf; ++ if (!fstat64 (fileno(file), &stat_buf) && stat_buf.st_mtime > config_timestamp) ++ config_timestamp = stat_buf.st_mtime; ++ + /* No threads use this stream. */ + __fsetlocking (file, FSETLOCKING_BYCALLER); + +@@ -1293,6 +1327,9 @@ + add_system_dir (LIBDIR); + } + ++ if (opt_build_cache == 1 && !cache_needs_update ()) ++ return 0; ++ + search_dirs (); + + if (opt_build_cache) --- glibc-2.5.orig/debian/patches/any/local-linuxthreads-tst-sighandler.diff +++ glibc-2.5/debian/patches/any/local-linuxthreads-tst-sighandler.diff @@ -0,0 +1,11 @@ +--- glibc-2.4/linuxthreads/Makefile.orig 2006-08-17 01:17:00.493091863 +0200 ++++ glibc-2.4/linuxthreads/Makefile 2006-08-17 01:17:11.965907527 +0200 +@@ -111,7 +111,7 @@ + ex17 ex18 tst-cancel tst-context bug-sleep \ + tst-cancel1 tst-cancel2 tst-cancel3 tst-cancel4 tst-cancel5 \ + tst-cancel6 tst-cancel7 tst-cancel8 tst-popen tst-popen2 tst-attr1 \ +- tst-stack1 tst-align tst-tsd1 tst-sighandler1 tst-sighandler2 ++ tst-stack1 tst-align tst-tsd1 + test-srcs = tst-signal + # These tests are linked with libc before libpthread + tests-reverse += tst-cancel5 --- glibc-2.5.orig/debian/patches/any/local-stubs_h.diff +++ glibc-2.5/debian/patches/any/local-stubs_h.diff @@ -0,0 +1,11 @@ +--- glibc-2.5/include/stubs-prologue.h 2006-10-22 00:01:09.118211998 +0200 ++++ glibc-2.5/include/stubs-prologue.h 2006-10-22 00:01:24.833196462 +0200 +@@ -8,7 +8,7 @@ + every time called, usually setting errno to ENOSYS. */ + + #ifdef _LIBC +- #error Applications may not define the macro _LIBC ++# error Applications may not define the macro _LIBC + #endif + + @ Placeholder line so we remember to keep the preceding blank line here. --- glibc-2.5.orig/debian/patches/any/local-ldconfig-fsync.diff +++ glibc-2.5/debian/patches/any/local-ldconfig-fsync.diff @@ -0,0 +1,10 @@ +--- glibc-2.5/elf/cache.c.orig 2007-04-12 11:40:06.000000000 +0200 ++++ glibc-2.5/elf/cache.c 2007-04-12 11:40:42.000000000 +0200 +@@ -441,6 +441,7 @@ + if (write (fd, strings, total_strlen) != (ssize_t) total_strlen) + error (EXIT_FAILURE, errno, _("Writing of cache data failed.")); + ++ fsync(fd); + close (fd); + + /* Make sure user can always read cache file */ --- glibc-2.5.orig/debian/patches/any/cvs-printf_fp-c.diff +++ glibc-2.5/debian/patches/any/cvs-printf_fp-c.diff @@ -0,0 +1,200 @@ +2007-04-13 Jakub Jelinek + + * stdio-common/printf_fp.c (___printf_fp): Fix exponent -4 + special case handling when wcp == wstartp + 1. + +2007-02-21 Ulrich Drepper + + [BZ #4070] + * stdio-common/printf_fp.c (___printf_fp): Handle a few more + special cases. + +=================================================================== +RCS file: /cvs/glibc/libc/stdio-common/printf_fp.c,v +retrieving revision 1.58 +retrieving revision 1.61 +diff -u -r1.58 -r1.61 +--- libc/stdio-common/printf_fp.c 2006/04/25 18:38:30 1.58 ++++ libc/stdio-common/printf_fp.c 2007/02/21 08:56:40 1.61 +@@ -811,12 +811,14 @@ + int chars_needed; + int expscale; + int intdig_max, intdig_no = 0; +- int fracdig_min, fracdig_max, fracdig_no = 0; ++ int fracdig_min; ++ int fracdig_max; + int dig_max; + int significant; + int ngroups = 0; ++ char spec = _tolower (info->spec); + +- if (_tolower (info->spec) == 'e') ++ if (spec == 'e') + { + type = info->spec; + intdig_max = 1; +@@ -826,7 +828,7 @@ + dig_max = INT_MAX; /* Unlimited. */ + significant = 1; /* Does not matter here. */ + } +- else if (_tolower (info->spec) == 'f') ++ else if (spec == 'f') + { + type = 'f'; + fracdig_min = fracdig_max = info->prec < 0 ? 6 : info->prec; +@@ -887,7 +889,7 @@ + other output. If the amount of memory we have to allocate is too + large use `malloc' instead of `alloca'. */ + buffer_malloced = ! __libc_use_alloca (chars_needed * 2 * sizeof (wchar_t)); +- if (buffer_malloced) ++ if (__builtin_expect (buffer_malloced, 0)) + { + wbuffer = (wchar_t *) malloc ((2 + chars_needed) * sizeof (wchar_t)); + if (wbuffer == NULL) +@@ -923,7 +925,9 @@ + } + + /* Generate the needed number of fractional digits. */ +- while (fracdig_no < fracdig_min ++ int fracdig_no = 0; ++ int added_zeros = 0; ++ while (fracdig_no < fracdig_min + added_zeros + || (fracdig_no < fracdig_max && (fracsize > 1 || frac[0] != 0))) + { + ++fracdig_no; +@@ -934,7 +938,7 @@ + { + ++fracdig_max; + if (fracdig_min > 0) +- ++fracdig_min; ++ ++added_zeros; + } + } + +@@ -971,11 +975,23 @@ + { + /* Process fractional digits. Terminate if not rounded or + radix character is reached. */ ++ int removed = 0; + while (*--wtp != decimalwc && *wtp == L'9') +- *wtp = '0'; ++ { ++ *wtp = L'0'; ++ ++removed; ++ } ++ if (removed == fracdig_min && added_zeros > 0) ++ --added_zeros; + if (*wtp != decimalwc) + /* Round up. */ + (*wtp)++; ++ else if (__builtin_expect (spec == 'g' && type == 'f' && info->alt, ++ 0)) ++ /* This is a special case: the rounded number is 1.0, ++ the format is 'g' or 'G', and the alternative format ++ is selected. This means the result mist be "1.". */ ++ --added_zeros; + } + + if (fracdig_no == 0 || *wtp == decimalwc) +@@ -1042,7 +1058,7 @@ + + do_expo: + /* Now remove unnecessary '0' at the end of the string. */ +- while (fracdig_no > fracdig_min && *(wcp - 1) == L'0') ++ while (fracdig_no > fracdig_min + added_zeros && *(wcp - 1) == L'0') + { + --wcp; + --fracdig_no; +@@ -1060,26 +1076,46 @@ + /* Write the exponent if it is needed. */ + if (type != 'f') + { +- *wcp++ = (wchar_t) type; +- *wcp++ = expsign ? L'-' : L'+'; +- +- /* Find the magnitude of the exponent. */ +- expscale = 10; +- while (expscale <= exponent) +- expscale *= 10; +- +- if (exponent < 10) +- /* Exponent always has at least two digits. */ +- *wcp++ = L'0'; ++ if (__builtin_expect (expsign != 0 && exponent == 4 && spec == 'g', 0)) ++ { ++ /* This is another special case. The exponent of the number is ++ really smaller than -4, which requires the 'e'/'E' format. ++ But after rounding the number has an exponent of -4. */ ++ assert (wcp >= wstartp + 1); ++ assert (wstartp[0] == L'1'); ++ __wmemcpy (wstartp, L"0.0001", 6); ++ wstartp[1] = decimalwc; ++ if (wcp >= wstartp + 2) ++ { ++ wmemset (wstartp + 6, L'0', wcp - (wstartp + 2)); ++ wcp += 4; ++ } ++ else ++ wcp += 5; ++ } + else +- do +- { +- expscale /= 10; +- *wcp++ = L'0' + (exponent / expscale); +- exponent %= expscale; +- } +- while (expscale > 10); +- *wcp++ = L'0' + exponent; ++ { ++ *wcp++ = (wchar_t) type; ++ *wcp++ = expsign ? L'-' : L'+'; ++ ++ /* Find the magnitude of the exponent. */ ++ expscale = 10; ++ while (expscale <= exponent) ++ expscale *= 10; ++ ++ if (exponent < 10) ++ /* Exponent always has at least two digits. */ ++ *wcp++ = L'0'; ++ else ++ do ++ { ++ expscale /= 10; ++ *wcp++ = L'0' + (exponent / expscale); ++ exponent %= expscale; ++ } ++ while (expscale > 10); ++ *wcp++ = L'0' + exponent; ++ } + } + + /* Compute number of characters which must be filled with the padding +@@ -1120,15 +1156,14 @@ + else + thousands_sep_len = strlen (thousands_sep); + +- if (buffer_malloced) ++ if (__builtin_expect (buffer_malloced, 0)) + { + buffer = (char *) malloc (2 + chars_needed + decimal_len + + ngroups * thousands_sep_len); + if (buffer == NULL) + { + /* Signal an error to the caller. */ +- if (buffer_malloced) +- free (wbuffer); ++ free (wbuffer); + return -1; + } + } +@@ -1162,7 +1197,7 @@ + PRINT (tmpptr, wstartp, wide ? wcp - wstartp : cp - tmpptr); + + /* Free the memory if necessary. */ +- if (buffer_malloced) ++ if (__builtin_expect (buffer_malloced, 0)) + { + free (buffer); + free (wbuffer); --- glibc-2.5.orig/debian/patches/any/submitted-strfry.diff +++ glibc-2.5/debian/patches/any/submitted-strfry.diff @@ -0,0 +1,29 @@ +Turn strfry() into a proper Fisher-Yates shuffle. This gives us exactly +n! paths for a string with N characters, and since there are n! possible +permutations, we get a one-to-one mapping, and all possibilities are +equally likely. + +--- string/strfry.c 2007-04-21 23:12:47.000000000 +0200 ++++ string/strfry.c 2007-04-21 23:22:46.000000000 +0200 +@@ -38,17 +38,17 @@ + } + + len = strlen (string); +- for (i = 0; i < len; ++i) ++ for (i = 0; i < len - 1; ++i) + { + int32_t j; + char c; + + __random_r (&rdata, &j); +- j %= len; ++ j %= (len - i); + + c = string[i]; +- string[i] = string[j]; +- string[j] = c; ++ string[i] = string[j + i]; ++ string[j + i] = c; + } + + return string; --- glibc-2.5.orig/debian/patches/any/submitted-unistd_XOPEN_VERSION.diff +++ glibc-2.5/debian/patches/any/submitted-unistd_XOPEN_VERSION.diff @@ -0,0 +1,25 @@ +# Debian: #203412 +# Upstream: http://sourceware.org/bugzilla/show_bug.cgi?id=4364 +# +Index: glibc-2.5/posix/unistd.h +=================================================================== +--- glibc-2.5.orig/posix/unistd.h 2007-04-15 01:39:35.612383707 +0200 ++++ glibc-2.5/posix/unistd.h 2007-04-15 01:40:56.028966387 +0200 +@@ -56,10 +56,14 @@ + #define _POSIX2_LOCALEDEF 200112L + + /* X/Open version number to which the library conforms. It is selectable. */ +-#ifdef __USE_UNIX98 +-# define _XOPEN_VERSION 500 ++#ifdef __USE_XOPEN2K ++# define _XOPEN_VERSION 600 + #else +-# define _XOPEN_VERSION 4 ++# ifdef __USE_UNIX98 ++# define _XOPEN_VERSION 500 ++# else ++# define _XOPEN_VERSION 4 ++# endif + #endif + + /* Commands and utilities from XPG4 are available. */ --- glibc-2.5.orig/debian/patches/any/submitted-iconv-colon.diff +++ glibc-2.5/debian/patches/any/submitted-iconv-colon.diff @@ -0,0 +1,22 @@ +--- iconv/gconv_charset.h 2005-12-21 08:27:27.000000000 +0100 ++++ iconv/gconv_charset.h 2007-04-22 00:57:25.000000000 +0200 +@@ -30,7 +30,7 @@ + while (*s != '\0') + { + if (__isalnum_l (*s, _nl_C_locobj_ptr) +- || *s == '_' || *s == '-' || *s == '.' || *s == ',') ++ || *s == '_' || *s == '-' || *s == '.' || *s == ',' || *s == ':') + *wp++ = __toupper_l (*s, _nl_C_locobj_ptr); + else if (*s == '/') + { +--- iconv/iconv_open.c 2001-11-29 05:57:52.000000000 +0100 ++++ iconv/iconv_open.c 2007-04-22 00:59:08.000000000 +0200 +@@ -38,7 +38,7 @@ + int res; + + /* Normalize the name. We remove all characters beside alpha-numeric, +- '_', '-', '/', and '.'. */ ++ '_', '-', '/', '.' and ':'. */ + tocode_len = strlen (tocode); + tocode_conv = (char *) alloca (tocode_len + 3); + strip (tocode_conv, tocode); --- glibc-2.5.orig/debian/patches/any/local-disable-nscd-host-caching.diff +++ glibc-2.5/debian/patches/any/local-disable-nscd-host-caching.diff @@ -0,0 +1,15 @@ +Index: glibc-2.5/nscd/nscd.conf +=================================================================== +--- glibc-2.5.orig/nscd/nscd.conf ++++ glibc-2.5/nscd/nscd.conf +@@ -60,7 +60,9 @@ + max-db-size group 33554432 + auto-propagate group yes + +- enable-cache hosts yes ++ # hosts caching is broken with gethostby* calls, hence is now disabled ++ # per default. See /usr/share/doc/nscd/NEWS.Debian. ++ enable-cache hosts no + positive-time-to-live hosts 3600 + negative-time-to-live hosts 20 + suggested-size hosts 211 --- glibc-2.5.orig/debian/patches/any/cvs-bits_in_h-ipv6.diff +++ glibc-2.5/debian/patches/any/cvs-bits_in_h-ipv6.diff @@ -0,0 +1,34 @@ +2007-04-19 Andreas Jaeger + + [BZ #3905] + * bits/in.h (IPV6_ROUTER_ALERT, IPV6_MTU_DISCOVER, IPV6_MTU, + IPV6_RECVERR, IPV6_V6ONLY, IPV6_JOIN_ANYCAST, IPV6_LEAVE_ANYCAST): + Added. + +=================================================================== +RCS file: /cvs/glibc/libc/bits/in.h,v +retrieving revision 1.8 +retrieving revision 1.9 +diff -u -r1.8 -r1.9 +--- libc/bits/in.h 2004/08/10 22:05:17 1.8 ++++ libc/bits/in.h 2007/04/20 16:02:16 1.9 +@@ -1,4 +1,4 @@ +-/* Copyright (C) 1997, 2000, 2004 Free Software Foundation, Inc. ++/* Copyright (C) 1997, 2000, 2004, 2007 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -68,6 +68,13 @@ + #define IPV6_MULTICAST_LOOP 19 + #define IPV6_JOIN_GROUP 20 + #define IPV6_LEAVE_GROUP 21 ++#define IPV6_ROUTER_ALERT 22 ++#define IPV6_MTU_DISCOVER 23 ++#define IPV6_MTU 24 ++#define IPV6_RECVERR 25 ++#define IPV6_V6ONLY 26 ++#define IPV6_JOIN_ANYCAST 27 ++#define IPV6_LEAVE_ANYCAST 28 + + /* Obsolete synonyms for the above. */ + #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP --- glibc-2.5.orig/debian/patches/any/cvs-scanf_hexfloat.diff +++ glibc-2.5/debian/patches/any/cvs-scanf_hexfloat.diff @@ -0,0 +1,35 @@ +Index: glibc-2.5/stdio-common/tstscanf.c +=================================================================== +--- glibc-2.5.orig/stdio-common/tstscanf.c ++++ glibc-2.5/stdio-common/tstscanf.c +@@ -1,4 +1,4 @@ +-/* Copyright (C) 1991,92,96,97,98,99,2000,2001 Free Software Foundation, Inc. ++/* Copyright (C) 1991,92,1996-2001,2007 Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -272,7 +272,7 @@ + res = sscanf ("0x1234", "%lf", &d); + printf ("res = %d, d = %f\n", res, d); + +- if (res != 0 || d != 123456.789) ++ if (res != 1 || d != 4660) + { + fputs ("test failed!\n", stdout); + result = 1; +Index: glibc-2.5/stdio-common/vfscanf.c +=================================================================== +--- glibc-2.5.orig/stdio-common/vfscanf.c ++++ glibc-2.5/stdio-common/vfscanf.c +@@ -1888,9 +1888,9 @@ + + /* Have we read any character? If we try to read a number + in hexadecimal notation and we have read only the `0x' +- prefix or no exponent this is an error. */ ++ prefix this is an error. */ + if (__builtin_expect (wpsize == 0 +- || (is_hexa && (wpsize == 2 || ! got_e)), 0)) ++ || (is_hexa && wpsize == 2), 0)) + conv_error (); + + scan_float: --- glibc-2.5.orig/debian/patches/any/cvs-realpath.diff +++ glibc-2.5/debian/patches/any/cvs-realpath.diff @@ -0,0 +1,30 @@ +2007-04-17 Ulrich Drepper + + [BZ #4368] + * stdlib/stdlib.h: Remove obsolete part of comment for realpath. + +=================================================================== +RCS file: /cvs/glibc/libc/stdlib/stdlib.h,v +retrieving revision 1.116 +retrieving revision 1.117 +diff -u -r1.116 -r1.117 +--- libc/stdlib/stdlib.h 2007/03/17 17:04:06 1.116 ++++ libc/stdlib/stdlib.h 2007/04/17 18:35:42 1.117 +@@ -747,12 +747,11 @@ + #endif + + #if defined __USE_BSD || defined __USE_XOPEN_EXTENDED +-/* Return the canonical absolute name of file NAME. The last file name +- component need not exist, and may be a symlink to a nonexistent file. +- If RESOLVED is null, the result is malloc'd; otherwise, if the canonical +- name is PATH_MAX chars or more, returns null with `errno' set to +- ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars, returns the +- name in RESOLVED. */ ++/* Return the canonical absolute name of file NAME. If RESOLVED is ++ null, the result is malloc'd; otherwise, if the canonical name is ++ PATH_MAX chars or more, returns null with `errno' set to ++ ENAMETOOLONG; if the name fits in fewer than PATH_MAX chars, ++ returns the name in RESOLVED. */ + extern char *realpath (__const char *__restrict __name, + char *__restrict __resolved) __THROW __wur; + #endif --- glibc-2.5.orig/debian/patches/any/cvs-glob-c.diff +++ glibc-2.5/debian/patches/any/cvs-glob-c.diff @@ -0,0 +1,586 @@ +=================================================================== +RCS file: /cvs/glibc/libc/posix/glob.c,v +retrieving revision 1.72 +retrieving revision 1.73 +Index: glibc-2.5/posix/glob.c +=================================================================== +--- glibc-2.5.orig/posix/glob.c 2007-04-13 13:31:26.629689784 +0200 ++++ glibc-2.5/posix/glob.c 2007-04-15 02:43:02.147008076 +0200 +@@ -1,4 +1,5 @@ +-/* Copyright (C) 1991-2002,2003,2004,2005,2006 Free Software Foundation, Inc. ++/* Copyright (C) 1991-2002, 2003, 2004, 2005, 2006, 2007 ++ Free Software Foundation, Inc. + This file is part of the GNU C Library. + + The GNU C Library is free software; you can redistribute it and/or +@@ -192,9 +193,15 @@ + + #endif /* !defined _LIBC || !defined GLOB_ONLY_P */ + ++#ifndef attribute_hidden ++# define attribute_hidden ++#endif ++ + static int glob_in_dir (const char *pattern, const char *directory, + int flags, int (*errfunc) (const char *, int), + glob_t *pglob); ++extern int __glob_pattern_type (const char *pattern, int quote) ++ attribute_hidden; + + #if !defined _LIBC || !defined GLOB_ONLY_P + static int prefix_array (const char *prefix, char **array, size_t n) __THROW; +@@ -250,6 +257,9 @@ + size_t dirlen; + int status; + size_t oldcount; ++ int meta; ++ int dirname_modified; ++ glob_t dirs; + + if (pattern == NULL || pglob == NULL || (flags & ~__GLOB_FLAGS) != 0) + { +@@ -418,6 +428,7 @@ + if (filename == NULL) + filename = strchr (pattern, ':'); + #endif /* __MSDOS__ || WINDOWS32 */ ++ dirname_modified = 0; + if (filename == NULL) + { + /* This can mean two things: a simple name or "~name". The latter +@@ -486,10 +497,32 @@ + && dirlen > 1) + /* "pattern/". Expand "pattern", appending slashes. */ + { ++ int orig_flags = flags; ++ if (!(flags & GLOB_NOESCAPE) && dirname[dirlen - 1] == '\\') ++ { ++ /* "pattern\\/". Remove the final backslash if it hasn't ++ been quoted. */ ++ char *p = (char *) &dirname[dirlen - 1]; ++ ++ while (p > dirname && p[-1] == '\\') --p; ++ if ((&dirname[dirlen] - p) & 1) ++ { ++ *(char *) &dirname[--dirlen] = '\0'; ++ flags &= ~(GLOB_NOCHECK | GLOB_NOMAGIC); ++ } ++ } + int val = glob (dirname, flags | GLOB_MARK, errfunc, pglob); + if (val == 0) + pglob->gl_flags = ((pglob->gl_flags & ~GLOB_MARK) + | (flags & GLOB_MARK)); ++ else if (val == GLOB_NOMATCH && flags != orig_flags) ++ { ++ /* Make sure globfree (&dirs); is a nop. */ ++ dirs.gl_pathv = NULL; ++ flags = orig_flags; ++ oldcount = pglob->gl_pathc + pglob->gl_offs; ++ goto no_matches; ++ } + return val; + } + } +@@ -517,7 +550,9 @@ + #ifndef VMS + if ((flags & (GLOB_TILDE|GLOB_TILDE_CHECK)) && dirname[0] == '~') + { +- if (dirname[1] == '\0' || dirname[1] == '/') ++ if (dirname[1] == '\0' || dirname[1] == '/' ++ || (!(flags & GLOB_NOESCAPE) && dirname[1] == '\\' ++ && (dirname[2] == '\0' || dirname[2] == '/'))) + { + /* Look up home directory. */ + const char *home_dir = getenv ("HOME"); +@@ -594,7 +629,10 @@ + # endif + /* Now construct the full directory. */ + if (dirname[1] == '\0') +- dirname = home_dir; ++ { ++ dirname = home_dir; ++ dirlen = strlen (dirname); ++ } + else + { + char *newp; +@@ -603,7 +641,9 @@ + mempcpy (mempcpy (newp, home_dir, home_len), + &dirname[1], dirlen); + dirname = newp; ++ dirlen += home_len - 1; + } ++ dirname_modified = 1; + } + # if !defined _AMIGA && !defined WINDOWS32 + else +@@ -611,15 +651,52 @@ + char *end_name = strchr (dirname, '/'); + const char *user_name; + const char *home_dir; ++ char *unescape = NULL; + ++ if (!(flags & GLOB_NOESCAPE)) ++ { ++ if (end_name == NULL) ++ { ++ unescape = strchr (dirname, '\\'); ++ if (unescape) ++ end_name = strchr (unescape, '\0'); ++ } ++ else ++ unescape = memchr (dirname, '\\', end_name - dirname); ++ } + if (end_name == NULL) + user_name = dirname + 1; + else + { + char *newp; + newp = (char *) __alloca (end_name - dirname); +- *((char *) mempcpy (newp, dirname + 1, end_name - dirname)) +- = '\0'; ++ if (unescape != NULL) ++ { ++ char *p = mempcpy (newp, dirname + 1, ++ unescape - dirname - 1); ++ char *q = unescape; ++ while (*q != '\0') ++ { ++ if (*q == '\\') ++ { ++ if (q[1] == '\0') ++ { ++ /* "~fo\\o\\" unescape to user_name "foo\\", ++ but "~fo\\o\\/" unescape to user_name ++ "foo". */ ++ if (filename == NULL) ++ *p++ = '\\'; ++ break; ++ } ++ ++q; ++ } ++ *p++ = *q++; ++ } ++ *p = '\0'; ++ } ++ else ++ *((char *) mempcpy (newp, dirname + 1, end_name - dirname)) ++ = '\0'; + user_name = newp; + } + +@@ -673,6 +750,8 @@ + *((char *) mempcpy (mempcpy (newp, home_dir, home_len), + end_name, rest_len)) = '\0'; + dirname = newp; ++ dirlen = home_len + rest_len; ++ dirname_modified = 1; + } + else + if (flags & GLOB_TILDE_CHECK) +@@ -714,9 +793,22 @@ + } + pglob->gl_pathv = new_gl_pathv; + +- pglob->gl_pathv[newcount] = strdup (dirname); +- if (pglob->gl_pathv[newcount] == NULL) +- goto nospace; ++ if (flags & GLOB_MARK) ++ { ++ char *p; ++ pglob->gl_pathv[newcount] = malloc (dirlen + 2); ++ if (pglob->gl_pathv[newcount] == NULL) ++ goto nospace; ++ p = mempcpy (pglob->gl_pathv[newcount], dirname, dirlen); ++ p[0] = '/'; ++ p[1] = '\0'; ++ } ++ else ++ { ++ pglob->gl_pathv[newcount] = strdup (dirname); ++ if (pglob->gl_pathv[newcount] == NULL) ++ goto nospace; ++ } + pglob->gl_pathv[++newcount] = NULL; + ++pglob->gl_pathc; + pglob->gl_flags = flags; +@@ -728,14 +820,30 @@ + return GLOB_NOMATCH; + } + +- if (__glob_pattern_p (dirname, !(flags & GLOB_NOESCAPE))) ++ meta = __glob_pattern_type (dirname, !(flags & GLOB_NOESCAPE)); ++ /* meta is 1 if correct glob pattern containing metacharacters. ++ If meta has bit (1 << 2) set, it means there was an unterminated ++ [ which we handle the same, using fnmatch. Broken unterminated ++ pattern bracket expressions ought to be rare enough that it is ++ not worth special casing them, fnmatch will do the right thing. */ ++ if (meta & 5) + { + /* The directory name contains metacharacters, so we + have to glob for the directory, and then glob for + the pattern in each directory found. */ +- glob_t dirs; + size_t i; + ++ if (!(flags & GLOB_NOESCAPE) && dirlen > 0 && dirname[dirlen - 1] == '\\') ++ { ++ /* "foo\\/bar". Remove the final backslash from dirname ++ if it has not been quoted. */ ++ char *p = (char *) &dirname[dirlen - 1]; ++ ++ while (p > dirname && p[-1] == '\\') --p; ++ if ((&dirname[dirlen] - p) & 1) ++ *(char *) &dirname[--dirlen] = '\0'; ++ } ++ + if ((flags & GLOB_ALTDIRFUNC) != 0) + { + /* Use the alternative access functions also in the recursive +@@ -748,12 +856,16 @@ + } + + status = glob (dirname, +- ((flags & (GLOB_ERR | GLOB_NOCHECK | GLOB_NOESCAPE ++ ((flags & (GLOB_ERR | GLOB_NOESCAPE + | GLOB_ALTDIRFUNC)) + | GLOB_NOSORT | GLOB_ONLYDIR), + errfunc, &dirs); + if (status != 0) +- return status; ++ { ++ if ((flags & GLOB_NOCHECK) == 0 || status != GLOB_NOMATCH) ++ return status; ++ goto no_matches; ++ } + + /* We have successfully globbed the preceding directory name. + For each name we found, call glob_in_dir on it and FILENAME, +@@ -811,6 +923,7 @@ + flag was set we must return the input pattern itself. */ + if (pglob->gl_pathc + pglob->gl_offs == oldcount) + { ++ no_matches: + /* No matches. */ + if (flags & GLOB_NOCHECK) + { +@@ -854,10 +967,44 @@ + else + { + int old_pathc = pglob->gl_pathc; ++ int orig_flags = flags; + ++ if (meta & 2) ++ { ++ char *p = strchr (dirname, '\\'), *q; ++ /* We need to unescape the dirname string. It is certainly ++ allocated by alloca, as otherwise filename would be NULL ++ or dirname wouldn't contain backslashes. */ ++ q = p; ++ do ++ { ++ if (*p == '\\') ++ { ++ *q = *++p; ++ --dirlen; ++ } ++ else ++ *q = *p; ++ ++q; ++ } ++ while (*p++ != '\0'); ++ dirname_modified = 1; ++ } ++ if (dirname_modified) ++ flags &= ~(GLOB_NOCHECK | GLOB_NOMAGIC); + status = glob_in_dir (filename, dirname, flags, errfunc, pglob); + if (status != 0) +- return status; ++ { ++ if (status == GLOB_NOMATCH && flags != orig_flags ++ && pglob->gl_pathc + pglob->gl_offs == oldcount) ++ { ++ /* Make sure globfree (&dirs); is a nop. */ ++ dirs.gl_pathv = NULL; ++ flags = orig_flags; ++ goto no_matches; ++ } ++ return status; ++ } + + if (dirlen > 0) + { +@@ -1015,15 +1162,13 @@ + + /* We must not compile this function twice. */ + #if !defined _LIBC || !defined NO_GLOB_PATTERN_P +-/* Return nonzero if PATTERN contains any metacharacters. +- Metacharacters can be quoted with backslashes if QUOTE is nonzero. */ + int +-__glob_pattern_p (pattern, quote) ++__glob_pattern_type (pattern, quote) + const char *pattern; + int quote; + { + register const char *p; +- int open = 0; ++ int ret = 0; + + for (p = pattern; *p != '\0'; ++p) + switch (*p) +@@ -1033,21 +1178,35 @@ + return 1; + + case '\\': +- if (quote && p[1] != '\0') +- ++p; ++ if (quote) ++ { ++ if (p[1] != '\0') ++ ++p; ++ ret |= 2; ++ } + break; + + case '[': +- open = 1; ++ ret |= 4; + break; + + case ']': +- if (open) ++ if (ret & 4) + return 1; + break; + } + +- return 0; ++ return ret; ++} ++ ++/* Return nonzero if PATTERN contains any metacharacters. ++ Metacharacters can be quoted with backslashes if QUOTE is nonzero. */ ++int ++__glob_pattern_p (pattern, quote) ++ const char *pattern; ++ int quote; ++{ ++ return __glob_pattern_type (pattern, quote) == 1; + } + # ifdef _LIBC + weak_alias (__glob_pattern_p, glob_pattern_p) +@@ -1109,7 +1268,7 @@ + init_names.next = NULL; + init_names.count = INITIAL_COUNT; + +- meta = __glob_pattern_p (pattern, !(flags & GLOB_NOESCAPE)); ++ meta = __glob_pattern_type (pattern, !(flags & GLOB_NOESCAPE)); + if (meta == 0 && (flags & (GLOB_NOCHECK|GLOB_NOMAGIC))) + { + /* We need not do any tests. The PATTERN contains no meta +@@ -1117,8 +1276,7 @@ + result will always contain exactly one name. */ + flags |= GLOB_NOCHECK; + } +- else if (meta == 0 && +- ((flags & GLOB_NOESCAPE) || strchr (pattern, '\\') == NULL)) ++ else if (meta == 0) + { + /* Since we use the normal file functions we can also use stat() + to verify the file is there. */ +@@ -1139,119 +1297,104 @@ + } + else + { +- if (pattern[0] == '\0') ++ stream = ((flags & GLOB_ALTDIRFUNC) ++ ? (*pglob->gl_opendir) (directory) ++ : opendir (directory)); ++ if (stream == NULL) + { +- /* This is a special case for matching directories like in +- "*a/". */ +- names->name[cur] = (char *) malloc (1); +- if (names->name[cur] == NULL) +- goto memory_error; +- *names->name[cur++] = '\0'; +- nfound = 1; +- meta = 0; ++ if (errno != ENOTDIR ++ && ((errfunc != NULL && (*errfunc) (directory, errno)) ++ || (flags & GLOB_ERR))) ++ return GLOB_ABORTED; + } + else + { +- stream = ((flags & GLOB_ALTDIRFUNC) +- ? (*pglob->gl_opendir) (directory) +- : opendir (directory)); +- if (stream == NULL) +- { +- if (errno != ENOTDIR +- && ((errfunc != NULL && (*errfunc) (directory, errno)) +- || (flags & GLOB_ERR))) +- return GLOB_ABORTED; +- meta = 0; +- } +- else +- { +- int fnm_flags = ((!(flags & GLOB_PERIOD) ? FNM_PERIOD : 0) +- | ((flags & GLOB_NOESCAPE) ? FNM_NOESCAPE : 0) ++ int fnm_flags = ((!(flags & GLOB_PERIOD) ? FNM_PERIOD : 0) ++ | ((flags & GLOB_NOESCAPE) ? FNM_NOESCAPE : 0) + #if defined _AMIGA || defined VMS +- | FNM_CASEFOLD ++ | FNM_CASEFOLD + #endif +- ); +- flags |= GLOB_MAGCHAR; ++ ); ++ flags |= GLOB_MAGCHAR; + +- while (1) +- { +- const char *name; +- size_t len; ++ while (1) ++ { ++ const char *name; ++ size_t len; + #if defined _LIBC && !defined COMPILE_GLOB64 +- struct dirent64 *d; +- union +- { +- struct dirent64 d64; +- char room [offsetof (struct dirent64, d_name[0]) +- + NAME_MAX + 1]; +- } +- d64buf; ++ struct dirent64 *d; ++ union ++ { ++ struct dirent64 d64; ++ char room [offsetof (struct dirent64, d_name[0]) ++ + NAME_MAX + 1]; ++ } ++ d64buf; + +- if (flags & GLOB_ALTDIRFUNC) ++ if (flags & GLOB_ALTDIRFUNC) ++ { ++ struct dirent *d32 = (*pglob->gl_readdir) (stream); ++ if (d32 != NULL) + { +- struct dirent *d32 = (*pglob->gl_readdir) (stream); +- if (d32 != NULL) +- { +- CONVERT_DIRENT_DIRENT64 (&d64buf.d64, d32); +- d = &d64buf.d64; +- } +- else +- d = NULL; ++ CONVERT_DIRENT_DIRENT64 (&d64buf.d64, d32); ++ d = &d64buf.d64; + } + else +- d = __readdir64 (stream); ++ d = NULL; ++ } ++ else ++ d = __readdir64 (stream); + #else +- struct dirent *d = ((flags & GLOB_ALTDIRFUNC) +- ? ((struct dirent *) +- (*pglob->gl_readdir) (stream)) +- : __readdir (stream)); ++ struct dirent *d = ((flags & GLOB_ALTDIRFUNC) ++ ? ((struct dirent *) ++ (*pglob->gl_readdir) (stream)) ++ : __readdir (stream)); + #endif +- if (d == NULL) +- break; +- if (! REAL_DIR_ENTRY (d)) +- continue; ++ if (d == NULL) ++ break; ++ if (! REAL_DIR_ENTRY (d)) ++ continue; + +- /* If we shall match only directories use the information +- provided by the dirent call if possible. */ +- if ((flags & GLOB_ONLYDIR) && !DIRENT_MIGHT_BE_DIR (d)) +- continue; ++ /* If we shall match only directories use the information ++ provided by the dirent call if possible. */ ++ if ((flags & GLOB_ONLYDIR) && !DIRENT_MIGHT_BE_DIR (d)) ++ continue; + +- name = d->d_name; ++ name = d->d_name; + +- if (fnmatch (pattern, name, fnm_flags) == 0) ++ if (fnmatch (pattern, name, fnm_flags) == 0) ++ { ++ /* If the file we found is a symlink we have to ++ make sure the target file exists. */ ++ if (!DIRENT_MIGHT_BE_SYMLINK (d) ++ || link_exists_p (directory, dirlen, name, pglob, ++ flags)) + { +- /* If the file we found is a symlink we have to +- make sure the target file exists. */ +- if (!DIRENT_MIGHT_BE_SYMLINK (d) +- || link_exists_p (directory, dirlen, name, pglob, +- flags)) ++ if (cur == names->count) + { +- if (cur == names->count) +- { +- struct globnames *newnames; +- size_t count = names->count * 2; +- size_t size = (sizeof (struct globnames) +- + ((count - INITIAL_COUNT) +- * sizeof (char *))); +- allocasize += size; +- if (__libc_use_alloca (allocasize)) +- newnames = names_alloca = __alloca (size); +- else if ((newnames = malloc (size)) +- == NULL) +- goto memory_error; +- newnames->count = count; +- newnames->next = names; +- names = newnames; +- cur = 0; +- } +- len = NAMLEN (d); +- names->name[cur] = (char *) malloc (len + 1); +- if (names->name[cur] == NULL) ++ struct globnames *newnames; ++ size_t count = names->count * 2; ++ size_t size = (sizeof (struct globnames) ++ + ((count - INITIAL_COUNT) ++ * sizeof (char *))); ++ allocasize += size; ++ if (__libc_use_alloca (allocasize)) ++ newnames = names_alloca = __alloca (size); ++ else if ((newnames = malloc (size)) ++ == NULL) + goto memory_error; +- *((char *) mempcpy (names->name[cur++], name, len)) +- = '\0'; +- ++nfound; ++ newnames->count = count; ++ newnames->next = names; ++ names = newnames; ++ cur = 0; + } ++ len = NAMLEN (d); ++ names->name[cur] = (char *) malloc (len + 1); ++ if (names->name[cur] == NULL) ++ goto memory_error; ++ *((char *) mempcpy (names->name[cur++], name, len)) ++ = '\0'; ++ ++nfound; + } + } + } --- glibc-2.5.orig/debian/patches/any/submitted-gethostbyname_r.diff +++ glibc-2.5/debian/patches/any/submitted-gethostbyname_r.diff @@ -0,0 +1,32 @@ +--- resolv/nss_dns/dns-host.c.orig 2007-04-16 00:13:12.000000000 +0200 ++++ resolv/nss_dns/dns-host.c 2007-04-16 00:34:41.000000000 +0200 +@@ -78,6 +78,7 @@ + #include + #include + #include ++#include + #include + + #include "nsswitch.h" +@@ -465,8 +466,8 @@ + char *aliases[MAX_NR_ALIASES]; + unsigned char host_addr[16]; /* IPv4 or IPv6 */ + char *h_addr_ptrs[0]; +- } *host_data = (struct host_data *) buffer; +- int linebuflen = buflen - sizeof (struct host_data); ++ } *host_data; ++ int linebuflen; + register const HEADER *hp; + const u_char *end_of_message, *cp; + int n, ancount, qdcount; +@@ -479,6 +480,10 @@ + int have_to_map = 0; + int32_t ttl = 0; + ++ /* Align the buffer. */ ++ host_data = (struct host_data *) __PTR_ALIGN(0, buffer, sizeof(char*) - 1); ++ linebuflen = buflen - sizeof (struct host_data) - ((char *)host_data - buffer); ++ + if (__builtin_expect (linebuflen, 0) < 0) + { + /* The buffer is too small. */ --- glibc-2.5.orig/debian/patches/arm/cvs-gcc4-inline.diff +++ glibc-2.5/debian/patches/arm/cvs-gcc4-inline.diff @@ -0,0 +1,34 @@ +#! /bin/sh -e + +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Make glibc-2.3.5 compile with gcc-4.0 on arm for inline +# functions of dl-machine.h. +# DP: Related bugs: +# DP: Dpatch author: GOTO Masanori +# DP: Patch author: Dan Kegel +# DP: Upstream status: In CVS / Debian-Specific +# DP: Status Details: +# DP: Date: 2005-07-16 + +Fetched from: http://kegel.com/crosstool/crosstool-0.37/patches/glibc-2.3.5/glibc-2.3.4-allow-gcc-4.0-arm.patch + +Index: ports/sysdeps/arm/dl-machine.h +=================================================================== +--- ports/sysdeps/arm/dl-machine.h.orig ++++ ports/sysdeps/arm/dl-machine.h +@@ -288,7 +288,14 @@ + #ifdef RESOLVE_MAP + + /* Deal with an out-of-range PC24 reloc. */ +-auto Elf32_Addr ++#if __GNUC__ >= 4 ++ auto inline Elf32_Addr ++#else ++ static inline Elf32_Addr ++#endif ++#if __GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 2) ++ __attribute ((always_inline)) ++#endif + fix_bad_pc24 (Elf32_Addr *const reloc_addr, Elf32_Addr value) + { + static void *fix_page; --- glibc-2.5.orig/debian/patches/arm/local-ioperm.diff +++ glibc-2.5/debian/patches/arm/local-ioperm.diff @@ -0,0 +1,17 @@ +# DP: Description: fix ioperm build error on arm + +Index: ports/sysdeps/unix/sysv/linux/arm/ioperm.c +=================================================================== +--- ports/sysdeps/unix/sysv/linux/arm/ioperm.c.orig ++++ ports/sysdeps/unix/sysv/linux/arm/ioperm.c +@@ -107,8 +107,8 @@ + { + char systype[256]; + int i, n; +- static int iobase_name[] = { CTL_BUS, BUS_ISA, BUS_ISA_PORT_BASE }; +- static int ioshift_name[] = { CTL_BUS, BUS_ISA, BUS_ISA_PORT_SHIFT }; ++ static int iobase_name[] = { CTL_BUS, CTL_BUS_ISA, BUS_ISA_PORT_BASE }; ++ static int ioshift_name[] = { CTL_BUS, CTL_BUS_ISA, BUS_ISA_PORT_SHIFT }; + size_t len = sizeof(io.base); + + if (! sysctl (iobase_name, 3, &io.io_base, &len, NULL, 0) --- glibc-2.5.orig/debian/patches/arm/cvs-check_pf.c +++ glibc-2.5/debian/patches/arm/cvs-check_pf.c @@ -0,0 +1,288 @@ +2007-01-08 Daniel Jacobowitz + + * sysdeps/unix/sysv/linux/arm/check_pf.c: New file. + * sysdeps/unix/sysv/linux/arm/eabi/check_pf.c: New file. + +diff -Nurd ports/sysdeps/unix/sysv/linux/arm/check_pf.c ports/sysdeps/unix/sysv/linux/arm/check_pf.c +--- ports/sysdeps/unix/sysv/linux/arm/check_pf.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/sysv/linux/arm/check_pf.c 2007-04-23 11:08:58.000000000 +0200 +@@ -0,0 +1,274 @@ ++/* Determine protocol families for which interfaces exist. ARM Linux version. ++ Copyright (C) 2003, 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include ++ ++ ++#ifndef IFA_F_TEMPORARY ++# define IFA_F_TEMPORARY IFA_F_SECONDARY ++#endif ++#ifndef IFA_F_HOMEADDRESS ++# define IFA_F_HOMEADDRESS 0 ++#endif ++ ++ ++static int ++make_request (int fd, pid_t pid, bool *seen_ipv4, bool *seen_ipv6, ++ struct in6addrinfo **in6ai, size_t *in6ailen) ++{ ++ struct req ++ { ++ struct nlmsghdr nlh; ++ struct rtgenmsg g; ++ } req; ++ struct sockaddr_nl nladdr; ++ ++ /* struct rtgenmsg consists of a single byte but the ARM ABI rounds ++ it up to a word. Clear the padding explicitly here. */ ++ assert (sizeof (req.g) == 4); ++ memset (&req.g, '\0', sizeof (req.g)); ++ ++ req.nlh.nlmsg_len = sizeof (req); ++ req.nlh.nlmsg_type = RTM_GETADDR; ++ req.nlh.nlmsg_flags = NLM_F_ROOT | NLM_F_MATCH | NLM_F_REQUEST; ++ req.nlh.nlmsg_pid = 0; ++ req.nlh.nlmsg_seq = time (NULL); ++ req.g.rtgen_family = AF_UNSPEC; ++ ++ memset (&nladdr, '\0', sizeof (nladdr)); ++ nladdr.nl_family = AF_NETLINK; ++ ++ if (TEMP_FAILURE_RETRY (__sendto (fd, (void *) &req, sizeof (req), 0, ++ (struct sockaddr *) &nladdr, ++ sizeof (nladdr))) < 0) ++ return -1; ++ ++ *seen_ipv4 = false; ++ *seen_ipv6 = false; ++ ++ bool done = false; ++ char buf[4096]; ++ struct iovec iov = { buf, sizeof (buf) }; ++ struct in6ailist ++ { ++ struct in6addrinfo info; ++ struct in6ailist *next; ++ } *in6ailist = NULL; ++ size_t in6ailistlen = 0; ++ ++ do ++ { ++ struct msghdr msg = ++ { ++ (void *) &nladdr, sizeof (nladdr), ++ &iov, 1, ++ NULL, 0, ++ 0 ++ }; ++ ++ ssize_t read_len = TEMP_FAILURE_RETRY (__recvmsg (fd, &msg, 0)); ++ if (read_len < 0) ++ return -1; ++ ++ if (msg.msg_flags & MSG_TRUNC) ++ return -1; ++ ++ struct nlmsghdr *nlmh; ++ for (nlmh = (struct nlmsghdr *) buf; ++ NLMSG_OK (nlmh, (size_t) read_len); ++ nlmh = (struct nlmsghdr *) NLMSG_NEXT (nlmh, read_len)) ++ { ++ if (nladdr.nl_pid != 0 || (pid_t) nlmh->nlmsg_pid != pid ++ || nlmh->nlmsg_seq != req.nlh.nlmsg_seq) ++ continue; ++ ++ if (nlmh->nlmsg_type == RTM_NEWADDR) ++ { ++ struct ifaddrmsg *ifam = (struct ifaddrmsg *) NLMSG_DATA (nlmh); ++ ++ switch (ifam->ifa_family) ++ { ++ case AF_INET: ++ *seen_ipv4 = true; ++ break; ++ case AF_INET6: ++ *seen_ipv6 = true; ++ ++ if (ifam->ifa_flags & (IFA_F_DEPRECATED ++ | IFA_F_TEMPORARY ++ | IFA_F_HOMEADDRESS)) ++ { ++ struct rtattr *rta = IFA_RTA (ifam); ++ size_t len = (nlmh->nlmsg_len ++ - NLMSG_LENGTH (sizeof (*ifam))); ++ void *local = NULL; ++ void *address = NULL; ++ while (RTA_OK (rta, len)) ++ { ++ switch (rta->rta_type) ++ { ++ case IFA_LOCAL: ++ local = RTA_DATA (rta); ++ break; ++ ++ case IFA_ADDRESS: ++ address = RTA_DATA (rta); ++ break; ++ } ++ ++ rta = RTA_NEXT (rta, len); ++ } ++ ++ struct in6ailist *newp = alloca (sizeof (*newp)); ++ newp->info.flags = (((ifam->ifa_flags & IFA_F_DEPRECATED) ++ ? in6ai_deprecated : 0) ++ | ((ifam->ifa_flags ++ & IFA_F_TEMPORARY) ++ ? in6ai_temporary : 0) ++ | ((ifam->ifa_flags ++ & IFA_F_HOMEADDRESS) ++ ? in6ai_homeaddress : 0)); ++ memcpy (newp->info.addr, address ?: local, ++ sizeof (newp->info.addr)); ++ newp->next = in6ailist; ++ in6ailist = newp; ++ ++in6ailistlen; ++ } ++ break; ++ default: ++ /* Ignore. */ ++ break; ++ } ++ } ++ else if (nlmh->nlmsg_type == NLMSG_DONE) ++ /* We found the end, leave the loop. */ ++ done = true; ++ } ++ } ++ while (! done); ++ ++ close_not_cancel_no_status (fd); ++ ++ if (in6ailist != NULL) ++ { ++ *in6ai = malloc (in6ailistlen * sizeof (**in6ai)); ++ if (*in6ai == NULL) ++ return -1; ++ ++ *in6ailen = in6ailistlen; ++ ++ do ++ { ++ (*in6ai)[--in6ailistlen] = in6ailist->info; ++ in6ailist = in6ailist->next; ++ } ++ while (in6ailist != NULL); ++ } ++ ++ return 0; ++} ++ ++ ++/* We don't know if we have NETLINK support compiled in in our ++ Kernel. */ ++#if __ASSUME_NETLINK_SUPPORT == 0 ++/* Define in ifaddrs.h. */ ++extern int __no_netlink_support attribute_hidden; ++#else ++# define __no_netlink_support 0 ++#endif ++ ++ ++void ++attribute_hidden ++__check_pf (bool *seen_ipv4, bool *seen_ipv6, ++ struct in6addrinfo **in6ai, size_t *in6ailen) ++{ ++ *in6ai = NULL; ++ *in6ailen = 0; ++ ++ if (! __no_netlink_support) ++ { ++ int fd = __socket (PF_NETLINK, SOCK_RAW, NETLINK_ROUTE); ++ ++ struct sockaddr_nl nladdr; ++ memset (&nladdr, '\0', sizeof (nladdr)); ++ nladdr.nl_family = AF_NETLINK; ++ ++ socklen_t addr_len = sizeof (nladdr); ++ ++ if (fd >= 0 ++ && __bind (fd, (struct sockaddr *) &nladdr, sizeof (nladdr)) == 0 ++ && __getsockname (fd, (struct sockaddr *) &nladdr, &addr_len) == 0 ++ && make_request (fd, nladdr.nl_pid, seen_ipv4, seen_ipv6, ++ in6ai, in6ailen) == 0) ++ /* It worked. */ ++ return; ++ ++ if (fd >= 0) ++ __close (fd); ++ ++#if __ASSUME_NETLINK_SUPPORT == 0 ++ /* Remember that there is no netlink support. */ ++ __no_netlink_support = 1; ++#else ++ /* We cannot determine what interfaces are available. Be ++ pessimistic. */ ++ *seen_ipv4 = true; ++ *seen_ipv6 = true; ++#endif ++ } ++ ++#if __ASSUME_NETLINK_SUPPORT == 0 ++ /* No netlink. Get the interface list via getifaddrs. */ ++ struct ifaddrs *ifa = NULL; ++ if (getifaddrs (&ifa) != 0) ++ { ++ /* We cannot determine what interfaces are available. Be ++ pessimistic. */ ++ *seen_ipv4 = true; ++ *seen_ipv6 = true; ++ return; ++ } ++ ++ struct ifaddrs *runp; ++ for (runp = ifa; runp != NULL; runp = runp->ifa_next) ++ if (runp->ifa_addr->sa_family == PF_INET) ++ *seen_ipv4 = true; ++ else if (runp->ifa_addr->sa_family == PF_INET6) ++ *seen_ipv6 = true; ++ ++ (void) freeifaddrs (ifa); ++#endif ++} +diff -Nurd a/sysdeps/unix/sysv/linux/arm/eabi/check_pf.c ports/sysdeps/unix/sysv/linux/arm/eabi/check_pf.c +--- ports/sysdeps/unix/sysv/linux/arm/eabi/check_pf.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/sysv/linux/arm/eabi/check_pf.c 2007-04-23 11:10:58.000000000 +0200 +@@ -0,0 +1 @@ ++#include --- glibc-2.5.orig/debian/patches/arm/local-no-hwcap.diff +++ glibc-2.5/debian/patches/arm/local-no-hwcap.diff @@ -0,0 +1,13 @@ +# DP: Restricted hardware caps for ARM + +--- ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h Mon Jul 23 12:57:23 2001 ++++ ports/sysdeps/unix/sysv/linux/arm/dl-procinfo.h Sun Feb 10 06:37:00 2002 +@@ -54,7 +54,7 @@ + return GLRO(dl_arm_cap_flags)[idx]; + }; + +-#define HWCAP_IMPORTANT (HWCAP_ARM_HALF | HWCAP_ARM_FAST_MULT) ++#define HWCAP_IMPORTANT HWCAP_ARM_FAST_MULT + + static inline int + __attribute__ ((unused)) --- glibc-2.5.orig/debian/patches/hppa/local-Rminkernel.diff +++ glibc-2.5/debian/patches/hppa/local-Rminkernel.diff @@ -0,0 +1,50 @@ +# DP: Description: Relax glibc kernel version requirement. +# DP: Author: Carlos O'Donell +# DP: Upstream status: Debian-Specific +# DP: Status Details: Overrides upstream requirement of 2.4.19 +# DP: Date: December 5th, 2002, updated 2003-03-23 by gotom + +# +# Comments from Carlos: +# +# Our users come first, and I've changed this back after seeing +# some people get burned by not having new kernels. We also +# shouldn't be forcing people to use new kernels. Rather they should +# be upgrading after seeing the quantifiable failures and choosing +# to go for a new kernel :) It's an empowerment issue. +# +# If you complain of random segfaults in libc or other programs because +# you have an old kernel without a fixed unaligned handler... the first +# thing I'm going to ask is that you try upgrading to 2.4.19/20 :} +# +# When 2.4.19 on hppa becomes the defacto stable kernel, we can remove +# the patch and let the upstream requirement be used. At which point +# the preinst patch needs to be modified or removed. +# + +Index: sysdeps/unix/sysv/linux/configure.in +=================================================================== +--- sysdeps/unix/sysv/linux/configure.in.orig ++++ sysdeps/unix/sysv/linux/configure.in +@@ -69,7 +69,7 @@ + ;; + hppa*) + libc_cv_gcc_unwind_find_fde=yes +- arch_minimum_kernel=2.4.19 ++ arch_minimum_kernel=2.4.17 + ;; + m68k*) + arch_minimum_kernel=2.0.10 +Index: sysdeps/unix/sysv/linux/configure +=================================================================== +--- sysdeps/unix/sysv/linux/configure.orig ++++ sysdeps/unix/sysv/linux/configure +@@ -109,7 +109,7 @@ + ;; + hppa*) + libc_cv_gcc_unwind_find_fde=yes +- arch_minimum_kernel=2.4.19 ++ arch_minimum_kernel=2.4.17 + ;; + m68k*) + arch_minimum_kernel=2.0.10 --- glibc-2.5.orig/debian/patches/hppa/submitted-lt.diff +++ glibc-2.5/debian/patches/hppa/submitted-lt.diff @@ -0,0 +1,344 @@ +# DP: Description: Make glibc-2.3.5 compile to enable hppa linuxthreads +# correctly again. +# DP: Related bugs: +# DP: Dpatch author: Jeff Bailey +# DP: Patch author: Carlos O'Donell +# DP: Upstream status: Pending +# DP: Status Details: +# DP: Date: 2005-07-17 + +Index: linuxthreads/descr.h +=================================================================== +--- linuxthreads/descr.h.orig ++++ linuxthreads/descr.h +@@ -71,7 +71,7 @@ + /* Atomic counter made possible by compare_and_swap */ + struct pthread_atomic { + long p_count; +- int p_spinlock; ++ __atomic_lock_t p_spinlock; + }; + + +Index: linuxthreads/oldsemaphore.c +=================================================================== +--- linuxthreads/oldsemaphore.c.orig ++++ linuxthreads/oldsemaphore.c +@@ -31,7 +31,7 @@ + + typedef struct { + long int sem_status; +- int sem_spinlock; ++ __atomic_lock_t sem_spinlock; + } old_sem_t; + + extern int __old_sem_init (old_sem_t *__sem, int __pshared, unsigned int __value); +Index: linuxthreads/pt-machine.c +=================================================================== +--- linuxthreads/pt-machine.c.orig ++++ linuxthreads/pt-machine.c +@@ -19,7 +19,9 @@ + + #define PT_EI + +-extern long int testandset (int *spinlock); ++#include ++ ++extern long int testandset (__atomic_lock_t *spinlock); + extern int __compare_and_swap (long int *p, long int oldval, long int newval); + + #include +Index: linuxthreads/pthread.c +=================================================================== +--- linuxthreads/pthread.c.orig ++++ linuxthreads/pthread.c +@@ -309,7 +309,7 @@ + pthread_descr self; + + /* First of all init __pthread_handles[0] and [1] if needed. */ +-# if __LT_SPINLOCK_INIT != 0 ++# ifdef __LT_INITIALIZER_NOT_ZERO + __pthread_handles[0].h_lock = __LOCK_INITIALIZER; + __pthread_handles[1].h_lock = __LOCK_INITIALIZER; + # endif +@@ -379,7 +379,7 @@ + # endif + /* self->p_start_args need not be initialized, it's all zero. */ + self->p_userstack = 1; +-# if __LT_SPINLOCK_INIT != 0 ++# ifdef __LT_INITIALIZER_NOT_ZERO + self->p_resume_count = (struct pthread_atomic) __ATOMIC_INITIALIZER; + # endif + self->p_alloca_cutoff = __MAX_ALLOCA_CUTOFF; +@@ -393,7 +393,7 @@ + #else /* USE_TLS */ + + /* First of all init __pthread_handles[0] and [1]. */ +-# if __LT_SPINLOCK_INIT != 0 ++# ifdef __LT_INITIALIZER_NOT_ZERO + __pthread_handles[0].h_lock = __LOCK_INITIALIZER; + __pthread_handles[1].h_lock = __LOCK_INITIALIZER; + # endif +@@ -696,8 +696,8 @@ + # endif + mgr->p_start_args = (struct pthread_start_args) PTHREAD_START_ARGS_INITIALIZER(__pthread_manager); + mgr->p_nr = 1; +-# if __LT_SPINLOCK_INIT != 0 +- self->p_resume_count = (struct pthread_atomic) __ATOMIC_INITIALIZER; ++# ifdef __LT_INITIALIZER_NOT_ZERO ++ mgr->p_resume_count = (struct pthread_atomic) __ATOMIC_INITIALIZER; + # endif + mgr->p_alloca_cutoff = PTHREAD_STACK_MIN / 4; + #else +Index: linuxthreads/spinlock.c +=================================================================== +--- linuxthreads/spinlock.c.orig ++++ linuxthreads/spinlock.c +@@ -24,9 +24,9 @@ + #include "spinlock.h" + #include "restart.h" + +-static void __pthread_acquire(int * spinlock); ++static void __pthread_acquire(__atomic_lock_t * spinlock); + +-static inline void __pthread_release(int * spinlock) ++static inline void __pthread_release(__atomic_lock_t * spinlock) + { + WRITE_MEMORY_BARRIER(); + *spinlock = __LT_SPINLOCK_INIT; +@@ -269,11 +269,11 @@ + struct wait_node { + struct wait_node *next; /* Next node in null terminated linked list */ + pthread_descr thr; /* The thread waiting with this node */ +- int abandoned; /* Atomic flag */ ++ __atomic_lock_t abandoned; /* Atomic flag */ + }; + + static long wait_node_free_list; +-static int wait_node_free_list_spinlock; ++__pthread_lock_define_initialized(static, wait_node_free_list_spinlock); + + /* Allocate a new node from the head of the free list using an atomic + operation, or else using malloc if that list is empty. A fundamental +@@ -376,7 +376,7 @@ + if (self == NULL) + self = thread_self(); + +- wait_node.abandoned = 0; ++ wait_node.abandoned = __LT_SPINLOCK_INIT; + wait_node.next = (struct wait_node *) lock->__status; + wait_node.thr = self; + lock->__status = (long) &wait_node; +@@ -402,7 +402,7 @@ + wait_node.thr = self; + newstatus = (long) &wait_node; + } +- wait_node.abandoned = 0; ++ wait_node.abandoned = __LT_SPINLOCK_INIT; + wait_node.next = (struct wait_node *) oldstatus; + /* Make sure the store in wait_node.next completes before performing + the compare-and-swap */ +@@ -451,7 +451,7 @@ + if (self == NULL) + self = thread_self(); + +- p_wait_node->abandoned = 0; ++ p_wait_node->abandoned = __LT_SPINLOCK_INIT; + p_wait_node->next = (struct wait_node *) lock->__status; + p_wait_node->thr = self; + lock->__status = (long) p_wait_node; +@@ -474,7 +474,7 @@ + p_wait_node->thr = self; + newstatus = (long) p_wait_node; + } +- p_wait_node->abandoned = 0; ++ p_wait_node->abandoned = __LT_SPINLOCK_INIT; + p_wait_node->next = (struct wait_node *) oldstatus; + /* Make sure the store in wait_node.next completes before performing + the compare-and-swap */ +@@ -574,7 +574,7 @@ + while (p_node != (struct wait_node *) 1) { + int prio; + +- if (p_node->abandoned) { ++ if (lock_held(&p_node->abandoned)) { + /* Remove abandoned node. */ + #if defined TEST_FOR_COMPARE_AND_SWAP + if (!__pthread_has_cas) +@@ -674,7 +674,7 @@ + #if !defined HAS_COMPARE_AND_SWAP || defined TEST_FOR_COMPARE_AND_SWAP + + int __pthread_compare_and_swap(long * ptr, long oldval, long newval, +- int * spinlock) ++ __atomic_lock_t * spinlock) + { + int res; + +@@ -711,7 +711,7 @@ + - When nanosleep() returns, we try again, doing MAX_SPIN_COUNT + sched_yield(), then sleeping again if needed. */ + +-static void __pthread_acquire(int * spinlock) ++static void __pthread_acquire(__atomic_lock_t * spinlock) + { + int cnt = 0; + struct timespec tm; +Index: linuxthreads/spinlock.h +=================================================================== +--- linuxthreads/spinlock.h.orig ++++ linuxthreads/spinlock.h +@@ -33,14 +33,28 @@ + #endif + #endif + ++/* Define lock_held for all arches that don't need a modified copy. */ ++#ifndef __LT_INITIALIZER_NOT_ZERO ++# define lock_held(p) *(p) ++#endif ++ ++/* Initliazers for possibly complex structures */ ++#ifdef __LT_INITIALIZER_NOT_ZERO ++# define __pthread_lock_define_initialized(CLASS,NAME) \ ++ CLASS __atomic_lock_t NAME = __LT_SPINLOCK_ALT_INIT ++#else ++# define __pthread_lock_define_initialized(CLASS,NAME) \ ++ CLASS __atomic_lock_t NAME ++#endif ++ + #if defined(TEST_FOR_COMPARE_AND_SWAP) + + extern int __pthread_has_cas; + extern int __pthread_compare_and_swap(long * ptr, long oldval, long newval, +- int * spinlock); ++ __atomic_lock_t * spinlock); + + static inline int compare_and_swap(long * ptr, long oldval, long newval, +- int * spinlock) ++ __atomic_lock_t * spinlock) + { + if (__builtin_expect (__pthread_has_cas, 1)) + return __compare_and_swap(ptr, oldval, newval); +@@ -58,7 +72,7 @@ + + static inline int + compare_and_swap_with_release_semantics (long * ptr, long oldval, +- long newval, int * spinlock) ++ long newval, __atomic_lock_t * spinlock) + { + return __compare_and_swap_with_release_semantics (ptr, oldval, + newval); +@@ -67,7 +81,7 @@ + #endif + + static inline int compare_and_swap(long * ptr, long oldval, long newval, +- int * spinlock) ++ __atomic_lock_t * spinlock) + { + return __compare_and_swap(ptr, oldval, newval); + } +@@ -75,10 +89,10 @@ + #else + + extern int __pthread_compare_and_swap(long * ptr, long oldval, long newval, +- int * spinlock); ++ __atomic_lock_t * spinlock); + + static inline int compare_and_swap(long * ptr, long oldval, long newval, +- int * spinlock) ++ __atomic_lock_t * spinlock) + { + return __pthread_compare_and_swap(ptr, oldval, newval, spinlock); + } +Index: linuxthreads/sysdeps/pthread/bits/initspin.h +=================================================================== +--- linuxthreads/sysdeps/pthread/bits/initspin.h.orig ++++ linuxthreads/sysdeps/pthread/bits/initspin.h +@@ -23,6 +23,7 @@ + #define __LT_SPINLOCK_INIT 0 + + /* Macros for lock initializers, using the above definition. */ +-#define __LOCK_INITIALIZER { 0, __LT_SPINLOCK_INIT } ++#define __LOCK_INITIALIZER ((struct _pthread_fastlock){ 0, __LT_SPINLOCK_INIT }) ++#define __LOCK_ALT_INITIALIZER { 0, __LT_SPINLOCK_INIT } + #define __ALT_LOCK_INITIALIZER { 0, __LT_SPINLOCK_INIT } + #define __ATOMIC_INITIALIZER { 0, __LT_SPINLOCK_INIT } +Index: linuxthreads/sysdeps/pthread/bits/libc-lock.h +=================================================================== +--- linuxthreads/sysdeps/pthread/bits/libc-lock.h.orig ++++ linuxthreads/sysdeps/pthread/bits/libc-lock.h +@@ -71,12 +71,12 @@ + initialized locks must be set to one due to the lack of normal + atomic operations.) */ + +-#if __LT_SPINLOCK_INIT == 0 ++#ifdef __LT_INITIALIZER_NOT_ZERO + # define __libc_lock_define_initialized(CLASS,NAME) \ +- CLASS __libc_lock_t NAME; ++ CLASS __libc_lock_t NAME = PTHREAD_MUTEX_INITIALIZER; + #else + # define __libc_lock_define_initialized(CLASS,NAME) \ +- CLASS __libc_lock_t NAME = PTHREAD_MUTEX_INITIALIZER; ++ CLASS __libc_lock_t NAME; + #endif + + #define __libc_rwlock_define_initialized(CLASS,NAME) \ +Index: linuxthreads/sysdeps/pthread/bits/pthreadtypes.h +=================================================================== +--- linuxthreads/sysdeps/pthread/bits/pthreadtypes.h.orig ++++ linuxthreads/sysdeps/pthread/bits/pthreadtypes.h +@@ -22,12 +22,14 @@ + #define __need_schedparam + #include + ++typedef int __atomic_lock_t; ++ + /* Fast locks (not abstract because mutexes and conditions aren't abstract). */ + struct _pthread_fastlock + { +- long int __status; /* "Free" or "taken" or head of waiting list */ +- int __spinlock; /* Used by compare_and_swap emulation. Also, +- adaptive SMP lock stores spin count here. */ ++ long int __status; /* "Free" or "taken" or head of waiting list */ ++ __atomic_lock_t __spinlock; /* Used by compare_and_swap emulation. Also, ++ adaptive SMP lock stores spin count here. */ + }; + + #ifndef _PTHREAD_DESCR_DEFINED +Index: linuxthreads/sysdeps/pthread/pthread.h +=================================================================== +--- linuxthreads/sysdeps/pthread/pthread.h.orig ++++ linuxthreads/sysdeps/pthread/pthread.h +@@ -31,26 +31,26 @@ + /* Initializers. */ + + #define PTHREAD_MUTEX_INITIALIZER \ +- {0, 0, 0, PTHREAD_MUTEX_TIMED_NP, __LOCK_INITIALIZER} ++ {0, 0, 0, PTHREAD_MUTEX_TIMED_NP, __LOCK_ALT_INITIALIZER} + #ifdef __USE_GNU + # define PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP \ +- {0, 0, 0, PTHREAD_MUTEX_RECURSIVE_NP, __LOCK_INITIALIZER} ++ {0, 0, 0, PTHREAD_MUTEX_RECURSIVE_NP, __LOCK_ALT_INITIALIZER} + # define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP \ +- {0, 0, 0, PTHREAD_MUTEX_ERRORCHECK_NP, __LOCK_INITIALIZER} ++ {0, 0, 0, PTHREAD_MUTEX_ERRORCHECK_NP, __LOCK_ALT_INITIALIZER} + # define PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP \ +- {0, 0, 0, PTHREAD_MUTEX_ADAPTIVE_NP, __LOCK_INITIALIZER} ++ {0, 0, 0, PTHREAD_MUTEX_ADAPTIVE_NP, __LOCK_ALT_INITIALIZER} + #endif + +-#define PTHREAD_COND_INITIALIZER {__LOCK_INITIALIZER, 0, "", 0} ++#define PTHREAD_COND_INITIALIZER {__LOCK_ALT_INITIALIZER, 0, "", 0} + + #if defined __USE_UNIX98 || defined __USE_XOPEN2K + # define PTHREAD_RWLOCK_INITIALIZER \ +- { __LOCK_INITIALIZER, 0, NULL, NULL, NULL, \ ++ { __LOCK_ALT_INITIALIZER, 0, NULL, NULL, NULL, \ + PTHREAD_RWLOCK_DEFAULT_NP, PTHREAD_PROCESS_PRIVATE } + #endif + #ifdef __USE_GNU + # define PTHREAD_RWLOCK_WRITER_NONRECURSIVE_INITIALIZER_NP \ +- { __LOCK_INITIALIZER, 0, NULL, NULL, NULL, \ ++ { __LOCK_ALT_INITIALIZER, 0, NULL, NULL, NULL, \ + PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP, PTHREAD_PROCESS_PRIVATE } + #endif + --- glibc-2.5.orig/debian/patches/hppa/submitted-nptl-carlos.diff +++ glibc-2.5/debian/patches/hppa/submitted-nptl-carlos.diff @@ -0,0 +1,67 @@ +Index: elf/elf.h +=================================================================== +--- elf/elf.h.orig ++++ elf/elf.h +@@ -1708,6 +1708,8 @@ + #define R_PARISC_LTOFF_FPTR14R 62 /* LT-rel. fct ptr, right 14 bits. */ + #define R_PARISC_FPTR64 64 /* 64 bits function address. */ + #define R_PARISC_PLABEL32 65 /* 32 bits function address. */ ++#define R_PARISC_PLABEL21L 66 /* Left 21 bits of fdesc address */ ++#define R_PARISC_PLABEL14R 70 /* Right 14 bits of fdesc address */ + #define R_PARISC_PCREL64 72 /* 64 bits PC-rel. address. */ + #define R_PARISC_PCREL22F 74 /* 22 bits PC-rel. address. */ + #define R_PARISC_PCREL14WR 75 /* PC-rel. address, right 14 bits. */ +@@ -1768,6 +1770,29 @@ + #define R_PARISC_LTOFF_TP16F 229 /* 16 bits LT-TP-rel. address. */ + #define R_PARISC_LTOFF_TP16WF 230 /* 16 bits LT-TP-rel. address. */ + #define R_PARISC_LTOFF_TP16DF 231 /* 16 bits LT-TP-rel. address. */ ++ ++#define R_PARISC_GNU_VTENTRY 232 ++#define R_PARISC_GNU_VTINHERIT 233 ++#define R_PARISC_TLS_GD21L 234 /* GD 21-bit left */ ++#define R_PARISC_TLS_GD14R 235 /* GD 14-bit right */ ++#define R_PARISC_TLS_GDCALL 236 /* GD call to __t_g_a */ ++#define R_PARISC_TLS_LDM21L 237 /* LD module 21-bit left */ ++#define R_PARISC_TLS_LDM14R 238 /* LD module 14-bit right */ ++#define R_PARISC_TLS_LDMCALL 239 /* LD module call to __t_g_a */ ++#define R_PARISC_TLS_LDO21L 240 /* LD offset 21-bit left */ ++#define R_PARISC_TLS_LDO14R 241 /* LD offset 14-bit right */ ++#define R_PARISC_TLS_DTPMOD32 242 /* DTP module 32-bit */ ++#define R_PARISC_TLS_DTPMOD64 243 /* DTP module 64-bit */ ++#define R_PARISC_TLS_DTPOFF32 244 /* DTP offset 32-bit */ ++#define R_PARISC_TLS_DTPOFF64 245 /* DTP offset 32-bit */ ++ ++#define R_PARISC_TLS_LE21L R_PARISC_TPREL21L ++#define R_PARISC_TLS_LE14R R_PARISC_TPREL14R ++#define R_PARISC_TLS_IE21L R_PARISC_LTOFF_TP21L ++#define R_PARISC_TLS_IE14R R_PARISC_LTOFF_TP14R ++#define R_PARISC_TLS_TPREL32 R_PARISC_TPREL32 ++#define R_PARISC_TLS_TPREL64 R_PARISC_TPREL64 ++ + #define R_PARISC_HIRESERVE 255 + + /* Legal values for p_type field of Elf32_Phdr/Elf64_Phdr. */ +Index: elf/rtld.c +=================================================================== +--- elf/rtld.c.orig ++++ elf/rtld.c +@@ -379,14 +379,14 @@ + know it is available. We do not have to clear the memory if we + do not have to use the temporary bootstrap_map. Global variables + are initialized to zero by default. */ +-#ifndef DONT_USE_BOOTSTRAP_MAP ++#if !defined DONT_USE_BOOTSTRAP_MAP + # ifdef HAVE_BUILTIN_MEMSET + __builtin_memset (bootstrap_map.l_info, '\0', sizeof (bootstrap_map.l_info)); + # else +- for (size_t cnt = 0; +- cnt < sizeof (bootstrap_map.l_info) / sizeof (bootstrap_map.l_info[0]); +- ++cnt) +- bootstrap_map.l_info[cnt] = 0; ++ /* Clear the whole bootstrap_map structure */ ++ for (char *cnt = (char *)&(bootstrap_map); ++ cnt < ((char *)&(bootstrap_map) + sizeof (bootstrap_map)); ++ *cnt++ = '\0'); + # endif + # if USE___THREAD + bootstrap_map.l_tls_modid = 0; --- glibc-2.5.orig/debian/patches/hppa/local-inlining.diff +++ glibc-2.5/debian/patches/hppa/local-inlining.diff @@ -0,0 +1,14 @@ +Increase the maximal overall growth of the compilation unit caused +by inlining for dl-reloc.c on hppa. This remove some warnings and +strangely it reduces the size of the final binary. + +--- ports/sysdeps/hppa/Makefile 2006-02-14 17:28:55.000000000 +0100 ++++ ports/sysdeps/hppa/Makefile 2006-02-14 17:29:29.000000000 +0100 +@@ -24,6 +24,7 @@ + + ifeq ($(subdir),elf) + CFLAGS-rtld.c += -mdisable-fpregs ++CFLAGS-dl-reloc.c += --param inline-unit-growth=100 + sysdep-dl-routines += dl-symaddr dl-fptr + sysdep_routines += $(sysdep-dl-routines) + sysdep-rtld-routines += $(sysdep-dl-routines) --- glibc-2.5.orig/debian/patches/hppa/cvs-hppa-update.diff +++ glibc-2.5/debian/patches/hppa/cvs-hppa-update.diff @@ -0,0 +1,1679 @@ +diff -Nurd ports.orig/ChangeLog.hppa ports/ChangeLog.hppa +--- ports.orig/ChangeLog.hppa 2006-10-01 19:06:06.000000000 +0200 ++++ ports/ChangeLog.hppa 2007-02-06 10:11:40.000000000 +0100 +@@ -1,3 +1,37 @@ ++2007-02-02 Carlos O'Donell ++ ++ * sysdeps/unix/sysv/linux/hppa/sysdep.h (PTR_MANGLE): Define. ++ (PTR_DEMANGLE): Define. ++ ++2007-02-02 Guy Martin ++ ++ * sysdeps/hppa/dl-trampoline.S (_dl_runtime_profile): ++ Add cfi_endproc. ++ ++2006-12-03 Carlos O'Donell ++ ++ * sysdeps/unix/sysv/linux/hppa/bits/atomic.h: Remove non-atomic ++ versions. Adjust jump target to '0b'. ++ ++2006-12-03 Carlos O'Donell ++ ++ * sysdeps/hppa/Makefile: Set long-double-fcts to `no'. ++ * sysdeps/hppa/fpu/libm-test-ulps: Regenerate. ++ * sysdeps/hppa/fpu/bits/mathdef.h: New file. ++ ++2006-11-10 Carlos O'Donell ++ ++ * sysdeps/hppa/nptl/pthread_spin_init.c: New file. ++ * sysdeps/hppa/nptl/pthread_spin_unlock.c: Remove strong alias ++ to pthread_spin_init. ++ * sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h: Define ++ RTLD_SINGLE_THREAD_P. ++ ++2006-09-20 Carlos O'Donell ++ ++ * sysdeps/unix/sysv/linux/hppa/bits/fcntl.h (splice): Add offin ++ and offout arguments to the prototype. ++ + 2006-09-15 Carlos O'Donell + + * sysdeps/hppa/nptl/tcb-offsets.sym: Define TID_THREAD_OFFSET. +diff -Nurd ports.orig/sysdeps/hppa/dl-trampoline.S ports/sysdeps/hppa/dl-trampoline.S +--- ports.orig/sysdeps/hppa/dl-trampoline.S 2006-10-01 19:06:06.000000000 +0200 ++++ ports/sysdeps/hppa/dl-trampoline.S 2007-02-06 10:11:53.000000000 +0100 +@@ -284,5 +284,6 @@ + bv,n 0(%r2) + .EXIT + .PROCEND ++ cfi_endproc + .size _dl_runtime_profile, . - _dl_runtime_profile + +diff -Nurd ports.orig/sysdeps/hppa/fpu/bits/mathdef.h ports/sysdeps/hppa/fpu/bits/mathdef.h +--- ports.orig/sysdeps/hppa/fpu/bits/mathdef.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/hppa/fpu/bits/mathdef.h 2007-02-06 10:11:16.000000000 +0100 +@@ -0,0 +1,40 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#if !defined _MATH_H && !defined _COMPLEX_H ++# error "Never use directly; include instead" ++#endif ++ ++#if defined __USE_ISOC99 && defined _MATH_H && !defined _MATH_H_MATHDEF ++# define _MATH_H_MATHDEF 1 ++ ++/* GCC does not promote `float' values to `double'. */ ++typedef float float_t; /* `float' expressions are evaluated as ++ `float'. */ ++typedef double double_t; /* `double' expressions are evaluated as ++ `double'. */ ++ ++/* The values returned by `ilogb' for 0 and NaN respectively. */ ++# define FP_ILOGB0 (-2147483647) ++# define FP_ILOGBNAN (2147483647) ++ ++#endif /* ISO C99 */ ++ ++/* On hppa `long double' is 64-bits. */ ++#undef __NO_LONG_DOUBLE_MATH ++ +diff -Nurd ports.orig/sysdeps/hppa/fpu/libm-test-ulps ports/sysdeps/hppa/fpu/libm-test-ulps +--- ports.orig/sysdeps/hppa/fpu/libm-test-ulps 2006-04-21 02:27:20.000000000 +0200 ++++ ports/sysdeps/hppa/fpu/libm-test-ulps 2007-02-06 10:11:16.000000000 +0100 +@@ -1,15 +1,12 @@ + # Begin of automatic generation + + # atan2 +-Test "atan2 (-0.00756827042671106339, -.001792735857538728036) == -1.80338464113663849327153994380": +-float: 6 +-ifloat: 6 + Test "atan2 (-0.75, -1.0) == -2.49809154479650885165983415456218025": +-float: 3 +-ifloat: 3 ++float: 1 ++ifloat: 1 + Test "atan2 (0.75, -1.0) == 2.49809154479650885165983415456218025": +-float: 3 +-ifloat: 3 ++float: 1 ++ifloat: 1 + Test "atan2 (1.390625, 0.9296875) == 0.981498387184244311516296577615519772": + float: 1 + ifloat: 1 +@@ -20,16 +17,9 @@ + ifloat: 1 + + # cacosh +-Test "Real part of: cacosh (-2 - 3 i) == 1.9833870299165354323470769028940395 - 2.1414491111159960199416055713254211 i": +-double: 1 +-float: 7 +-idouble: 1 +-ifloat: 7 + Test "Imaginary part of: cacosh (-2 - 3 i) == 1.9833870299165354323470769028940395 - 2.1414491111159960199416055713254211 i": +-double: 1 +-float: 3 +-idouble: 1 +-ifloat: 3 ++float: 1 ++ifloat: 1 + + # casin + Test "Real part of: casin (0.75 + 1.25 i) == 0.453276177638793913448921196101971749 + 1.13239363160530819522266333696834467 i": +@@ -37,6 +27,8 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + + # casinh + Test "Real part of: casinh (-2 - 3 i) == -1.9686379257930962917886650952454982 - 0.96465850440760279204541105949953237 i": +@@ -44,11 +36,15 @@ + float: 1 + idouble: 5 + ifloat: 1 ++ildouble: 5 ++ldouble: 5 + Test "Imaginary part of: casinh (-2 - 3 i) == -1.9686379257930962917886650952454982 - 0.96465850440760279204541105949953237 i": + double: 3 + float: 6 + idouble: 3 + ifloat: 6 ++ildouble: 3 ++ldouble: 3 + Test "Real part of: casinh (0.75 + 1.25 i) == 1.03171853444778027336364058631006594 + 0.911738290968487636358489564316731207 i": + float: 1 + ifloat: 1 +@@ -57,44 +53,46 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + + # catan +-Test "Real part of: catan (-2 - 3 i) == -1.4099210495965755225306193844604208 - 0.22907268296853876629588180294200276 i": +-float: 3 +-ifloat: 3 + Test "Imaginary part of: catan (-2 - 3 i) == -1.4099210495965755225306193844604208 - 0.22907268296853876629588180294200276 i": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 +-Test "Real part of: catan (0.75 + 1.25 i) == 1.10714871779409050301706546017853704 + 0.549306144334054845697622618461262852 i": +-float: 4 +-ifloat: 4 ++ildouble: 1 ++ldouble: 1 + + # catanh + Test "Real part of: catanh (-2 - 3 i) == -0.14694666622552975204743278515471595 - 1.3389725222944935611241935759091443 i": + double: 4 + idouble: 4 +-Test "Imaginary part of: catanh (-2 - 3 i) == -0.14694666622552975204743278515471595 - 1.3389725222944935611241935759091443 i": +-float: 4 +-ifloat: 4 ++ildouble: 4 ++ldouble: 4 + Test "Real part of: catanh (0.75 + 1.25 i) == 0.261492138795671927078652057366532140 + 0.996825126463918666098902241310446708 i": + double: 1 + idouble: 1 +-Test "Imaginary part of: catanh (0.75 + 1.25 i) == 0.261492138795671927078652057366532140 + 0.996825126463918666098902241310446708 i": +-float: 6 +-ifloat: 6 ++ildouble: 1 ++ldouble: 1 + + # cbrt + Test "cbrt (-27.0) == -3.0": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "cbrt (0.75) == 0.908560296416069829445605878163630251": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "cbrt (0.9921875) == 0.997389022060725270579075195353955217": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + # ccos + Test "Imaginary part of: ccos (-2 - 3 i) == -4.18962569096880723013255501961597373 - 9.10922789375533659797919726277886212 i": +@@ -105,6 +103,8 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "Imaginary part of: ccos (0.75 + 1.25 i) == 1.38173873063425888530729933139078645 - 1.09193013555397466170919531722024128 i": + float: 1 + ifloat: 1 +@@ -121,10 +121,32 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "Imaginary part of: ccosh (0.75 + 1.25 i) == 0.408242591877968807788852146397499084 + 0.780365930845853240391326216300863152 i": + float: 1 + ifloat: 1 + ++# ceil ++Test "ceil (-4503599627370496.75) == -4503599627370496.0": ++ildouble: 1 ++ldouble: 1 ++Test "ceil (-4503599627370497.5) == -4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "ceil (-9007199254740991.5) == -9007199254740991.0": ++ildouble: 1 ++ldouble: 1 ++Test "ceil (-9007199254740993.5) == -9007199254740993.0": ++ildouble: 1 ++ldouble: 1 ++Test "ceil (4503599627370496.25) == 4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "ceil (4503599627370496.5) == 4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++ + # cexp + Test "Imaginary part of: cexp (-2.0 - 3.0 i) == -0.13398091492954261346140525546115575 - 0.019098516261135196432576240858800925 i": + float: 1 +@@ -134,9 +156,6 @@ + ifloat: 1 + + # clog +-Test "Imaginary part of: clog (-2 - 3 i) == 1.2824746787307683680267437207826593 - 2.1587989303424641704769327722648368 i": +-float: 3 +-ifloat: 3 + Test "Real part of: clog (0.75 + 1.25 i) == 0.376885901188190075998919126749298416 + 1.03037682652431246378774332703115153 i": + float: 1 + ifloat: 1 +@@ -150,9 +169,9 @@ + ifloat: 1 + Test "Imaginary part of: clog10 (-2 - 3 i) == 0.556971676153418384603252578971164214 - 0.937554462986374708541507952140189646 i": + double: 1 +-float: 5 + idouble: 1 +-ifloat: 5 ++ildouble: 1 ++ldouble: 1 + Test "Imaginary part of: clog10 (-3 + inf i) == inf + pi/2*log10(e) i": + float: 1 + ifloat: 1 +@@ -196,19 +215,16 @@ + # cos + Test "cos (M_PI_6l * 2.0) == 0.5": + double: 1 +-float: 1 + idouble: 1 +-ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "cos (M_PI_6l * 4.0) == -0.5": + double: 2 + float: 1 + idouble: 2 + ifloat: 1 +-Test "cos (pi/2) == 0": +-double: 1 +-float: 1 +-idouble: 1 +-ifloat: 1 ++ildouble: 2 ++ldouble: 2 + + # cpow + Test "Real part of: cpow (0.75 + 1.25 i, 0.0 + 1.0 i) == 0.331825439177608832276067945276730566 + 0.131338600281188544930936345230903032 i": +@@ -222,16 +238,22 @@ + float: 4 + idouble: 1 + ifloat: 4 ++ildouble: 1 ++ldouble: 1 + Test "Real part of: cpow (0.75 + 1.25 i, 1.0 + 1.0 i) == 0.0846958290317209430433805274189191353 + 0.513285749182902449043287190519090481 i": + double: 2 + float: 3 + idouble: 2 + ifloat: 3 ++ildouble: 2 ++ldouble: 2 + Test "Real part of: cpow (2 + 3 i, 4 + 0 i) == -119.0 - 120.0 i": + double: 1 + float: 4 + idouble: 1 + ifloat: 4 ++ildouble: 1 ++ldouble: 1 + Test "Imaginary part of: cpow (2 + 3 i, 4 + 0 i) == -119.0 - 120.0 i": + float: 2 + ifloat: 2 +@@ -240,11 +262,15 @@ + float: 2 + idouble: 2 + ifloat: 2 ++ildouble: 2 ++ldouble: 2 + + # csinh + Test "Imaginary part of: csinh (-2 - 3 i) == 3.59056458998577995201256544779481679 - 0.530921086248519805267040090660676560 i": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "Real part of: csinh (0.75 + 1.25 i) == 0.259294854551162779153349830618433028 + 1.22863452409509552219214606515777594 i": + float: 1 + ifloat: 1 +@@ -264,6 +290,8 @@ + Test "Imaginary part of: ctan (0.75 + 1.25 i) == 0.160807785916206426725166058173438663 + 0.975363285031235646193581759755216379 i": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + # ctanh + Test "Real part of: ctanh (-2 - 3 i) == -0.965385879022133124278480269394560686 + 0.988437503832249372031403430350121098e-2 i": +@@ -271,25 +299,35 @@ + float: 2 + idouble: 1 + ifloat: 2 ++ildouble: 1 ++ldouble: 1 + Test "Imaginary part of: ctanh (0 + pi/4 i) == 0.0 + 1.0 i": + float: 1 + ifloat: 1 + Test "Real part of: ctanh (0.75 + 1.25 i) == 1.37260757053378320258048606571226857 + 0.385795952609750664177596760720790220 i": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + # erf + Test "erf (1.25) == 0.922900128256458230136523481197281140": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + # erfc + Test "erfc (2.0) == 0.00467773498104726583793074363274707139": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "erfc (4.125) == 0.542340079956506600531223408575531062e-8": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + # exp10 + Test "exp10 (-1) == 0.1": +@@ -297,25 +335,53 @@ + float: 1 + idouble: 2 + ifloat: 1 ++ildouble: 2 ++ldouble: 2 + Test "exp10 (0.75) == 5.62341325190349080394951039776481231": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "exp10 (3) == 1000": + double: 6 + float: 2 + idouble: 6 + ifloat: 2 ++ildouble: 6 ++ldouble: 6 + + # expm1 + Test "expm1 (0.75) == 1.11700001661267466854536981983709561": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "expm1 (1) == M_El - 1.0": + float: 1 + ifloat: 1 + ++# floor ++Test "floor (-4503599627370496.25) == -4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "floor (-4503599627370496.5) == -4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "floor (4503599627370496.75) == 4503599627370496.0": ++ildouble: 1 ++ldouble: 1 ++Test "floor (4503599627370497.5) == 4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "floor (9007199254740991.5) == 9007199254740991.0": ++ildouble: 1 ++ldouble: 1 ++Test "floor (9007199254740993.5) == 9007199254740993.0": ++ildouble: 1 ++ldouble: 1 ++ + # hypot + Test "hypot (-0.7, -12.4) == 12.419742348374220601176836866763271": + float: 1 +@@ -348,6 +414,8 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "j0 (0.75) == 0.864242275166648623555731103820923211": + float: 1 + ifloat: 1 +@@ -356,6 +424,8 @@ + float: 1 + idouble: 2 + ifloat: 1 ++ildouble: 2 ++ldouble: 2 + Test "j0 (2.0) == 0.223890779141235668051827454649948626": + float: 2 + ifloat: 2 +@@ -364,6 +434,8 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "j0 (8.0) == 0.171650807137553906090869407851972001": + float: 1 + ifloat: 1 +@@ -375,9 +447,13 @@ + Test "j1 (2.0) == 0.576724807756873387202448242269137087": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "j1 (8.0) == 0.234636346853914624381276651590454612": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + # jn + Test "jn (0, -4.0) == -3.9714980986384737228659076845169804197562E-1": +@@ -385,6 +461,8 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "jn (0, 0.75) == 0.864242275166648623555731103820923211": + float: 1 + ifloat: 1 +@@ -393,6 +471,8 @@ + float: 1 + idouble: 2 + ifloat: 1 ++ildouble: 2 ++ldouble: 2 + Test "jn (0, 2.0) == 0.223890779141235668051827454649948626": + float: 2 + ifloat: 2 +@@ -401,6 +481,8 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "jn (0, 8.0) == 0.171650807137553906090869407851972001": + float: 1 + ifloat: 1 +@@ -410,24 +492,34 @@ + Test "jn (1, 2.0) == 0.576724807756873387202448242269137087": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "jn (1, 8.0) == 0.234636346853914624381276651590454612": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "jn (10, 0.125) == 0.250543369809369890173993791865771547e-18": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "jn (10, 0.75) == 0.149621713117596814698712483621682835e-10": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "jn (10, 10.0) == 0.207486106633358857697278723518753428": + double: 4 + float: 3 + idouble: 4 + ifloat: 3 ++ildouble: 4 ++ldouble: 4 + Test "jn (10, 2.0) == 0.251538628271673670963516093751820639e-6": + float: 4 + ifloat: 4 +@@ -436,21 +528,29 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "jn (3, 0.75) == 0.848438342327410884392755236884386804e-2": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "jn (3, 10.0) == 0.0583793793051868123429354784103409563": + double: 3 + float: 1 + idouble: 3 + ifloat: 1 ++ildouble: 3 ++ldouble: 3 + Test "jn (3, 2.0) == 0.128943249474402051098793332969239835": + double: 1 + float: 2 + idouble: 1 + ifloat: 2 ++ildouble: 1 ++ldouble: 1 + + # lgamma + Test "lgamma (0.7) == 0.260867246531666514385732417016759578": +@@ -458,11 +558,291 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "lgamma (1.2) == -0.853740900033158497197028392998854470e-1": + double: 1 + float: 2 + idouble: 1 + ifloat: 2 ++ildouble: 1 ++ldouble: 1 ++ ++# llrint ++Test "llrint (-72057594037927936.75) == -72057594037927937LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint (-72057594037927937.5) == -72057594037927938LL": ++ildouble: 2 ++ldouble: 2 ++Test "llrint (-9007199254740992.75) == -9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint (72057594037927936.75) == 72057594037927937LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint (72057594037927937.5) == 72057594037927938LL": ++ildouble: -2 ++ldouble: -2 ++Test "llrint (9007199254740992.75) == 9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++ ++# llrint_downward ++Test "llrint_downward (-4503599627370496.25) == -4503599627370497LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-4503599627370496.4999999999999) == -4503599627370497LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-4503599627370496.5) == -4503599627370497LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-4503599627370497.4999999999999) == -4503599627370498LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-72057594037927936.25) == -72057594037927937LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-72057594037927936.5) == -72057594037927937LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-72057594037927936.75) == -72057594037927937LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-72057594037927937.5) == -72057594037927938LL": ++ildouble: 2 ++ldouble: 2 ++Test "llrint_downward (-9007199254740991.4999999999999) == -9007199254740992LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-9007199254740992.25) == -9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-9007199254740992.4999999999999) == -9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-9007199254740992.5) == -9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-9007199254740992.5000000000001) == -9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (-9007199254740992.75) == -9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (4503599627370496.5000000000001) == 4503599627370496LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (4503599627370496.75) == 4503599627370496LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (4503599627370497.5) == 4503599627370497LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (72057594037927935.5) == 72057594037927935LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (72057594037927937.5) == 72057594037927937LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_downward (9007199254740991.5) == 9007199254740991LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (9007199254740991.5000000000001) == 9007199254740991LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (9007199254740993.4999999999999) == 9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (9007199254740993.5) == 9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_downward (9007199254740993.5000000000001) == 9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++ ++# llrint_tonearest ++Test "llrint_tonearest (-72057594037927936.75) == -72057594037927937LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_tonearest (-72057594037927937.5) == -72057594037927938LL": ++ildouble: 2 ++ldouble: 2 ++Test "llrint_tonearest (-9007199254740992.75) == -9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_tonearest (72057594037927936.75) == 72057594037927937LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_tonearest (72057594037927937.5) == 72057594037927938LL": ++ildouble: -2 ++ldouble: -2 ++Test "llrint_tonearest (9007199254740992.75) == 9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++ ++# llrint_towardzero ++Test "llrint_towardzero (-4503599627370496.75) == -4503599627370496LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_towardzero (-4503599627370497.5) == -4503599627370497LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_towardzero (-72057594037927935.5) == -72057594037927935LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_towardzero (-72057594037927937.5) == -72057594037927937LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_towardzero (-9007199254740991.5) == -9007199254740991LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_towardzero (-9007199254740993.5) == -9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_towardzero (4503599627370496.75) == 4503599627370496LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_towardzero (4503599627370497.5) == 4503599627370497LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_towardzero (72057594037927935.5) == 72057594037927935LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_towardzero (72057594037927937.5) == 72057594037927937LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_towardzero (9007199254740991.5) == 9007199254740991LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_towardzero (9007199254740993.5) == 9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++ ++# llrint_upward ++Test "llrint_upward (-4503599627370496.5000000000001) == -4503599627370496LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (-4503599627370496.75) == -4503599627370496LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (-4503599627370497.5) == -4503599627370497LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (-72057594037927935.5) == -72057594037927935LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (-72057594037927937.5) == -72057594037927937LL": ++ildouble: 1 ++ldouble: 1 ++Test "llrint_upward (-9007199254740991.5) == -9007199254740991LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (-9007199254740991.5000000000001) == -9007199254740991LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (-9007199254740993.4999999999999) == -9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (-9007199254740993.5) == -9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (-9007199254740993.5000000000001) == -9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (4503599627370496.25) == 4503599627370497LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (4503599627370496.4999999999999) == 4503599627370497LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (4503599627370496.5) == 4503599627370497LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (4503599627370497.4999999999999) == 4503599627370498LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (72057594037927936.25) == 72057594037927937LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (72057594037927936.5) == 72057594037927937LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (72057594037927936.75) == 72057594037927937LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (72057594037927937.5) == 72057594037927938LL": ++ildouble: -2 ++ldouble: -2 ++Test "llrint_upward (9007199254740991.4999999999999) == 9007199254740992LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (9007199254740992.25) == 9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (9007199254740992.4999999999999) == 9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (9007199254740992.5) == 9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (9007199254740992.5000000000001) == 9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++Test "llrint_upward (9007199254740992.75) == 9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++ ++# llround ++Test "llround (-4503599627370496.5) == -4503599627370497LL": ++ildouble: 1 ++ldouble: 1 ++Test "llround (-72057594037927936.5) == -72057594037927937LL": ++ildouble: 1 ++ldouble: 1 ++Test "llround (-72057594037927936.75) == -72057594037927937LL": ++ildouble: 1 ++ldouble: 1 ++Test "llround (-72057594037927937.5) == -72057594037927938LL": ++ildouble: 2 ++ldouble: 2 ++Test "llround (-9007199254740992.5) == -9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++Test "llround (-9007199254740992.75) == -9007199254740993LL": ++ildouble: 1 ++ldouble: 1 ++Test "llround (-9223372036854775806.25) == -9223372036854775806LL": ++ildouble: -2 ++ldouble: -2 ++Test "llround (-9223372036854775806.5) == -9223372036854775807LL": ++ildouble: -1 ++ldouble: -1 ++Test "llround (-9223372036854775807.0) == -9223372036854775807LL": ++ildouble: -1 ++ldouble: -1 ++Test "llround (4503599627370496.5) == 4503599627370497LL": ++ildouble: -1 ++ldouble: -1 ++Test "llround (72057594037927936.5) == 72057594037927937LL": ++ildouble: -1 ++ldouble: -1 ++Test "llround (72057594037927936.75) == 72057594037927937LL": ++ildouble: -1 ++ldouble: -1 ++Test "llround (72057594037927937.5) == 72057594037927938LL": ++ildouble: -2 ++ldouble: -2 ++Test "llround (9007199254740992.5) == 9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++Test "llround (9007199254740992.75) == 9007199254740993LL": ++ildouble: -1 ++ldouble: -1 ++Test "llround (9223372036854775806.25) == 9223372036854775806LL": ++ildouble: 1 ++ldouble: 1 + + # log10 + Test "log10 (0.75) == -0.124938736608299953132449886193870744": +@@ -470,6 +850,8 @@ + float: 2 + idouble: 1 + ifloat: 2 ++ildouble: 1 ++ldouble: 1 + Test "log10 (e) == log10(e)": + float: 1 + ifloat: 1 +@@ -479,42 +861,81 @@ + float: 1 + ifloat: 1 + +-# lround +-Test "lround (1071930.0008) == 1071930": +-double: -214511494 +-idouble: -214511494 ++# rint_downward ++Test "rint_downward (-4503599627370496.25) == -4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "rint_downward (-4503599627370496.5) == -4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "rint_downward (4503599627370496.75) == 4503599627370496.0": ++ildouble: 1 ++ldouble: 1 ++Test "rint_downward (4503599627370497.5) == 4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++ ++# rint_towardzero ++Test "rint_towardzero (-4503599627370496.75) == -4503599627370496.0": ++ildouble: 1 ++ldouble: 1 ++Test "rint_towardzero (-4503599627370497.5) == -4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "rint_towardzero (4503599627370496.75) == 4503599627370496.0": ++ildouble: 1 ++ldouble: 1 ++Test "rint_towardzero (4503599627370497.5) == 4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++ ++# rint_upward ++Test "rint_upward (-4503599627370496.75) == -4503599627370496.0": ++ildouble: 1 ++ldouble: 1 ++Test "rint_upward (-4503599627370497.5) == -4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "rint_upward (4503599627370496.25) == 4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "rint_upward (4503599627370496.5) == 4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++ ++# round ++Test "round (-4503599627370496.5) == -4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "round (4503599627370496.5) == 4503599627370497.0": ++ildouble: 1 ++ldouble: 1 + + # sincos + Test "sincos (M_PI_6l*2.0, &sin_res, &cos_res) puts 0.5 in cos_res": + double: 1 +-float: 1 + idouble: 1 +-ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "sincos (M_PI_6l*2.0, &sin_res, &cos_res) puts 0.86602540378443864676372317075293616 in sin_res": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 +-Test "sincos (pi/2, &sin_res, &cos_res) puts 0 in cos_res": +-double: 1 +-float: 1 +-idouble: 1 +-ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "sincos (pi/6, &sin_res, &cos_res) puts 0.86602540378443864676372317075293616 in cos_res": + float: 1 + ifloat: 1 + +-# tan +-Test "tan (pi/4) == 1": +-double: 1 +-idouble: 1 +- + # tgamma + Test "tgamma (-0.5) == -2 sqrt (pi)": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "tgamma (0.5) == sqrt (pi)": + float: 1 + ifloat: 1 +@@ -523,6 +944,34 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 ++ ++# trunc ++Test "trunc (-4503599627370496.75) == -4503599627370496.0": ++ildouble: 1 ++ldouble: 1 ++Test "trunc (-4503599627370497.5) == -4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "trunc (-9007199254740991.5) == -9007199254740991.0": ++ildouble: 1 ++ldouble: 1 ++Test "trunc (-9007199254740993.5) == -9007199254740993.0": ++ildouble: 1 ++ldouble: 1 ++Test "trunc (4503599627370496.75) == 4503599627370496.0": ++ildouble: 1 ++ldouble: 1 ++Test "trunc (4503599627370497.5) == 4503599627370497.0": ++ildouble: 1 ++ldouble: 1 ++Test "trunc (9007199254740991.5) == 9007199254740991.0": ++ildouble: 1 ++ldouble: 1 ++Test "trunc (9007199254740993.5) == 9007199254740993.0": ++ildouble: 1 ++ldouble: 1 + + # y0 + Test "y0 (1.0) == 0.0882569642156769579829267660235151628": +@@ -530,11 +979,15 @@ + float: 1 + idouble: 2 + ifloat: 1 ++ildouble: 2 ++ldouble: 2 + Test "y0 (1.5) == 0.382448923797758843955068554978089862": + double: 2 + float: 1 + idouble: 2 + ifloat: 1 ++ildouble: 2 ++ldouble: 2 + Test "y0 (10.0) == 0.0556711672835993914244598774101900481": + float: 1 + ifloat: 1 +@@ -543,11 +996,15 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + + # y1 + Test "y1 (0.125) == -5.19993611253477499595928744876579921": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "y1 (1.5) == -0.412308626973911295952829820633445323": + float: 1 + ifloat: 1 +@@ -556,16 +1013,22 @@ + float: 1 + idouble: 3 + ifloat: 1 ++ildouble: 3 ++ldouble: 3 + Test "y1 (2.0) == -0.107032431540937546888370772277476637": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "y1 (8.0) == -0.158060461731247494255555266187483550": + double: 1 + float: 2 + idouble: 1 + ifloat: 2 ++ildouble: 1 ++ldouble: 1 + + # yn + Test "yn (0, 1.0) == 0.0882569642156769579829267660235151628": +@@ -573,11 +1036,15 @@ + float: 1 + idouble: 2 + ifloat: 1 ++ildouble: 2 ++ldouble: 2 + Test "yn (0, 1.5) == 0.382448923797758843955068554978089862": + double: 2 + float: 1 + idouble: 2 + ifloat: 1 ++ildouble: 2 ++ldouble: 2 + Test "yn (0, 10.0) == 0.0556711672835993914244598774101900481": + float: 1 + ifloat: 1 +@@ -586,9 +1053,13 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "yn (1, 0.125) == -5.19993611253477499595928744876579921": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "yn (1, 1.5) == -0.412308626973911295952829820633445323": + float: 1 + ifloat: 1 +@@ -597,118 +1068,140 @@ + float: 1 + idouble: 3 + ifloat: 1 ++ildouble: 3 ++ldouble: 3 + Test "yn (1, 2.0) == -0.107032431540937546888370772277476637": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "yn (1, 8.0) == -0.158060461731247494255555266187483550": + double: 1 + float: 2 + idouble: 1 + ifloat: 2 ++ildouble: 1 ++ldouble: 1 + Test "yn (10, 0.125) == -127057845771019398.252538486899753195": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "yn (10, 0.75) == -2133501638.90573424452445412893839236": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "yn (10, 1.0) == -121618014.278689189288130426667971145": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "yn (10, 10.0) == -0.359814152183402722051986577343560609": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "yn (10, 2.0) == -129184.542208039282635913145923304214": + double: 2 + idouble: 2 ++ildouble: 2 ++ldouble: 2 + Test "yn (3, 0.125) == -2612.69757350066712600220955744091741": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + Test "yn (3, 0.75) == -12.9877176234475433186319774484809207": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "yn (3, 10.0) == -0.251362657183837329779204747654240998": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + Test "yn (3, 2.0) == -1.12778377684042778608158395773179238": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + # Maximal error of functions: + Function: "atan2": +-float: 6 +-ifloat: 6 ++float: 1 ++ifloat: 1 + + Function: "atanh": + float: 1 + ifloat: 1 + +-Function: Real part of "cacosh": +-double: 1 +-float: 7 +-idouble: 1 +-ifloat: 7 +- + Function: Imaginary part of "cacosh": +-double: 1 +-float: 3 +-idouble: 1 +-ifloat: 3 ++float: 1 ++ifloat: 1 + + Function: Real part of "casin": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + + Function: Real part of "casinh": + double: 5 + float: 1 + idouble: 5 + ifloat: 1 ++ildouble: 5 ++ldouble: 5 + + Function: Imaginary part of "casinh": + double: 3 + float: 6 + idouble: 3 + ifloat: 6 +- +-Function: Real part of "catan": +-float: 4 +-ifloat: 4 ++ildouble: 3 ++ldouble: 3 + + Function: Imaginary part of "catan": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + + Function: Real part of "catanh": + double: 4 + idouble: 4 +- +-Function: Imaginary part of "catanh": +-float: 6 +-ifloat: 6 ++ildouble: 4 ++ldouble: 4 + + Function: "cbrt": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + Function: Real part of "ccos": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + + Function: Imaginary part of "ccos": + float: 1 +@@ -719,11 +1212,17 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + + Function: Imaginary part of "ccosh": + float: 1 + ifloat: 1 + ++Function: "ceil": ++ildouble: 1 ++ldouble: 1 ++ + Function: Real part of "cexp": + float: 1 + ifloat: 1 +@@ -736,37 +1235,41 @@ + float: 1 + ifloat: 1 + +-Function: Imaginary part of "clog": +-float: 3 +-ifloat: 3 +- + Function: Real part of "clog10": + float: 1 + ifloat: 1 + + Function: Imaginary part of "clog10": + double: 1 +-float: 5 ++float: 1 + idouble: 1 +-ifloat: 5 ++ifloat: 1 ++ildouble: 1 ++ldouble: 1 + + Function: "cos": + double: 2 + float: 1 + idouble: 2 + ifloat: 1 ++ildouble: 2 ++ldouble: 2 + + Function: Real part of "cpow": + double: 2 + float: 4 + idouble: 2 + ifloat: 4 ++ildouble: 2 ++ldouble: 2 + + Function: Imaginary part of "cpow": + double: 2 + float: 2 + idouble: 2 + ifloat: 2 ++ildouble: 2 ++ldouble: 2 + + Function: Real part of "csinh": + float: 1 +@@ -777,6 +1280,8 @@ + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + + Function: Real part of "csqrt": + float: 1 +@@ -785,12 +1290,16 @@ + Function: Imaginary part of "ctan": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + Function: Real part of "ctanh": + double: 1 + float: 2 + idouble: 1 + ifloat: 2 ++ildouble: 1 ++ldouble: 1 + + Function: Imaginary part of "ctanh": + float: 1 +@@ -799,22 +1308,34 @@ + Function: "erf": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + Function: "erfc": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + Function: "exp10": + double: 6 + float: 2 + idouble: 6 + ifloat: 2 ++ildouble: 6 ++ldouble: 6 + + Function: "expm1": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 ++ ++Function: "floor": ++ildouble: 1 ++ldouble: 1 + + Function: "hypot": + float: 1 +@@ -825,67 +1346,109 @@ + float: 2 + idouble: 2 + ifloat: 2 ++ildouble: 2 ++ldouble: 2 + + Function: "j1": + double: 1 + float: 2 + idouble: 1 + ifloat: 2 ++ildouble: 1 ++ldouble: 1 + + Function: "jn": + double: 4 + float: 4 + idouble: 4 + ifloat: 4 ++ildouble: 4 ++ldouble: 4 + + Function: "lgamma": + double: 1 + float: 2 + idouble: 1 + ifloat: 2 ++ildouble: 1 ++ldouble: 1 + + Function: "log10": + double: 1 + float: 2 + idouble: 1 + ifloat: 2 ++ildouble: 1 ++ldouble: 1 + + Function: "log1p": + float: 1 + ifloat: 1 + ++Function: "rint_downward": ++ildouble: 1 ++ldouble: 1 ++ ++Function: "rint_towardzero": ++ildouble: 1 ++ldouble: 1 ++ ++Function: "rint_upward": ++ildouble: 1 ++ldouble: 1 ++ ++Function: "round": ++ildouble: 1 ++ldouble: 1 ++ + Function: "sincos": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 + + Function: "tan": + double: 1 + idouble: 1 ++ildouble: 1 ++ldouble: 1 + + Function: "tgamma": + double: 1 + float: 1 + idouble: 1 + ifloat: 1 ++ildouble: 1 ++ldouble: 1 ++ ++Function: "trunc": ++ildouble: 1 ++ldouble: 1 + + Function: "y0": + double: 2 + float: 1 + idouble: 2 + ifloat: 1 ++ildouble: 2 ++ldouble: 2 + + Function: "y1": + double: 3 + float: 2 + idouble: 3 + ifloat: 2 ++ildouble: 3 ++ldouble: 3 + + Function: "yn": + double: 3 + float: 2 + idouble: 3 + ifloat: 2 ++ildouble: 3 ++ldouble: 3 + + # end of automatic generation +diff -Nurd ports.orig/sysdeps/hppa/Makefile ports/sysdeps/hppa/Makefile +--- ports.orig/sysdeps/hppa/Makefile 2003-12-18 04:51:49.000000000 +0100 ++++ ports/sysdeps/hppa/Makefile 2007-02-06 10:11:16.000000000 +0100 +@@ -39,3 +39,8 @@ + shared-only-routines += libgcc-compat + endif + endif ++ ++# We implement a 64-bit `long double'. The standard says we can do this. ++# This means our `long double' and `double' are identical. ++long-double-fcts = no ++ +diff -Nurd ports.orig/sysdeps/hppa/nptl/pthread_spin_init.c ports/sysdeps/hppa/nptl/pthread_spin_init.c +--- ports.orig/sysdeps/hppa/nptl/pthread_spin_init.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/hppa/nptl/pthread_spin_init.c 2007-02-06 10:11:16.000000000 +0100 +@@ -0,0 +1,29 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include "pthreadP.h" ++ ++int ++pthread_spin_init (pthread_spinlock_t *lock, int pshared) ++{ ++ int tmp = 0; ++ /* This should be a memory barrier to newer compilers */ ++ __asm__ __volatile__ ("stw,ma %1,0(%0)" ++ : : "r" (lock), "r" (tmp) : "memory"); ++ return 0; ++} +diff -Nurd ports.orig/sysdeps/hppa/nptl/pthread_spin_unlock.c ports/sysdeps/hppa/nptl/pthread_spin_unlock.c +--- ports.orig/sysdeps/hppa/nptl/pthread_spin_unlock.c 2006-07-14 15:51:24.000000000 +0200 ++++ ports/sysdeps/hppa/nptl/pthread_spin_unlock.c 2007-02-06 10:11:16.000000000 +0100 +@@ -16,21 +16,14 @@ + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + +-/* Ugly hack to avoid the declaration of pthread_spin_init. */ +-#define pthread_spin_init pthread_spin_init_XXX + #include "pthreadP.h" +-#undef pthread_spin_init + + int + pthread_spin_unlock (pthread_spinlock_t *lock) + { +-#if 0 +- volatile unsigned int *a = __ldcw_align (lock); +-#endif + int tmp = 0; + /* This should be a memory barrier to newer compilers */ + __asm__ __volatile__ ("stw,ma %1,0(%0)" + : : "r" (lock), "r" (tmp) : "memory"); + return 0; + } +-strong_alias (pthread_spin_unlock, pthread_spin_init) +diff -Nurd ports.orig/sysdeps/unix/sysv/linux/hppa/bits/atomic.h ports/sysdeps/unix/sysv/linux/hppa/bits/atomic.h +--- ports.orig/sysdeps/unix/sysv/linux/hppa/bits/atomic.h 2006-10-01 19:06:06.000000000 +0200 ++++ ports/sysdeps/unix/sysv/linux/hppa/bits/atomic.h 2007-02-06 10:11:16.000000000 +0100 +@@ -22,14 +22,10 @@ + #include + #include + +-/* We need EFAULT, ENONSYS, and EAGAIN */ +-#if !defined EFAULT && !defined ENOSYS && !defined EAGAIN +-#undef EFAULT +-#undef ENOSYS +-#undef EAGAIN ++/* We need EFAULT, ENONSYS */ ++#if !defined EFAULT && !defined ENOSYS + #define EFAULT 14 + #define ENOSYS 251 +-#define EAGAIN 11 + #endif + + #ifndef _BITS_ATOMIC_H +@@ -57,10 +53,10 @@ + + /* Use the kernel atomic light weight syscalls on hppa */ + #define LWS "0xb0" +-#define LWS_CAS 0x0 ++#define LWS_CAS "0" + /* Note r31 is the link register */ + #define LWS_CLOBBER "r1", "r26", "r25", "r24", "r23", "r22", "r21", "r20", "r28", "r31", "memory" +-#define ASM_EAGAIN -EAGAIN ++#define ASM_EAGAIN "11" + + #if __ASSUME_LWS_CAS + /* The only basic operation needed is compare and exchange. */ +@@ -74,8 +70,8 @@ + "copy %4, %%r25 \n\t" \ + "copy %5, %%r24 \n\t" \ + "ble " LWS "(%%sr2, %%r0) \n\t" \ +- "ldi 0, %%r20 \n\t" \ +- "cmpib,=,n " ASM_EAGAIN ",%%r21,0 \n\t" \ ++ "ldi " LWS_CAS ", %%r20 \n\t" \ ++ "cmpib,=,n " ASM_EAGAIN ",%%r21,0b \n\t" \ + "nop \n\t" \ + "stw %%r28, %0 \n\t" \ + "sub %%r0, %%r21, %%r21 \n\t" \ +@@ -99,22 +95,9 @@ + (ret != oldval); \ + }) + #else +-/* Non-atomic primitives. */ +-# define atomic_compare_and_exchange_val_acq(mem, newval, oldval) \ +- ({ __typeof (mem) __gmemp = (mem); \ +- __typeof (*mem) __gret = *__gmemp; \ +- __typeof (*mem) __gnewval = (newval); \ +- \ +- if (__gret == (oldval)) \ +- *__gmemp = __gnewval; \ +- __gret; }) ++# error __ASSUME_LWS_CAS is required to build glibc. ++#endif ++/* __ASSUME_LWS_CAS */ + +-# define atomic_compare_and_exchange_bool_acq(mem, newval, oldval) \ +- ({ __typeof (mem) __gmemp = (mem); \ +- __typeof (*mem) __gnewval = (newval); \ +- \ +- *__gmemp == (oldval) ? (*__gmemp = __gnewval, 0) : 1; }) + #endif +- +-#endif /* bits/atomic.h */ +- ++/* _BITS_ATOMIC_H */ +diff -Nurd ports.orig/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h ports/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h +--- ports.orig/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h 2006-06-09 02:48:17.000000000 +0200 ++++ ports/sysdeps/unix/sysv/linux/hppa/bits/fcntl.h 2007-02-06 10:11:16.000000000 +0100 +@@ -210,7 +210,8 @@ + unsigned int __flags); + + /* Splice two files together. */ +-extern int splice (int __fdin, int __fdout, size_t __len, unsigned int __flags) ++extern int splice (int __fdin, __off64_t *offin, int __fdout, ++ __off64_t *__offout, size_t __len, unsigned int __flags) + __THROW; + + /* In-kernel implementation of tee for pipe buffers. */ +diff -Nurd ports.orig/sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h ports/sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h +--- ports.orig/sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h 2006-10-01 19:06:06.000000000 +0200 ++++ ports/sysdeps/unix/sysv/linux/hppa/nptl/sysdep-cancel.h 2007-02-06 10:11:16.000000000 +0100 +@@ -212,4 +212,11 @@ + # define NO_CANCELLATION 1 + + #endif +-/* !defined NOT_IN_libc || defined IS_IN_libpthread */ ++/* !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt */ ++ ++#ifndef __ASSEMBLER__ ++# define RTLD_SINGLE_THREAD_P \ ++ __builtin_expect (THREAD_GETMEM (THREAD_SELF, \ ++ header.multiple_threads) == 0, 1) ++#endif ++ +diff -Nurd ports.orig/sysdeps/unix/sysv/linux/hppa/sysdep.h ports/sysdeps/unix/sysv/linux/hppa/sysdep.h +--- ports.orig/sysdeps/unix/sysv/linux/hppa/sysdep.h 2006-10-01 19:06:06.000000000 +0200 ++++ ports/sysdeps/unix/sysv/linux/hppa/sysdep.h 2007-02-06 10:12:04.000000000 +0100 +@@ -479,3 +479,8 @@ + #define CLOB_ARGS_0 CLOB_ARGS_1, "%r26" + + #endif /* __ASSEMBLER__ */ ++ ++/* Pointer mangling is not yet supported for HPPA. */ ++#define PTR_MANGLE(var) (void) (var) ++#define PTR_DEMANGLE(var) (void) (var) ++ --- glibc-2.5.orig/debian/patches/hppa/submitted-ustat.diff +++ glibc-2.5/debian/patches/hppa/submitted-ustat.diff @@ -0,0 +1,34 @@ +2006-07-16 Jeff Bailey + + * sysdeps/unix/sysv/linux/hppa/sys/procfs.h: Don't include + elf.h. + Declare elf_greg_t, elf_gregset_t, elf_fpreg_t, + and elf_fpregset_t. + +Index: sysdeps/unix/sysv/linux/hppa/sys/procfs.h +=================================================================== +RCS file: /cvs/glibc/ports/sysdeps/unix/sysv/linux/hppa/sys/procfs.h,v +retrieving revision 1.2 +diff -u -p -r1.2 procfs.h +--- ports/sysdeps/unix/sysv/linux/hppa/sys/procfs.h 6 Jul 2001 04:56:16 -0000 1.2 ++++ ports/sysdeps/unix/sysv/linux/hppa/sys/procfs.h 16 Jul 2006 16:57:39 -0000 +@@ -34,10 +34,18 @@ + #include + #include + #include +-#include + + __BEGIN_DECLS + ++typedef unsigned long elf_greg_t; ++#define ELF_NGREG 80 /* We only need 64 at present, but leave space ++ for expansion. */ ++typedef elf_greg_t elf_gregset_t[ELF_NGREG]; ++ ++#define ELF_NFPREG 32 ++typedef double elf_fpreg_t; ++typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG]; ++ + struct elf_siginfo + { + int si_signo; /* Signal number. */ --- glibc-2.5.orig/debian/patches/hppa/submitted-nptl-carlos2.diff +++ glibc-2.5/debian/patches/hppa/submitted-nptl-carlos2.diff @@ -0,0 +1,182 @@ +Index: nptl/allocatestack.c +=================================================================== +RCS file: /cvs/glibc/libc/nptl/allocatestack.c,v +retrieving revision 1.64 +diff -u -p -r1.64 allocatestack.c +--- nptl/allocatestack.c 23 Aug 2006 17:39:47 -0000 1.64 ++++ nptl/allocatestack.c 5 Feb 2007 23:25:09 -0000 +@@ -289,8 +289,15 @@ change_stack_perm (struct pthread *pd + & pagemask) + pd->guardsize) & pagemask)); + size_t len = pd->stackblock + pd->stackblock_size - stack; + #else ++# if _STACK_GROWS_DOWN + void *stack = pd->stackblock + pd->guardsize; + size_t len = pd->stackblock_size - pd->guardsize; ++# elif _STACK_GROWS_UP ++ void *stack = pd->stackblock; ++ size_t len = (size_t)pd - pd->guardsize - (size_t)pd->stackblock; ++# else ++# error "Define either _STACK_GROWS_DOWN or _STACK_GROWS_UP" ++# endif + #endif + if (mprotect (stack, len, PROT_READ | PROT_WRITE | PROT_EXEC) != 0) + return errno; +@@ -571,7 +578,13 @@ allocate_stack (const struct pthread_att + #ifdef NEED_SEPARATE_REGISTER_STACK + char *guard = mem + (((size - guardsize) / 2) & ~pagesize_m1); + #else ++# if _STACK_GROWS_DOWN + char *guard = mem; ++# elif _STACK_GROWS_UP ++ char *guard = (char *)(((size_t)pd - guardsize) & ~pagesize_m1); ++# else ++# error "Define either _STACK_GROWS_DOWN or _STACK_GROWS_UP" ++# endif + #endif + if (mprotect (guard, guardsize, PROT_NONE) != 0) + { +@@ -619,9 +632,17 @@ allocate_stack (const struct pthread_att + prot) != 0) + goto mprot_error; + #else ++# if _STACK_GROWS_DOWN + if (mprotect ((char *) mem + guardsize, pd->guardsize - guardsize, + prot) != 0) + goto mprot_error; ++# elif _STACK_GROWS_UP ++ if (mprotect ((char *) pd - pd->guardsize, ++ pd->guardsize - guardsize, prot) != 0) ++ goto mprot_error; ++# else ++# error "Define either _STACK_GROWS_DOWN or _STACK_GROWS_UP" ++# endif + #endif + + pd->guardsize = guardsize; +@@ -662,7 +683,13 @@ allocate_stack (const struct pthread_att + *stack = pd->stackblock; + *stacksize = stacktop - *stack; + #else ++# if _STACK_GROWS_DOWN + *stack = stacktop; ++# elif _STACK_GROWS_UP ++ *stack = pd->stackblock; ++# else ++# error "Define either _STACK_GROWS_DOWN or _STACK_GROWS_UP" ++# endif + #endif + + return 0; +Index: nptl/pthread_barrier_wait.c +=================================================================== +RCS file: /cvs/glibc/libc/nptl/pthread_barrier_wait.c,v +retrieving revision 1.1 +diff -u -p -r1.1 pthread_barrier_wait.c +--- nptl/sysdeps/pthread/pthread_barrier_wait.c 28 Oct 2006 05:06:42 -0000 1.1 ++++ nptl/sysdeps/pthread/pthread_barrier_wait.c 5 Feb 2007 23:25:09 -0000 +@@ -62,7 +62,7 @@ pthread_barrier_wait (barrier) + /* Wait for the event counter of the barrier to change. */ + do + lll_futex_wait (&ibarrier->curr_event, event); +- while (event == ibarrier->curr_event); ++ while (event == *(volatile unsigned int *)&ibarrier->curr_event); + } + + /* Make sure the init_count is stored locally or in a register. */ +Index: nptl/tst-align2.c +=================================================================== +RCS file: /cvs/glibc/libc/nptl/tst-align2.c,v +retrieving revision 1.1 +diff -u -p -r1.1 tst-align2.c +--- nptl/tst-align2.c 22 Dec 2004 20:06:24 -0000 1.1 ++++ nptl/tst-align2.c 5 Feb 2007 23:25:09 -0000 +@@ -25,6 +25,8 @@ + #include + #include + ++#include ++ + static int + f (void *arg) + { +@@ -53,8 +55,15 @@ do_test (void) + char st[256 * 1024]; + pid_t p = __clone2 (f, st, sizeof (st), 0, 0); + #else ++# if _STACK_GROWS_DOWN + char st[128 * 1024]; + pid_t p = clone (f, st + sizeof (st), 0, 0); ++# elif _STACK_GROWS_UP ++ char st[128 * 1024] __attribute__ ((aligned)); ++ pid_t p = clone (f, st, 0, 0); ++# else ++# error "Define either _STACK_GROWS_DOWN or _STACK_GROWS_UP" ++# endif + #endif + if (p == -1) + { +Index: nptl/tst-getpid1.c +=================================================================== +RCS file: /cvs/glibc/libc/nptl/tst-getpid1.c,v +retrieving revision 1.4 +diff -u -p -r1.4 tst-getpid1.c +--- nptl/tst-getpid1.c 13 Mar 2005 03:28:47 -0000 1.4 ++++ nptl/tst-getpid1.c 5 Feb 2007 23:25:09 -0000 +@@ -6,6 +6,8 @@ + #include + #include + ++#include ++ + #ifndef TEST_CLONE_FLAGS + #define TEST_CLONE_FLAGS 0 + #endif +@@ -47,8 +49,15 @@ do_test (void) + char st[256 * 1024] __attribute__ ((aligned)); + pid_t p = __clone2 (f, st, sizeof (st), TEST_CLONE_FLAGS, 0); + #else ++# if _STACK_GROWS_DOWN + char st[128 * 1024] __attribute__ ((aligned)); + pid_t p = clone (f, st + sizeof (st), TEST_CLONE_FLAGS, 0); ++# elif _STACK_GROWS_UP ++ char st[128 * 1024] __attribute__ ((aligned)); ++ pid_t p = clone (f, st, TEST_CLONE_FLAGS, 0); ++# else ++# error "Define either _STACK_GROWS_DOWN or _STACK_GROWS_UP" ++# endif + #endif + if (p == -1) + { +Index: nptl/sysdeps/pthread/Makefile +=================================================================== +RCS file: /cvs/glibc/libc/nptl/sysdeps/pthread/Makefile,v +retrieving revision 1.8 +diff -u -p -r1.8 Makefile +--- nptl/sysdeps/pthread/Makefile 28 Feb 2006 07:09:41 -0000 1.8 ++++ nptl/sysdeps/pthread/Makefile 5 Feb 2007 23:25:09 -0000 +@@ -41,7 +41,9 @@ endif + + ifeq ($(have-forced-unwind),yes) + tests += tst-mqueue8x ++ldflags-libgcc_s = --as-needed -lgcc_s --no-as-needed + CFLAGS-tst-mqueue8x.c += -fexceptions ++LDFLAGS-tst-mqueue8x += $(ldflags-libgcc_s) + endif + endif + +Index: stdio-common/Makefile +=================================================================== +RCS file: /cvs/glibc/libc/stdio-common/Makefile,v +retrieving revision 1.99 +diff -u -p -r1.99 Makefile +--- stdio-common/Makefile 22 Jan 2007 16:17:13 -0000 1.99 ++++ stdio-common/Makefile 5 Feb 2007 23:25:09 -0000 +@@ -76,7 +76,7 @@ $(objpfx)tst-printf.out: $(objpfx)tst-pr + $(SHELL) -e tst-printf.sh $(common-objpfx) '$(run-program-prefix)' + endif + +-CFLAGS-vfprintf.c = -Wno-uninitialized ++CFLAGS-vfprintf.c = -Wno-uninitialized -fno-delayed-branch + CFLAGS-tst-printf.c = -Wno-format + CFLAGS-tstdiomisc.c = -Wno-format + CFLAGS-scanf4.c = -Wno-format --- glibc-2.5.orig/debian/patches/hurd-i386/local-enable-ldconfig.diff +++ glibc-2.5/debian/patches/hurd-i386/local-enable-ldconfig.diff @@ -0,0 +1,78 @@ +# DP: Description: Enable ldconfig and such on hurd-i386 +# DP: Author: Jeff Bailey +# DP: Related Bugs: #309489 +# DP: Upstream status: Not submitted +# DP: Status Details: Upstream disagrees with this patch, but I'm +# DP: putting it in so that we have expected Debian behaviour on the +# DP: Hurd. We should review this when the ELF standard supports runpath. +# DP: Date: 08 Apr 2003 + +Index: sysdeps/mach/hurd/configure +=================================================================== +--- sysdeps/mach/hurd/configure.orig ++++ sysdeps/mach/hurd/configure +@@ -90,3 +90,5 @@ + echo "$as_me: error: Hurd headers not installed or too old" >&2;} + { (exit 1); exit 1; }; } + fi ++ ++use_ldconfig=yes +Index: sysdeps/mach/hurd/configure.in +=================================================================== +--- sysdeps/mach/hurd/configure.in.orig ++++ sysdeps/mach/hurd/configure.in +@@ -36,3 +36,5 @@ + if test "x$libc_cv_hurd_version" != xok; then + AC_MSG_ERROR(Hurd headers not installed or too old) + fi ++ ++use_ldconfig=yes +Index: sysdeps/mach/hurd/dl-cache.c +=================================================================== +--- sysdeps/mach/hurd/dl-cache.c ++++ /dev/null +@@ -1,29 +0,0 @@ +-/* Stubby version of dl-cache; the Hurd doesn't support this "feature". +- Copyright (C) 1996, 1997 Free Software Foundation, Inc. +- This file is part of the GNU C Library. +- +- The GNU C Library is free software; you can redistribute it and/or +- modify it under the terms of the GNU Lesser General Public +- License as published by the Free Software Foundation; either +- version 2.1 of the License, or (at your option) any later version. +- +- The GNU C Library is distributed in the hope that it will be useful, +- but WITHOUT ANY WARRANTY; without even the implied warranty of +- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +- Lesser General Public License for more details. +- +- You should have received a copy of the GNU Lesser General Public +- License along with the GNU C Library; if not, write to the Free +- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +- 02111-1307 USA. */ +- +-const char * +-_dl_load_cache_lookup (const char *name) +-{ +- return 0; +-} +- +-void +-_dl_unload_cache (void) +-{ +-} +Index: elf/ldconfig.c +=================================================================== +--- elf/ldconfig.c.orig ++++ elf/ldconfig.c +@@ -57,6 +57,10 @@ + + #define PACKAGE _libc_intl_domainname + ++#ifndef PATH_MAX ++#define PATH_MAX 1024 ++#endif ++ + static const struct + { + const char *name; --- glibc-2.5.orig/debian/patches/hurd-i386/cvs-getsid.diff +++ glibc-2.5/debian/patches/hurd-i386/cvs-getsid.diff @@ -0,0 +1,24 @@ +2006-01-18 Samuel Thibault + + [BZ #2178] + * sysdeps/mach/hurd/getsid.c (getsid): When parameter PID is zero, + use _hurd_pid instead. + +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/mach/hurd/getsid.c,v +retrieving revision 1.4 +retrieving revision 1.5 +Index: sysdeps/mach/hurd/getsid.c +=================================================================== +--- sysdeps/mach/hurd/getsid.c.orig ++++ sysdeps/mach/hurd/getsid.c +@@ -31,6 +31,9 @@ + if (pid == 0) + pid = _hurd_pid; + ++ if (pid == 0) ++ pid = _hurd_pid; ++ + err = __USEPORT (PROC, __proc_getsid (port, pid, &sid)); + if (err) + return (pid_t) __hurd_fail (err); --- glibc-2.5.orig/debian/patches/hurd-i386/local-tls.diff +++ glibc-2.5/debian/patches/hurd-i386/local-tls.diff @@ -0,0 +1,25 @@ +diff -urN glibc-2.5-orig/include/errno.h glibc-2.5/include/errno.h +--- glibc-2.5-orig/include/errno.h 2006-02-02 09:37:58.000000000 +0000 ++++ glibc-2.5/include/errno.h 2007-03-04 15:53:25.000000000 +0000 +@@ -21,7 +21,7 @@ + + # include /* Defines USE_TLS. */ + +-# if USE___THREAD ++# if USE___THREAD && !defined(__GNU__) + # undef errno + # ifndef NOT_IN_libc + # define errno __libc_errno +diff -urN glibc-2.5-orig/sysdeps/mach/i386/sysdep.h glibc-2.5/sysdeps/mach/i386/sysdep.h +--- glibc-2.5-orig/sysdeps/mach/i386/sysdep.h 2001-07-06 04:56:00.000000000 +0000 ++++ glibc-2.5/sysdeps/mach/i386/sysdep.h 2007-03-01 20:23:59.000000000 +0000 +@@ -16,6 +16,9 @@ + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + ++#include ++#include ++ + #define LOSE asm volatile ("hlt") + + #define SNARF_ARGS(entry_sp, argc, argv, envp) \ --- glibc-2.5.orig/debian/patches/hurd-i386/submitted-ioctl-decode-argument.diff +++ glibc-2.5/debian/patches/hurd-i386/submitted-ioctl-decode-argument.diff @@ -0,0 +1,62 @@ +2005-07-28 Samuel Thibault + + * ioctl.c (__ioctl): Add handling of parameter-less ioctls. + +2005-07-28 Samuel Thibault + + * ioctls.h (_IOIW): New macro for immediate-write ioctls. + +Index: sysdeps/mach/hurd/ioctl.c +=================================================================== +--- sysdeps/mach/hurd/ioctl.c.orig ++++ sysdeps/mach/hurd/ioctl.c +@@ -89,7 +89,7 @@ + void *p; + #endif + +- void *arg; ++ void *arg = NULL; + + error_t err; + +@@ -140,7 +140,7 @@ + in (_IOT_COUNT1 (type), _IOT_TYPE1 (type)); + in (_IOT_COUNT2 (type), _IOT_TYPE2 (type)); + } +- else if (_IOC_INOUT (request) == IOC_VOID) ++ else if ((_IOC_INOUT (request) == IOC_VOID) && _IOT_COUNT0 (type)) + { + /* The RPC takes a single integer_t argument. + Rather than pointing to the value, ARG is the value itself. */ +@@ -209,11 +209,15 @@ + return msg.header.RetCode; + } + +- va_list ap; ++ if (_IOT_COUNT0 (type)) ++ { ++ /* Data need either be sent, received, or even both. */ ++ va_list ap; + +- va_start (ap, request); +- arg = va_arg (ap, void *); +- va_end (ap); ++ va_start (ap, request); ++ arg = va_arg (ap, void *); ++ va_end (ap); ++ } + + { + /* Check for a registered handler for REQUEST. */ +Index: sysdeps/mach/hurd/bits/ioctls.h +=================================================================== +--- sysdeps/mach/hurd/bits/ioctls.h.orig ++++ sysdeps/mach/hurd/bits/ioctls.h +@@ -118,6 +118,7 @@ + _IOT_foobar is defined either in this file, + or where struct foobar is defined. */ + #define _IO(g, n) _IOC (IOC_VOID, (g), (n), 0) ++#define _IOIW(g, n, t) _IOC (IOC_VOID, (g), (n), _IOC_ENCODE_TYPE (t)) + #define _IOR(g, n, t) _IOC (IOC_OUT, (g), (n), _IOC_ENCODE_TYPE (t)) + #define _IOW(g, n, t) _IOC (IOC_IN, (g), (n), _IOC_ENCODE_TYPE (t)) + #define _IOWR(g, n, t) _IOC (IOC_INOUT, (g), (n), _IOC_ENCODE_TYPE (t)) --- glibc-2.5.orig/debian/patches/hurd-i386/submitted-trivial.diff +++ glibc-2.5/debian/patches/hurd-i386/submitted-trivial.diff @@ -0,0 +1,118 @@ +Not yet applied. Needed on glibc-2_5-branch and HEAD. + +2006-06-13 Thomas Schwinge + + * sysdeps/mach/hurd/tls.h: Change `ASSEMBLER' conditional to + `__ASSEMBLER__'. + * sysdeps/mach/hurd/i386/tls.h: Likewise. + +Index: sysdeps/mach/hurd/tls.h +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/mach/hurd/tls.h,v +retrieving revision 1.3 +diff -u -p -r1.3 tls.h +--- sysdeps/mach/hurd/tls.h 2 Feb 2005 19:43:56 -0000 1.3 ++++ sysdeps/mach/hurd/tls.h 13 Jun 2006 13:57:55 -0000 +@@ -20,7 +20,7 @@ + #ifndef _TLS_H + #define _TLS_H + +-#if defined HAVE_TLS_SUPPORT && !defined ASSEMBLER ++#if defined HAVE_TLS_SUPPORT && !defined __ASSEMBLER__ + + # include + # include +Index: sysdeps/mach/hurd/i386/tls.h +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/mach/hurd/i386/tls.h,v +retrieving revision 1.11 +diff -u -p -r1.11 tls.h +--- sysdeps/mach/hurd/i386/tls.h 5 Mar 2006 02:52:58 -0000 1.11 ++++ sysdeps/mach/hurd/i386/tls.h 13 Jun 2006 13:57:55 -0000 +@@ -32,7 +32,7 @@ + thread pointer points to is unspecified. Allocate the TCB there. */ + # define TLS_TCB_AT_TP 1 + +-# ifndef ASSEMBLER ++# ifndef __ASSEMBLER__ + + /* Use i386-specific RPCs to arrange that %gs segment register prefix + addresses the TCB in each thread. */ +@@ -168,7 +168,7 @@ _hurd_tls_fork (thread_t child, struct i + return err; + } + +-# endif /* !ASSEMBLER */ ++# endif /* !__ASSEMBLER__ */ + #endif /* HAVE_TLS_SUPPORT */ + + #endif /* i386/tls.h */ + + +Needed for HEAD. Not sure about glibc-2_5-branch. + +2007-02-07 Thomas Schwinge + + * argp/argp-help.c: Include . + +Index: argp/argp-help.c +=================================================================== +RCS file: /cvs/glibc/libc/argp/argp-help.c,v +retrieving revision 1.54 +diff -u -p -r1.54 argp-help.c +--- argp/argp-help.c 10 May 2006 06:28:06 -0000 1.54 ++++ argp/argp-help.c 7 Feb 2007 12:07:17 -0000 +@@ -41,6 +41,7 @@ char *alloca (); + # endif + #endif + ++#include + #include + #include + #include + + +Needed for HEAD. Not sure about glibc-2_5-branch. + +2007-02-07 Thomas Schwinge + + * posix/wordexp.c: Include . + +Index: posix/wordexp.c +=================================================================== +RCS file: /cvs/glibc/libc/posix/wordexp.c,v +retrieving revision 1.54 +diff -u -p -r1.54 wordexp.c +--- posix/wordexp.c 25 Jan 2007 00:43:39 -0000 1.54 ++++ posix/wordexp.c 7 Feb 2007 12:10:15 -0000 +@@ -28,6 +28,7 @@ + #include + #include + #include ++#include + #include + #include + #include + + +Needed for HEAD and glibc-2_5-branch. + +2007-02-07 Thomas Schwinge + + * stdlib/fmtmsg.c: Include . + +Index: stdlib/fmtmsg.c +=================================================================== +RCS file: /cvs/glibc/libc/stdlib/fmtmsg.c,v +retrieving revision 1.20 +diff -u -p -r1.20 fmtmsg.c +--- stdlib/fmtmsg.c 15 May 2006 18:41:18 -0000 1.20 ++++ stdlib/fmtmsg.c 7 Feb 2007 12:12:36 -0000 +@@ -19,6 +19,7 @@ + + #include + #include ++#include + #include + #include + #include --- glibc-2.5.orig/debian/patches/hurd-i386/local-mlock.diff +++ glibc-2.5/debian/patches/hurd-i386/local-mlock.diff @@ -0,0 +1,18 @@ +2006-01-18 Samuel Thibault + + Fix mlock() in all cases except non-readable pages. + + * glibc/sysdeps/mach/hurd/mlock.c (mlock): Give VM_PROT_READ + instead of VM_PROT_ALL as parameter to __vm_wire function. + +--- glibc/sysdeps/mach/hurd/mlock.c 2006-01-18 23:21:11.000000000 +0100 ++++ glibc/sysdeps/mach/hurd/mlock.c 2006-01-18 13:35:56.000000000 +0100 +@@ -40,7 +40,7 @@ mlock (const void *addr, size_t len) + page = trunc_page ((vm_address_t) addr); + len = round_page ((vm_address_t) addr + len) - page; + err = __vm_wire (hostpriv, __mach_task_self (), page, len, +- VM_PROT_ALL); /* XXX ? */ ++ VM_PROT_READ); + __mach_port_deallocate (__mach_task_self (), hostpriv); + + return err ? __hurd_fail (err) : 0; --- glibc-2.5.orig/debian/patches/hurd-i386/local-msg-nosignal.diff +++ glibc-2.5/debian/patches/hurd-i386/local-msg-nosignal.diff @@ -0,0 +1,22 @@ +This is not a proper fix, but a workaround that is needed on HEAD. (Have +to check glibc-2_5-branch.) Reported on +. + +Index: resolv/res_send.c +=================================================================== +RCS file: /cvs/glibc/libc/resolv/res_send.c,v +retrieving revision 1.49 +diff -u -p -r1.49 res_send.c +--- resolv/res_send.c 6 May 2006 17:35:50 -0000 1.49 ++++ resolv/res_send.c 7 Feb 2007 13:23:45 -0000 +@@ -102,6 +102,10 @@ static const char rcsid[] = "$BINDId: re + #define MAXPACKET 65536 + #endif + ++#ifndef MSG_NOSIGNAL ++# define MSG_NOSIGNAL 0 ++#endif ++ + + /* From ev_streams.c. */ + --- glibc-2.5.orig/debian/patches/hurd-i386/submitted-libc_once.diff +++ glibc-2.5/debian/patches/hurd-i386/submitted-libc_once.diff @@ -0,0 +1,203 @@ +http://savannah.gnu.org/bugs/?18217 +http://sourceware.org/bugzilla/show_bug.cgi?id=3748 + + +2007-02-08 Aurelien Jarno + + * linuxthreads/sysdeps/pthread/bits/libc-lock.h (__libc_once_else): New + definition. + +2006-12-18 Thomas Schwinge + + * bits/libc-lock.h (__libc_once_else): New definiton. + * sysdeps/mach/bits/libc-lock.h: Likewise. + * sysdeps/mach/hurd/bits/libc-lock.h: Likewise. + * nptl/sysdeps/pthread/bits/libc-lock.h: Likewise. + * sysdeps/posix/getaddrinfo.c (getaddrinfo): Use __libc_once_else and a + new local function instead of using implementational details. + +Index: sysdeps/posix/getaddrinfo.c +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/posix/getaddrinfo.c,v +retrieving revision 1.107 +diff -u -p -r1.107 getaddrinfo.c +--- sysdeps/posix/getaddrinfo.c 2 Oct 2006 16:49:47 -0000 1.107 ++++ sysdeps/posix/getaddrinfo.c 18 Dec 2006 14:12:19 -0000 +@@ -2031,11 +2031,13 @@ getaddrinfo (const char *name, const cha + if (naddrs > 1) + { + /* Read the config file. */ ++ void _gaiconf_reload (void) ++ { ++ if (gaiconf_reload_flag) ++ gaiconf_reload (); ++ } + __libc_once_define (static, once); +- __typeof (once) old_once = once; +- __libc_once (once, gaiconf_init); +- if (old_once && gaiconf_reload_flag) +- gaiconf_reload (); ++ __libc_once_else (once, gaiconf_init, _gaiconf_reload); + + /* Sort results according to RFC 3484. */ + struct sort_result results[nresults]; +Index: bits/libc-lock.h +=================================================================== +RCS file: /cvs/glibc/libc/bits/libc-lock.h,v +retrieving revision 1.11 +diff -u -p -r1.11 libc-lock.h +--- bits/libc-lock.h 25 Aug 2003 09:07:41 -0000 1.11 ++++ bits/libc-lock.h 18 Dec 2006 14:12:19 -0000 +@@ -89,7 +90,7 @@ + /* Define once control variable. */ + #define __libc_once_define(CLASS, NAME) CLASS int NAME = 0 + +-/* Call handler iff the first call. */ ++/* Call INIT_FUNCTION iff the first call. */ + #define __libc_once(ONCE_CONTROL, INIT_FUNCTION) \ + do { \ + if ((ONCE_CONTROL) == 0) { \ +@@ -98,6 +99,15 @@ + } \ + } while (0) + ++/* Call INIT_FUNCTION iff the first call. Otherwise call ELSE_FUNCTION. */ ++#define __libc_once_else(ONCE_CONTROL, INIT_FUNCTION, ELSE_FUNCTION) \ ++ do { \ ++ if ((ONCE_CONTROL) == 1) \ ++ (ELSE_FUNCTION) (); \ ++ else \ ++ __libc_once (ONCE_CONTROL, INIT_FUNCTION); \ ++ } while (0) ++ + + /* Start a critical region with a cleanup function */ + #define __libc_cleanup_region_start(DOIT, FCT, ARG) \ +Index: sysdeps/mach/bits/libc-lock.h +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/mach/bits/libc-lock.h,v +retrieving revision 1.10 +diff -u -p -r1.10 libc-lock.h +--- sysdeps/mach/bits/libc-lock.h 6 Dec 2002 11:33:53 -0000 1.10 ++++ sysdeps/mach/bits/libc-lock.h 18 Dec 2006 14:12:19 -0000 +@@ -105,8 +105,7 @@ struct __libc_once + #define __libc_once_define(CLASS,NAME) \ + CLASS struct __libc_once NAME = { MUTEX_INITIALIZER, 0 } + +- +-/* Call handler iff the first call. */ ++/* Call INIT_FUNCTION iff the first call. */ + #define __libc_once(ONCE_CONTROL, INIT_FUNCTION) \ + do { \ + __libc_lock_lock (ONCE_CONTROL.lock); \ +@@ -116,6 +115,16 @@ struct __libc_once + __libc_lock_unlock (ONCE_CONTROL.lock); \ + } while (0) + ++/* Call INIT_FUNCTION iff the first call. Otherwise call ELSE_FUNCTION. */ ++#define __libc_once_else(ONCE_CONTROL, INIT_FUNCTION, ELSE_FUNCTION) \ ++ do { \ ++ if (ONCE_CONTROL.done == 1) \ ++ (ELSE_FUNCTION) (); \ ++ else \ ++ __libc_once (ONCE_CONTROL, INIT_FUNCTION); \ ++ } while (0) ++ ++ + #ifdef _LIBC + /* We need portable names for some functions. E.g., when they are + used as argument to __libc_cleanup_region_start. */ +Index: sysdeps/mach/hurd/bits/libc-lock.h +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/mach/hurd/bits/libc-lock.h,v +retrieving revision 1.4 +diff -u -p -r1.4 libc-lock.h +--- sysdeps/mach/hurd/bits/libc-lock.h 29 Sep 2003 21:55:41 -0000 1.4 ++++ sysdeps/mach/hurd/bits/libc-lock.h 18 Dec 2006 14:12:19 -0000 +@@ -175,7 +175,7 @@ struct __libc_once + #define __libc_once_define(CLASS,NAME) \ + CLASS struct __libc_once NAME = { MUTEX_INITIALIZER, 0 } + +-/* Call handler iff the first call. */ ++/* Call INIT_FUNCTION iff the first call. */ + #define __libc_once(ONCE_CONTROL, INIT_FUNCTION) \ + do { \ + __libc_lock_lock (ONCE_CONTROL.lock); \ +@@ -185,6 +185,16 @@ struct __libc_once + __libc_lock_unlock (ONCE_CONTROL.lock); \ + } while (0) + ++/* Call INIT_FUNCTION iff the first call. Otherwise call ELSE_FUNCTION. */ ++#define __libc_once_else(ONCE_CONTROL, INIT_FUNCTION, ELSE_FUNCTION) \ ++ do { \ ++ if (ONCE_CONTROL.done == 1) \ ++ ELSE_FUNCTION (); \ ++ else \ ++ __libc_once (ONCE_CONTROL, INIT_FUNCTION); \ ++ } while (0) ++ ++ + #ifdef _LIBC + /* We need portable names for some functions. E.g., when they are + used as argument to __libc_cleanup_region_start. */ +Index: nptl/sysdeps/pthread/bits/libc-lock.h +=================================================================== +RCS file: /cvs/glibc/libc/nptl/sysdeps/pthread/bits/libc-lock.h,v +retrieving revision 1.19 +diff -u -p -r1.19 libc-lock.h +--- nptl/sysdeps/pthread/bits/libc-lock.h 5 Apr 2005 21:33:41 -0000 1.19 ++++ nptl/sysdeps/pthread/bits/libc-lock.h 18 Dec 2006 14:12:19 -0000 +@@ -350,7 +350,7 @@ typedef pthread_key_t __libc_key_t; + CLASS pthread_once_t NAME = PTHREAD_ONCE_INIT + #endif + +-/* Call handler iff the first call. */ ++/* Call INIT_FUNCTION iff the first call. */ + #define __libc_once(ONCE_CONTROL, INIT_FUNCTION) \ + do { \ + if (PTF(__pthread_once) != NULL) \ +@@ -361,6 +361,15 @@ typedef pthread_key_t __libc_key_t; + } \ + } while (0) + ++/* Call INIT_FUNCTION iff the first call. Otherwise call ELSE_FUNCTION. */ ++#define __libc_once_else(ONCE_CONTROL, INIT_FUNCTION, ELSE_FUNCTION) \ ++ do { \ ++ if ((ONCE_CONTROL) != PTHREAD_ONCE_INIT) \ ++ (ELSE_FUNCTION) (); \ ++ else \ ++ __libc_once (ONCE_CONTROL, INIT_FUNCTION); \ ++ } while (0) ++ + + /* Note that for I/O cleanup handling we are using the old-style + cancel handling. It does not have to be integrated with C++ snce + + +--- linuxthreads/sysdeps/pthread/bits/libc-lock.h 2007-02-08 14:39:15.000000000 +0100 ++++ linuxthreads/sysdeps/pthread/bits/libc-lock.h 2007-02-08 20:27:53.000000000 +0100 +@@ -231,7 +231,7 @@ + CLASS pthread_once_t NAME = PTHREAD_ONCE_INIT + #endif + +-/* Call handler iff the first call. */ ++/* Call INIT_FUNCTION iff the first call. */ + #define __libc_once(ONCE_CONTROL, INIT_FUNCTION) \ + do { \ + if (__pthread_once != NULL) \ +@@ -242,6 +242,15 @@ + } \ + } while (0) + ++/* Call INIT_FUNCTION iff the first call. Otherwise call ELSE_FUNCTION. */ ++#define __libc_once_else(ONCE_CONTROL, INIT_FUNCTION, ELSE_FUNCTION) \ ++ do { \ ++ if ((ONCE_CONTROL) != PTHREAD_ONCE_INIT) \ ++ (ELSE_FUNCTION) (); \ ++ else \ ++ __libc_once (ONCE_CONTROL, INIT_FUNCTION); \ ++ } while (0) ++ + + /* Start critical region with cleanup. */ + #define __libc_cleanup_region_start(DOIT, FCT, ARG) \ --- glibc-2.5.orig/debian/patches/hurd-i386/local-sigsuspend-nocancel.diff +++ glibc-2.5/debian/patches/hurd-i386/local-sigsuspend-nocancel.diff @@ -0,0 +1,8 @@ +--- sysdeps/mach/hurd/sigsuspend.c.orig 2007-02-12 02:54:19.000000000 +0100 ++++ sysdeps/mach/hurd/sigsuspend.c 2007-02-12 02:54:35.000000000 +0100 +@@ -80,4 +80,5 @@ + return -1; + } + libc_hidden_def (__sigsuspend) ++strong_alias (__sigsuspend, sigsuspend_not_cancel) + weak_alias (__sigsuspend, sigsuspend) --- glibc-2.5.orig/debian/patches/hurd-i386/submitted-stat.diff +++ glibc-2.5/debian/patches/hurd-i386/submitted-stat.diff @@ -0,0 +1,146 @@ +This patch is incomplete. Reported on +. The +`sysdeps/mach/hurd/bits/stat.h' hunk alignes to what Linux uses. + +Index: sysdeps/mach/hurd/xstatconv.c +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/mach/hurd/xstatconv.c,v +retrieving revision 1.4 +diff -u -p -r1.4 xstatconv.c +--- sysdeps/mach/hurd/xstatconv.c 11 Jun 2002 23:03:14 -0000 1.4 ++++ sysdeps/mach/hurd/xstatconv.c 13 Jun 2006 13:57:55 -0000 +@@ -42,12 +42,21 @@ xstat64_conv (struct stat *buf, const st + buf->st_uid = buf64->st_uid; + buf->st_gid = buf64->st_gid; + buf->st_size = buf64->st_size; ++#ifdef __USE_MISC /* TODO. Hm. */ ++ buf->st_atim.tv_sec = buf64->st_atim.tv_sec; ++ buf->st_atim.tv_nsec = buf64->st_atim.tv_nsec; ++ buf->st_mtim.tv_sec = buf64->st_mtim.tv_sec; ++ buf->st_mtim.tv_nsec = buf64->st_mtim.tv_nsec; ++ buf->st_ctim.tv_sec = buf64->st_ctim.tv_sec; ++ buf->st_ctim.tv_nsec = buf64->st_ctim.tv_nsec; ++#else + buf->st_atime = buf64->st_atime; + buf->st_atime_usec = buf64->st_atime_usec; + buf->st_mtime = buf64->st_mtime; + buf->st_mtime_usec = buf64->st_mtime_usec; + buf->st_ctime = buf64->st_ctime; + buf->st_ctime_usec = buf64->st_ctime_usec; ++#endif + buf->st_blksize = buf64->st_blksize; + buf->st_blocks = buf64->st_blocks; + buf->st_author = buf64->st_author; +Index: sysdeps/mach/hurd/bits/stat.h +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/mach/hurd/bits/stat.h,v +retrieving revision 1.7 +diff -u -p -r1.7 stat.h +--- sysdeps/mach/hurd/bits/stat.h 8 Nov 2005 01:22:58 -0000 1.7 ++++ sysdeps/mach/hurd/bits/stat.h 13 Jun 2006 13:57:55 -0000 +@@ -55,12 +56,32 @@ struct stat + __off64_t st_size; /* Size in bytes. */ + #endif + ++#ifdef __USE_MISC ++ /* Nanosecond resolution timestamps are stored in a format ++ equivalent to 'struct timespec'. This is the type used ++ whenever possible but the Unix namespace rules do not allow the ++ identifier 'timespec' to appear in the header. ++ Therefore we have to handle the use of this header in strictly ++ standard-compliant sources special. */ ++ struct timespec st_atim; /* Time of last access. */ ++ struct timespec st_mtim; /* Time of last modification. */ ++ struct timespec st_ctim; /* Time of last status change. */ ++# define st_atime st_atim.tv_sec /* Backward compatibility. */ ++# define st_mtime st_mtim.tv_sec ++# define st_ctime st_ctim.tv_sec ++#else ++ /* TODO: Align to the st_atimensec, etc. which Linux uses and define ++ _STATBUF_ST_NSEC? This requires changes in a) the Hurd code ++ (which uses st_atime_usec etc.) and b) in the glibc documentation ++ (which doesn't mention st_atimensec etc. at all, but does explain ++ the st_atime_used etc. interface). */ + __time_t st_atime; /* Access time, seconds */ + unsigned long int st_atime_usec; /* and microseconds. */ + __time_t st_mtime; /* Modification time, seconds */ + unsigned long int st_mtime_usec; /* and microseconds. */ + __time_t st_ctime; /* Status change time, seconds */ + unsigned long int st_ctime_usec; /* and microseconds. */ ++#endif + + __blksize_t st_blksize; /* Optimal size for I/O. */ + +@@ -104,12 +125,29 @@ struct stat64 + + __off64_t st_size; /* Size in bytes. */ + ++#ifdef __USE_MISC ++ /* Nanosecond resolution timestamps are stored in a format ++ equivalent to 'struct timespec'. This is the type used ++ whenever possible but the Unix namespace rules do not allow the ++ identifier 'timespec' to appear in the header. ++ Therefore we have to handle the use of this header in strictly ++ standard-compliant sources special. */ ++ struct timespec st_atim; /* Time of last access. */ ++ struct timespec st_mtim; /* Time of last modification. */ ++ struct timespec st_ctim; /* Time of last status change. */ ++#else ++ /* TODO: Align to the st_atimensec, etc. which Linux uses and define ++ _STATBUF_ST_NSEC? This requires changes in a) the Hurd code ++ (which uses st_atime_usec etc.) and b) in the glibc documentation ++ (which doesn't mention st_atimensec etc. at all, but does explain ++ the st_atime_used etc. interface). */ + __time_t st_atime; /* Access time, seconds */ + unsigned long int st_atime_usec; /* and microseconds. */ + __time_t st_mtime; /* Modification time, seconds */ + unsigned long int st_mtime_usec; /* and microseconds. */ + __time_t st_ctime; /* Status change time, seconds */ + unsigned long int st_ctime_usec; /* and microseconds. */ ++#endif + + __blksize_t st_blksize; /* Optimal size for I/O. */ + +@@ -127,7 +165,8 @@ struct stat64 + }; + #endif + +-#define _STATBUF_ST_BLKSIZE /* Tell code we have this member. */ ++/* Tell code we have these members. */ ++#define _STATBUF_ST_BLKSIZE + + /* Encoding of the file mode. */ + +@@ -138,23 +177,24 @@ struct stat64 + #define __S_IFCHR 0020000 /* Character device. */ + #define __S_IFBLK 0060000 /* Block device. */ + #define __S_IFREG 0100000 /* Regular file. */ ++#define __S_IFIFO 0010000 /* FIFO. */ + #define __S_IFLNK 0120000 /* Symbolic link. */ + #define __S_IFSOCK 0140000 /* Socket. */ +-#define __S_IFIFO 0010000 /* FIFO. */ + +-/* POSIX.1b objects. */ +-#define __S_TYPEISMQ(buf) (0) +-#define __S_TYPEISSEM(buf) (0) +-#define __S_TYPEISSHM(buf) (0) ++/* POSIX.1b objects. Note that these macros always evaluate to zero. But ++ they do it by enforcing the correct use of the macros. */ ++#define __S_TYPEISMQ(buf) ((buf)->st_mode - (buf)->st_mode) ++#define __S_TYPEISSEM(buf) ((buf)->st_mode - (buf)->st_mode) ++#define __S_TYPEISSHM(buf) ((buf)->st_mode - (buf)->st_mode) + + /* Protection bits. */ + + #define __S_ISUID 04000 /* Set user ID on execution. */ + #define __S_ISGID 02000 /* Set group ID on execution. */ + #define __S_ISVTX 01000 /* Save swapped text after use (sticky). */ +-#define __S_IREAD 00400 /* Read by owner. */ +-#define __S_IWRITE 00200 /* Write by owner. */ +-#define __S_IEXEC 00100 /* Execute by owner. */ ++#define __S_IREAD 0400 /* Read by owner. */ ++#define __S_IWRITE 0200 /* Write by owner. */ ++#define __S_IEXEC 0100 /* Execute by owner. */ + + + #ifdef __USE_GNU --- glibc-2.5.orig/debian/patches/hurd-i386/cvs-futimes.diff +++ glibc-2.5/debian/patches/hurd-i386/cvs-futimes.diff @@ -0,0 +1,130 @@ +2006-10-10 Roland McGrath + + * sysdeps/mach/hurd/utimes.c: Use a union to avoid an improper cast. + * sysdeps/mach/hurd/futimes.c: Likewise. + * sysdeps/mach/hurd/lutimes.c: Likewise. + +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/mach/hurd/futimes.c,v +retrieving revision 1.1 +retrieving revision 1.2 +diff -u -r1.1 -r1.2 +--- libc/sysdeps/mach/hurd/futimes.c 2002/08/27 02:09:20 1.1 ++++ libc/sysdeps/mach/hurd/futimes.c 2006/10/10 09:28:40 1.2 +@@ -28,20 +28,24 @@ + int + __futimes (int fd, const struct timeval tvp[2]) + { +- struct timeval timevals[2]; ++ union tv ++ { ++ struct timeval tv; ++ time_value_t tvt; ++ }; ++ const union tv *u = (const union tv *) tvp; ++ union tv nulltv[2]; + error_t err; + + if (tvp == NULL) + { + /* Setting the number of microseconds to `-1' tells the + underlying filesystems to use the current time. */ +- timevals[1].tv_usec = timevals[0].tv_usec = (time_t)-1; +- tvp = timevals; ++ nulltv[0].tvt.microseconds = nulltv[1].tvt.microseconds = -1; ++ u = nulltv; + } + +- err = HURD_DPORT_USE (fd, __file_utimes (port, +- *(time_value_t *) &tvp[0], +- *(time_value_t *) &tvp[1])); ++ err = HURD_DPORT_USE (fd, __file_utimes (port, u[0].tvt, u[1].tvt)); + return err ? __hurd_dfail (fd, err) : 0; + } + weak_alias (__futimes, futimes) +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/mach/hurd/lutimes.c,v +retrieving revision 1.1 +retrieving revision 1.2 +diff -u -r1.1 -r1.2 +--- libc/sysdeps/mach/hurd/lutimes.c 2002/08/27 02:09:20 1.1 ++++ libc/sysdeps/mach/hurd/lutimes.c 2006/10/10 09:28:40 1.2 +@@ -28,7 +28,13 @@ + int + __lutimes (const char *file, const struct timeval tvp[2]) + { +- struct timeval timevals[2]; ++ union tv ++ { ++ struct timeval tv; ++ time_value_t tvt; ++ }; ++ const union tv *u = (const union tv *) tvp; ++ union tv nulltv[2]; + error_t err; + file_t port; + +@@ -36,15 +42,14 @@ + { + /* Setting the number of microseconds to `-1' tells the + underlying filesystems to use the current time. */ +- timevals[1].tv_usec = timevals[0].tv_usec = (time_t)-1; +- tvp = timevals; ++ nulltv[0].tvt.microseconds = nulltv[1].tvt.microseconds = -1; ++ u = nulltv; + } + + port = __file_name_lookup (file, O_NOLINK, 0); + if (port == MACH_PORT_NULL) + return -1; +- err = __file_utimes (port, +- *(time_value_t *) &tvp[0], *(time_value_t *) &tvp[1]); ++ err = __file_utimes (port, u[0].tvt, u[1].tvt); + __mach_port_deallocate (__mach_task_self (), port); + if (err) + return __hurd_fail (err); +=================================================================== +RCS file: /cvs/glibc/libc/sysdeps/mach/hurd/utimes.c,v +retrieving revision 1.10 +retrieving revision 1.11 +diff -u -r1.10 -r1.11 +--- libc/sysdeps/mach/hurd/utimes.c 2001/07/06 04:55:57 1.10 ++++ libc/sysdeps/mach/hurd/utimes.c 2006/10/10 09:28:40 1.11 +@@ -28,7 +29,13 @@ + const char *file; + const struct timeval tvp[2]; + { +- struct timeval timevals[2]; ++ union tv ++ { ++ struct timeval tv; ++ time_value_t tvt; ++ }; ++ const union tv *u = (const union tv *) tvp; ++ union tv nulltv[2]; + error_t err; + file_t port; + +@@ -36,19 +43,17 @@ + { + /* Setting the number of microseconds to `-1' tells the + underlying filesystems to use the current time. */ +- timevals[1].tv_usec = timevals[0].tv_usec = (time_t)-1; +- tvp = timevals; ++ nulltv[0].tvt.microseconds = nulltv[1].tvt.microseconds = -1; ++ u = nulltv; + } + + port = __file_name_lookup (file, 0, 0); + if (port == MACH_PORT_NULL) + return -1; +- err = __file_utimes (port, +- *(time_value_t *) &tvp[0], *(time_value_t *) &tvp[1]); ++ err = __file_utimes (port, u[0].tvt, u[1].tvt); + __mach_port_deallocate (__mach_task_self (), port); + if (err) + return __hurd_fail (err); + return 0; + } +- + weak_alias (__utimes, utimes) --- glibc-2.5.orig/debian/patches/hurd-i386/local-dl-dynamic-weak.diff +++ glibc-2.5/debian/patches/hurd-i386/local-dl-dynamic-weak.diff @@ -0,0 +1,30 @@ +--- glibc-2.5/elf/dl-support.c.orig 2007-04-25 01:50:53.000000000 +0200 ++++ glibc-2.5/elf/dl-support.c 2007-04-25 02:23:31.000000000 +0200 +@@ -43,7 +43,13 @@ + int _dl_debug_mask; + int _dl_lazy; + ElfW(Addr) _dl_use_load_bias = -2; ++#ifdef __GNU__ ++/* GNU/Hurd needs this because otherwise libpthread's pthread_mutex_lock gets ++ * overridden by libX11's stubs. */ ++int _dl_dynamic_weak = 1; ++#else + int _dl_dynamic_weak; ++#endif + + /* If nonzero print warnings about problematic situations. */ + int _dl_verbose; +--- glibc-2.5/elf/rtld.c.orig 2007-04-25 01:53:54.000000000 +0200 ++++ glibc-2.5/elf/rtld.c 2007-04-25 02:24:47.000000000 +0200 +@@ -145,6 +145,11 @@ + #ifdef NEED_DL_SYSINFO + ._dl_sysinfo = DL_SYSINFO_DEFAULT, + #endif ++#ifdef __GNU__ ++/* GNU/Hurd needs this because otherwise libpthread's pthread_mutex_lock gets ++ * * overridden by libX11's stubs. */ ++ ._dl_dynamic_weak = 1, ++#endif + ._dl_debug_fd = STDERR_FILENO, + ._dl_use_load_bias = -2, + ._dl_correct_cache_id = _DL_CACHE_DEFAULT_ID, --- glibc-2.5.orig/debian/patches/hurd-i386/submitted-sysvshm.diff +++ glibc-2.5/debian/patches/hurd-i386/submitted-sysvshm.diff @@ -0,0 +1,760 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Implement SysV shared memory for GNU/Hurd. +# DP: Dpatch author: Michael Banck +# DP: Patch author: Marcus Brinkmann +# DP: Upstream status: Unsubmitted, copyright assignments needed +# DP: Date: 2005-07-11 + +2005-07-11 Marcus Brinkmann + + * hurd/Makefile (routines): Add sysvshm. + (distribute): Add sysvshm.h. + * hurd/sysvshm.h: New file. + * hurd/sysvshm.c: New file. + * sysdeps/mach/hurd/bits/stat.h (S_IMMAP0): New macro. + (S_ISPARE): Unset the S_IMMAP0 flag. + * sysdeps/mach/hurd/ftok.c: New file. + * sysdeps/mach/hurd/shmat.c: New file. + * sysdeps/mach/hurd/shmctl.c: New file. + * sysdeps/mach/hurd/shmdt.c: New file. + +diff -rupN libc/hurd/Makefile libc-shm/hurd/Makefile +--- libc/hurd/Makefile 2002-10-14 03:03:09.000000000 +0200 ++++ libc-shm/hurd/Makefile 2005-07-12 12:27:06.000000000 +0200 +@@ -60,6 +60,7 @@ + vpprintf \ + ports-get ports-set hurdports hurdmsg \ + errno-loc \ ++ sysvshm \ + $(sig) $(dtable) $(inlines) port-cleanup report-wait xattr + sig = hurdsig hurdfault siginfo hurd-raise preempt-sig \ + trampoline longjmp-ts catch-exc exc2signal hurdkill sigunwind \ +@@ -68,7 +69,7 @@ + getdport openport \ + fd-close fd-read fd-write hurdioctl ctty-input ctty-output + inlines = $(inline-headers:%.h=%-inlines) +-distribute = hurdstartup.h hurdfault.h hurdhost.h \ ++distribute = hurdstartup.h hurdfault.h hurdhost.h sysvshm.h \ + faultexc.defs intr-rpc.defs intr-rpc.h intr-msg.h Notes + + # XXX this is a temporary hack; see hurdmalloc.h +diff -rupN libc/hurd/sysvshm.c libc-shm/hurd/sysvshm.c +--- libc/hurd/sysvshm.c 1970-01-01 01:00:00.000000000 +0100 ++++ libc-shm/hurd/sysvshm.c 2005-07-11 22:57:25.000000000 +0200 +@@ -0,0 +1,96 @@ ++/* Copyright (C) 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++ ++/* Description of an shm attachment. */ ++struct sysvshm_attach ++{ ++ /* Linked list. */ ++ struct sysvshm_attach *next; ++ ++ /* Map address. */ ++ void *addr; ++ ++ /* Map size. */ ++ size_t size; ++}; ++ ++/* List of attachments. */ ++static struct sysvshm_attach *attach_list; ++ ++/* A lock to protect the linked list of shared memory attachments. */ ++static struct mutex sysvshm_lock = MUTEX_INITIALIZER; ++ ++ ++/* Adds a segment attachment. */ ++error_t ++__sysvshm_add (void *addr, size_t size) ++{ ++ struct sysvshm_attach *shm; ++ ++ shm = malloc (sizeof (*shm)); ++ if (!shm) ++ return errno; ++ ++ __mutex_lock (&sysvshm_lock); ++ shm->addr = addr; ++ shm->size = size; ++ shm->next = attach_list; ++ attach_list = shm; ++ __mutex_unlock (&sysvshm_lock); ++ ++ return 0; ++} ++ ++/* Removes a segment attachment. Returns its size if found, or EINVAL ++ otherwise. */ ++error_t ++__sysvshm_remove (void *addr, size_t *size) ++{ ++ struct sysvshm_attach *shm; ++ struct sysvshm_attach **pshm = &attach_list; ++ ++ __mutex_lock (&sysvshm_lock); ++ shm = attach_list; ++ while (shm) ++ { ++ shm = *pshm; ++ if (shm->addr == addr) ++ { ++ *pshm = shm->next; ++ *size = shm->size; ++ __mutex_unlock (&sysvshm_lock); ++ return 0; ++ } ++ pshm = &shm->next; ++ shm = shm->next; ++ } ++ __mutex_unlock (&sysvshm_lock); ++ return EINVAL; ++} +diff -rupN libc/hurd/sysvshm.h libc-shm/hurd/sysvshm.h +--- libc/hurd/sysvshm.h 1970-01-01 01:00:00.000000000 +0100 ++++ libc-shm/hurd/sysvshm.h 2005-07-11 22:57:25.000000000 +0200 +@@ -0,0 +1,47 @@ ++/* Copyright (C) 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++/* The area (from top to bottom) that is used for private keys. These ++ are all keys that have the second highest bit set. */ ++#define SHM_PRIV_KEY_START INT_MAX ++#define SHM_PRIV_KEY_END ((INT_MAX / 2) + 1) ++ ++#define SHM_PREFIX "shm-" ++#define SHM_DIR _PATH_DEV "shm/" ++ ++/* The maximum number of characters in a shared memory segment file name. ++ 32 is the max number of characters in a 128 bit number in hex. */ ++#if __WORDSIZE > 128 ++#error Need to increase SHM_NAMEMAX. ++#else ++#define SHM_NAMEMAX (sizeof (SHM_PREFIX) - 1 + 32 + 1) ++#endif ++ ++/* Use this with printf and its variants. */ ++#define SHM_NAMEPRI SHM_PREFIX "%0x" ++ ++ ++/* Adds a segment attachment. */ ++error_t __sysvshm_add (void *addr, size_t size); ++ ++/* Removes a segment attachment. Returns its size if found, or EINVAL ++ otherwise. */ ++error_t __sysvshm_remove (void *addr, size_t *size); +diff -rupN libc/sysdeps/mach/hurd/ftok.c libc-shm/sysdeps/mach/hurd/ftok.c +--- libc/sysdeps/mach/hurd/ftok.c 1970-01-01 01:00:00.000000000 +0100 ++++ libc-shm/sysdeps/mach/hurd/ftok.c 2005-07-11 22:57:25.000000000 +0200 +@@ -0,0 +1,43 @@ ++/* Copyright (C) 1995, 1996, 2000, 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Ulrich Drepper , August 1995. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++ ++/* In the Hurd, we use the second-to-most-significant bit as flag for ++ private keys. We use a different order of the components so that ++ the biggest one---the inode number---is affected by this. */ ++ ++key_t ++ftok (pathname, proj_id) ++ const char *pathname; ++ int proj_id; ++{ ++ struct stat64 st; ++ key_t key; ++ ++ if (__xstat64 (_STAT_VER, pathname, &st) < 0) ++ return (key_t) -1; ++ ++ key = ((st.st_dev & 0xff) | ((proj_id & 0xff) << 8) ++ | ((st.st_ino & 0x3fff) << 16)); ++ ++ return key; ++} +diff -rupN libc/sysdeps/mach/hurd/shmat.c libc-shm/sysdeps/mach/hurd/shmat.c +--- libc/sysdeps/mach/hurd/shmat.c 1970-01-01 01:00:00.000000000 +0100 ++++ libc-shm/sysdeps/mach/hurd/shmat.c 2005-07-12 12:28:20.000000000 +0200 +@@ -0,0 +1,78 @@ ++/* Copyright (C) 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include "sysvshm.h" ++ ++/* Attach the shared memory segment associated with SHMID to the data ++ segment of the calling process. SHMADDR and SHMFLG determine how ++ and where the segment is attached. */ ++void * ++__shmat (int shmid, const void *shmaddr, int shmflg) ++{ ++ error_t err; ++ char filename[sizeof (SHM_DIR) - 1 + SHM_NAMEMAX]; ++ int fd; ++ void *addr; ++ struct stat statbuf; ++ int res; ++ ++ sprintf (filename, SHM_DIR SHM_NAMEPRI, shmid); ++ fd = __open (filename, (shmflg & SHM_RDONLY) ? O_RDONLY : O_RDWR); ++ if (fd < 0) ++ { ++ if (errno == ENOENT) ++ errno = EINVAL; ++ return (void *) -1; ++ } ++ ++ res = __fstat (fd, &statbuf); ++ if (res < 0) ++ { ++ __close (fd); ++ return (void *) -1; ++ } ++ ++ addr = __mmap ((void *) shmaddr, statbuf.st_size, ++ PROT_READ | ((shmflg & SHM_RDONLY) ? 0 : PROT_WRITE), ++ MAP_SHARED, fd, 0); ++ __close (fd); ++ if (addr == MAP_FAILED) ++ return (void *) -1; ++ ++ err = __sysvshm_add (addr, statbuf.st_size); ++ if (err) ++ { ++ munmap (addr, statbuf.st_size); ++ return (void *) -1; ++ } ++ ++ return addr; ++} ++ ++weak_alias(__shmat, shmat) +diff -rupN libc/sysdeps/mach/hurd/shmctl.c libc-shm/sysdeps/mach/hurd/shmctl.c +--- libc/sysdeps/mach/hurd/shmctl.c 1970-01-01 01:00:00.000000000 +0100 ++++ libc-shm/sysdeps/mach/hurd/shmctl.c 2005-07-12 12:28:25.000000000 +0200 +@@ -0,0 +1,132 @@ ++/* Copyright (C) 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include "sysvshm.h" ++ ++/* Provide operations to control over shared memory segments. */ ++int ++__shmctl (int id, int cmd, struct shmid_ds *buf) ++{ ++ error_t err = 0; ++ int fd; ++ int res; ++ char filename[sizeof (SHM_DIR) - 1 + SHM_NAMEMAX]; ++ struct stat statbuf; ++ ++ sprintf (filename, SHM_DIR SHM_NAMEPRI, id); ++ /* SysV requires read access for IPC_STAT. */ ++ fd = __open (filename, O_NORW); ++ if (fd < 0) ++ { ++ if (errno == ENOENT) ++ errno = EINVAL; ++ return -1; ++ } ++ ++ res = __fstat (fd, &statbuf); ++ if (res < 0) ++ { ++ err = errno; ++ __close (fd); ++ errno = err; ++ return -1; ++ } ++ ++ switch (cmd) ++ { ++ case IPC_STAT: ++ ++ buf->shm_perm.__key = id; ++ buf->shm_perm.uid = statbuf.st_uid; ++ buf->shm_perm.gid = statbuf.st_gid; ++ ++ /* We do not support the creator. */ ++ buf->shm_perm.cuid = statbuf.st_uid; ++ buf->shm_perm.cgid = statbuf.st_gid; ++ ++ /* We just want the protection bits. */ ++ buf->shm_perm.mode = statbuf.st_mode & 0777; ++ /* Hopeless. We do not support a sequence number. */ ++ buf->shm_perm.__seq = statbuf.st_ino; ++ buf->shm_segsz = statbuf.st_size; ++ ++ /* Hopeless. We do not support any of these. */ ++ buf->shm_atime = statbuf.st_atime; ++ buf->shm_dtime = statbuf.st_mtime; ++ /* Well, this comes at least close. */ ++ buf->shm_ctime = statbuf.st_ctime; ++ ++ /* We do not support the PID. */ ++ buf->shm_cpid = 0; ++ buf->shm_lpid = 0; ++ ++ if (statbuf.st_mode & S_IMMAP0) ++ buf->shm_nattch = 0; ++ else ++ /* 42 is the answer. Of course this is bogus, but for most ++ applications, this should be fine. */ ++ buf->shm_nattch = 42; ++ ++ break; ++ ++ case IPC_SET: ++ if (statbuf.st_uid != buf->shm_perm.uid ++ || statbuf.st_gid != buf->shm_perm.gid) ++ { ++ res = __fchown (fd, ++ (statbuf.st_uid != buf->shm_perm.uid) ++ ? buf->shm_perm.uid : -1, ++ (statbuf.st_gid != buf->shm_perm.gid) ++ ? buf->shm_perm.gid : -1); ++ if (res < 0) ++ err = errno; ++ } ++ ++ if (!err && statbuf.st_mode & 0777 != buf->shm_perm.mode & 0777) ++ { ++ res = __fchmod (fd, (statbuf.st_mode & ~0777) ++ | (buf->shm_perm.mode & 0777)); ++ if (res < 0) ++ err = errno; ++ } ++ break; ++ ++ case IPC_RMID: ++ res = __unlink (filename); ++ /* FIXME: Check error (mapping ENOENT to EINVAL). */ ++ break; ++ ++ default: ++ err = EINVAL; ++ } ++ ++ __close (fd); ++ errno = err; ++ return err ? -1 : 0; ++} ++ ++weak_alias(__shmctl, shmctl) +diff -rupN libc/sysdeps/mach/hurd/shmdt.c libc-shm/sysdeps/mach/hurd/shmdt.c +--- libc/sysdeps/mach/hurd/shmdt.c 1970-01-01 01:00:00.000000000 +0100 ++++ libc-shm/sysdeps/mach/hurd/shmdt.c 2005-07-11 22:57:25.000000000 +0200 +@@ -0,0 +1,51 @@ ++/* Copyright (C) 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include "sysvshm.h" ++ ++/* Detach shared memory segment starting at address specified by ++ SHMADDR from the caller's data segment. */ ++int ++__shmdt (const void *shmaddr) ++{ ++ error_t err; ++ size_t size; ++ ++ err = __sysvshm_remove ((void *) shmaddr, &size); ++ if (err) ++ { ++ errno = err; ++ return -1; ++ } ++ ++ __munmap ((void *) shmaddr, size); ++ return 0; ++} ++ ++weak_alias(__shmdt, shmdt) +diff -rupN libc/sysdeps/mach/hurd/shmget.c libc-shm/sysdeps/mach/hurd/shmget.c +--- libc/sysdeps/mach/hurd/shmget.c 1970-01-01 01:00:00.000000000 +0100 ++++ libc-shm/sysdeps/mach/hurd/shmget.c 2005-07-11 22:57:25.000000000 +0200 +@@ -0,0 +1,245 @@ ++/* Copyright (C) 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++ ++#include "sysvshm.h" ++ ++/* Create a new shared memory segment file without linking it into the ++ filesystem. Return the directory and file ports in R_DIR and R_FILE. */ ++static error_t ++create_shm_file (size_t size, int flags, file_t *r_dir, file_t *r_file) ++{ ++ error_t err; ++ file_t dir; ++ file_t file; ++ ++ flags &= 0777; ++ ++ /* Get a port to the directory that will contain the file. */ ++ dir = __file_name_lookup (SHM_DIR, 0, 0); ++ if (dir == MACH_PORT_NULL) ++ return errno; ++ ++ /* Create an unnamed file in the directory. */ ++ err = __dir_mkfile (dir, O_RDWR, flags, &file); ++ if (err) ++ { ++ __mach_port_deallocate (__mach_task_self (), dir); ++ return err; ++ } ++ ++ err = __file_set_size (file, size); ++ if (err) ++ { ++ __mach_port_deallocate (__mach_task_self (), file); ++ __mach_port_deallocate (__mach_task_self (), dir); ++ ++ return err; ++ } ++ ++ *r_dir = dir; ++ *r_file = file; ++ ++ return 0; ++} ++ ++ ++/* Open the shared memory segment *R_KEY and return a file descriptor ++ to it in R_FD. If KEY is IPC_PRIVATE, use a private key and return ++ it in R_KEY. */ ++static error_t ++get_exclusive (int shmflags, size_t size, key_t *r_key, int *r_fd) ++{ ++ error_t err; ++ file_t dir; ++ file_t file; ++ char filename[SHM_NAMEMAX]; ++ key_t key = *r_key; ++ bool is_private; ++ ++ /* Create the shared memory segment. */ ++ err = create_shm_file (size, shmflags, &dir, &file); ++ if (err) ++ return err; ++ ++ if (key == IPC_PRIVATE) ++ { ++ is_private = true; ++ key = SHM_PRIV_KEY_START; ++ ++ /* Try to link the shared memory segment into the filesystem ++ (exclusively). Private segments have negative keys. */ ++ do ++ { ++ sprintf (filename, SHM_NAMEPRI, key); ++ err = __dir_link (dir, file, filename, 1); ++ if (!err) ++ { ++ /* We are done. */ ++ *r_key = key; ++ break; ++ } ++ else if (err == EEXIST) ++ { ++ /* Check if we ran out of keys. If not, try again with new ++ key. */ ++ if (key == SHM_PRIV_KEY_END) ++ err = ENOSPC; ++ else ++ err = 0; ++ ++ key--; ++ } ++ } ++ while (!err); ++ } ++ else ++ { ++ /* Try to link the shared memory segment into the filesystem ++ (exclusively) under the given key. */ ++ sprintf (filename, SHM_NAMEPRI, key); ++ err = __dir_link (dir, file, filename, 1); ++ } ++ ++ __mach_port_deallocate (__mach_task_self (), dir); ++ ++ if (!err) ++ { ++ int fd; ++ ++ /* Get a file descriptor for that port. */ ++ fd = _hurd_intern_fd (file, O_RDWR, 1); /* dealloc on error */ ++ if (fd < 0) ++ err = errno; ++ else ++ *r_fd = fd; ++ } ++ ++ return err; ++} ++ ++ ++/* Open the shared memory segment KEY (creating it if it doesn't yet ++ exist) and return a file descriptor to it in R_FD. */ ++static error_t ++get_shared (int shmflags, size_t size, key_t key, int *r_fd) ++{ ++ error_t err = 0; ++ char filename[sizeof (SHM_DIR) - 1 + SHM_NAMEMAX]; ++ int fd = -1; ++ int create_flag; ++ ++ create_flag = (shmflags & IPC_CREAT) ? O_CREAT : 0; ++ sprintf (filename, SHM_DIR SHM_NAMEPRI, key); ++ ++ do ++ { ++ fd = __open (filename, O_NORW | create_flag, shmflags & 0777); ++ ++ if (fd < 0 && errno != ENOENT) ++ /* We give up. */ ++ return errno; ++ else if (fd >= 0) ++ { ++ int res; ++ struct stat statbuf; ++ ++ /* Check the size (we only need to do this if we did not ++ create the shared memory segment file ourselves). */ ++ res = __fstat (fd, &statbuf); ++ if (res < 0) ++ { ++ err = errno; ++ __close (fd); ++ return err; ++ } ++ ++ if (statbuf.st_size < size) ++ { ++ __close (fd); ++ return EINVAL; ++ } ++ } ++ else ++ { ++ /* The memory segment doesn't exist. */ ++ if (create_flag) ++ { ++ /* Try to create it exclusively. */ ++ err = get_exclusive (shmflags, size, &key, &fd); ++ if (err == EEXIST) ++ /* If somebody created it in the meanwhile, just try again. */ ++ err = 0; ++ } ++ else ++ err = ENOENT; ++ } ++ } ++ while (fd < 0 && !err); ++ ++ if (!err) ++ *r_fd = fd; ++ else ++ *r_fd = -1; ++ ++ return err; ++} ++ ++/* Return an identifier for an shared memory segment of at least size ++ SIZE which is associated with KEY. */ ++int ++__shmget (key_t key, size_t size, int shmflags) ++{ ++ error_t err; ++ int fd; ++ ++ if (key == IPC_PRIVATE || shmflags & IPC_EXCL) ++ /* An exclusive shared memory segment must be created. */ ++ err = get_exclusive (shmflags, size, &key, &fd); ++ else ++ err = get_shared (shmflags, size, key, &fd); ++ ++ if (err) ++ { ++ errno = err; ++ return -1; ++ } ++ ++ /* From here, we can't fail. That's important, as otherwise we ++ would need to unlink the file if we created it (in that case, the ++ code above would have to be changed to pass a "created" flag down ++ to the caller). */ ++ ++ __close (fd); ++ ++ return key; ++} ++ ++weak_alias(__shmget, shmget) --- glibc-2.5.orig/debian/patches/i386/submitted-i686-timing.diff +++ glibc-2.5/debian/patches/i386/submitted-i686-timing.diff @@ -0,0 +1,159 @@ +# DP: Description: i386 ld.so gets sigsegv when i686 optimized library is used, +# because the structure size of rtld_global and rtld_global_ro +# are different due to HP_TIMING_AVAIL availability. +# This patch aligns those sizes for using i686 optimized library. +# DP: Author: Daniel Jacobowitz +# DP: Upstream status: Pending +# DP: Status Details: +# DP: Date: 2003-10-03 (Updated 2003-10-12), (Updated 2005-01-02, 2005-03-03 gotom) + +2005-03-03 GOTO Masanori + + * sysdeps/generic/ldsodefs.h (struct rtld_global, rtld_global_ro): + Include timing members if HP_TIMING_PAD is defined. + +2005-01-02 GOTO Masanori + + * elf/Makefile: Regenerate. + +2003-10-12 Daniel Jacobowitz + + * sysdeps/generic/ldsodefs.h (struct rtld_global): Include timing + members if HP_TIMING_PAD is defined. + * sysdeps/i386/hp-timing.h: New file. + * elf/Makefile: Add dl-altinit to routines, shared-only-routines. + * elf/dl-altinit.c: New file. + +Index: sysdeps/generic/ldsodefs.h +=================================================================== +--- sysdeps/generic/ldsodefs.h.orig ++++ sysdeps/generic/ldsodefs.h +@@ -408,7 +408,7 @@ + /* The object to be initialized first. */ + EXTERN struct link_map *_dl_initfirst; + +-#if HP_TIMING_AVAIL || HP_SMALL_TIMING_AVAIL ++#if HP_TIMING_AVAIL || HP_SMALL_TIMING_AVAIL || HP_TIMING_PAD + /* Start time on CPU clock. */ + EXTERN hp_timing_t _dl_cpuclock_offset; + #endif +@@ -619,7 +619,7 @@ + /* All search directories defined at startup. */ + EXTERN struct r_search_path_elem *_dl_init_all_dirs; + +-#if HP_TIMING_AVAIL || HP_SMALL_TIMING_AVAIL ++#if HP_TIMING_AVAIL || HP_SMALL_TIMING_AVAIL || HP_TIMING_PAD + /* Overhead of a high-precision timing measurement. */ + EXTERN hp_timing_t _dl_hp_timing_overhead; + #endif +Index: sysdeps/i386/hp-timing.h +=================================================================== +--- /dev/null ++++ sysdeps/i386/hp-timing.h +@@ -0,0 +1,34 @@ ++/* High precision, low overhead timing functions. i386 version. ++ Copyright (C) 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _i386_HP_TIMING_H ++#define _i386_HP_TIMING_H 1 ++ ++#define hp_timing_t hp_timing_t__ ++#include ++#undef hp_timing_t ++ ++/* We don't use high-precision timers, but we might load an i686 libpthread ++ which does. */ ++#define HP_TIMING_PAD 1 ++ ++/* i686 uses 64bit values for the times. */ ++typedef unsigned long long int hp_timing_t; ++ ++#endif /* hp-timing.h */ +Index: elf/dl-altinit.c +=================================================================== +--- /dev/null ++++ elf/dl-altinit.c +@@ -0,0 +1,43 @@ ++/* Extra initializers for shared libc. ++ Copyright (C) 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++/* This file is used from the shared libc, to initialize anything which ++ ld.so should have initialized but didn't - for instance, if ld.so ++ is built for a machine without HP_TIMING but libc.so is built for ++ a machine with HP_TIMING, clock_gettime will expect dl_cpuclock_offset ++ to be initialized. */ ++ ++static void ++dlinit_hptiming (void) ++{ ++#if HP_TIMING_AVAIL || HP_SMALL_TIMING_AVAIL ++ if (GL(dl_cpuclock_offset) == 0) ++ HP_TIMING_NOW (GL(dl_cpuclock_offset)); ++#endif ++} ++ ++static void dlinit_alt (void) __attribute__((constructor)); ++static void ++dlinit_alt (void) ++{ ++ dlinit_hptiming (); ++} +Index: elf/Makefile +=================================================================== +--- elf/Makefile.orig ++++ elf/Makefile +@@ -23,7 +23,7 @@ + headers = elf.h bits/elfclass.h link.h bits/link.h + routines = $(dl-routines) dl-support dl-iteratephdr \ + dl-addr enbl-secure dl-profstub \ +- dl-origin dl-libc dl-sym dl-tsd ++ dl-origin dl-libc dl-sym dl-tsd dl-altinit + + # The core dynamic linking functions are in libc for the static and + # profiled libraries. +@@ -41,6 +41,10 @@ + rtld-routines := rtld $(dl-routines) dl-sysdep dl-environ dl-minimal + all-rtld-routines = $(rtld-routines) $(sysdep-rtld-routines) + ++# We only need to re-run initializers if ld.so and libc.so might be built ++# for different machines, so only shared libraries need dl-altinit. ++shared-only-routines = dl-altinit ++ + distribute := rtld-Rules \ + $(rtld-routines:=.c) dynamic-link.h do-rel.h dl-machine.h \ + dl-cache.h dl-hash.h soinit.c sofini.c ldd.bash.in \ --- glibc-2.5.orig/debian/patches/i386/local-biarch.diff +++ glibc-2.5/debian/patches/i386/local-biarch.diff @@ -0,0 +1,12 @@ +# DP: Description: Allow ldconfig to work on i386/x86-64 biarch systems +# DP: Related bugs: +# DP: Dpatch author: Daniel Jacobowitz +# DP: Patch author: Daniel Jacobowitz +# DP: Upstream status: Debian-Specific +# DP: Status Details: based on Ubuntu change by Jeff Bailey +# DP: Date: 2005-10-13 + +--- /dev/null 2005-07-29 18:11:21.000000000 +0000 ++++ glibc-2.3.5/sysdeps/unix/sysv/linux/i386/dl-cache.h 2005-08-05 14:15:39.162794976 +0000 +@@ -0,0 +1,1 @@ ++#include --- glibc-2.5.orig/debian/patches/i386/local-cmov.diff +++ glibc-2.5/debian/patches/i386/local-cmov.diff @@ -0,0 +1,25 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Add CMOV to hwcap, for VIA C3 which is i686 class processor, +# DP: but does not have 686 optional instruction CMOV. +# DP: Author: GOTO Masanori +# DP: Upstream status: Not submitted +# DP: Status Details: Not submitted +# DP: Date: 2003-02-21 +# DP: Updated 2003-10-12 by dan@debian.org for TLS +# DP: Updated 2004-01-02 to fix building with newer patches by jb. +# DP: Updated 2005-01-02 to fix building with newer patches by gotom. + +2005-01-02 GOTO Masanori + + * sysdeps/i386/dl-procinfo.h: Update to add CMOV for VIA C3 chip. + +--- sysdeps/i386/dl-procinfo.h 10 Mar 2004 18:29:31 -0000 1.3 ++++ sysdeps/i386/dl-procinfo.h 2 Jan 2005 09:13:55 -0000 +@@ -57,7 +57,7 @@ + HWCAP_I386_AMD3D = 1 << 31, + + /* XXX Which others to add here? */ +- HWCAP_IMPORTANT = (HWCAP_I386_XMM2) ++ HWCAP_IMPORTANT = (HWCAP_I386_CMOV | HWCAP_I386_XMM2) + + }; --- glibc-2.5.orig/debian/patches/kfreebsd/local-undef-glibc.diff +++ glibc-2.5/debian/patches/kfreebsd/local-undef-glibc.diff @@ -0,0 +1,14 @@ +Description: #undef __GLIBC__ before defining it +Author: rmh +Upstream status: REJECTED. DO NOT SUBMIT. (send to debian instead) + +--- include/features.h.orig 2007-02-04 13:41:37.000000000 +0100 ++++ include/features.h 2007-02-04 13:42:56.000000000 +0100 +@@ -303,6 +303,7 @@ + + /* Major and minor version number of the GNU C library package. Use + these macros to test for features in specific releases. */ ++#undef __GLIBC__ + #define __GLIBC__ 2 + #define __GLIBC_MINOR__ 5 + --- glibc-2.5.orig/debian/patches/kfreebsd/local-ftw.diff +++ glibc-2.5/debian/patches/kfreebsd/local-ftw.diff @@ -0,0 +1,51 @@ + +disable usage of unimplemented *at functions +revert to previous behaviour, inspired by + http://sourceware.org/ml/glibc-cvs/2006-q1/msg00636.html + http://sources.redhat.com/cgi-bin/cvsweb.cgi/libc/io/ftw.c.diff?cvsroot=glibc&r1=1.50&r2=1.51 + + +--- io/ftw.c~ 2006-06-26 19:35:23.000000000 +0200 ++++ io/ftw.c 2006-06-26 19:35:23.000000000 +0200 +@@ -338,6 +338,7 @@ + { + assert (data->dirstreams[data->actdir] == NULL); + ++#if 0 + if (dfdp != NULL && *dfdp != -1) + { + int fd = openat64_not_cancel_3 (*dfdp, data->dirbuf + data->ftw.base, +@@ -347,6 +348,7 @@ + close_not_cancel_no_status (fd); + } + else ++#endif + { + const char *name = ((data->flags & FTW_CHDIR) + ? data->dirbuf + data->ftw.base: data->dirbuf); +@@ -401,10 +403,12 @@ + *((char *) __mempcpy (data->dirbuf + data->ftw.base, name, namlen)) = '\0'; + + int statres; ++#if 0 + if (dir->streamfd != -1) + statres = FXSTATAT (_STAT_VER, dir->streamfd, name, &st, + (data->flags & FTW_PHYS) ? AT_SYMLINK_NOFOLLOW : 0); + else ++#endif + { + if ((data->flags & FTW_CHDIR) == 0) + name = data->dirbuf; +@@ -424,10 +428,12 @@ + flag = FTW_SLN; + else + { ++#if 0 + if (dir->streamfd != -1) + statres = FXSTATAT (_STAT_VER, dir->streamfd, name, &st, + AT_SYMLINK_NOFOLLOW); + else ++#endif + statres = LXSTAT (_STAT_VER, name, &st); + if (statres == 0 && S_ISLNK (st.st_mode)) + flag = FTW_SLN; --- glibc-2.5.orig/debian/patches/kfreebsd/local-memusage_no_mremap.diff +++ glibc-2.5/debian/patches/kfreebsd/local-memusage_no_mremap.diff @@ -0,0 +1,19 @@ +--- malloc/memusage.c~ 2006-06-12 15:45:13.000000000 +0200 ++++ malloc/memusage.c 2006-06-12 15:45:13.000000000 +0200 +@@ -650,6 +650,8 @@ + return result; + } + ++#include <_G_config.h> ++#ifdef _G_HAVE_MREMAP + + /* `mmap' replacement. We do not have to keep track of the sizesince + `munmap' will get it as a parameter. */ +@@ -715,6 +717,7 @@ + /* Return the pointer to the user buffer. */ + return result; + } ++#endif + + + /* `munmap' replacement. */ --- glibc-2.5.orig/debian/patches/kfreebsd/local-pthread_at_fork.diff +++ glibc-2.5/debian/patches/kfreebsd/local-pthread_at_fork.diff @@ -0,0 +1,11 @@ +--- linuxthreads/old_pthread_atfork.c~ 2005-12-22 13:26:01.000000000 +0000 ++++ linuxthreads/old_pthread_atfork.c 2005-12-22 13:26:01.000000000 +0000 +@@ -19,7 +19,7 @@ + + #include + +-#if SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_3) ++#if SHLIB_COMPAT (libpthread, GLIBC_2_0, GLIBC_2_3_2) + # define __pthread_atfork __dyn_pthread_atfork + # include "pthread_atfork.c" + # undef __pthread_atfork --- glibc-2.5.orig/debian/patches/kfreebsd/local-readdir_r.diff +++ glibc-2.5/debian/patches/kfreebsd/local-readdir_r.diff @@ -0,0 +1,39 @@ +--- sysdeps/unix/readdir_r.c.orig 2002-08-28 07:52:06.000000000 +0200 ++++ sysdeps/unix/readdir_r.c 2003-07-03 16:43:05.000000000 +0200 +@@ -113,7 +113,35 @@ + while (dp->d_ino == 0); + + if (dp != NULL) +- *result = memcpy (entry, dp, reclen); ++ { ++ /* The required size of *entry, according to POSIX, is ++ offsetof (DIRENT_TYPE, d_name[0]) + NAME_MAX + 1. ++ We must not write beyond the end of *entry. On some operating ++ systems, dp->d_reclen may be larger; in this case, copy only as ++ many bytes as needed. Also give an error if d_name is too long. */ ++#ifdef _DIRENT_HAVE_D_RECLEN ++ /* DIRENT_TYPE is of variable size, with d_name as its last entry. */ ++ size_t namelen; ++# ifdef _DIRENT_HAVE_D_NAMLEN ++ namelen = dp->d_namlen; ++# else ++ namelen = strlen (dp->d_name); ++# endif ++ ++ if (namelen <= NAME_MAX) ++ *result = memcpy (entry, dp, ++ offsetof (DIRENT_TYPE, d_name[0]) + namelen + 1); ++ else ++ { ++ errno = EOVERFLOW; ++ dp = NULL; ++ *result = NULL; ++ } ++#else ++ /* DIRENT_TYPE is of fixed size. */ ++ *result = memcpy (entry, dp, reclen); ++#endif ++ } + else + *result = NULL; + --- glibc-2.5.orig/debian/patches/kfreebsd/local-scripts.diff +++ glibc-2.5/debian/patches/kfreebsd/local-scripts.diff @@ -0,0 +1,117 @@ +diff -urN glibc-2.3.2.orig/abi-tags glibc-2.3.2/abi-tags +--- abi-tags 2002-09-21 02:28:19.000000000 +0200 ++++ abi-tags 2005-06-12 17:58:26.000000000 +0200 +@@ -22,7 +22,7 @@ + + .*-sun-solaris2.* 2 2.0.0 # just an arbitrary value + +-.*-.*-freebsd.*-gnu.* 3 4.0.0 # earliest compatible kernel version ++.*-.*-kfreebsd.* 3 5.4.0 # earliest compatible kernel version + + # There is no catch-all default here because every supported OS that uses + # ELF must have its own unique ABI tag. +diff -urN glibc-2.3.2.orig/configure glibc-2.3.2/configure +--- configure 2005-06-12 17:39:18.000000000 +0200 ++++ configure 2005-06-12 18:02:40.000000000 +0200 +@@ -1742,7 +1742,7 @@ + # i586-linuxaout is mangled into i586-pc-linux-gnuaout + linux*ecoff* | linux*aout* | gnu*aout* | gnu*ecoff*) + ;; +-gnu* | linux* | freebsd* | netbsd* | sysv4* | solaris2* | irix6*) ++gnu* | linux* | freebsd* | netbsd* | k*bsd* | sysv4* | solaris2* | irix6*) + # These systems (almost) always use the ELF format. + elf=yes + ;; +@@ -1785,7 +1785,7 @@ + ### + if test -z "$enable_hacker_mode"; then + case "$machine-$host_os" in +- *-linux* | *-gnu* | arm*-none* | powerpc-aix4.3.*) ++ *-linux* | *-gnu* | *-kfreebsd* | arm*-none* | powerpc-aix4.3.*) + ;; + *) + echo "*** The GNU C library is currently not available for this platform." +@@ -1883,7 +1883,7 @@ + case "$os" in + gnu*) + base_os=mach/hurd ;; +-netbsd* | 386bsd* | freebsd* | bsdi*) ++netbsd* | 386bsd* | freebsd* | bsdi* | k*bsd*) + base_os=unix/bsd/bsd4.4 ;; + osf* | sunos* | ultrix* | newsos* | dynix* | *bsd*) + base_os=unix/bsd ;; +diff -urN glibc-2.3.2.orig/configure.in glibc-2.3.2/configure.in +--- configure.in 2005-06-12 17:39:21.000000000 +0200 ++++ configure.in 2005-06-12 18:01:28.000000000 +0200 +@@ -316,7 +316,7 @@ + # i586-linuxaout is mangled into i586-pc-linux-gnuaout + linux*ecoff* | linux*aout* | gnu*aout* | gnu*ecoff*) + ;; +-gnu* | linux* | freebsd* | netbsd* | sysv4* | solaris2* | irix6*) ++gnu* | linux* | freebsd* | netbsd* | k*bsd* | sysv4* | solaris2* | irix6*) + # These systems (almost) always use the ELF format. + elf=yes + ;; +@@ -359,7 +359,7 @@ + ### + if test -z "$enable_hacker_mode"; then + case "$machine-$host_os" in +- *-linux* | *-gnu* | arm*-none* | powerpc-aix4.3.*) ++ *-linux* | *-gnu* | *-kfreebsd* | arm*-none* | powerpc-aix4.3.*) + ;; + *) + echo "*** The GNU C library is currently not available for this platform." +@@ -458,7 +458,7 @@ + case "$os" in + gnu*) + base_os=mach/hurd ;; +-netbsd* | 386bsd* | freebsd* | bsdi*) ++netbsd* | 386bsd* | freebsd* | bsdi* | k*bsd*) + base_os=unix/bsd/bsd4.4 ;; + osf* | sunos* | ultrix* | newsos* | dynix* | *bsd*) + base_os=unix/bsd ;; +diff -urN glibc-2.3.2.orig/shlib-versions glibc-2.3.2/shlib-versions +--- shlib-versions 2002-09-05 11:31:49.000000000 +0200 ++++ shlib-versions 2005-06-12 18:06:19.000000000 +0200 +@@ -26,6 +26,7 @@ + x86_64-.*-linux.* DEFAULT GLIBC_2.2.5 + powerpc64-.*-linux.* DEFAULT GLIBC_2.3 + .*-.*-gnu-gnu.* DEFAULT GLIBC_2.2.6 ++.*-.*-kfreebsd.* DEFAULT GLIBC_2.3 + + # Configuration Library=version Earliest symbol set (optional) + # ------------- --------------- ------------------------------ +@@ -39,6 +40,7 @@ + hppa.*-.*-.* libm=6 GLIBC_2.2 + .*-.*-linux.* libm=6 + .*-.*-gnu-gnu.* libm=6 ++.*-.*-kfreebsd.* libm=1 + + # We provide libc.so.6 for Linux kernel versions 2.0 and later. + alpha.*-.*-linux.* libc=6.1 +@@ -49,6 +51,7 @@ + sparc64-.*-linux.* libc=6 GLIBC_2.2 + hppa.*-.*-.* libc=6 GLIBC_2.2 + .*-.*-linux.* libc=6 ++.*-.*-kfreebsd.* libc=0.1 + + # libmachuser.so.1 corresponds to mach/*.defs as of Utah's UK22 release. + .*-.*-gnu-gnu.* libmachuser=1 +@@ -73,6 +73,7 @@ + powerpc64.*-.*-linux.* ld=ld64.so.1 GLIBC_2.3 + cris-.*-linux.* ld=ld.so.1 GLIBC_2.2 + x86_64-.*-linux.* ld=ld-linux-x86-64.so.2 GLIBC_2.2.5 ++x86_64-.*-kfreebsd.* ld=ld-kfreebsd-x86-64.so.1 + # We use the ELF ABI standard name for the default. + .*-.*-.* ld=ld.so.1 + +diff -urN glibc-2.3.2.orig/linuxthreads/shlib-versions glibc-2.3.2/linuxthreads/shlib-versions +--- linuxthreads/shlib-versions 2002-09-05 12:14:21.000000000 +0200 ++++ linuxthreads/shlib-versions 2005-06-15 01:40:37.000000000 +0200 +@@ -8,4 +8,5 @@ + cris-.*-linux.* libpthread=0 GLIBC_2.2 + x86_64-.*-linux.* libpthread=0 GLIBC_2.2.5 + powerpc64-.*-linux.* libpthread=0 GLIBC_2.3 +-.*-.*-linux.* libpthread=0 ++.*-.*-kfreebsd.* libpthread=0 GLIBC_2.3 ++.*-.*-.* libpthread=0 --- glibc-2.5.orig/debian/patches/kfreebsd/local-sys_queue_h.diff +++ glibc-2.5/debian/patches/kfreebsd/local-sys_queue_h.diff @@ -0,0 +1,896 @@ +--- misc/sys/queue.h.orig 2006-05-10 16:53:51.000000000 +0200 ++++ misc/sys/queue.h 2006-10-13 13:05:17.000000000 +0200 +@@ -27,24 +27,38 @@ + * SUCH DAMAGE. + * + * @(#)queue.h 8.5 (Berkeley) 8/20/94 ++ * $FreeBSD: src/sys/sys/queue.h,v 1.58 2004/04/07 04:19:49 imp Exp $ + */ + +-#ifndef _SYS_QUEUE_H_ ++#ifndef _SYS_QUEUE_H_ + #define _SYS_QUEUE_H_ + ++#include ++ + /* +- * This file defines five types of data structures: singly-linked lists, +- * lists, simple queues, tail queues, and circular queues. ++ * This file defines four types of data structures: singly-linked lists, ++ * singly-linked tail queues, lists and tail queues. ++ * ++ * A singly-linked list is headed by a single forward pointer. The elements ++ * are singly linked for minimum space and pointer manipulation overhead at ++ * the expense of O(n) removal for arbitrary elements. New elements can be ++ * added to the list after an existing element or at the head of the list. ++ * Elements being removed from the head of the list should use the explicit ++ * macro for this purpose for optimum efficiency. A singly-linked list may ++ * only be traversed in the forward direction. Singly-linked lists are ideal ++ * for applications with large datasets and few or no removals or for ++ * implementing a LIFO queue. + * +- * A singly-linked list is headed by a single forward pointer. The +- * elements are singly linked for minimum space and pointer manipulation +- * overhead at the expense of O(n) removal for arbitrary elements. New +- * elements can be added to the list after an existing element or at the +- * head of the list. Elements being removed from the head of the list +- * should use the explicit macro for this purpose for optimum +- * efficiency. A singly-linked list may only be traversed in the forward +- * direction. Singly-linked lists are ideal for applications with large +- * datasets and few or no removals or for implementing a LIFO queue. ++ * A singly-linked tail queue is headed by a pair of pointers, one to the ++ * head of the list and the other to the tail of the list. The elements are ++ * singly linked for minimum space and pointer manipulation overhead at the ++ * expense of O(n) removal for arbitrary elements. New elements can be added ++ * to the list after an existing element, at the head of the list, or at the ++ * end of the list. Elements being removed from the head of the tail queue ++ * should use the explicit macro for this purpose for optimum efficiency. ++ * A singly-linked tail queue may only be traversed in the forward direction. ++ * Singly-linked tail queues are ideal for applications with large datasets ++ * and few or no removals or for implementing a FIFO queue. + * + * A list is headed by a single forward pointer (or an array of forward + * pointers for a hash table header). The elements are doubly linked +@@ -53,13 +67,6 @@ + * or after an existing element or at the head of the list. A list + * may only be traversed in the forward direction. + * +- * A simple queue is headed by a pair of pointers, one the head of the +- * list and the other to the tail of the list. The elements are singly +- * linked to save space, so elements can only be removed from the +- * head of the list. New elements can be added to the list after +- * an existing element, at the head of the list, or at the end of the +- * list. A simple queue may only be traversed in the forward direction. +- * + * A tail queue is headed by a pair of pointers, one to the head of the + * list and the other to the tail of the list. The elements are doubly + * linked so that an arbitrary element can be removed without a need to +@@ -67,85 +74,68 @@ + * after an existing element, at the head of the list, or at the end of + * the list. A tail queue may be traversed in either direction. + * +- * A circle queue is headed by a pair of pointers, one to the head of the +- * list and the other to the tail of the list. The elements are doubly +- * linked so that an arbitrary element can be removed without a need to +- * traverse the list. New elements can be added to the list before or after +- * an existing element, at the head of the list, or at the end of the list. +- * A circle queue may be traversed in either direction, but has a more +- * complex end of list detection. +- * + * For details on the use of these macros, see the queue(3) manual page. ++ * ++ * ++ * SLIST LIST STAILQ TAILQ ++ * _HEAD + + + + ++ * _HEAD_INITIALIZER + + + + ++ * _ENTRY + + + + ++ * _INIT + + + + ++ * _EMPTY + + + + ++ * _FIRST + + + + ++ * _NEXT + + + + ++ * _PREV - - - + ++ * _LAST - - + + ++ * _FOREACH + + + + ++ * _FOREACH_SAFE + + + + ++ * _FOREACH_REVERSE - - - + ++ * _FOREACH_REVERSE_SAFE - - - + ++ * _INSERT_HEAD + + + + ++ * _INSERT_BEFORE - + - + ++ * _INSERT_AFTER + + + + ++ * _INSERT_TAIL - - + + ++ * _CONCAT - - + + ++ * _REMOVE_HEAD + - + - ++ * _REMOVE + + + + ++ * + */ ++#define QUEUE_MACRO_DEBUG 0 ++#if QUEUE_MACRO_DEBUG ++/* Store the last 2 places the queue element or head was altered */ ++struct qm_trace { ++ char * lastfile; ++ int lastline; ++ char * prevfile; ++ int prevline; ++}; ++ ++#define TRACEBUF struct qm_trace trace; ++#define TRASHIT(x) do {(x) = (void *)-1;} while (0) ++ ++#define QMD_TRACE_HEAD(head) do { \ ++ (head)->trace.prevline = (head)->trace.lastline; \ ++ (head)->trace.prevfile = (head)->trace.lastfile; \ ++ (head)->trace.lastline = __LINE__; \ ++ (head)->trace.lastfile = __FILE__; \ ++} while (0) ++ ++#define QMD_TRACE_ELEM(elem) do { \ ++ (elem)->trace.prevline = (elem)->trace.lastline; \ ++ (elem)->trace.prevfile = (elem)->trace.lastfile; \ ++ (elem)->trace.lastline = __LINE__; \ ++ (elem)->trace.lastfile = __FILE__; \ ++} while (0) ++ ++#else ++#define QMD_TRACE_ELEM(elem) ++#define QMD_TRACE_HEAD(head) ++#define TRACEBUF ++#define TRASHIT(x) ++#endif /* QUEUE_MACRO_DEBUG */ + + /* +- * List definitions. +- */ +-#define LIST_HEAD(name, type) \ +-struct name { \ +- struct type *lh_first; /* first element */ \ +-} +- +-#define LIST_HEAD_INITIALIZER(head) \ +- { NULL } +- +-#define LIST_ENTRY(type) \ +-struct { \ +- struct type *le_next; /* next element */ \ +- struct type **le_prev; /* address of previous next element */ \ +-} +- +-/* +- * List functions. +- */ +-#define LIST_INIT(head) do { \ +- (head)->lh_first = NULL; \ +-} while (/*CONSTCOND*/0) +- +-#define LIST_INSERT_AFTER(listelm, elm, field) do { \ +- if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \ +- (listelm)->field.le_next->field.le_prev = \ +- &(elm)->field.le_next; \ +- (listelm)->field.le_next = (elm); \ +- (elm)->field.le_prev = &(listelm)->field.le_next; \ +-} while (/*CONSTCOND*/0) +- +-#define LIST_INSERT_BEFORE(listelm, elm, field) do { \ +- (elm)->field.le_prev = (listelm)->field.le_prev; \ +- (elm)->field.le_next = (listelm); \ +- *(listelm)->field.le_prev = (elm); \ +- (listelm)->field.le_prev = &(elm)->field.le_next; \ +-} while (/*CONSTCOND*/0) +- +-#define LIST_INSERT_HEAD(head, elm, field) do { \ +- if (((elm)->field.le_next = (head)->lh_first) != NULL) \ +- (head)->lh_first->field.le_prev = &(elm)->field.le_next;\ +- (head)->lh_first = (elm); \ +- (elm)->field.le_prev = &(head)->lh_first; \ +-} while (/*CONSTCOND*/0) +- +-#define LIST_REMOVE(elm, field) do { \ +- if ((elm)->field.le_next != NULL) \ +- (elm)->field.le_next->field.le_prev = \ +- (elm)->field.le_prev; \ +- *(elm)->field.le_prev = (elm)->field.le_next; \ +-} while (/*CONSTCOND*/0) +- +-#define LIST_FOREACH(var, head, field) \ +- for ((var) = ((head)->lh_first); \ +- (var); \ +- (var) = ((var)->field.le_next)) +- +-/* +- * List access methods. +- */ +-#define LIST_EMPTY(head) ((head)->lh_first == NULL) +-#define LIST_FIRST(head) ((head)->lh_first) +-#define LIST_NEXT(elm, field) ((elm)->field.le_next) +- +- +-/* +- * Singly-linked List definitions. ++ * Singly-linked List declarations. + */ + #define SLIST_HEAD(name, type) \ + struct name { \ +@@ -163,55 +153,65 @@ + /* + * Singly-linked List functions. + */ ++#define SLIST_EMPTY(head) ((head)->slh_first == NULL) ++ ++#define SLIST_FIRST(head) ((head)->slh_first) ++ ++#define SLIST_FOREACH(var, head, field) \ ++ for ((var) = SLIST_FIRST((head)); \ ++ (var); \ ++ (var) = SLIST_NEXT((var), field)) ++ ++#define SLIST_FOREACH_SAFE(var, head, field, tvar) \ ++ for ((var) = SLIST_FIRST((head)); \ ++ (var) && ((tvar) = SLIST_NEXT((var), field), 1); \ ++ (var) = (tvar)) ++ ++#define SLIST_FOREACH_PREVPTR(var, varp, head, field) \ ++ for ((varp) = &SLIST_FIRST((head)); \ ++ ((var) = *(varp)) != NULL; \ ++ (varp) = &SLIST_NEXT((var), field)) ++ + #define SLIST_INIT(head) do { \ +- (head)->slh_first = NULL; \ +-} while (/*CONSTCOND*/0) ++ SLIST_FIRST((head)) = NULL; \ ++} while (0) + + #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \ +- (elm)->field.sle_next = (slistelm)->field.sle_next; \ +- (slistelm)->field.sle_next = (elm); \ +-} while (/*CONSTCOND*/0) ++ SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \ ++ SLIST_NEXT((slistelm), field) = (elm); \ ++} while (0) + + #define SLIST_INSERT_HEAD(head, elm, field) do { \ +- (elm)->field.sle_next = (head)->slh_first; \ +- (head)->slh_first = (elm); \ +-} while (/*CONSTCOND*/0) ++ SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \ ++ SLIST_FIRST((head)) = (elm); \ ++} while (0) + +-#define SLIST_REMOVE_HEAD(head, field) do { \ +- (head)->slh_first = (head)->slh_first->field.sle_next; \ +-} while (/*CONSTCOND*/0) ++#define SLIST_NEXT(elm, field) ((elm)->field.sle_next) + + #define SLIST_REMOVE(head, elm, type, field) do { \ +- if ((head)->slh_first == (elm)) { \ ++ if (SLIST_FIRST((head)) == (elm)) { \ + SLIST_REMOVE_HEAD((head), field); \ + } \ + else { \ +- struct type *curelm = (head)->slh_first; \ +- while(curelm->field.sle_next != (elm)) \ +- curelm = curelm->field.sle_next; \ +- curelm->field.sle_next = \ +- curelm->field.sle_next->field.sle_next; \ ++ struct type *curelm = SLIST_FIRST((head)); \ ++ while (SLIST_NEXT(curelm, field) != (elm)) \ ++ curelm = SLIST_NEXT(curelm, field); \ ++ SLIST_NEXT(curelm, field) = \ ++ SLIST_NEXT(SLIST_NEXT(curelm, field), field); \ + } \ +-} while (/*CONSTCOND*/0) +- +-#define SLIST_FOREACH(var, head, field) \ +- for((var) = (head)->slh_first; (var); (var) = (var)->field.sle_next) +- +-/* +- * Singly-linked List access methods. +- */ +-#define SLIST_EMPTY(head) ((head)->slh_first == NULL) +-#define SLIST_FIRST(head) ((head)->slh_first) +-#define SLIST_NEXT(elm, field) ((elm)->field.sle_next) ++} while (0) + ++#define SLIST_REMOVE_HEAD(head, field) do { \ ++ SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \ ++} while (0) + + /* + * Singly-linked Tail queue declarations. + */ +-#define STAILQ_HEAD(name, type) \ ++#define STAILQ_HEAD(name, type) \ + struct name { \ +- struct type *stqh_first; /* first element */ \ +- struct type **stqh_last; /* addr of last next element */ \ ++ struct type *stqh_first;/* first element */ \ ++ struct type **stqh_last;/* addr of last next element */ \ + } + + #define STAILQ_HEAD_INITIALIZER(head) \ +@@ -225,333 +225,329 @@ + /* + * Singly-linked Tail queue functions. + */ ++#define STAILQ_CONCAT(head1, head2) do { \ ++ if (!STAILQ_EMPTY((head2))) { \ ++ *(head1)->stqh_last = (head2)->stqh_first; \ ++ (head1)->stqh_last = (head2)->stqh_last; \ ++ STAILQ_INIT((head2)); \ ++ } \ ++} while (0) ++ ++#define STAILQ_EMPTY(head) ((head)->stqh_first == NULL) ++ ++#define STAILQ_FIRST(head) ((head)->stqh_first) ++ ++#define STAILQ_FOREACH(var, head, field) \ ++ for((var) = STAILQ_FIRST((head)); \ ++ (var); \ ++ (var) = STAILQ_NEXT((var), field)) ++ ++ ++#define STAILQ_FOREACH_SAFE(var, head, field, tvar) \ ++ for ((var) = STAILQ_FIRST((head)); \ ++ (var) && ((tvar) = STAILQ_NEXT((var), field), 1); \ ++ (var) = (tvar)) ++ + #define STAILQ_INIT(head) do { \ +- (head)->stqh_first = NULL; \ +- (head)->stqh_last = &(head)->stqh_first; \ +-} while (/*CONSTCOND*/0) ++ STAILQ_FIRST((head)) = NULL; \ ++ (head)->stqh_last = &STAILQ_FIRST((head)); \ ++} while (0) ++ ++#define STAILQ_INSERT_AFTER(head, tqelm, elm, field) do { \ ++ if ((STAILQ_NEXT((elm), field) = STAILQ_NEXT((tqelm), field)) == NULL)\ ++ (head)->stqh_last = &STAILQ_NEXT((elm), field); \ ++ STAILQ_NEXT((tqelm), field) = (elm); \ ++} while (0) + + #define STAILQ_INSERT_HEAD(head, elm, field) do { \ +- if (((elm)->field.stqe_next = (head)->stqh_first) == NULL) \ +- (head)->stqh_last = &(elm)->field.stqe_next; \ +- (head)->stqh_first = (elm); \ +-} while (/*CONSTCOND*/0) ++ if ((STAILQ_NEXT((elm), field) = STAILQ_FIRST((head))) == NULL) \ ++ (head)->stqh_last = &STAILQ_NEXT((elm), field); \ ++ STAILQ_FIRST((head)) = (elm); \ ++} while (0) + + #define STAILQ_INSERT_TAIL(head, elm, field) do { \ +- (elm)->field.stqe_next = NULL; \ ++ STAILQ_NEXT((elm), field) = NULL; \ + *(head)->stqh_last = (elm); \ +- (head)->stqh_last = &(elm)->field.stqe_next; \ +-} while (/*CONSTCOND*/0) ++ (head)->stqh_last = &STAILQ_NEXT((elm), field); \ ++} while (0) + +-#define STAILQ_INSERT_AFTER(head, listelm, elm, field) do { \ +- if (((elm)->field.stqe_next = (listelm)->field.stqe_next) == NULL)\ +- (head)->stqh_last = &(elm)->field.stqe_next; \ +- (listelm)->field.stqe_next = (elm); \ +-} while (/*CONSTCOND*/0) ++#define STAILQ_LAST(head, type, field) \ ++ (STAILQ_EMPTY((head)) ? \ ++ NULL : \ ++ ((struct type *)(void *) \ ++ ((char *)((head)->stqh_last) - __offsetof(struct type, field)))) + +-#define STAILQ_REMOVE_HEAD(head, field) do { \ +- if (((head)->stqh_first = (head)->stqh_first->field.stqe_next) == NULL) \ +- (head)->stqh_last = &(head)->stqh_first; \ +-} while (/*CONSTCOND*/0) ++#define STAILQ_NEXT(elm, field) ((elm)->field.stqe_next) + + #define STAILQ_REMOVE(head, elm, type, field) do { \ +- if ((head)->stqh_first == (elm)) { \ ++ if (STAILQ_FIRST((head)) == (elm)) { \ + STAILQ_REMOVE_HEAD((head), field); \ +- } else { \ +- struct type *curelm = (head)->stqh_first; \ +- while (curelm->field.stqe_next != (elm)) \ +- curelm = curelm->field.stqe_next; \ +- if ((curelm->field.stqe_next = \ +- curelm->field.stqe_next->field.stqe_next) == NULL) \ +- (head)->stqh_last = &(curelm)->field.stqe_next; \ + } \ +-} while (/*CONSTCOND*/0) +- +-#define STAILQ_FOREACH(var, head, field) \ +- for ((var) = ((head)->stqh_first); \ +- (var); \ +- (var) = ((var)->field.stqe_next)) +- +-/* +- * Singly-linked Tail queue access methods. +- */ +-#define STAILQ_EMPTY(head) ((head)->stqh_first == NULL) +-#define STAILQ_FIRST(head) ((head)->stqh_first) +-#define STAILQ_NEXT(elm, field) ((elm)->field.stqe_next) ++ else { \ ++ struct type *curelm = STAILQ_FIRST((head)); \ ++ while (STAILQ_NEXT(curelm, field) != (elm)) \ ++ curelm = STAILQ_NEXT(curelm, field); \ ++ if ((STAILQ_NEXT(curelm, field) = \ ++ STAILQ_NEXT(STAILQ_NEXT(curelm, field), field)) == NULL)\ ++ (head)->stqh_last = &STAILQ_NEXT((curelm), field);\ ++ } \ ++} while (0) + ++#define STAILQ_REMOVE_HEAD(head, field) do { \ ++ if ((STAILQ_FIRST((head)) = \ ++ STAILQ_NEXT(STAILQ_FIRST((head)), field)) == NULL) \ ++ (head)->stqh_last = &STAILQ_FIRST((head)); \ ++} while (0) ++ ++#define STAILQ_REMOVE_HEAD_UNTIL(head, elm, field) do { \ ++ if ((STAILQ_FIRST((head)) = STAILQ_NEXT((elm), field)) == NULL) \ ++ (head)->stqh_last = &STAILQ_FIRST((head)); \ ++} while (0) + + /* +- * Simple queue definitions. ++ * List declarations. + */ +-#define SIMPLEQ_HEAD(name, type) \ ++#define LIST_HEAD(name, type) \ + struct name { \ +- struct type *sqh_first; /* first element */ \ +- struct type **sqh_last; /* addr of last next element */ \ ++ struct type *lh_first; /* first element */ \ + } + +-#define SIMPLEQ_HEAD_INITIALIZER(head) \ +- { NULL, &(head).sqh_first } ++#define LIST_HEAD_INITIALIZER(head) \ ++ { NULL } + +-#define SIMPLEQ_ENTRY(type) \ ++#define LIST_ENTRY(type) \ + struct { \ +- struct type *sqe_next; /* next element */ \ ++ struct type *le_next; /* next element */ \ ++ struct type **le_prev; /* address of previous next element */ \ + } + + /* +- * Simple queue functions. ++ * List functions. + */ +-#define SIMPLEQ_INIT(head) do { \ +- (head)->sqh_first = NULL; \ +- (head)->sqh_last = &(head)->sqh_first; \ +-} while (/*CONSTCOND*/0) +- +-#define SIMPLEQ_INSERT_HEAD(head, elm, field) do { \ +- if (((elm)->field.sqe_next = (head)->sqh_first) == NULL) \ +- (head)->sqh_last = &(elm)->field.sqe_next; \ +- (head)->sqh_first = (elm); \ +-} while (/*CONSTCOND*/0) +- +-#define SIMPLEQ_INSERT_TAIL(head, elm, field) do { \ +- (elm)->field.sqe_next = NULL; \ +- *(head)->sqh_last = (elm); \ +- (head)->sqh_last = &(elm)->field.sqe_next; \ +-} while (/*CONSTCOND*/0) +- +-#define SIMPLEQ_INSERT_AFTER(head, listelm, elm, field) do { \ +- if (((elm)->field.sqe_next = (listelm)->field.sqe_next) == NULL)\ +- (head)->sqh_last = &(elm)->field.sqe_next; \ +- (listelm)->field.sqe_next = (elm); \ +-} while (/*CONSTCOND*/0) +- +-#define SIMPLEQ_REMOVE_HEAD(head, field) do { \ +- if (((head)->sqh_first = (head)->sqh_first->field.sqe_next) == NULL) \ +- (head)->sqh_last = &(head)->sqh_first; \ +-} while (/*CONSTCOND*/0) +- +-#define SIMPLEQ_REMOVE(head, elm, type, field) do { \ +- if ((head)->sqh_first == (elm)) { \ +- SIMPLEQ_REMOVE_HEAD((head), field); \ +- } else { \ +- struct type *curelm = (head)->sqh_first; \ +- while (curelm->field.sqe_next != (elm)) \ +- curelm = curelm->field.sqe_next; \ +- if ((curelm->field.sqe_next = \ +- curelm->field.sqe_next->field.sqe_next) == NULL) \ +- (head)->sqh_last = &(curelm)->field.sqe_next; \ +- } \ +-} while (/*CONSTCOND*/0) + +-#define SIMPLEQ_FOREACH(var, head, field) \ +- for ((var) = ((head)->sqh_first); \ +- (var); \ +- (var) = ((var)->field.sqe_next)) ++#define LIST_EMPTY(head) ((head)->lh_first == NULL) + +-/* +- * Simple queue access methods. +- */ +-#define SIMPLEQ_EMPTY(head) ((head)->sqh_first == NULL) +-#define SIMPLEQ_FIRST(head) ((head)->sqh_first) +-#define SIMPLEQ_NEXT(elm, field) ((elm)->field.sqe_next) ++#define LIST_FIRST(head) ((head)->lh_first) ++ ++#define LIST_FOREACH(var, head, field) \ ++ for ((var) = LIST_FIRST((head)); \ ++ (var); \ ++ (var) = LIST_NEXT((var), field)) ++ ++#define LIST_FOREACH_SAFE(var, head, field, tvar) \ ++ for ((var) = LIST_FIRST((head)); \ ++ (var) && ((tvar) = LIST_NEXT((var), field), 1); \ ++ (var) = (tvar)) ++ ++#define LIST_INIT(head) do { \ ++ LIST_FIRST((head)) = NULL; \ ++} while (0) ++ ++#define LIST_INSERT_AFTER(listelm, elm, field) do { \ ++ if ((LIST_NEXT((elm), field) = LIST_NEXT((listelm), field)) != NULL)\ ++ LIST_NEXT((listelm), field)->field.le_prev = \ ++ &LIST_NEXT((elm), field); \ ++ LIST_NEXT((listelm), field) = (elm); \ ++ (elm)->field.le_prev = &LIST_NEXT((listelm), field); \ ++} while (0) ++ ++#define LIST_INSERT_BEFORE(listelm, elm, field) do { \ ++ (elm)->field.le_prev = (listelm)->field.le_prev; \ ++ LIST_NEXT((elm), field) = (listelm); \ ++ *(listelm)->field.le_prev = (elm); \ ++ (listelm)->field.le_prev = &LIST_NEXT((elm), field); \ ++} while (0) ++ ++#define LIST_INSERT_HEAD(head, elm, field) do { \ ++ if ((LIST_NEXT((elm), field) = LIST_FIRST((head))) != NULL) \ ++ LIST_FIRST((head))->field.le_prev = &LIST_NEXT((elm), field);\ ++ LIST_FIRST((head)) = (elm); \ ++ (elm)->field.le_prev = &LIST_FIRST((head)); \ ++} while (0) ++ ++#define LIST_NEXT(elm, field) ((elm)->field.le_next) + ++#define LIST_REMOVE(elm, field) do { \ ++ if (LIST_NEXT((elm), field) != NULL) \ ++ LIST_NEXT((elm), field)->field.le_prev = \ ++ (elm)->field.le_prev; \ ++ *(elm)->field.le_prev = LIST_NEXT((elm), field); \ ++} while (0) + + /* +- * Tail queue definitions. ++ * Tail queue declarations. + */ +-#define _TAILQ_HEAD(name, type, qual) \ ++#define TAILQ_HEAD(name, type) \ + struct name { \ +- qual type *tqh_first; /* first element */ \ +- qual type *qual *tqh_last; /* addr of last next element */ \ ++ struct type *tqh_first; /* first element */ \ ++ struct type **tqh_last; /* addr of last next element */ \ ++ TRACEBUF \ + } +-#define TAILQ_HEAD(name, type) _TAILQ_HEAD(name, struct type,) + + #define TAILQ_HEAD_INITIALIZER(head) \ + { NULL, &(head).tqh_first } + +-#define _TAILQ_ENTRY(type, qual) \ ++#define TAILQ_ENTRY(type) \ + struct { \ +- qual type *tqe_next; /* next element */ \ +- qual type *qual *tqe_prev; /* address of previous next element */\ ++ struct type *tqe_next; /* next element */ \ ++ struct type **tqe_prev; /* address of previous next element */ \ ++ TRACEBUF \ + } +-#define TAILQ_ENTRY(type) _TAILQ_ENTRY(struct type,) + + /* + * Tail queue functions. + */ ++#define TAILQ_CONCAT(head1, head2, field) do { \ ++ if (!TAILQ_EMPTY(head2)) { \ ++ *(head1)->tqh_last = (head2)->tqh_first; \ ++ (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \ ++ (head1)->tqh_last = (head2)->tqh_last; \ ++ TAILQ_INIT((head2)); \ ++ QMD_TRACE_HEAD(head1); \ ++ QMD_TRACE_HEAD(head2); \ ++ } \ ++} while (0) ++ ++#define TAILQ_EMPTY(head) ((head)->tqh_first == NULL) ++ ++#define TAILQ_FIRST(head) ((head)->tqh_first) ++ ++#define TAILQ_FOREACH(var, head, field) \ ++ for ((var) = TAILQ_FIRST((head)); \ ++ (var); \ ++ (var) = TAILQ_NEXT((var), field)) ++ ++#define TAILQ_FOREACH_SAFE(var, head, field, tvar) \ ++ for ((var) = TAILQ_FIRST((head)); \ ++ (var) && ((tvar) = TAILQ_NEXT((var), field), 1); \ ++ (var) = (tvar)) ++ ++#define TAILQ_FOREACH_REVERSE(var, head, headname, field) \ ++ for ((var) = TAILQ_LAST((head), headname); \ ++ (var); \ ++ (var) = TAILQ_PREV((var), headname, field)) ++ ++#define TAILQ_FOREACH_REVERSE_SAFE(var, head, headname, field, tvar) \ ++ for ((var) = TAILQ_LAST((head), headname); \ ++ (var) && ((tvar) = TAILQ_PREV((var), headname, field), 1); \ ++ (var) = (tvar)) ++ + #define TAILQ_INIT(head) do { \ +- (head)->tqh_first = NULL; \ +- (head)->tqh_last = &(head)->tqh_first; \ +-} while (/*CONSTCOND*/0) ++ TAILQ_FIRST((head)) = NULL; \ ++ (head)->tqh_last = &TAILQ_FIRST((head)); \ ++ QMD_TRACE_HEAD(head); \ ++} while (0) ++ ++#define TAILQ_INSERT_AFTER(head, listelm, elm, field) do { \ ++ if ((TAILQ_NEXT((elm), field) = TAILQ_NEXT((listelm), field)) != NULL)\ ++ TAILQ_NEXT((elm), field)->field.tqe_prev = \ ++ &TAILQ_NEXT((elm), field); \ ++ else { \ ++ (head)->tqh_last = &TAILQ_NEXT((elm), field); \ ++ QMD_TRACE_HEAD(head); \ ++ } \ ++ TAILQ_NEXT((listelm), field) = (elm); \ ++ (elm)->field.tqe_prev = &TAILQ_NEXT((listelm), field); \ ++ QMD_TRACE_ELEM(&(elm)->field); \ ++ QMD_TRACE_ELEM(&listelm->field); \ ++} while (0) ++ ++#define TAILQ_INSERT_BEFORE(listelm, elm, field) do { \ ++ (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \ ++ TAILQ_NEXT((elm), field) = (listelm); \ ++ *(listelm)->field.tqe_prev = (elm); \ ++ (listelm)->field.tqe_prev = &TAILQ_NEXT((elm), field); \ ++ QMD_TRACE_ELEM(&(elm)->field); \ ++ QMD_TRACE_ELEM(&listelm->field); \ ++} while (0) + + #define TAILQ_INSERT_HEAD(head, elm, field) do { \ +- if (((elm)->field.tqe_next = (head)->tqh_first) != NULL) \ +- (head)->tqh_first->field.tqe_prev = \ +- &(elm)->field.tqe_next; \ ++ if ((TAILQ_NEXT((elm), field) = TAILQ_FIRST((head))) != NULL) \ ++ TAILQ_FIRST((head))->field.tqe_prev = \ ++ &TAILQ_NEXT((elm), field); \ + else \ +- (head)->tqh_last = &(elm)->field.tqe_next; \ +- (head)->tqh_first = (elm); \ +- (elm)->field.tqe_prev = &(head)->tqh_first; \ +-} while (/*CONSTCOND*/0) ++ (head)->tqh_last = &TAILQ_NEXT((elm), field); \ ++ TAILQ_FIRST((head)) = (elm); \ ++ (elm)->field.tqe_prev = &TAILQ_FIRST((head)); \ ++ QMD_TRACE_HEAD(head); \ ++ QMD_TRACE_ELEM(&(elm)->field); \ ++} while (0) + + #define TAILQ_INSERT_TAIL(head, elm, field) do { \ +- (elm)->field.tqe_next = NULL; \ ++ TAILQ_NEXT((elm), field) = NULL; \ + (elm)->field.tqe_prev = (head)->tqh_last; \ + *(head)->tqh_last = (elm); \ +- (head)->tqh_last = &(elm)->field.tqe_next; \ +-} while (/*CONSTCOND*/0) ++ (head)->tqh_last = &TAILQ_NEXT((elm), field); \ ++ QMD_TRACE_HEAD(head); \ ++ QMD_TRACE_ELEM(&(elm)->field); \ ++} while (0) + +-#define TAILQ_INSERT_AFTER(head, listelm, elm, field) do { \ +- if (((elm)->field.tqe_next = (listelm)->field.tqe_next) != NULL)\ +- (elm)->field.tqe_next->field.tqe_prev = \ +- &(elm)->field.tqe_next; \ +- else \ +- (head)->tqh_last = &(elm)->field.tqe_next; \ +- (listelm)->field.tqe_next = (elm); \ +- (elm)->field.tqe_prev = &(listelm)->field.tqe_next; \ +-} while (/*CONSTCOND*/0) ++#define TAILQ_LAST(head, headname) \ ++ (*(((struct headname *)((head)->tqh_last))->tqh_last)) + +-#define TAILQ_INSERT_BEFORE(listelm, elm, field) do { \ +- (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \ +- (elm)->field.tqe_next = (listelm); \ +- *(listelm)->field.tqe_prev = (elm); \ +- (listelm)->field.tqe_prev = &(elm)->field.tqe_next; \ +-} while (/*CONSTCOND*/0) ++#define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next) ++ ++#define TAILQ_PREV(elm, headname, field) \ ++ (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last)) + + #define TAILQ_REMOVE(head, elm, field) do { \ +- if (((elm)->field.tqe_next) != NULL) \ +- (elm)->field.tqe_next->field.tqe_prev = \ ++ if ((TAILQ_NEXT((elm), field)) != NULL) \ ++ TAILQ_NEXT((elm), field)->field.tqe_prev = \ + (elm)->field.tqe_prev; \ +- else \ ++ else { \ + (head)->tqh_last = (elm)->field.tqe_prev; \ +- *(elm)->field.tqe_prev = (elm)->field.tqe_next; \ +-} while (/*CONSTCOND*/0) ++ QMD_TRACE_HEAD(head); \ ++ } \ ++ *(elm)->field.tqe_prev = TAILQ_NEXT((elm), field); \ ++ TRASHIT((elm)->field.tqe_next); \ ++ TRASHIT((elm)->field.tqe_prev); \ ++ QMD_TRACE_ELEM(&(elm)->field); \ ++} while (0) + +-#define TAILQ_FOREACH(var, head, field) \ +- for ((var) = ((head)->tqh_first); \ +- (var); \ +- (var) = ((var)->field.tqe_next)) + +-#define TAILQ_FOREACH_REVERSE(var, head, headname, field) \ +- for ((var) = (*(((struct headname *)((head)->tqh_last))->tqh_last)); \ +- (var); \ +- (var) = (*(((struct headname *)((var)->field.tqe_prev))->tqh_last))) ++#ifdef _KERNEL + + /* +- * Tail queue access methods. ++ * XXX insque() and remque() are an old way of handling certain queues. ++ * They bogusly assumes that all queue heads look alike. + */ +-#define TAILQ_EMPTY(head) ((head)->tqh_first == NULL) +-#define TAILQ_FIRST(head) ((head)->tqh_first) +-#define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next) + +-#define TAILQ_LAST(head, headname) \ +- (*(((struct headname *)((head)->tqh_last))->tqh_last)) +-#define TAILQ_PREV(elm, headname, field) \ +- (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last)) ++struct quehead { ++ struct quehead *qh_link; ++ struct quehead *qh_rlink; ++}; + ++#if defined(__GNUC__) || defined(__INTEL_COMPILER) + +-/* +- * Circular queue definitions. +- */ +-#define CIRCLEQ_HEAD(name, type) \ +-struct name { \ +- struct type *cqh_first; /* first element */ \ +- struct type *cqh_last; /* last element */ \ ++static __inline void ++insque(void *a, void *b) ++{ ++ struct quehead *element = (struct quehead *)a, ++ *head = (struct quehead *)b; ++ ++ element->qh_link = head->qh_link; ++ element->qh_rlink = head; ++ head->qh_link = element; ++ element->qh_link->qh_rlink = element; + } + +-#define CIRCLEQ_HEAD_INITIALIZER(head) \ +- { (void *)&head, (void *)&head } ++static __inline void ++remque(void *a) ++{ ++ struct quehead *element = (struct quehead *)a; + +-#define CIRCLEQ_ENTRY(type) \ +-struct { \ +- struct type *cqe_next; /* next element */ \ +- struct type *cqe_prev; /* previous element */ \ ++ element->qh_link->qh_rlink = element->qh_rlink; ++ element->qh_rlink->qh_link = element->qh_link; ++ element->qh_rlink = 0; + } + +-/* +- * Circular queue functions. +- */ +-#define CIRCLEQ_INIT(head) do { \ +- (head)->cqh_first = (void *)(head); \ +- (head)->cqh_last = (void *)(head); \ +-} while (/*CONSTCOND*/0) +- +-#define CIRCLEQ_INSERT_AFTER(head, listelm, elm, field) do { \ +- (elm)->field.cqe_next = (listelm)->field.cqe_next; \ +- (elm)->field.cqe_prev = (listelm); \ +- if ((listelm)->field.cqe_next == (void *)(head)) \ +- (head)->cqh_last = (elm); \ +- else \ +- (listelm)->field.cqe_next->field.cqe_prev = (elm); \ +- (listelm)->field.cqe_next = (elm); \ +-} while (/*CONSTCOND*/0) +- +-#define CIRCLEQ_INSERT_BEFORE(head, listelm, elm, field) do { \ +- (elm)->field.cqe_next = (listelm); \ +- (elm)->field.cqe_prev = (listelm)->field.cqe_prev; \ +- if ((listelm)->field.cqe_prev == (void *)(head)) \ +- (head)->cqh_first = (elm); \ +- else \ +- (listelm)->field.cqe_prev->field.cqe_next = (elm); \ +- (listelm)->field.cqe_prev = (elm); \ +-} while (/*CONSTCOND*/0) +- +-#define CIRCLEQ_INSERT_HEAD(head, elm, field) do { \ +- (elm)->field.cqe_next = (head)->cqh_first; \ +- (elm)->field.cqe_prev = (void *)(head); \ +- if ((head)->cqh_last == (void *)(head)) \ +- (head)->cqh_last = (elm); \ +- else \ +- (head)->cqh_first->field.cqe_prev = (elm); \ +- (head)->cqh_first = (elm); \ +-} while (/*CONSTCOND*/0) +- +-#define CIRCLEQ_INSERT_TAIL(head, elm, field) do { \ +- (elm)->field.cqe_next = (void *)(head); \ +- (elm)->field.cqe_prev = (head)->cqh_last; \ +- if ((head)->cqh_first == (void *)(head)) \ +- (head)->cqh_first = (elm); \ +- else \ +- (head)->cqh_last->field.cqe_next = (elm); \ +- (head)->cqh_last = (elm); \ +-} while (/*CONSTCOND*/0) +- +-#define CIRCLEQ_REMOVE(head, elm, field) do { \ +- if ((elm)->field.cqe_next == (void *)(head)) \ +- (head)->cqh_last = (elm)->field.cqe_prev; \ +- else \ +- (elm)->field.cqe_next->field.cqe_prev = \ +- (elm)->field.cqe_prev; \ +- if ((elm)->field.cqe_prev == (void *)(head)) \ +- (head)->cqh_first = (elm)->field.cqe_next; \ +- else \ +- (elm)->field.cqe_prev->field.cqe_next = \ +- (elm)->field.cqe_next; \ +-} while (/*CONSTCOND*/0) +- +-#define CIRCLEQ_FOREACH(var, head, field) \ +- for ((var) = ((head)->cqh_first); \ +- (var) != (const void *)(head); \ +- (var) = ((var)->field.cqe_next)) +- +-#define CIRCLEQ_FOREACH_REVERSE(var, head, field) \ +- for ((var) = ((head)->cqh_last); \ +- (var) != (const void *)(head); \ +- (var) = ((var)->field.cqe_prev)) ++#else /* !(__GNUC__ || __INTEL_COMPILER) */ + +-/* +- * Circular queue access methods. +- */ +-#define CIRCLEQ_EMPTY(head) ((head)->cqh_first == (void *)(head)) +-#define CIRCLEQ_FIRST(head) ((head)->cqh_first) +-#define CIRCLEQ_LAST(head) ((head)->cqh_last) +-#define CIRCLEQ_NEXT(elm, field) ((elm)->field.cqe_next) +-#define CIRCLEQ_PREV(elm, field) ((elm)->field.cqe_prev) +- +-#define CIRCLEQ_LOOP_NEXT(head, elm, field) \ +- (((elm)->field.cqe_next == (void *)(head)) \ +- ? ((head)->cqh_first) \ +- : (elm->field.cqe_next)) +-#define CIRCLEQ_LOOP_PREV(head, elm, field) \ +- (((elm)->field.cqe_prev == (void *)(head)) \ +- ? ((head)->cqh_last) \ +- : (elm->field.cqe_prev)) ++void insque(void *a, void *b); ++void remque(void *a); ++ ++#endif /* __GNUC__ || __INTEL_COMPILER */ ++ ++#endif /* _KERNEL */ + +-#endif /* sys/queue.h */ ++#endif /* !_SYS_QUEUE_H_ */ --- glibc-2.5.orig/debian/patches/kfreebsd/local-sysdeps.diff +++ glibc-2.5/debian/patches/kfreebsd/local-sysdeps.diff @@ -0,0 +1,22213 @@ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/Dist ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/Dist +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/Dist 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/Dist 2006-11-22 11:44:31.000000000 +0100 +@@ -0,0 +1,30 @@ ++bits/mcontext.h ++bits/stat16.h ++fpu.h ++machine/pal.h ++net/ethernet.h ++net/if_arp.h ++net/if_ether.h ++net/if_dl.h ++net/route.h ++nfs/nfs.h ++regdef.h ++sa_len.c ++stat16conv.c ++statconv.c ++statfsconv.c ++sys/acl.h ++sys/extattr.h ++sys/io.h ++sys/jail.h ++sys/linker.h ++sys/mount.h ++sys/perm.h ++sys/rfork.h ++sys/rtprio.h ++sys/syslimits.h ++sys/timex.h ++sys/vm86.h ++sys_lseek.S ++sysarch.h ++ucontext_i.h +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/Implies ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/Implies +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/Implies 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/Implies 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,11 @@ ++# The kernel include files come from the 'kernel-include' add-on. ++# This is actually added by configure.in. ++#/usr/src/sys/ ++ ++# One of two possible utmp file formats. ++# This is actually added by configure.in. ++#unix/bsd/bsd4.4/kfreebsd/utmp-xyz ++ ++# The gnu subdirectory exists for things common to Linux-based, Hurd-based ++# and kFreeBSD-based GNU systems. ++gnu +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/Makefile ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/Makefile +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/Makefile 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/Makefile 2006-11-22 11:44:31.000000000 +0100 +@@ -0,0 +1,118 @@ ++# Use bash, not /bin/sh, for executing scripts, because the native ++# FreeBSD /bin/sh does not interpret the IFS="" read ... command ++# in localedata/tst-fmon.sh correctly. ++SHELL = bash ++ ++# Additional header files to be installed in $prefix/include: ++ ++ifeq ($(subdir),misc) ++sysdep_headers += \ ++ sys/mount.h \ ++ sys/kd.h \ ++ sys/rfork.h ++endif ++ ++ifeq ($(subdir),stdlib) ++sysdep_headers += \ ++ bits/mcontext.h ++endif ++ ++# Additional functions, and particular system calls: ++ ++ifeq ($(subdir),csu) ++# For . ++sysdep_routines += errno-loc ++endif ++ ++ifeq ($(subdir),io) ++# For . ++sysdep_routines += sys_getcwd sys_lseek ++# For . ++sysdep_routines += sys_open ++# For . ++sysdep_routines += sys_fstat sys_lstat sys_mknod sys_nfstat sys_nlstat sys_nstat sys_stat ++# For . ++sysdep_routines += fstatfs64 statfs64 sys_fstatfs sys_statfs ++# Other. ++sysdep_routines += lchmod ++endif ++ ++ifeq ($(subdir),dirent) ++# For . ++sysdep_routines += sys_getdents sys_getdirentries getdirentries getdirentries64 ++endif ++ ++ifeq ($(subdir),misc) ++# For . ++sysdep_routines += clone start_thread ++# For . ++sysdep_routines += sys_ftruncate sys_truncate ++# For . ++sysdep_routines += acl_aclcheck_fd acl_aclcheck_file acl_delete_fd acl_delete_file acl_get_fd acl_get_file acl_set_fd acl_set_file ++# For . ++sysdep_routines += extattrctl extattr_delete_file extattr_get_file extattr_set_file ++# For . ++sysdep_routines += jail ++# For . ++sysdep_routines += ktrace utrace ++# For . ++sysdep_routines += kldfind kldfirstmod kldload kldnext kldstat kldsym kldunload kldunloadf ++# For . ++sysdep_routines += minherit sys_mmap ++# For . ++sysdep_routines += fhopen sys_fhstat sys_fhstatfs fhstat fhstat64 fhstatfs fhstatfs64 getfh getfsstat getfsstat64 sys_getfsstat getmntinfo getmntinfo64 mount nmount unmount ++# For . ++sysdep_routines += sys_ptrace ++# For . ++sysdep_routines += rfork ++# For . ++sysdep_routines += rtprio ++# For . ++sysdep_routines += bsd_sendfile ++# For . ++sysdep_routines += sysctl sysctlbyname ++# For . ++sysdep_routines += sys_readv sys_writev ++# Other. ++sysdep_routines += swapon swapoff sys_aio_cancel sys_aio_error sys_aio_read sys_aio_return sys_aio_suspend sys_aio_waitcomplete sys_aio_write sys_lio_listio issetugid modfind modfnext modnext modstat obreak quotactl rfork sysarch undelete yield ++# for INLINE_SYSCALL ++sysdep_routines += sys_fork sys_execve sys_sigaction sys_close sys_fcntl ++sysdep_routines += sys_clock_getres sys_clock_gettime sys_clock_settime ++endif ++ ++ifeq ($(subdir),posix) ++# For . ++sysdep_routines += sys_getlogin sys_pread sys_pwrite sys_setlogin sys_read sys_write ++endif ++ ++ifeq ($(subdir),inet) ++sysdep_headers += net/ethernet.h net/if_ether.h ++endif ++ ++ifeq ($(subdir),time) ++# For . ++sysdep_routines += ntp_adjtime ntp_gettime ++endif ++ ++ifeq ($(subdir),socket) ++sysdep_routines += sa_len sys_bind sys_connect sys_sendto ++endif ++ ++# Linuxthreads dependencies. ++ ++ifeq ($(subdir),posix) ++sysdep_headers += bits/initspin.h ++endif ++ ++# Don't compile the ctype glue code, since we have a much better ++# than the old non-GNU C library. ++inhibit-glue = yes ++ ++# Special ELF hacks. ++ifeq ($(subdir),elf) ++sysdep-rtld-routines += dl-brk dl-sbrk ++endif ++ ++ifeq ($(subdir),sunrpc) ++sysdep_headers += nfs/nfs.h ++endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/Versions ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/Versions +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/Versions 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/Versions 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,103 @@ ++libc { ++ # The comment lines with "#errlist-compat" are magic; see errlist-compat.awk. ++ # When you get an error from errlist-compat.awk, you need to add a new ++ # version here. Don't do this blindly, since this means changing the ABI ++ # for all GNU/kFreeBSD configurations. ++ ++ GLIBC_2.2.6 { ++ # c* ++ clone; ++ ++ # e* ++ extattrctl; extattr_delete_file; extattr_get_file; extattr_set_file; ++ ++ # f* ++ fhopen; fhstat; fhstatfs; futimes; ++ ++ # g* ++ getdents; getfh; getfsstat; getfsstat64; getmntinfo; getmntinfo64; ++ getresgid; getresuid; ++ ++ # i* ++ issetugid; ++ ++ # j* ++ jail; ++ ++ # k* ++ kldfind; kldfirstmod; kldload; kldnext; kldstat; kldsym; kldunload; kldunloadf; ++ ktrace; ++ ++ # l* ++ lchmod; lutimes; ++ ++ # m* ++ minherit; modfind; modfnext; modnext; modstat; mount; ++ ++ # n* ++ nmount; ntp_adjtime; ntp_gettime; ++ ++ # q* ++ quotactl; ++ ++ # r* ++ rfork; rtprio; ++ ++ # s* ++ sendfile; setresgid; setresuid; swapoff; swapon; sysarch; sysctl; sysctlbyname; ++ ++ # u* ++ undelete; unmount; utrace; ++ ++ # see . ++ __acl_aclcheck_fd; __acl_aclcheck_file; __acl_delete_fd; __acl_delete_file; ++ __acl_get_fd; __acl_get_file; __acl_set_fd; __acl_set_file; ++ ++ # see . ++ __errno_location; ++ ++ # see . ++ __sysctl; ++ ++ # Questionable system calls. These functions may be removed at any moment. ++ __syscall_aio_cancel; __syscall_aio_error; __syscall_aio_read; ++ __syscall_aio_return; __syscall_aio_suspend; __syscall_aio_waitcomplete; ++ __syscall_aio_write; __syscall_lio_listio; ++ __syscall_obreak; ++ __syscall_yield; ++ } ++ GLIBC_2.3 { ++ #errlist-compat 87 ++ _sys_errlist; sys_errlist; _sys_nerr; sys_nerr; ++ } ++ GLIBC_2.3.4 { ++ # f* ++ fhstat64; fhstatfs64; ++ kqueue; kevent; ++ ++ #errlist-compat 93 ++ _sys_errlist; sys_errlist; _sys_nerr; sys_nerr; ++ ++ # functions used in inline functions or macros ++ __libc_sa_len; ++ } ++ GLIBC_PRIVATE { ++ # needed by libpthread. ++ __clone; __libc_fork; __libc_sigaction; ++ # needed by libpthread as INLINE_SYSCALL: ++ __syscall_fork; __syscall_execve; ++ __syscall_open; __syscall_close; ++ __syscall_read; __syscall_write; ++ __syscall_writev; ++ __syscall_wait4; __syscall_fcntl; ++ # needed by librt as INLINE_SYSCALL: ++ __syscall_clock_getres; __syscall_clock_gettime; __syscall_clock_settime; ++ # misc fixes for FreeBSD: ++ __syscall_lseek; __syscall_pread; __syscall_pwrite; ++ __syscall_sigaction; __syscall_fcntl; ++ __syscall_bind; __syscall_connect; __syscall_sendto; ++ __sigprocmask; __futimes; __ioctl; ++ # global variable used in brk() ++ _end; ++ } ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/_G_config.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/_G_config.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/_G_config.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/_G_config.h 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,102 @@ ++/* This file is needed by libio to define various configuration parameters. ++ These are always the same in the GNU C library. */ ++ ++#ifndef _G_config_h ++#define _G_config_h 1 ++ ++/* Define types for libio in terms of the standard internal type names. */ ++ ++#include ++#define __need_size_t ++#define __need_wchar_t ++#define __need_wint_t ++#define __need_NULL ++#include ++#ifndef _WINT_T ++/* Integral type unchanged by default argument promotions that can ++ hold any value corresponding to members of the extended character ++ set, as well as at least one value that does not correspond to any ++ member of the extended character set. */ ++# define _WINT_T ++typedef unsigned int wint_t; ++#endif ++#define __need_mbstate_t ++#include ++#define _G_size_t size_t ++typedef struct ++{ ++ __off_t __pos; ++ __mbstate_t __state; ++} _G_fpos_t; ++typedef struct ++{ ++ __off64_t __pos; ++ __mbstate_t __state; ++} _G_fpos64_t; ++#define _G_ssize_t __ssize_t ++#define _G_off_t __off_t ++#define _G_off64_t __off64_t ++#define _G_pid_t __pid_t ++#define _G_uid_t __uid_t ++#define _G_wchar_t wchar_t ++#define _G_wint_t wint_t ++#define _G_stat64 stat64 ++#include ++typedef union ++{ ++ struct __gconv_info __cd; ++ struct ++ { ++ struct __gconv_info __cd; ++ struct __gconv_step_data __data; ++ } __combined; ++} _G_iconv_t; ++ ++typedef int _G_int16_t __attribute__ ((__mode__ (__HI__))); ++typedef int _G_int32_t __attribute__ ((__mode__ (__SI__))); ++typedef unsigned int _G_uint16_t __attribute__ ((__mode__ (__HI__))); ++typedef unsigned int _G_uint32_t __attribute__ ((__mode__ (__SI__))); ++ ++#define _G_HAVE_BOOL 1 ++ ++ ++/* These library features are always available in the GNU C library. */ ++#define _G_HAVE_ATEXIT 1 ++#define _G_HAVE_SYS_CDEFS 1 ++#define _G_HAVE_SYS_WAIT 1 ++#define _G_NEED_STDARG_H 1 ++#define _G_va_list __gnuc_va_list ++ ++#define _G_HAVE_PRINTF_FP 1 ++#define _G_HAVE_MMAP 1 ++#define _G_HAVE_LONG_DOUBLE_IO 1 ++#define _G_HAVE_IO_FILE_OPEN 1 ++#define _G_HAVE_IO_GETLINE_INFO 1 ++ ++#define _G_IO_IO_FILE_VERSION 0x20001 ++ ++#define _G_OPEN64 __open64 ++#define _G_LSEEK64 __lseek64 ++#define _G_MMAP64 __mmap64 ++#define _G_FSTAT64(fd,buf) __fxstat64 (_STAT_VER, fd, buf) ++ ++/* This is defined by if `st_blksize' exists. */ ++#define _G_HAVE_ST_BLKSIZE defined (_STATBUF_ST_BLKSIZE) ++ ++#define _G_BUFSIZ 8192 ++ ++/* These are the vtbl details for ELF. */ ++#define _G_NAMES_HAVE_UNDERSCORE 0 ++#define _G_VTABLE_LABEL_HAS_LENGTH 1 ++#define _G_USING_THUNKS 1 ++#define _G_VTABLE_LABEL_PREFIX "__vt_" ++#define _G_VTABLE_LABEL_PREFIX_ID __vt_ ++ ++ ++#if defined __cplusplus || defined __STDC__ ++# define _G_ARGS(ARGLIST) ARGLIST ++#else ++# define _G_ARGS(ARGLIST) () ++#endif ++ ++#endif /* _G_config.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/Makefile ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/Makefile +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/Makefile 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/Makefile 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,28 @@ ++# Additional header files to be installed in $prefix/include: ++ ++ifeq ($(subdir),misc) ++sysdep_headers += machine/pal.h ++sysdep_routines += sys_select sys_utimes sys_lutimes sys_futimes ++endif ++ ++# Additional functions, and particular system calls: ++ ++ifeq ($(subdir),io) ++sysdep_routines += sys_poll ++endif ++ ++ifeq ($(subdir),math) ++sysdep_routines += ieee_get_fp_control ieee_set_fp_control ++endif ++ ++ifeq ($(subdir),posix) ++sysdep_routines += sys_nanosleep sys_sched_rr_gi ++endif ++ ++ifeq ($(subdir),time) ++sysdep_routines += sys_adjtime sys_gettimeofday sys_settimeofday sys_getitimer sys_setitimer ++endif ++ ++ifeq ($(subdir),resource) ++sysdep_routines += sys_getrusage ++endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/README ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/README +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/README 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/README 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,11 @@ ++Note that even on 64-bit platforms, because __ino64_t != __ino_t, we have ++stat64 != stat, fstat64 != fstat, lstat64 != lstat, fhstat64 != fhstat, ++glob64 != glob. ++ ++Note that on alpha glue code is used in order to use a 64-bit __time_t with a ++32-bit __kernel_time_t type. All system calls taking arguments with ++'time_t', 'struct timeval', 'struct timespec', 'struct itimerval', ++'struct rusage', 'struct msqid_ds', 'struct shmid_ds', 'struct semid_ds' need ++some special handling. The benefit is that user programs will not need to switch ++from a 32-bit time_t to a 64-bit time_t in 2038. ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/adjtime.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/adjtime.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/adjtime.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/adjtime.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,51 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern int __syscall_adjtime (const struct __kernel_timeval *delta, ++ struct __kernel_timeval *olddelta); ++ ++int ++__adjtime (const struct timeval *delta, struct timeval *olddelta) ++{ ++ struct __kernel_timeval kdelta; ++ int retval; ++ ++ kdelta.tv_sec = delta->tv_sec; ++ kdelta.tv_usec = delta->tv_usec; ++ if (olddelta != NULL) ++ { ++ struct __kernel_timeval kolddelta; ++ ++ retval = __syscall_adjtime (&kdelta, &kolddelta); ++ if (retval >= 0) ++ { ++ olddelta->tv_sec = kolddelta.tv_sec; ++ olddelta->tv_usec = kolddelta.tv_usec; ++ } ++ } ++ else ++ retval = __syscall_adjtime (&kdelta, NULL); ++ return retval; ++} ++ ++weak_alias (__adjtime, adjtime) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/kernel_time_t.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/kernel_time_t.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/kernel_time_t.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/kernel_time_t.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,143 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Aurelien Jarno , 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++/* This header files describe the way that structures using time_t ++ are represented in the kernel */ ++ ++#ifndef _BITS_KERNEL_TIME_T_H ++#define _BITS_TIME_H 1 ++ ++#include ++#include ++ ++/* This structure corresponds to the newer FreeBSD 'struct timespec' */ ++struct __kernel_timespec ++ { ++ int tv_sec; /* Seconds. */ ++ long int tv_nsec; /* Nanoseconds. */ ++ }; ++ ++/* This structure corresponds to the newer FreeBSD 'struct timeval' */ ++struct __kernel_timeval ++ { ++ int tv_sec; /* Seconds. */ ++ __suseconds_t tv_usec; /* Microseconds. */ ++ }; ++ ++/* This structure corresponds to the newer FreeBSD 'struct itimerval' */ ++struct __kernel_itimerval ++ { ++ /* Value to put into `it_value' when the timer expires. */ ++ struct __kernel_timeval it_interval; ++ /* Time to the next timer expiration. */ ++ struct __kernel_timeval it_value; ++ }; ++ ++/* This structure corresponds to the newer FreeBSD 'struct rusage' */ ++struct __kernel_rusage ++ { ++ /* Total amount of user time used. */ ++ struct __kernel_timeval ru_utime; ++ /* Total amount of system time used. */ ++ struct __kernel_timeval ru_stime; ++ /* Maximum resident set size (in kilobytes). */ ++ long int ru_maxrss; ++ /* Amount of sharing of text segment memory ++ with other processes (kilobyte-seconds). */ ++ long int ru_ixrss; ++ /* Amount of data segment memory used (kilobyte-seconds). */ ++ long int ru_idrss; ++ /* Amount of stack memory used (kilobyte-seconds). */ ++ long int ru_isrss; ++ /* Number of soft page faults (i.e. those serviced by reclaiming ++ a page from the list of pages awaiting reallocation. */ ++ long int ru_minflt; ++ /* Number of hard page faults (i.e. those that required I/O). */ ++ long int ru_majflt; ++ /* Number of times a process was swapped out of physical memory. */ ++ long int ru_nswap; ++ /* Number of input operations via the file system. Note: This ++ and `ru_oublock' do not include operations with the cache. */ ++ long int ru_inblock; ++ /* Number of output operations via the file system. */ ++ long int ru_oublock; ++ /* Number of IPC messages sent. */ ++ long int ru_msgsnd; ++ /* Number of IPC messages received. */ ++ long int ru_msgrcv; ++ /* Number of signals delivered. */ ++ long int ru_nsignals; ++ /* Number of voluntary context switches, i.e. because the process ++ gave up the process before it had to (usually to wait for some ++ resource to be available). */ ++ long int ru_nvcsw; ++ /* Number of involuntary context switches, i.e. a higher priority process ++ became runnable or the current process used up its time slice. */ ++ long int ru_nivcsw; ++ }; ++ ++/* This structure corresponds to the newer FreeBSD 'struct msqid_ds' */ ++struct __kernel_msqid_ds ++{ ++ struct ipc_perm msg_perm; /* structure describing operation permission */ ++ void *__msg_first; ++ void *__msg_last; ++ msglen_t __msg_cbytes; /* current number of bytes on queue */ ++ msgqnum_t msg_qnum; /* number of messages currently on queue */ ++ msglen_t msg_qbytes; /* max number of bytes allowed on queue */ ++ __pid_t msg_lspid; /* pid of last msgsnd() */ ++ __pid_t msg_lrpid; /* pid of last msgrcv() */ ++ int msg_stime; /* time of last msgsnd command */ ++ long __unused1; ++ int msg_rtime; /* time of last msgrcv command */ ++ long __unused2; ++ int msg_ctime; /* time of last change */ ++ long __unused3; ++ long __unused4[4]; ++}; ++ ++/* This structure corresponds to the newer FreeBSD 'struct shmid_ds' */ ++struct __kernel_shmid_ds ++ { ++ struct ipc_perm shm_perm; /* operation permission struct */ ++ int shm_segsz; /* size of segment in bytes */ ++ __pid_t shm_lpid; /* pid of last shmop */ ++ __pid_t shm_cpid; /* pid of creator */ ++ shmatt_t shm_nattch; /* number of current attaches */ ++ int shm_atime; /* time of last shmat() */ ++ int shm_dtime; /* time of last shmdt() */ ++ int shm_ctime; /* time of last change by shmctl() */ ++ void *__shm_internal; ++ }; ++ ++/* This structure corresponds to the newer FreeBSD 'struct semid_ds' */ ++struct semid_ds ++{ ++ struct ipc_perm sem_perm; /* operation permission struct */ ++ void *__sem_base; ++ unsigned short int sem_nsems; /* number of semaphores in set */ ++ int sem_otime; /* last semop() time */ ++ long __unused1; ++ int sem_ctime; /* last time changed by semctl() */ ++ long __unused2; ++ long __unused3[4]; ++}; ++ ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/mcontext.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/mcontext.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/mcontext.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/mcontext.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,52 @@ ++/* Machine-dependent processor state structure for FreeBSD. alpha version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#if !defined _SYS_UCONTEXT_H ++# error "Never use directly; include instead." ++#endif ++ ++/* Whole processor state. */ ++typedef struct ++ { ++ long mc_onstack; /* Nonzero if running on sigstack. */ ++ ++ /* General registers. */ ++ unsigned long mc_regs[32]; ++ long mc_ps; ++ long mc_pc; /* Process counter. */ ++ ++ /* Trap arguments. */ ++ unsigned long mc_traparg_a0; ++ unsigned long mc_traparg_a1; ++ unsigned long mc_traparg_a2; ++ ++ /* Floating-point registers. */ ++ unsigned long mc_fpregs[32]; ++ unsigned long mc_fpcr; ++ unsigned long mc_fp_control; ++#define _MC_FPOWNED_NONE 0 /* FP state not used */ ++#define _MC_FPOWNED_FPU 1 /* FP state came from FPU */ ++#define _MC_FPOWNED_PCB 2 /* FP state came from PCB */ ++ long mc_ownedfp; ++#define _MC_REV0_SIGFRAME 1 /* context is a signal frame */ ++#define _MC_REV0_TRAPFRAME 2 /* context is a trap frame */ ++ long mc_format; ++ long mc_thrptr; /* Thread pointer */ ++ long mc_spare[5]; ++ } mcontext_t; +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/sigcontext.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/sigcontext.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/sigcontext.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/sigcontext.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,84 @@ ++/* Machine-dependent signal context structure for FreeBSD. alpha version. ++ Copyright (C) 1991-1992,1994,1997,2001-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#if !defined _SIGNAL_H && !defined _SYS_UCONTEXT_H ++# error "Never use directly; include instead." ++#endif ++ ++#ifndef _BITS_SIGCONTEXT_H ++#define _BITS_SIGCONTEXT_H 1 ++ ++/* State of this thread when the signal was taken. */ ++struct sigcontext ++ { ++ __sigset_t sc_mask; /* Blocked signals to restore. */ ++ long sc_onstack; /* Nonzero if running on sigstack. */ ++ ++ /* General registers. */ ++ unsigned long sc_regs[32]; ++ long sc_ps; ++ long sc_pc; /* Process counter. */ ++ ++ /* Trap arguments. */ ++ unsigned long sc_traparg_a0; ++ unsigned long sc_traparg_a1; ++ unsigned long sc_traparg_a2; ++ ++ /* Floating-point registers. */ ++ unsigned long sc_fpregs[32]; ++ unsigned long sc_fpcr; ++ unsigned long sc_fp_control; ++ long sc_ownedfp; ++ long sc_format; /* see mcontext_t */ ++ long sc_spare[6]; /* XXX */ ++ }; ++ ++/* Traditional BSD names for some members. */ ++#define sc_sp sc_regs[30] /* Stack pointer. */ ++#define sc_fp sc_regs[15] /* Frame pointer. */ ++ ++ ++#if 0 /* XXX These need verification. */ ++ ++/* Codes for SIGFPE. */ ++#define FPE_INTDIV 1 /* integer divide by zero */ ++#define FPE_INTOVF 2 /* integer overflow */ ++#define FPE_FLTDIV 3 /* floating divide by zero */ ++#define FPE_FLTOVF 4 /* floating overflow */ ++#define FPE_FLTUND 5 /* floating underflow */ ++#define FPE_FLTINX 6 /* floating loss of precision */ ++#define FPE_SUBRNG_FAULT 0x7 /* BOUNDS instruction failed */ ++#define FPE_FLTDNR_FAULT 0x8 /* denormalized operand */ ++#define FPE_EMERR_FAULT 0xa /* mysterious emulation error 33 */ ++#define FPE_EMBND_FAULT 0xb /* emulation BOUNDS instruction failed */ ++ ++/* Codes for SIGILL. */ ++#define ILL_PRIVIN_FAULT 1 ++#define ILL_ALIGN_FAULT 14 ++#define ILL_FPOP_FAULT 24 ++ ++/* Codes for SIGBUS. */ ++#define BUS_PAGE_FAULT 12 ++#define BUS_SEGNP_FAULT 26 ++#define BUS_STK_FAULT 27 ++#define BUS_SEGM_FAULT 29 ++ ++#endif ++ ++#endif /* _BITS_SIGCONTEXT_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/stat16.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/stat16.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/stat16.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/stat16.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,53 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* This structure corresponds to the original FreeBSD 'struct stat' ++ (i.e. _STAT_VER_stat), and is used by the fhstat() system call. */ ++struct stat16 ++ { ++ __dev_t st_dev; /* Device containing the file. */ ++ __ino_t st_ino; /* File serial number. */ ++ ++ __uint16_t st_mode; /* File mode. */ ++ __uint16_t st_nlink; /* Link count. */ ++ ++ __uid_t st_uid; /* User ID of the file's owner. */ ++ __gid_t st_gid; /* Group ID of the file's group. */ ++ ++ __dev_t st_rdev; /* Device number, if device. */ ++ ++ int st_atime; /* Time of last access. */ ++ long int st_atimensec; /* Nanoseconds of last access. */ ++ int st_mtime; /* Time of last modification. */ ++ long int st_mtimensec; /* Nanoseconds of last modification. */ ++ int st_ctime; /* Time of last status change. */ ++ long int st_ctimensec; /* Nanoseconds of last status change. */ ++ ++ __off_t st_size; /* Size of file, in bytes. */ ++ ++ __blkcnt_t st_blocks; /* Number of 512-byte blocks allocated. */ ++ ++ __blksize_t st_blksize; /* Optimal block size for I/O. */ ++ ++ __uint32_t st_flags; /* User defined flags. */ ++ ++ __uint32_t st_gen; /* Generation number. */ ++ ++ __uint32_t __unused1; ++ __quad_t __unused2[2]; ++ }; +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/stat32.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/stat32.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/stat32.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/stat32.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,52 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* This structure corresponds to the newer FreeBSD 'struct nstat' ++ (i.e. _STAT_VER_nstat). */ ++struct stat32 ++ { ++ __dev_t st_dev; /* Device containing the file. */ ++ __ino_t st_ino; /* File serial number. */ ++ ++ __uint32_t st_mode; /* File mode. */ ++ __uint32_t st_nlink; /* Link count. */ ++ ++ __uid_t st_uid; /* User ID of the file's owner. */ ++ __gid_t st_gid; /* Group ID of the file's group. */ ++ ++ __dev_t st_rdev; /* Device number, if device. */ ++ ++ int st_atime; /* Time of last access. */ ++ long int st_atimensec; /* Nanoseconds of last access. */ ++ int st_mtime; /* Time of last modification. */ ++ long int st_mtimensec; /* Nanoseconds of last modification. */ ++ int st_ctime; /* Time of last status change. */ ++ long int st_ctimensec; /* Nanoseconds of last status change. */ ++ ++ __off_t st_size; /* Size of file, in bytes. */ ++ ++ __blkcnt_t st_blocks; /* Number of 512-byte blocks allocated. */ ++ ++ __blksize_t st_blksize; /* Optimal block size for I/O. */ ++ ++ __uint32_t st_flags; /* User defined flags. */ ++ ++ __uint32_t st_gen; /* Generation number. */ ++ ++ __quad_t __unused1[2]; ++ }; +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/time.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/time.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/time.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/bits/time.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,89 @@ ++/* System-dependent timing definitions. FreeBSD version. ++ Copyright (C) 1996-1997, 1999, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* ++ * Never include this file directly; use instead. ++ */ ++ ++#ifndef __need_timeval ++# ifndef _BITS_TIME_H ++# define _BITS_TIME_H 1 ++ ++/* ISO/IEC 9899:1990 7.12.1: ++ The macro `CLOCKS_PER_SEC' is the number per second of the value ++ returned by the `clock' function. */ ++/* CAE XSH, Issue 4, Version 2: ++ The value of CLOCKS_PER_SEC is required to be 1 million on all ++ XSI-conformant systems. */ ++# define CLOCKS_PER_SEC 1000000l ++ ++# if !defined __STRICT_ANSI__ && !defined __USE_XOPEN2K ++/* Even though CLOCKS_PER_SEC has such a strange value CLK_TCK ++ presents the real value for clock ticks per second for the system. */ ++# define CLK_TCK 100 ++# endif ++ ++# ifdef __USE_POSIX199309 ++/* Identifier for system-wide realtime clock. */ ++# define CLOCK_REALTIME 0 ++/* High-resolution timer from the CPU. */ ++# define CLOCK_PROCESS_CPUTIME_ID 2 ++/* Thread-specific CPU-time clock. */ ++# define CLOCK_THREAD_CPUTIME_ID 3 ++/* Monotonic system-wide clock. */ ++# define CLOCK_MONOTONIC 4 ++/* These are BSD specific clocks. */ ++# ifdef __USE_BSD ++# define CLOCK_VIRTUAL 1 ++# define CLOCK_PROF 2 ++# endif ++ ++/* Flag to indicate time is absolute. */ ++# define TIMER_ABSTIME 1 ++# endif ++ ++ ++/* Getkerninfo clock information structure */ ++struct clockinfo ++ { ++ int hz; /* clock frequency */ ++ int tick; /* micro-seconds per hz tick */ ++ int spare; ++ int stathz; /* statistics clock frequency */ ++ int profhz; /* profiling clock frequency */ ++ }; ++ ++# endif /* bits/time.h */ ++#endif ++ ++#ifdef __need_timeval ++# undef __need_timeval ++# ifndef _STRUCT_TIMEVAL ++# define _STRUCT_TIMEVAL 1 ++# include ++ ++/* A time value that is accurate to the nearest ++ microsecond but also has a range of years. */ ++struct timeval ++ { ++ __time_t tv_sec; /* Seconds. */ ++ __suseconds_t tv_usec; /* Microseconds. */ ++ }; ++# endif /* struct timeval */ ++#endif /* need timeval */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/brk.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/brk.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/brk.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/brk.S 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,73 @@ ++/* Copyright (C) 1993, 1995-1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* Traditional name for the 'brk' system call. */ ++#define SYS_brk SYS_obreak ++ ++#include ++ ++#ifdef PIC ++.section .bss ++ .align 3 ++ .globl __curbrk ++__curbrk: .skip 8 ++ .type __curbrk,@object ++ .size __curbrk,8 ++#else ++.comm __curbrk, 8 ++#endif ++ ++ .text ++LEAF(__brk, 8) ++ ldgp gp, 0(t12) ++ subq sp, 8, sp ++#ifdef PROF ++ .set noat ++ lda AT, _mcount ++ jsr AT, (AT), _mcount ++ .set at ++#endif ++ .prologue 1 ++ ++ /* Save the requested brk across the system call. */ ++ stq a0, 0(sp) ++ ++ ldiq v0, SYS_brk ++ call_pal PAL_callsys ++ ++ ldq a0, 0(sp) ++ ++ /* Test for error. */ ++ bne a3, $error ++ ++ /* Don't need to handle brk(0) specially, because the kernel doesn't ++ support this way of calling brk anyway. */ ++ ++ /* Update __curbrk and return cleanly. */ ++ stq a0, __curbrk ++ mov zero, v0 ++ addq sp, 8, sp ++ ret ++ ++ /* What a horrible way to die. */ ++$error: addq sp, 8, sp ++ jmp zero, __syscall_error ++ ++ END(__brk) ++ ++weak_alias (__brk, brk) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/dl-brk.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/dl-brk.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/dl-brk.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/dl-brk.S 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/dl-machine.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/dl-machine.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/dl-machine.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/dl-machine.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,34 @@ ++/* Dynamic linker magic for glibc on FreeBSD. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* FreeBSD on alpha can emulate two ABIs (= sets of system calls): ++ The native FreeBSD ABI and OSF/1. Without additional kernel ++ modules, only the FreeBSD ABI is supported. For this reason, we use ++ this ABI, and we have to label every executable as using this ABI, ++ by writing the string "FreeBSD" at byte offset 8 (= EI_ABIVERSION) ++ of every executable. Strictly speaking, only ld.so and the ++ executables would need this labelling. But it's easiest to mark ++ every executable and every shared object the same way. */ ++#define VALID_ELF_HEADER(e_ident, expected, size) \ ++ (memcmp (e_ident, expected, EI_ABIVERSION) == 0 \ ++ && memcmp ((const char *) (e_ident) + EI_ABIVERSION, "FreeBSD", 8) == 0) ++#define VALID_ELF_ABIVERSION(abi) (memcmp (&(abi), "FreeBSD", 8) == 0) ++ ++#include_next +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fhstatfs64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fhstatfs64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fhstatfs64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fhstatfs64.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,2 @@ ++/* 'fhstatfs64' is the same as 'fhstatfs', because ++ __fsblkcnt64_t == __fsblkcnt_t and __fsfilcnt64_t == __fsfilcnt_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fork.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fork.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fork.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fork.S 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,30 @@ ++/* Copyright (C) 1993, 1995, 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++PSEUDO (__libc_fork, fork, 0) ++ /* In the parent process, a4 == 0, v0 == child pid. */ ++ /* In the child process, a4 == 1, v0 == parent pid. */ ++ cmovne a4, zero, v0 ++ ret ++ ++PSEUDO_END (__libc_fork) ++ ++weak_alias (__libc_fork, __fork) ++weak_alias (__fork, fork) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fpu.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fpu.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fpu.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/fpu.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,128 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _FPU_H ++#define _FPU_H 1 ++ ++ ++/* Usage of the fpcr register. ++ The rounding mode bits (in FPCR_DYN_MASK) can be modified in user mode ++ and will be preserved by the kernel when a software assisted floating- ++ point operation or an exception occurs. All other bits will be set by ++ the kernel when a software assisted floating-point operation or an ++ exception occurs. */ ++ ++#if 0 /* Only Linux, not FreeBSD */ ++#define FPCR_DNOD (1UL<<47) /* denorm INV trap disable */ ++#define FPCR_DNZ (1UL<<48) /* denorms to zero */ ++#endif ++#define FPCR_INVD (1UL<<49) /* invalid op disable (opt.) */ ++#define FPCR_DZED (1UL<<50) /* division by zero disable (opt.) */ ++#define FPCR_OVFD (1UL<<51) /* overflow disable (optional) */ ++#define FPCR_INV (1UL<<52) /* invalid operation */ ++#define FPCR_DZE (1UL<<53) /* division by zero */ ++#define FPCR_OVF (1UL<<54) /* overflow */ ++#define FPCR_UNF (1UL<<55) /* underflow */ ++#define FPCR_INE (1UL<<56) /* inexact */ ++#define FPCR_IOV (1UL<<57) /* integer overflow */ ++#define FPCR_UNDZ (1UL<<60) /* underflow to zero (opt.) */ ++#define FPCR_UNFD (1UL<<61) /* underflow disable (opt.) */ ++#define FPCR_INED (1UL<<62) /* inexact disable (opt.) */ ++#define FPCR_SUM (1UL<<63) /* summary bit, an OR of bits 52..56 */ ++ ++#define FPCR_DYN_SHIFT 58 /* first dynamic rounding mode bit */ ++#define FPCR_DYN_CHOPPED (0x0UL << FPCR_DYN_SHIFT) /* towards 0 */ ++#define FPCR_DYN_MINUS (0x1UL << FPCR_DYN_SHIFT) /* towards -INF */ ++#define FPCR_DYN_NORMAL (0x2UL << FPCR_DYN_SHIFT) /* towards nearest */ ++#define FPCR_DYN_PLUS (0x3UL << FPCR_DYN_SHIFT) /* towards +INF */ ++#define FPCR_DYN_MASK (0x3UL << FPCR_DYN_SHIFT) ++ ++#define FPCR_MASK 0xffff800000000000 ++ ++ ++/* IEEE traps are enabled depending on a control word (not to be confused ++ with fpcr!) which can be read using __ieee_get_fp_control() and written ++ using __ieee_set_fp_control(). The bits in these control word are ++ as follows (compatible with Linux and OSF/1). */ ++ ++/* Trap enable bits. Get copied (inverted) to bits 49,50,51,61,62,47 ++ of fpcr in the kernel. */ ++#define IEEE_TRAP_ENABLE_INV (1UL<<1) /* invalid op */ ++#define IEEE_TRAP_ENABLE_DZE (1UL<<2) /* division by zero */ ++#define IEEE_TRAP_ENABLE_OVF (1UL<<3) /* overflow */ ++#define IEEE_TRAP_ENABLE_UNF (1UL<<4) /* underflow */ ++#define IEEE_TRAP_ENABLE_INE (1UL<<5) /* inexact */ ++#if 0 /* Only Linux, not FreeBSD */ ++#define IEEE_TRAP_ENABLE_DNO (1UL<<6) /* denorm */ ++#endif ++#define IEEE_TRAP_ENABLE_MASK (IEEE_TRAP_ENABLE_INV | IEEE_TRAP_ENABLE_DZE |\ ++ IEEE_TRAP_ENABLE_OVF | IEEE_TRAP_ENABLE_UNF |\ ++ IEEE_TRAP_ENABLE_INE/*| IEEE_TRAP_ENABLE_DNO*/) ++ ++#if 0 /* Only Linux, not FreeBSD */ ++ ++/* Denorm and Underflow flushing. */ ++/* Get copied to bits 48,60 of fpcr in the kernel. */ ++#define IEEE_MAP_DMZ (1UL<<12) /* Map denorm inputs to zero */ ++#define IEEE_MAP_UMZ (1UL<<13) /* Map underflowed outputs to zero */ ++ ++#define IEEE_MAP_MASK (IEEE_MAP_DMZ | IEEE_MAP_UMZ) ++ ++#endif ++ ++/* Status bits. Get copied to bits 52,53,54,55,56 of fpcr in the kernel. */ ++#define IEEE_STATUS_INV (1UL<<17) /* invalid op */ ++#define IEEE_STATUS_DZE (1UL<<18) /* division by zero */ ++#define IEEE_STATUS_OVF (1UL<<19) /* overflow */ ++#define IEEE_STATUS_UNF (1UL<<20) /* underflow */ ++#define IEEE_STATUS_INE (1UL<<21) /* inexact */ ++#if 0 /* Only Linux, not FreeBSD */ ++#define IEEE_STATUS_DNO (1UL<<22) /* denorm */ ++#endif ++ ++#define IEEE_STATUS_MASK (IEEE_STATUS_INV | IEEE_STATUS_DZE | \ ++ IEEE_STATUS_OVF | IEEE_STATUS_UNF | \ ++ IEEE_STATUS_INE /* | IEEE_STATUS_DNO */) ++ ++#define IEEE_SW_MASK (IEEE_TRAP_ENABLE_MASK | \ ++ IEEE_STATUS_MASK /* | IEEE_MAP_MASK */) ++ ++#if 0 /* Only Linux, not FreeBSD */ ++ ++#define IEEE_CURRENT_RM_SHIFT 32 ++#define IEEE_CURRENT_RM_MASK (3UL<, 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern int __syscall_futimes (int fd, const struct __kernel_timeval tvp[2]); ++ ++int ++__futimes (int fd, const struct timeval tvp[2]) ++{ ++ if (tvp != NULL) ++ { ++ struct __kernel_timeval ktv[2]; ++ ++ ktv[0].tv_sec = tvp[0].tv_sec; ++ ktv[0].tv_usec = tvp[0].tv_usec; ++ ktv[1].tv_sec = tvp[1].tv_sec; ++ ktv[1].tv_usec = tvp[1].tv_usec; ++ return __syscall_futimes (fd, ktv); ++ } ++ else ++ return __syscall_futimes (fd, NULL); ++} ++ ++weak_alias (__futimes, futimes) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getfsstat64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getfsstat64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getfsstat64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getfsstat64.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,2 @@ ++/* 'getfsstat64' is the same as 'getfsstat', because ++ __fsblkcnt64_t == __fsblkcnt_t and __fsfilcnt64_t == __fsfilcnt_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getitimer.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getitimer.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getitimer.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getitimer.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,49 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++extern int __syscall_getitimer (int which, struct __kernel_itimerval *value); ++ ++int ++__getitimer (enum __itimer_which which, struct itimerval *value) ++{ ++ struct __kernel_itimerval kvalue; ++ int retval; ++ ++ if (value == NULL) ++ { ++ errno = EFAULT; ++ return -1; ++ } ++ retval = __syscall_getitimer (which, &kvalue); ++ if (retval >= 0) ++ { ++ value->it_interval.tv_sec = kvalue.it_interval.tv_sec; ++ value->it_interval.tv_usec = kvalue.it_interval.tv_usec; ++ value->it_value.tv_sec = kvalue.it_value.tv_sec; ++ value->it_value.tv_usec = kvalue.it_value.tv_usec; ++ } ++ return retval; ++} ++ ++weak_alias (__getitimer, getitimer) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getmntinfo.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getmntinfo.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getmntinfo.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getmntinfo.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,8 @@ ++/* 'getmntinfo64' is the same as 'getmntinfo', because ++ __fsblkcnt64_t == __fsblkcnt_t and __fsfilcnt64_t == __fsfilcnt_t. */ ++ ++#define getmntinfo64 __no_getmntinfo64_decl ++#include ++#undef getmntinfo64 ++ ++weak_alias (__getmntinfo, getmntinfo64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getmntinfo64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getmntinfo64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getmntinfo64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getmntinfo64.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,2 @@ ++/* 'getmntinfo64' is the same as 'getmntinfo', because ++ __fsblkcnt64_t == __fsblkcnt_t and __fsfilcnt64_t == __fsfilcnt_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getrusage.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getrusage.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getrusage.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/getrusage.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,63 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++extern int __syscall_getrusage (int who, struct __kernel_rusage *usage); ++ ++int ++__getrusage (enum __rusage_who who, struct rusage *usage) ++{ ++ struct __kernel_rusage kusage; ++ int retval; ++ ++ if (usage == NULL) ++ { ++ errno = EFAULT; ++ return -1; ++ } ++ retval = __syscall_getrusage (who, &kusage); ++ if (retval >= 0) ++ { ++ usage->ru_utime.tv_sec = kusage.ru_utime.tv_sec; ++ usage->ru_utime.tv_usec = kusage.ru_utime.tv_usec; ++ usage->ru_stime.tv_sec = kusage.ru_stime.tv_sec; ++ usage->ru_stime.tv_usec = kusage.ru_stime.tv_usec; ++ usage->ru_maxrss = kusage.ru_maxrss; ++ usage->ru_ixrss = kusage.ru_ixrss; ++ usage->ru_idrss = kusage.ru_idrss; ++ usage->ru_isrss = kusage.ru_isrss; ++ usage->ru_minflt = kusage.ru_minflt; ++ usage->ru_majflt = kusage.ru_majflt; ++ usage->ru_nswap = kusage.ru_nswap; ++ usage->ru_inblock = kusage.ru_inblock; ++ usage->ru_oublock = kusage.ru_oublock; ++ usage->ru_msgsnd = kusage.ru_msgsnd; ++ usage->ru_msgrcv = kusage.ru_msgrcv; ++ usage->ru_nsignals = kusage.ru_nsignals; ++ usage->ru_nvcsw = kusage.ru_nvcsw; ++ usage->ru_nivcsw = kusage.ru_nivcsw; ++ } ++ return retval; ++} ++ ++weak_alias (__getrusage, getrusage) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/gettimeofday.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/gettimeofday.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/gettimeofday.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/gettimeofday.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,52 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++extern int __syscall_gettimeofday (struct __kernel_timeval *tv, ++ struct timezone *tz); ++ ++#undef __gettimeofday ++ ++int ++__gettimeofday (struct timeval *tv, struct timezone *tz) ++{ ++ struct __kernel_timeval ktv; ++ int retval; ++ ++ if (tv == NULL) ++ { ++ errno = EFAULT; ++ return -1; ++ } ++ retval = __syscall_gettimeofday (&ktv, tz); ++ if (retval >= 0) ++ { ++ tv->tv_sec = ktv.tv_sec; ++ tv->tv_usec = ktv.tv_usec; ++ } ++ return retval; ++} ++ ++INTDEF(__gettimeofday) ++ ++weak_alias (__gettimeofday, gettimeofday) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/ieee_get_fp_control.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/ieee_get_fp_control.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/ieee_get_fp_control.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/ieee_get_fp_control.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,35 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++unsigned long ++__ieee_get_fp_control (void) ++{ ++ /* The Alpha hardware requires this to be a system call. */ ++ unsigned long word; ++ ++ if (__sysarch (ALPHA_GET_FPMASK, &word) < 0) ++ abort (); ++ ++ return word; ++} ++ ++weak_alias (__ieee_get_fp_control, ieee_get_fp_control) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/ieee_set_fp_control.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/ieee_set_fp_control.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/ieee_set_fp_control.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/ieee_set_fp_control.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,33 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++void ++__ieee_set_fp_control (unsigned long trap_enable_mask) ++{ ++ /* The Alpha hardware requires this to be a system call. */ ++ unsigned long word = trap_enable_mask; ++ ++ if (__sysarch (ALPHA_SET_FPMASK, &word) < 0) ++ abort (); ++} ++ ++weak_alias (__ieee_set_fp_control, ieee_set_fp_control) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/lutimes.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/lutimes.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/lutimes.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/lutimes.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,44 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern int __syscall_lutimes (const char *file, ++ const struct __kernel_timeval tvp[2]); ++ ++int ++__lutimes (const char *file, const struct timeval tvp[2]) ++{ ++ if (tvp != NULL) ++ { ++ struct __kernel_timeval ktv[2]; ++ ++ ktv[0].tv_sec = tvp[0].tv_sec; ++ ktv[0].tv_usec = tvp[0].tv_usec; ++ ktv[1].tv_sec = tvp[1].tv_sec; ++ ktv[1].tv_usec = tvp[1].tv_usec; ++ return __syscall_lutimes (file, ktv); ++ } ++ else ++ return __syscall_lutimes (file, NULL); ++} ++ ++weak_alias (__lutimes, lutimes) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/machine/pal.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/machine/pal.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/machine/pal.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/machine/pal.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,57 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* Unprivileged PAL function codes. (The PAL codes which require ++ privileges are useful in the kernel only.) */ ++ ++/* Common PAL codes. */ ++#define PAL_bpt 128 ++#define PAL_bugchk 129 ++#define PAL_callsys 131 ++#define PAL_imb 134 ++#define PAL_rduniq 158 ++#define PAL_wruniq 159 ++#define PAL_gentrap 170 ++#define PAL_nphalt 190 ++ ++/* gentrap causes. */ ++#define GEN_INTOVF -1 /* integer overflow */ ++#define GEN_INTDIV -2 /* integer division by zero */ ++#define GEN_FLTOVF -3 /* fp overflow */ ++#define GEN_FLTDIV -4 /* fp division by zero */ ++#define GEN_FLTUND -5 /* fp underflow */ ++#define GEN_FLTINV -6 /* invalid fp operand */ ++#define GEN_FLTINE -7 /* inexact fp operand */ ++#define GEN_DECOVF -8 /* decimal overflow (for COBOL??) */ ++#define GEN_DECDIV -9 /* decimal division by zero */ ++#define GEN_DECINV -10 /* invalid decimal operand */ ++#define GEN_ROPRAND -11 /* reserved operand */ ++#define GEN_ASSERTERR -12 /* assertion error */ ++#define GEN_NULPTRERR -13 /* null pointer error */ ++#define GEN_STKOVF -14 /* stack overflow */ ++#define GEN_STRLENERR -15 /* string length error */ ++#define GEN_SUBSTRERR -16 /* substring error */ ++#define GEN_RANGERR -17 /* range error */ ++#define GEN_SUBRNG -18 ++#define GEN_SUBRNG1 -19 ++#define GEN_SUBRNG2 -20 ++#define GEN_SUBRNG3 -21 /* these report range errors for */ ++#define GEN_SUBRNG4 -22 /* subscripting (indexing) at levels 0..7 */ ++#define GEN_SUBRNG5 -23 ++#define GEN_SUBRNG6 -24 ++#define GEN_SUBRNG7 -25 +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/msgctl.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/msgctl.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/msgctl.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/msgctl.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,62 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Aurelien Jarno , 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++extern int __syscall_msgctl (int msqid, int cmd, struct __kernel_msqid_ds *buf); ++ ++int ++__msgctl (int msqid, int cmd, struct msqid_ds *buf) ++{ ++ struct __kernel_msqid_ds kmsqid_ds; ++ int retval; ++ ++ kmsqid_ds.msg_perm = msqid_ds->msg_perm; ++ kmsqid_ds.__msg_first = msqid_ds->__msg_first; ++ kmsqid_ds.__msg_last = msqid_ds->__msg_last; ++ kmsqid_ds.__msg_cbytes = msqid_ds->__msg_cbytes; ++ kmsqid_ds.msg_qnum = msqid_ds->msg_qnum; ++ kmsqid_ds.msg_qbytes = msqid_ds->msg_qbytes; ++ kmsqid_ds.msg_lspid = msqid_ds->msg_lspid; ++ kmsqid_ds.msg_lrpid = msqid_ds->msg_lrpid; ++ kmsqid_ds.msg_stime = msqid_ds->msg_stime; ++ kmsqid_ds.msg_rtime = msqid_ds->msg_rtime; ++ kmsqid_ds.msg_ctime = msqid_ds->msg_ctime; ++ ++ retval = __syscall_msgctl (msqid, cmd, &kmsqid_ds); ++ ++ msqid_ds->msg_perm = kmsqid_ds.msg_perm; ++ msqid_ds->__msg_first = kmsqid_ds.__msg_first; ++ msqid_ds->__msg_last = kmsqid_ds.__msg_last; ++ msqid_ds->__msg_cbytes = kmsqid_ds.__msg_cbytes; ++ msqid_ds->msg_qnum = kmsqid_ds.msg_qnum; ++ msqid_ds->msg_qbytes = kmsqid_ds.msg_qbytes; ++ msqid_ds->msg_lspid = kmsqid_ds.msg_lspid; ++ msqid_ds->msg_lrpid = kmsqid_ds.msg_lrpid; ++ msqid_ds->msg_stime = kmsqid_ds.msg_stime; ++ msqid_ds->msg_rtime = kmsqid_ds.msg_rtime; ++ msqid_ds->msg_ctime = kmsqid_ds.msg_ctime; ++ ++ return retval; ++} ++ ++weak_alias (__msgctl, msgctl) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/nanosleep.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/nanosleep.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/nanosleep.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/nanosleep.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,54 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++extern int __syscall_nanosleep (const struct __kernel_timespec *requested_time, ++ struct __kernel_timespec *remaining); ++ ++int ++__libc_nanosleep (const struct timespec *requested_time, ++ struct timespec *remaining) ++{ ++ struct __kernel_timespec krequested_time; ++ int retval; ++ ++ krequested_time.tv_sec = requested_time->tv_sec; ++ krequested_time.tv_nsec = requested_time->tv_nsec; ++ if (remaining != NULL) ++ { ++ struct __kernel_timespec kremaining; ++ ++ retval = __syscall_nanosleep (&krequested_time, &kremaining); ++ if (retval >= 0 || errno == EINTR) ++ { ++ remaining->tv_sec = kremaining.tv_sec; ++ remaining->tv_nsec = kremaining.tv_nsec; ++ } ++ } ++ else ++ retval = __syscall_nanosleep (&krequested_time, NULL); ++ return retval; ++} ++ ++weak_alias (__libc_nanosleep, __nanosleep) ++weak_alias (__libc_nanosleep, nanosleep) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/poll.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/poll.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/poll.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/poll.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,46 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++/* nfds_t is defined as 'unsigned long int' in , but the poll ++ system call expects an 'unsigned int' as second argument. */ ++ ++extern int __syscall_poll (struct pollfd *fds, unsigned int nfds, int timeout); ++ ++int ++__poll (struct pollfd *fds, nfds_t nfds, int timeout) ++{ ++ unsigned int infds = nfds; ++ ++ if (infds == nfds) ++ return INLINE_SYSCALL (poll, 3, fds, infds, timeout); ++ else ++ { ++ /* NFDS doesn't fit into an unsigned int. FDS cannot point to such ++ a big chunk of valid memory. */ ++ __set_errno (EFAULT); ++ return -1; ++ } ++} ++libc_hidden_def (__poll) ++ ++weak_alias (__poll, poll) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/regdef.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/regdef.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/regdef.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/regdef.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,62 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _REGDEF_H ++#define _REGDEF_H ++ ++/* Common symbolic names for Alpha registers. ++ Names taken from binutils/opcodes/alpha-dis.c. ++ Register usage info taken from gcc-3.1/gcc/config/alpha/alpha.h. ++ NB: "saved" = "call-saved", "nonsaved" = "call-used". */ ++ ++#define v0 $0 /* nonsaved, first return value */ ++#define t0 $1 /* nonsaved, second return value, lexical closure reg */ ++#define t1 $2 /* nonsaved */ ++#define t2 $3 /* nonsaved */ ++#define t3 $4 /* nonsaved */ ++#define t4 $5 /* nonsaved */ ++#define t5 $6 /* nonsaved */ ++#define t6 $7 /* nonsaved */ ++#define t7 $8 /* nonsaved */ ++#define s0 $9 /* saved */ ++#define s1 $10 /* saved */ ++#define s2 $11 /* saved */ ++#define s3 $12 /* saved */ ++#define s4 $13 /* saved */ ++#define s5 $14 /* saved */ ++#define s6 $15 /* use only in leaf functions without frame pointer */ ++#define fp $15 /* frame pointer */ ++#define a0 $16 /* nonsaved, argument 1 */ ++#define a1 $17 /* nonsaved, argument 2 */ ++#define a2 $18 /* nonsaved, argument 3 */ ++#define a3 $19 /* nonsaved, argument 4 */ ++#define a4 $20 /* nonsaved, argument 5 */ ++#define a5 $21 /* nonsaved, argument 6 */ ++#define t8 $22 /* nonsaved */ ++#define t9 $23 /* nonsaved */ ++#define t10 $24 /* nonsaved */ ++#define t11 $25 /* nonsaved */ ++#define ra $26 /* return address */ ++#define t12 $27 /* current function's address */ ++#define pv $27 /* current function's address */ ++#define AT $28 /* nonsaved, assembler temporary */ ++#define gp $29 /* global pointer */ ++#define sp $30 /* stack pointer */ ++#define zero $31 /* reads as zero, writes go to /dev/null */ ++ ++#endif /* _REGDEF_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/rfork.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/rfork.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/rfork.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/rfork.S 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,29 @@ ++/* Copyright (C) 1993, 1995, 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++SYSCALL__ (rfork, 0) ++ /* In the parent process, a4 == 0, v0 == child pid. */ ++ /* In the child process, a4 == 1, v0 == parent pid. */ ++ cmovne a4, zero, v0 ++ ret ++ ++PSEUDO_END (__rfork) ++ ++weak_alias (__rfork, rfork) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sched_rr_gi.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sched_rr_gi.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sched_rr_gi.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sched_rr_gi.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,50 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++extern int __syscall_sched_rr_get_interval (pid_t pid, ++ struct __kernel_timespec *t); ++ ++int ++__sched_rr_get_interval (pid_t pid, struct timespec *t) ++{ ++ struct __kernel_timespec kt; ++ int retval; ++ ++ if (t == NULL) ++ { ++ errno = EFAULT; ++ return -1; ++ } ++ retval = __syscall_sched_rr_get_interval (pid, &kt); ++ if (retval >= 0) ++ { ++ t->tv_sec = kt.tv_sec; ++ t->tv_nsec = kt.tv_nsec; ++ } ++ return retval; ++} ++ ++weak_alias (__sched_rr_get_interval, sched_rr_get_interval) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/select.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/select.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/select.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/select.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,53 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++extern int __syscall_select (int nfds, ++ fd_set *readfds, ++ fd_set *writefds, ++ fd_set *exceptfds, ++ struct __kernel_timeval *timeout); ++ ++int ++__select (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, ++ struct timeval *timeout) ++{ ++ int retval; ++ ++ if (timeout != NULL) ++ { ++ struct __kernel_timeval ktimeout; ++ ++ ktimeout.tv_sec = timeout->tv_sec; ++ ktimeout.tv_usec = timeout->tv_usec; ++ retval = __syscall_select (nfds, readfds, writefds, exceptfds, &ktimeout); ++ timeout->tv_sec = ktimeout.tv_sec; ++ timeout->tv_usec = ktimeout.tv_usec; ++ } ++ else ++ retval = __syscall_select (nfds, readfds, writefds, exceptfds, NULL); ++ return retval; ++} ++libc_hidden_def (__select) ++ ++weak_alias (__select, select) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/semctl.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/semctl.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/semctl.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/semctl.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,87 @@ ++/* Copyright (C) 1995,1997,1998,2000,2003,2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Ulrich Drepper , August 1995. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include /* va_list */ ++#include /* NULL */ ++#include ++ ++/* union semun from FreeBSD */ ++/* ++ * semctl's arg parameter structure ++ */ ++union __kernel_semun ++{ ++ int val; /* value for SETVAL */ ++ struct __kernel_semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */ ++ unsigned short *array; /* array for GETALL & SETALL */ ++}; ++ ++int ++semctl (int semid, int semnum, int cmd, ...) ++{ ++ int result; ++ va_list ap; ++ ++ union semun semun; ++ union semun semun_ptr; ++ ++ union __kernel_semun ksemun; ++ struct __kernel_semid_ds ksemid_ds; ++ ++ va_start (ap, cmd); ++ if (cmd == GETALL || cmd == SETVAL || cmd == SETALL) ++ { ++ semun = va_arg (ap, union semun); ++ semun_ptr = &semun; ++ } ++ else if (cmd == IPC_SET || cmd == IPC_STAT) ++ { ++ semun = va_arg (ap, union semun); ++ ++ ksemid_ds.sem_perm = semun.buf->sem_perm; ++ ksemid_ds.sem_base = semun.buf->sem_base; ++ ksemid_ds.sem_nsems = semun.buf->sem_nsems; ++ ksemid_ds.sem_otime = semun.buf->sem_otime; ++ ksemid_ds.sem_ctime = semun.buf->sem_ctime; ++ ++ ksemun.buf = &ksemid_ds ++ semun_ptr = (semun_ptr *) &ksemun; ++ } ++ else ++ { ++ semun_ptr = NULL; ++ } ++ va_end (ap); ++ ++ result = syscall (SYS_semctl, semid, semnum, cmd, semun_ptr); ++ ++ if (cmd == IPC_SET || cmd == IPC_STAT) ++ { ++ semun.buf->sem_perm = ksemid_ds.sem_perm; ++ semun.buf->sem_base = ksemid_ds.sem_base; ++ semun.buf->sem_nsems = ksemid_ds.sem_nsems; ++ semun.buf->sem_otime = ksemid_ds.sem_otime; ++ semun.buf->sem_ctime = ksemid_ds.sem_ctime; ++ } ++ ++ return result; ++} ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/setfpucw.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/setfpucw.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/setfpucw.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/setfpucw.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,88 @@ ++/* Set FP exception mask and rounding mode. ++ Copyright (C) 1996, 1997, 1998, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++extern unsigned long __ieee_get_fp_control (void); ++extern void __ieee_set_fp_control (unsigned long); ++ ++ ++static inline unsigned long ++rdfpcr (void) ++{ ++ unsigned long fpcr; ++ asm ("excb; mf_fpcr %0" : "=f"(fpcr)); ++ return fpcr; ++} ++ ++static inline void ++wrfpcr (unsigned long fpcr) ++{ ++ asm volatile ("mt_fpcr %0; excb" : : "f"(fpcr)); ++} ++ ++ ++void ++__setfpucw (fpu_control_t fpu_control) ++{ ++ if (!fpu_control) ++ fpu_control = _FPU_DEFAULT; ++ ++ /* Note that the fpu_control argument, as defined in , ++ consists of bits that are not directly related to the bits of the ++ fpcr and fp_control registers. In particular, the precision control ++ (_FPU_EXTENDED, _FPU_DOUBLE, _FPU_SINGLE) and the interrupt mask ++ _FPU_MASK_UM are without effect. */ ++ ++ /* First, set dynamic rounding mode: */ ++ { ++ unsigned long fpcr; ++ ++ fpcr = rdfpcr(); ++ fpcr &= ~FPCR_DYN_MASK; ++ switch (fpu_control & 0xc00) ++ { ++ case _FPU_RC_NEAREST: fpcr |= FPCR_DYN_NORMAL; break; ++ case _FPU_RC_DOWN: fpcr |= FPCR_DYN_MINUS; break; ++ case _FPU_RC_UP: fpcr |= FPCR_DYN_PLUS; break; ++ case _FPU_RC_ZERO: fpcr |= FPCR_DYN_CHOPPED; break; ++ } ++ wrfpcr(fpcr); ++ } ++ ++ /* Now tell kernel about traps that we like to hear about: */ ++ { ++ unsigned long old_fpcw, fpcw; ++ ++ old_fpcw = fpcw = __ieee_get_fp_control (); ++ fpcw &= ~IEEE_TRAP_ENABLE_MASK; ++ ++ if (!(fpu_control & _FPU_MASK_IM)) fpcw |= IEEE_TRAP_ENABLE_INV; ++ if (!(fpu_control & _FPU_MASK_DM)) fpcw |= IEEE_TRAP_ENABLE_UNF; ++ if (!(fpu_control & _FPU_MASK_ZM)) fpcw |= IEEE_TRAP_ENABLE_DZE; ++ if (!(fpu_control & _FPU_MASK_OM)) fpcw |= IEEE_TRAP_ENABLE_OVF; ++ if (!(fpu_control & _FPU_MASK_PM)) fpcw |= IEEE_TRAP_ENABLE_INE; ++ ++ if (fpcw != old_fpcw) ++ __ieee_set_fp_control (fpcw); ++ } ++ ++ __fpu_control = fpu_control; /* update global copy */ ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/setitimer.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/setitimer.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/setitimer.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/setitimer.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,63 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++extern int __syscall_setitimer (int which, ++ const struct __kernel_itimerval *new, ++ struct __kernel_itimerval *old); ++ ++int ++__setitimer (enum __itimer_which which, ++ const struct itimerval *new, struct itimerval *old) ++{ ++ int retval; ++ struct __kernel_itimerval knew; ++ ++ if (new == NULL) ++ { ++ errno = EFAULT; ++ return -1; ++ } ++ knew.it_interval.tv_sec = new->it_interval.tv_sec; ++ knew.it_interval.tv_usec = new->it_interval.tv_usec; ++ knew.it_value.tv_sec = new->it_value.tv_sec; ++ knew.it_value.tv_usec = new->it_value.tv_usec; ++ if (old != NULL) ++ { ++ struct __kernel_itimerval kold; ++ ++ retval = __syscall_setitimer (which, &knew, &kold); ++ if (retval >= 0) ++ { ++ old->it_interval.tv_sec = kold.it_interval.tv_sec; ++ old->it_interval.tv_usec = kold.it_interval.tv_usec; ++ old->it_value.tv_sec = kold.it_value.tv_sec; ++ old->it_value.tv_usec = kold.it_value.tv_usec; ++ } ++ } ++ else ++ retval = __syscall_setitimer (which, &knew, NULL); ++ return retval; ++} ++ ++weak_alias (__setitimer, setitimer) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/settimeofday.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/settimeofday.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/settimeofday.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/settimeofday.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,43 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++extern int __syscall_settimeofday (const struct __kernel_timeval *tv, ++ const struct timezone *tz); ++ ++int ++__settimeofday (const struct timeval *tv, const struct timezone *tz) ++{ ++ struct __kernel_timeval ktv; ++ ++ if (tv == NULL) ++ { ++ errno = EFAULT; ++ return -1; ++ } ++ ktv.tv_sec = tv->tv_sec; ++ ktv.tv_usec = tv->tv_usec; ++ return __syscall_settimeofday (&ktv, tz); ++} ++ ++weak_alias (__settimeofday, settimeofday) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/shmctl.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/shmctl.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/shmctl.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/shmctl.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,58 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Aurelien Jarno , 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++extern int __syscall_msgctl (int shmid, int cmd, struct __kernel_shmid_ds *buf); ++ ++int ++__msgctl (int shmid, int cmd, struct shmid_ds *buf) ++{ ++ struct __kernel_shmid_ds kshmid_ds; ++ int retval; ++ ++ kshmid_ds.shm_perm = shmid_ds->shm_perm; ++ kshmid_ds.shm_segsz = shmid_ds->shm_segsz; ++ kshmid_ds.shm_lpid = shmid_ds->shm_lpid; ++ kshmid_ds.shm_cpid = shmid_ds->shm_cpid; ++ kshmid_ds.shm_nattch = shmid_ds->shm_nattch; ++ kshmid_ds.shm_atime = shmid_ds->shm_atime; ++ kshmid_ds.shm_dtime = shmid_ds->shm_dtime; ++ kshmid_ds.shm_ctime = shmid_ds->shm_ctime; ++ kshmid_ds.__shm_internal = shmid_ds->__shm_internal; ++ ++ retval = __syscall_shmctl (shmid, cmd, &kshmid_ds); ++ ++ shmid_ds->shm_perm = kshmid_ds.shm_perm; ++ shmid_ds->shm_segsz = kshmid_ds.shm_segsz; ++ shmid_ds->shm_lpid = kshmid_ds.shm_lpid; ++ shmid_ds->shm_cpid = kshmid_ds.shm_cpid; ++ shmid_ds->shm_nattch = kshmid_ds.shm_nattch; ++ shmid_ds->shm_atime = kshmid_ds.shm_atime; ++ shmid_ds->shm_dtime = kshmid_ds.shm_dtime; ++ shmid_ds->shm_ctime = kshmid_ds.shm_ctime; ++ shmid_ds->__shm_internal = kshmid_ds.__shm_internal; ++ ++ return retval; ++} ++ ++weak_alias (__shmctl, shmctl) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sigcontextinfo.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sigcontextinfo.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sigcontextinfo.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sigcontextinfo.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,25 @@ ++/* Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#define SIGCONTEXT int _code, struct sigcontext * ++#define SIGCONTEXT_EXTRA_ARGS _code, ++#define GET_PC(ctx) ((void *) (ctx)->sc_pc) ++#define GET_FRAME(ctx) ((void *) (ctx)->sc_regs[15]) ++#define GET_STACK(ctx) ((void *) (ctx)->sc_regs[30]) ++#define CALL_SIGHANDLER(handler, signo, ctx) \ ++ (handler)((signo), SIGCONTEXT_EXTRA_ARGS (ctx)) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/start_thread.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/start_thread.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/start_thread.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/start_thread.S 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,172 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* __start_thread (flags, stack, func, arg) ++ calls __rfork (flags), and in the child sets the stack pointer and then ++ calls _exit (func (arg)). ++ It cannot be done in portable C. */ ++ ++#include ++#define SIG_SETMASK 3 ++ ++ .text ++ENTRY (__start_thread) ++ /* There is a window of a few instructions, right after the rfork ++ system call, where the handling of a signal would write garbage ++ into the stack shared by the parent and the child (assuming ++ RFMEM is set in flags). To solve this: 1. We block all signals ++ around the rfork system call and unblock them afterwards in ++ the parent and in the child (but only after changing the stack ++ pointer). 2. The child accesses only values passed in registers ++ and on its own stack. This way, if the parent is scheduled to ++ run first, and handles a signal, it will not affect the child; ++ and if the child runs first, and handles a signal, it will use ++ the child's stack and not affect the parent. ++ We need to pass 7 words of info to the child: stack, func, arg, ++ and the signal mask to restore. Since we have only 4 call-saved ++ registers available (%ebx, %esi, %edi, %ebp), we pass only the ++ stack pointer in a register, and the rest through the child's ++ stack. */ ++ lda sp,-56(sp) ++ stq ra,0(sp) ++ stq s0,8(sp) ++ stq s1,16(sp) ++ stq s2,24(sp) ++ stq s3,32(sp) ++ .prologue 1 ++ ++ /* Save arguments. */ ++ mov a0,s1 /* flags */ ++ mov a1,s0 /* stack */ ++ mov a2,s2 /* func */ ++ mov a3,s3 /* arg */ ++ ++ and a0,32,t0 /* flags & RFMEM */ ++ beq t0,$simple ++ ++ /* Block all signals. */ ++ lda t0,-1 ++ stq t0,40(sp) ++ stq t0,48(sp) ++ lda a0,SIG_SETMASK ++ lda a1,40(sp) ++ mov a1,a2 ++ lda v0,SYS_sigprocmask ++ call_pal PAL_callsys ++ bne a3,$error ++ ++ /* Copy all info to the child's stack. */ ++ lda s0,-32(s0) /* room for func, arg, sigset_t */ ++ andnot s0,7,s0 /* make it 8-bytes aligned */ ++ stq s2,8(s0) /* func */ ++ stq s3,0(s0) /* arg */ ++ ldq t0,40(sp) /* sigset_t word 0 */ ++ ldq t1,48(sp) /* sigset_t word 1 */ ++ stq t0,16(s0) ++ stq t1,24(s0) ++ ++ /* Perform the rfork system call. */ ++ mov s1,a0 /* flags */ ++ lda v0,SYS_rfork ++ call_pal PAL_callsys ++ bne a3,$error ++ ++ /* a4 is now 0 for the parent and 1 for the child. */ ++ bne a4,$child ++ ++ /* Save the child pid, currently in v0. */ ++ mov v0,s1 ++ ++ /* Restore the previous signal mask. */ ++ lda a0,SIG_SETMASK ++ lda a1,40(sp) ++ mov zero,a2 ++ lda v0,SYS_sigprocmask ++ call_pal PAL_callsys ++ ++ /* Return the child pid, currently in s1. */ ++ mov s1,v0 ++$retv0: ldq ra,0(sp) ++ ldq s0,8(sp) ++ ldq s1,16(sp) ++ ldq s2,24(sp) ++ ldq s3,32(sp) ++ lda sp,56(sp) ++ ret zero,(ra),1 ++ ++$child: /* Here we are in the child thread. */ ++ ++ /* Set the stack pointer. */ ++ mov s0,sp ++ ++ /* Restore the previous signal mask. */ ++ lda a0,SIG_SETMASK ++ lda a1,16(sp) ++ mov zero,a2 ++ lda v0,SYS_sigprocmask ++ call_pal PAL_callsys ++ ++$child1: ++ /* Call func (arg). */ ++ ldq a0,0(sp) ++ ldq pv,8(sp) ++ jsr ra,(pv),0 ++ ++ /* Tail-call _exit. */ ++ br gp,$here ++$here: ldgp gp,0(gp) ++ mov v0,a0 ++ jmp zero,_exit ++ ++$simple:/* Simple case without signal mask handling. */ ++ ++ /* Copy all info to the child's stack. */ ++ lda s0,-16(s0) /* room for func, arg */ ++ andnot s0,7,s0 /* make it 8-bytes aligned */ ++ stq s2,8(s0) /* func */ ++ stq s3,0(s0) /* arg */ ++ ++ /* Perform the rfork system call. */ ++ mov s1,a0 /* flags */ ++ lda v0,SYS_rfork ++ call_pal PAL_callsys ++ bne a3,$error ++ ++ /* a4 is now 0 for the parent and 1 for the child. */ ++ /* If in the parent, return the child pid, currently in v0. */ ++ beq a4,$retv0 ++ ++$simple_child:/* Here we are in the child thread. */ ++ ++ /* Set the stack pointer. */ ++ mov s0,sp ++ ++ br zero,$child1 ++ ++$error: ldq ra,0(sp) ++ ldq s0,8(sp) ++ ldq s1,16(sp) ++ ldq s2,24(sp) ++ ldq s3,32(sp) ++ lda sp,56(sp) ++#if 0 /* Not needed: The PSEUDO_END expansion starts with this label. */ ++ br zero,1996f ++#endif ++ ++PSEUDO_END (__start_thread) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/statfs64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/statfs64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/statfs64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/statfs64.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,2 @@ ++/* 'statfs64' is the same as 'statfs', because ++ __fsblkcnt64_t == __fsblkcnt_t and __fsfilcnt64_t == __fsfilcnt_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sysarch.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sysarch.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sysarch.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sysarch.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,53 @@ ++/* Parameters for the architecture specific system call. alpha version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYSARCH_H ++#define _SYSARCH_H 1 ++ ++#include ++ ++/* Function that can be used as first argument to 'sysarch'. */ ++enum ++ { ++ ALPHA_SETHAE = 0, ++#define ALPHA_SETHAE ALPHA_SETHAE ++ /* Arg is 'unsigned long *'. Returns the current pcb_fp_control. */ ++ ALPHA_GET_FPMASK = 1, ++#define ALPHA_GET_FPMASK ALPHA_GET_FPMASK ++ /* Arg is 'unsigned long *'. Sets the pcb_fp_control and returns its ++ old value in the same memory location. */ ++ ALPHA_SET_FPMASK = 2, ++#define ALPHA_SET_FPMASK ALPHA_SET_FPMASK ++ ALPHA_GET_UAC = 3, ++#define ALPHA_GET_UAC ALPHA_GET_UAC ++ ALPHA_SET_UAC = 4 ++#define ALPHA_SET_UAC ALPHA_SET_UAC ++ }; ++ ++__BEGIN_DECLS ++ ++extern int sysarch (int __cmd, void *__arg); ++ ++#ifdef _LIBC ++extern int __sysarch (int __cmd, void *__arg); ++#endif ++ ++__END_DECLS ++ ++#endif /* _SYSARCH_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/syscall.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/syscall.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/syscall.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/syscall.S 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/syscalls.list ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/syscalls.list +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/syscalls.list 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/syscalls.list 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,21 @@ ++# File name Caller Syscall name # args Strong name Weak names ++ ++fhstatfs - fhstatfs i:pp __fhstatfs fhstatfs fhstatfs64 ++fstatfs - fstatfs i:ip __fstatfs fstatfs __fstatfs64 fstatfs64 ++getfsstat - getfsstat i:pii __getfsstat getfsstat __getfsstat64 getfsstat64 ++sys_poll - poll i:pii __syscall_poll ++statfs - statfs i:sp __statfs statfs statfs64 ++sys_adjtime - adjtime i:pp __syscall_adjtime ++sys_futimes - futimes i:ip __syscall_futimes ++sys_getitimer - getitimer i:ip __syscall_getitimer ++sys_getrusage - getrusage i:ip __syscall_getrusage ++sys_gettimeofday - gettimeofday i:PP __syscall_gettimeofday ++sys_lutimes - lutimes i:sp __syscall_lutimes ++sys_msgctl - msgctl i:iip __syscall_msgctl ++sys_nanosleep - nanosleep i:pp __syscall_nanosleep ++sys_sched_rr_gi - sched_rr_get_interval i:ip __syscall_sched_rr_get_interval ++sys_shmctl - shmctl i:iip __syscall_shmctl ++sys_select - select i:iPPPP __syscall_select ++sys_setitimer - setitimer i:ipp __syscall_setitimer ++sys_settimeofday - settimeofday i:PP __syscall_settimeofday ++sys_utimes - utimes i:sp __syscall_utimes +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sysdep.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sysdep.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sysdep.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/sysdep.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,34 @@ ++/* Copyright (C) 1993, 1995, 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _FREEBSD_ALPHA_SYSDEP_H ++#define _FREEBSD_ALPHA_SYSDEP_H 1 ++ ++#ifdef __ASSEMBLER__ ++#include /* get PAL_callsys */ ++#else ++#include ++#endif ++ ++#include ++ ++/* FIXME: Is this necessary? */ ++#undef INLINE_SYSCALL ++#define INLINE_SYSCALL(name, nr, args...) __syscall_##name(args) ++ ++#endif /* freebsd/alpha/sysdep.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/utimes.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/utimes.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/utimes.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/utimes.c 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,44 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern int __syscall_utimes (const char *file, ++ const struct __kernel_timeval tvp[2]); ++ ++int ++__utimes (const char *file, const struct timeval tvp[2]) ++{ ++ if (tvp != NULL) ++ { ++ struct __kernel_timeval ktv[2]; ++ ++ ktv[0].tv_sec = tvp[0].tv_sec; ++ ktv[0].tv_usec = tvp[0].tv_usec; ++ ktv[1].tv_sec = tvp[1].tv_sec; ++ ktv[1].tv_usec = tvp[1].tv_usec; ++ return __syscall_utimes (file, ktv); ++ } ++ else ++ return __syscall_utimes (file, NULL); ++} ++ ++weak_alias (__utimes, utimes) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/vfork.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/vfork.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/vfork.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/alpha/vfork.S 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,29 @@ ++/* Copyright (C) 1993, 1995, 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++SYSCALL__ (vfork, 0) ++ /* In the parent process, a4 == 0, v0 == child pid. */ ++ /* In the child process, a4 == 1, v0 == parent pid. */ ++ cmovne a4, zero, v0 ++ ret ++ ++PSEUDO_END (__vfork) ++ ++weak_alias (__vfork, vfork) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bind.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bind.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bind.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bind.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,59 @@ ++/* Copyright (C) 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Aurelien Jarno , 2005. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++/* According to POSIX.1-2004 the len argument specifies the length of ++ the sockaddr structure pointed to by the addrarg argument. However ++ the FreeBSD kernel waits the actual length of the address stored ++ there. The code below emulate this behaviour. */ ++ ++extern int __libc_sa_len (sa_family_t __af); ++extern int __libc_sa_len_internal (sa_family_t __af); ++ ++extern int __syscall_bind (int fd, __CONST_SOCKADDR_ARG addr, ++ socklen_t addrlen) __THROW; ++ ++/* Open a connection on socket FD to peer at ADDR (which LEN bytes long). ++ For connectionless socket types, just set the default address to send to ++ and the only address from which to accept transmissions. ++ Return 0 on success, -1 for errors. */ ++ ++int ++__bind (int fd, __CONST_SOCKADDR_ARG addr, socklen_t addrlen) ++{ ++ socklen_t new_addrlen; ++ ++#ifndef NOT_IN_libc ++ new_addrlen = INTUSE(__libc_sa_len) ((addr.__sockaddr__)->sa_family); ++#else ++ new_addrlen = __libc_sa_len ((addr.__sockaddr__)->sa_family); ++#endif ++ ++ /* Only allow a smaller size, otherwise it could lead to ++ stack corruption */ ++ if (new_addrlen < addrlen) ++ addrlen = new_addrlen; ++ ++ /* We pass 3 arguments. */ ++ return INLINE_SYSCALL (bind, 3, fd, addr, addrlen); ++} ++ ++weak_alias (__bind, bind) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/dirent.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/dirent.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/dirent.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/dirent.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,52 @@ ++/* Directory entry structure `struct dirent'. FreeBSD version. ++ Copyright (C) 1996-1998,2001-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _DIRENT_H ++# error "Never use directly; include instead." ++#endif ++ ++struct dirent ++ { ++ unsigned int d_ino; /* File serial number. */ ++ unsigned short int d_reclen; /* Length of the whole `struct dirent'. */ ++ unsigned char d_type; /* File type, possibly unknown. */ ++ unsigned char d_namlen; /* Length of the file name. */ ++ ++ /* Only this member is in the POSIX standard. */ ++ char d_name[1]; /* File name (actually longer). */ ++ }; ++ ++#ifdef __USE_LARGEFILE64 ++struct dirent64 ++ { ++ unsigned int d_ino; /* File serial number. */ ++ unsigned short int d_reclen; /* Length of the whole `struct dirent'. */ ++ unsigned char d_type; /* File type, possibly unknown. */ ++ unsigned char d_namlen; /* Length of the file name. */ ++ ++ /* Only this member is in the POSIX standard. */ ++ char d_name[1]; /* File name (actually longer). */ ++ }; ++#endif ++ ++#define d_fileno d_ino /* Backwards compatibility. */ ++ ++#define _DIRENT_HAVE_D_RECLEN 1 ++#define _DIRENT_HAVE_D_NAMLEN 1 ++#define _DIRENT_HAVE_D_TYPE 1 +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/errno.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/errno.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/errno.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/errno.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,182 @@ ++/*- ++ * Copyright (c) 1982, 1986, 1989, 1993 ++ * The Regents of the University of California. All rights reserved. ++ * (c) UNIX System Laboratories, Inc. ++ * All or some portions of this file are derived from material licensed ++ * to the University of California by American Telephone and Telegraph ++ * Co. or Unix System Laboratories, Inc. and are reproduced herein with ++ * the permission of UNIX System Laboratories, Inc. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * 4. Neither the name of the University nor the names of its contributors ++ * may be used to endorse or promote products derived from this software ++ * without specific prior written permission. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ * ++ * @(#)errno.h 8.5 (Berkeley) 1/21/94 ++ * based on $FreeBSD: src/sys/sys/errno.h,v 1.28 2005/04/02 12:33:28 das Exp $ ++ */ ++ ++#ifdef _ERRNO_H ++ ++# undef EDOM ++# undef EILSEQ ++# undef ERANGE ++ ++#define EPERM 1 /* Operation not permitted */ ++#define ENOENT 2 /* No such file or directory */ ++#define ESRCH 3 /* No such process */ ++#define EINTR 4 /* Interrupted system call */ ++#define EIO 5 /* Input/output error */ ++#define ENXIO 6 /* Device not configured */ ++#define E2BIG 7 /* Argument list too long */ ++#define ENOEXEC 8 /* Exec format error */ ++#define EBADF 9 /* Bad file descriptor */ ++#define ECHILD 10 /* No child processes */ ++#define EDEADLK 11 /* Resource deadlock avoided */ ++ /* 11 was EAGAIN */ ++#define ENOMEM 12 /* Cannot allocate memory */ ++#define EACCES 13 /* Permission denied */ ++#define EFAULT 14 /* Bad address */ ++#define ENOTBLK 15 /* Block device required */ ++#define EBUSY 16 /* Device busy */ ++#define EEXIST 17 /* File exists */ ++#define EXDEV 18 /* Cross-device link */ ++#define ENODEV 19 /* Operation not supported by device */ ++#define ENOTDIR 20 /* Not a directory */ ++#define EISDIR 21 /* Is a directory */ ++#define EINVAL 22 /* Invalid argument */ ++#define ENFILE 23 /* Too many open files in system */ ++#define EMFILE 24 /* Too many open files */ ++#define ENOTTY 25 /* Inappropriate ioctl for device */ ++#define ETXTBSY 26 /* Text file busy */ ++#define EFBIG 27 /* File too large */ ++#define ENOSPC 28 /* No space left on device */ ++#define ESPIPE 29 /* Illegal seek */ ++#define EROFS 30 /* Read-only filesystem */ ++#define EMLINK 31 /* Too many links */ ++#define EPIPE 32 /* Broken pipe */ ++ ++/* math software */ ++#define EDOM 33 /* Numerical argument out of domain */ ++#define ERANGE 34 /* Result too large */ ++ ++/* non-blocking and interrupt i/o */ ++#define EAGAIN 35 /* Resource temporarily unavailable */ ++#define EWOULDBLOCK EAGAIN /* Operation would block */ ++#define EINPROGRESS 36 /* Operation now in progress */ ++#define EALREADY 37 /* Operation already in progress */ ++ ++/* ipc/network software -- argument errors */ ++#define ENOTSOCK 38 /* Socket operation on non-socket */ ++#define EDESTADDRREQ 39 /* Destination address required */ ++#define EMSGSIZE 40 /* Message too long */ ++#define EPROTOTYPE 41 /* Protocol wrong type for socket */ ++#define ENOPROTOOPT 42 /* Protocol not available */ ++#define EPROTONOSUPPORT 43 /* Protocol not supported */ ++#define ESOCKTNOSUPPORT 44 /* Socket type not supported */ ++#define EOPNOTSUPP 45 /* Operation not supported */ ++#define ENOTSUP EOPNOTSUPP /* Operation not supported */ ++#define EPFNOSUPPORT 46 /* Protocol family not supported */ ++#define EAFNOSUPPORT 47 /* Address family not supported by protocol family */ ++#define EADDRINUSE 48 /* Address already in use */ ++#define EADDRNOTAVAIL 49 /* Can't assign requested address */ ++ ++/* ipc/network software -- operational errors */ ++#define ENETDOWN 50 /* Network is down */ ++#define ENETUNREACH 51 /* Network is unreachable */ ++#define ENETRESET 52 /* Network dropped connection on reset */ ++#define ECONNABORTED 53 /* Software caused connection abort */ ++#define ECONNRESET 54 /* Connection reset by peer */ ++#define ENOBUFS 55 /* No buffer space available */ ++#define EISCONN 56 /* Socket is already connected */ ++#define ENOTCONN 57 /* Socket is not connected */ ++#define ESHUTDOWN 58 /* Can't send after socket shutdown */ ++#define ETOOMANYREFS 59 /* Too many references: can't splice */ ++#define ETIMEDOUT 60 /* Operation timed out */ ++#define ECONNREFUSED 61 /* Connection refused */ ++ ++#define ELOOP 62 /* Too many levels of symbolic links */ ++#define ENAMETOOLONG 63 /* File name too long */ ++ ++/* should be rearranged */ ++#define EHOSTDOWN 64 /* Host is down */ ++#define EHOSTUNREACH 65 /* No route to host */ ++#define ENOTEMPTY 66 /* Directory not empty */ ++ ++/* quotas & mush */ ++#define EPROCLIM 67 /* Too many processes */ ++#define EUSERS 68 /* Too many users */ ++#define EDQUOT 69 /* Disc quota exceeded */ ++ ++/* Network File System */ ++#define ESTALE 70 /* Stale NFS file handle */ ++#define EREMOTE 71 /* Too many levels of remote in path */ ++#define EBADRPC 72 /* RPC struct is bad */ ++#define ERPCMISMATCH 73 /* RPC version wrong */ ++#define EPROGUNAVAIL 74 /* RPC prog. not avail */ ++#define EPROGMISMATCH 75 /* Program version wrong */ ++#define EPROCUNAVAIL 76 /* Bad procedure for program */ ++ ++#define ENOLCK 77 /* No locks available */ ++#define ENOSYS 78 /* Function not implemented */ ++ ++#define EFTYPE 79 /* Inappropriate file type or format */ ++#define EAUTH 80 /* Authentication error */ ++#define ENEEDAUTH 81 /* Need authenticator */ ++#define EIDRM 82 /* Identifier removed */ ++#define ENOMSG 83 /* No message of desired type */ ++#define EOVERFLOW 84 /* Value too large to be stored in data type */ ++#define ECANCELED 85 /* Operation canceled */ ++#define EILSEQ 86 /* Illegal byte sequence */ ++#define ENOATTR 87 /* Attribute not found */ ++ ++#define EDOOFUS 88 /* Programming error */ ++ ++#define EBADMSG 89 /* Bad message */ ++#define EMULTIHOP 90 /* Multihop attempted */ ++#define ENOLINK 91 /* Link has been severed */ ++#define EPROTO 92 /* Protocol error */ ++ ++#define ELAST 92 /* Must be equal largest errno */ ++ ++# ifndef __ASSEMBLER__ ++/* Function to get address of global `errno' variable. */ ++extern int *__errno_location (void) __THROW __attribute__ ((__const__)); ++ ++# if !defined _LIBC || defined _LIBC_REENTRANT ++/* When using threads, errno is a per-thread value. */ ++# define errno (*__errno_location ()) ++# endif ++# endif /* !__ASSEMBLER__ */ ++#endif /* _ERRNO_H */ ++ ++#if !defined _ERRNO_H && defined __need_Emath ++/* This is ugly but the kernel header is not clean enough. We must ++ define only the values EDOM, EILSEQ and ERANGE in case __need_Emath is ++ defined. */ ++ ++#define EDOM 33 /* Numerical argument out of domain */ ++#define ERANGE 34 /* Result too large */ ++#define EILSEQ 86 /* Illegal byte sequence */ ++ ++#endif /* !_ERRNO_H && __need_Emath */ ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/fcntl.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/fcntl.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/fcntl.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/fcntl.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,145 @@ ++/* O_*, F_*, FD_* bit values for FreeBSD. ++ Copyright (C) 1991-1992, 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _FCNTL_H ++#error "Never use directly; include instead." ++#endif ++ ++#include ++ ++/* File access modes for `open' and `fcntl'. */ ++#define O_RDONLY 0 /* Open read-only. */ ++#define O_WRONLY 1 /* Open write-only. */ ++#define O_RDWR 2 /* Open read/write. */ ++ ++ ++/* Bits OR'd into the second argument to open. */ ++#define O_CREAT 0x0200 /* Create file if it doesn't exist. */ ++#define O_EXCL 0x0800 /* Fail if file already exists. */ ++#define O_TRUNC 0x0400 /* Truncate file to zero length. */ ++#define O_NOCTTY 0x8000 /* Don't assign a controlling terminal. */ ++#ifdef __USE_MISC ++#define O_ASYNC 0x0040 /* Send SIGIO to owner when data is ready. */ ++#define O_FSYNC 0x0080 /* Synchronous writes. */ ++#define O_SYNC O_FSYNC ++#define O_SHLOCK 0x0010 /* Open with shared file lock. */ ++#define O_EXLOCK 0x0020 /* Open with shared exclusive lock. */ ++#define O_NOFOLLOW 0x0100 /* Don't follow symlinks. */ ++#define O_DIRECT 0x00010000 /* Attempt to bypass buffer cache */ ++#endif ++ ++enum { O_DIRECTORY = 0 }; ++ ++/* File status flags for `open' and `fcntl'. */ ++#define O_APPEND 0x0008 /* Writes append to the file. */ ++#define O_NONBLOCK 0x0004 /* Non-blocking I/O. */ ++ ++#ifdef __USE_BSD ++#define O_NDELAY O_NONBLOCK ++#endif ++ ++/* Since 'off_t' is 64-bit, O_LARGEFILE is a no-op. */ ++#define O_LARGEFILE 0 ++ ++/* FreeBSD doesn't have smaller grained synchronicity control than per file. ++ fdatasync() is equivalent to fsync(), so we define O_DSYNC == O_SYNC. */ ++#if defined __USE_POSIX199309 || defined __USE_UNIX98 ++# define O_DSYNC O_SYNC /* Synchronize data. */ ++# define O_RSYNC O_SYNC /* Synchronize read operations. */ ++#endif ++ ++#ifdef __USE_BSD ++/* Bits in the file status flags returned by F_GETFL. ++ These are all the O_* flags, plus FREAD and FWRITE, which are ++ independent bits set by which of O_RDONLY, O_WRONLY, and O_RDWR, was ++ given to `open'. */ ++#define FREAD 1 ++#define FWRITE 2 ++ ++/* Traditional BSD names the O_* bits. */ ++#define FASYNC O_ASYNC ++#define FCREAT O_CREAT ++#define FEXCL O_EXCL ++#define FTRUNC O_TRUNC ++#define FNOCTTY O_NOCTTY ++#define FFSYNC O_FSYNC ++#define FSYNC O_SYNC ++#define FAPPEND O_APPEND ++#define FNONBLOCK O_NONBLOCK ++#define FNDELAY O_NDELAY ++#endif ++ ++/* Mask for file access modes. This is system-dependent in case ++ some system ever wants to define some other flavor of access. */ ++#define O_ACCMODE (O_RDONLY|O_WRONLY|O_RDWR) ++ ++/* Values for the second argument to `fcntl'. */ ++#define F_DUPFD 0 /* Duplicate file descriptor. */ ++#define F_GETFD 1 /* Get file descriptor flags. */ ++#define F_SETFD 2 /* Set file descriptor flags. */ ++#define F_GETFL 3 /* Get file status flags. */ ++#define F_SETFL 4 /* Set file status flags. */ ++#ifdef __USE_BSD ++#define F_GETOWN 5 /* Get owner (receiver of SIGIO). */ ++#define F_SETOWN 6 /* Set owner (receiver of SIGIO). */ ++#endif ++#define F_GETLK 7 /* Get record locking info. */ ++#define F_SETLK 8 /* Set record locking info (non-blocking). */ ++#define F_SETLKW 9 /* Set record locking info (blocking). */ ++ ++/* File descriptor flags used with F_GETFD and F_SETFD. */ ++#define FD_CLOEXEC 1 /* Close on exec. */ ++ ++ ++#include ++ ++/* The structure describing an advisory lock. This is the type of the third ++ argument to `fcntl' for the F_GETLK, F_SETLK, and F_SETLKW requests. */ ++struct flock ++ { ++ __off_t l_start; /* Offset where the lock begins. */ ++ __off_t l_len; /* Size of the locked area; zero means until EOF. */ ++ __pid_t l_pid; /* Process holding the lock. */ ++ short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */ ++ short int l_whence; /* Where `l_start' is relative to (like `lseek'). */ ++ }; ++ ++#ifdef __USE_LARGEFILE64 ++struct flock64 ++ { ++ __off64_t l_start; /* Offset where the lock begins. */ ++ __off64_t l_len; /* Size of the locked area; zero means until EOF. */ ++ __pid_t l_pid; /* Process holding the lock. */ ++ short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */ ++ short int l_whence; /* Where `l_start' is relative to (like `lseek'). */ ++ }; ++#endif ++ ++/* Values for the `l_type' field of a `struct flock'. */ ++#define F_RDLCK 1 /* Read lock. */ ++#define F_WRLCK 3 /* Write lock. */ ++#define F_UNLCK 2 /* Remove lock. */ ++ ++#ifdef __USE_BSD ++/* Operations for flock(). */ ++# define LOCK_SH 1 /* shared lock */ ++# define LOCK_EX 2 /* exclusive lock */ ++# define LOCK_NB 4 /* or'd with one of the above to prevent blocking */ ++# define LOCK_UN 8 /* remove lock */ ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/in.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/in.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/in.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/in.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,249 @@ ++/* Copyright (C) 1997, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* FreeBSD version. */ ++ ++#ifndef _NETINET_IN_H ++# error "Never use directly; include instead." ++#endif ++ ++ ++/* Link numbers. */ ++#define IMPLINK_IP 155 ++#define IMPLINK_LOWEXPER 156 ++#define IMPLINK_HIGHEXPER 158 ++ ++ ++/* Options for use with `getsockopt' and `setsockopt' at the IP level. ++ The first word in the comment at the right is the data type used; ++ "bool" means a boolean value stored in an `int'. */ ++#define IP_OPTIONS 1 /* ip_opts; IP per-packet options. */ ++#define IP_HDRINCL 2 /* int; Header is included with data. */ ++#define IP_TOS 3 /* int; IP type of service and precedence. */ ++#define IP_TTL 4 /* int; IP time to live. */ ++#define IP_RECVOPTS 5 /* bool; Receive all IP options w/datagram. */ ++#define IP_RECVRETOPTS 6 /* bool; Receive IP options for response. */ ++#define IP_RECVDSTADDR 7 /* bool; Receive IP dst addr w/datagram. */ ++#define IP_RETOPTS 8 /* ip_opts; Set/get IP per-packet options. */ ++#define IP_MULTICAST_IF 9 /* in_addr; set/get IP multicast i/f */ ++#define IP_MULTICAST_TTL 10 /* u_char; set/get IP multicast ttl */ ++#define IP_MULTICAST_LOOP 11 /* i_char; set/get IP multicast loopback */ ++#define IP_ADD_MEMBERSHIP 12 /* ip_mreq; add an IP group membership */ ++#define IP_DROP_MEMBERSHIP 13 /* ip_mreq; drop an IP group membership */ ++#define IP_MULTICAST_VIF 14 /* set/get IP mcast virt. iface */ ++#define IP_RSVP_ON 15 /* enable RSVP in kernel */ ++#define IP_RSVP_OFF 16 /* disable RSVP in kernel */ ++#define IP_RSVP_VIF_ON 17 /* set RSVP per-vif socket */ ++#define IP_RSVP_VIF_OFF 18 /* unset RSVP per-vif socket */ ++#define IP_PORTRANGE 19 /* int; range to choose for unspec port */ ++#define IP_RECVIF 20 /* bool; receive reception if w/dgram */ ++/* for IPSEC */ ++#define IP_IPSEC_POLICY 21 /* int; set/get security policy */ ++#define IP_FAITH 22 /* bool; accept FAITH'ed connections */ ++ ++#define IP_FW_ADD 50 /* add a firewall rule to chain */ ++#define IP_FW_DEL 51 /* delete a firewall rule from chain */ ++#define IP_FW_FLUSH 52 /* flush firewall rule chain */ ++#define IP_FW_ZERO 53 /* clear single/all firewall counter(s) */ ++#define IP_FW_GET 54 /* get entire firewall rule chain */ ++#define IP_FW_RESETLOG 55 /* reset logging counters */ ++ ++#define IP_DUMMYNET_CONFIGURE 60 /* add/configure a dummynet pipe */ ++#define IP_DUMMYNET_DEL 61 /* delete a dummynet pipe from chain */ ++#define IP_DUMMYNET_FLUSH 62 /* flush dummynet */ ++#define IP_DUMMYNET_GET 64 /* get entire dummynet pipes */ ++ ++/* To select the IP level. */ ++#define SOL_IP 0 ++ ++/* ++ * Defaults and limits for options ++ */ ++#define IP_DEFAULT_MULTICAST_TTL 1 /* normally limit m'casts to 1 hop */ ++#define IP_DEFAULT_MULTICAST_LOOP 1 /* normally hear sends if a member */ ++#define IP_MAX_MEMBERSHIPS 20 /* per socket */ ++ ++/* ++ * Argument for IP_PORTRANGE: ++ * - which range to search when port is unspecified at bind() or connect() ++ */ ++#define IP_PORTRANGE_DEFAULT 0 /* default range */ ++#define IP_PORTRANGE_HIGH 1 /* "high" - request firewall bypass */ ++#define IP_PORTRANGE_LOW 2 /* "low" - vouchsafe security */ ++ ++/* ++ * Names for IP sysctl objects ++ */ ++#define IPCTL_FORWARDING 1 /* act as router */ ++#define IPCTL_SENDREDIRECTS 2 /* may send redirects when forwarding */ ++#define IPCTL_DEFTTL 3 /* default TTL */ ++#ifdef notyet ++#define IPCTL_DEFMTU 4 /* default MTU */ ++#endif ++#define IPCTL_RTEXPIRE 5 /* cloned route expiration time */ ++#define IPCTL_RTMINEXPIRE 6 /* min value for expiration time */ ++#define IPCTL_RTMAXCACHE 7 /* trigger level for dynamic expire */ ++#define IPCTL_SOURCEROUTE 8 /* may perform source routes */ ++#define IPCTL_DIRECTEDBROADCAST 9 /* may re-broadcast received packets */ ++#define IPCTL_INTRQMAXLEN 10 /* max length of netisr queue */ ++#define IPCTL_INTRQDROPS 11 /* number of netisr q drops */ ++#define IPCTL_STATS 12 /* ipstat structure */ ++#define IPCTL_ACCEPTSOURCEROUTE 13 /* may accept source routed packets */ ++#define IPCTL_FASTFORWARDING 14 /* use fast IP forwarding code */ ++#define IPCTL_KEEPFAITH 15 /* FAITH IPv4->IPv6 translater ctl */ ++#define IPCTL_GIF_TTL 16 /* default TTL for gif encap packet */ ++#define IPCTL_MAXID 17 ++ ++/* Structure used to describe IP options for IP_OPTIONS and IP_RETOPTS. ++ The `ip_dst' field is used for the first-hop gateway when using a ++ source route (this gets put into the header proper). */ ++struct ip_opts ++ { ++ struct in_addr ip_dst; /* First hop; zero without source route. */ ++ char ip_opts[40]; /* Actually variable in size. */ ++ }; ++ ++/* Options for use with `getsockopt' and `setsockopt' at the IPv6 level. ++ The first word in the comment at the right is the data type used; ++ "bool" means a boolean value stored in an `int'. */ ++#define IPV6_SOCKOPT_RESERVED1 3 /* reserved for future use */ ++#define IPV6_UNICAST_HOPS 4 /* int; IP6 hops */ ++#define IPV6_MULTICAST_IF 9 /* u_int; set/get IP6 multicast i/f */ ++#define IPV6_MULTICAST_HOPS 10 /* int; set/get IP6 multicast hops */ ++#define IPV6_MULTICAST_LOOP 11 /* u_int; set/get IP6 multicast loopback */ ++#define IPV6_JOIN_GROUP 12 /* ip6_mreq; join a group membership */ ++#define IPV6_LEAVE_GROUP 13 /* ip6_mreq; leave a group membership */ ++#define IPV6_PORTRANGE 14 /* int; range to choose for unspec port */ ++#define ICMP6_FILTER 18 /* icmp6_filter; icmp6 filter */ ++ ++#define IPV6_CHECKSUM 26 /* int; checksum offset for raw socket */ ++#define IPV6_V6ONLY 27 /* bool; make AF_INET6 sockets v6 only */ ++ ++#define IPV6_IPSEC_POLICY 28 /* struct; get/set security policy */ ++#define IPV6_FAITH 29 /* bool; accept FAITH'ed connections */ ++ ++#define IPV6_FW_ADD 30 /* add a firewall rule to chain */ ++#define IPV6_FW_DEL 31 /* delete a firewall rule from chain */ ++#define IPV6_FW_FLUSH 32 /* flush firewall rule chain */ ++#define IPV6_FW_ZERO 33 /* clear single/all firewall counter(s) */ ++#define IPV6_FW_GET 34 /* get entire firewall rule chain */ ++#define IPV6_RTHDRDSTOPTS 35 /* ip6_dest; send dst option before rthdr */ ++ ++#define IPV6_RECVPKTINFO 36 /* bool; recv if, dst addr */ ++#define IPV6_RECVHOPLIMIT 37 /* bool; recv hop limit */ ++#define IPV6_RECVRTHDR 38 /* bool; recv routing header */ ++#define IPV6_RECVHOPOPTS 39 /* bool; recv hop-by-hop option */ ++#define IPV6_RECVDSTOPTS 40 /* bool; recv dst option after rthdr */ ++ ++#define IPV6_USE_MIN_MTU 42 /* bool; send packets at the minimum MTU */ ++#define IPV6_RECVPATHMTU 43 /* bool; notify an according MTU */ ++#define IPV6_PATHMTU 44 /* mtuinfo; get the current path MTU (sopt), ++ 4 bytes int; MTU notification (cmsg) */ ++ ++#define IPV6_PKTINFO 46 /* in6_pktinfo; send if, src addr */ ++#define IPV6_HOPLIMIT 47 /* int; send hop limit */ ++#define IPV6_NEXTHOP 48 /* sockaddr; next hop addr */ ++#define IPV6_HOPOPTS 49 /* ip6_hbh; send hop-by-hop option */ ++#define IPV6_DSTOPTS 50 /* ip6_dest; send dst option befor rthdr */ ++#define IPV6_RTHDR 51 /* ip6_rthdr; send routing header */ ++ ++#define IPV6_RECVTCLASS 57 /* bool; recv traffic class values */ ++ ++#define IPV6_AUTOFLOWLABEL 59 /* bool; attach flowlabel automagically */ ++ ++#define IPV6_TCLASS 61 /* int; send traffic class value */ ++#define IPV6_DONTFRAG 62 /* bool; disable IPv6 fragmentation */ ++ ++#define IPV6_PREFER_TEMPADDR 63 /* int; prefer temporary addresses as ++ * the source address. ++ */ ++ ++/* Obsolete synonyms for the above. */ ++#define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP ++#define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP ++#define IPV6_RXHOPOPTS IPV6_HOPOPTS ++#define IPV6_RXDSTOPTS IPV6_DSTOPTS ++ ++/* Socket level values for IPv6. */ ++#define SOL_IPV6 41 ++#define SOL_ICMPV6 58 ++ ++/* ++ * Defaults and limits for options ++ */ ++#define IPV6_DEFAULT_MULTICAST_HOPS 1 /* normally limit m'casts to 1 hop */ ++#define IPV6_DEFAULT_MULTICAST_LOOP 1 /* normally hear sends if a member */ ++ ++/* ++ * Argument for IPV6_PORTRANGE: ++ * - which range to search when port is unspecified at bind() or connect() ++ */ ++#define IPV6_PORTRANGE_DEFAULT 0 /* default range */ ++#define IPV6_PORTRANGE_HIGH 1 /* "high" - request firewall bypass */ ++#define IPV6_PORTRANGE_LOW 2 /* "low" - vouchsafe security */ ++ ++/* Routing header options for IPv6. */ ++#define IPV6_RTHDR_LOOSE 0 /* Hop doesn't need to be neighbour. */ ++#define IPV6_RTHDR_STRICT 1 /* Hop must be a neighbour. */ ++ ++#define IPV6_RTHDR_TYPE_0 0 /* IPv6 Routing header type 0. */ ++ ++/* ++ * Names for IP sysctl objects ++ */ ++#define IPV6CTL_FORWARDING 1 /* act as router */ ++#define IPV6CTL_SENDREDIRECTS 2 /* may send redirects when forwarding*/ ++#define IPV6CTL_DEFHLIM 3 /* default Hop-Limit */ ++#define IPV6CTL_FORWSRCRT 5 /* forward source-routed dgrams */ ++#define IPV6CTL_STATS 6 /* stats */ ++#define IPV6CTL_MRTSTATS 7 /* multicast forwarding stats */ ++#define IPV6CTL_MRTPROTO 8 /* multicast routing protocol */ ++#define IPV6CTL_MAXFRAGPACKETS 9 /* max packets reassembly queue */ ++#define IPV6CTL_SOURCECHECK 10 /* verify source route and intf */ ++#define IPV6CTL_SOURCECHECK_LOGINT 11 /* minimume logging interval */ ++#define IPV6CTL_ACCEPT_RTADV 12 ++#define IPV6CTL_KEEPFAITH 13 ++#define IPV6CTL_LOG_INTERVAL 14 ++#define IPV6CTL_HDRNESTLIMIT 15 ++#define IPV6CTL_DAD_COUNT 16 ++#define IPV6CTL_AUTO_FLOWLABEL 17 ++#define IPV6CTL_DEFMCASTHLIM 18 ++#define IPV6CTL_GIF_HLIM 19 /* default HLIM for gif encap packet */ ++#define IPV6CTL_KAME_VERSION 20 ++#define IPV6CTL_USE_DEPRECATED 21 /* use deprecated addr (RFC2462 5.5.4) */ ++#define IPV6CTL_RR_PRUNE 22 /* walk timer for router renumbering */ ++#define IPV6CTL_V6ONLY 24 ++#define IPV6CTL_RTEXPIRE 25 /* cloned route expiration time */ ++#define IPV6CTL_RTMINEXPIRE 26 /* min value for expiration time */ ++#define IPV6CTL_RTMAXCACHE 27 /* trigger level for dynamic expire */ ++ ++#define IPV6CTL_USETEMPADDR 32 /* use temporary addresses (RFC3041) */ ++#define IPV6CTL_TEMPPLTIME 33 /* preferred lifetime for tmpaddrs */ ++#define IPV6CTL_TEMPVLTIME 34 /* valid lifetime for tmpaddrs */ ++#define IPV6CTL_AUTO_LINKLOCAL 35 /* automatic link-local addr assign */ ++#define IPV6CTL_RIP6STATS 36 /* raw_ip6 stats */ ++#define IPV6CTL_PREFER_TEMPADDR 37 /* prefer temporary addr as src */ ++#define IPV6CTL_ADDRCTLPOLICY 38 /* get/set address selection policy */ ++ ++#define IPV6CTL_MAXFRAGS 41 /* max fragments */ ++ ++/* New entries should be added here from current IPV6CTL_MAXID value. */ ++/* to define items, should talk with KAME guys first, for *BSD compatibility */ ++/* 42-44 is already used in KAME */ ++#define IPV6CTL_STEALTH 45 ++#define IPV6CTL_MAXID 46 +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ioctl-types.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ioctl-types.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ioctl-types.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ioctl-types.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,57 @@ ++/* Structure types for pre-termios terminal ioctls. FreeBSD version. ++ Copyright (C) 1996, 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_IOCTL_H ++# error "Never use directly; include instead." ++#endif ++ ++/* Type of ARG for TIOCGETC and TIOCSETC requests. */ ++/* struct tchars is defined in */ ++#define _IOT_tchars /* Hurd ioctl type field. */ \ ++ _IOT (_IOTS (char), 6, 0, 0, 0, 0) ++ ++/* Type of ARG for TIOCGLTC and TIOCSLTC requests. */ ++/* struct ltchars is defined in */ ++#define _IOT_ltchars /* Hurd ioctl type field. */ \ ++ _IOT (_IOTS (char), 6, 0, 0, 0, 0) ++ ++/* Type of ARG for TIOCGETP and TIOCSETP requests (and gtty and stty). */ ++/* struct sgttyb is defined in */ ++#define _IOT_sgttyb /* Hurd ioctl type field. */ \ ++ _IOT (_IOTS (char), 6, _IOTS (short int), 1, 0, 0) ++ ++/* Type of ARG for TIOCGWINSZ and TIOCSWINSZ requests. */ ++/* struct winsize is defined in */ ++#define _IOT_winsize /* Hurd ioctl type field. */ \ ++ _IOT (_IOTS (unsigned short int), 4, 0, 0, 0, 0) ++ ++/* Many systems that have TIOCGWINSZ define TIOCGSIZE for source ++ compatibility with Sun; they define `struct ttysize' to have identical ++ layout as `struct winsize' and #define TIOCGSIZE to be TIOCGWINSZ ++ (likewise TIOCSSIZE and TIOCSWINSZ). */ ++/* struct ttysize is in FreeBSD originally defined in , ++ which is replaced by GLIBC version -> define here */ ++struct ttysize ++{ ++ unsigned short int ts_lines; ++ unsigned short int ts_cols; ++ unsigned short int ts_xxx; ++ unsigned short int ts_yyy; ++}; ++#define _IOT_ttysize _IOT_winsize +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ioctls.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ioctls.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ioctls.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ioctls.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,67 @@ ++/*- ++ * Copyright (c) 1982, 1986, 1990 The Regents of the University of California. ++ * All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * 4. Neither the name of the University nor the names of its contributors ++ * may be used to endorse or promote products derived from this software ++ * without specific prior written permission. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ * ++ * @(#)ioctl.h 8.6 (Berkeley) 3/28/94 ++ */ ++ ++#ifndef _IOCTLS_H_ ++#define _IOCTLS_H_ ++ ++#include ++ ++#include ++ ++/* ++ * @(#)ioctl.h 8.6 (Berkeley) 3/28/94 ++ */ ++ ++#define TIOCGSIZE TIOCGWINSZ ++#define TIOCSSIZE TIOCSWINSZ ++ ++#include ++ ++#include ++ ++#ifndef _SYS_IOCTL_COMPAT_H_ ++#ifndef BURN_BRIDGES ++ ++#undef ECHO /* see bits/termios.h */ ++#undef MDMBUF /* see bits/termios.h */ ++#undef TOSTOP /* see bits/termios.h */ ++#undef FLUSHO /* see bits/termios.h */ ++#undef PENDIN /* see bits/termios.h */ ++#undef NOFLSH /* see bits/termios.h */ ++ ++#include ++ ++#define TAB3 XTABS /* expand tabs on output */ ++ ++#endif /* !BURN_BRIDGES */ ++#endif /* !_SYS_IOCTL_COMPAT_H_ */ ++ ++#endif /* !_IOCTLS_H_ */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ipc.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ipc.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ipc.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/ipc.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,56 @@ ++/* Copyright (C) 1995-1997, 1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_IPC_H ++# error "Never use directly; include instead." ++#endif ++ ++#include ++ ++/* Mode bits for `msgget', `semget', and `shmget'. */ ++#define IPC_CREAT 01000 /* create key if key does not exist */ ++#define IPC_EXCL 02000 /* fail if key exists */ ++#define IPC_NOWAIT 04000 /* return error on wait */ ++ ++/* Control commands for `msgctl', `semctl', and `shmctl'. */ ++#define IPC_RMID 0 /* remove identifier */ ++#define IPC_SET 1 /* set `ipc_perm' options */ ++#define IPC_STAT 2 /* get `ipc_perm' options */ ++ ++/* Special key values. */ ++#define IPC_PRIVATE ((key_t) 0) /* private key */ ++ ++#ifdef __USE_BSD ++/* Common mode bits. */ ++# define IPC_R 0400 /* read permission, same as S_IRUSR */ ++# define IPC_W 0200 /* write permission, same as S_IWUSR */ ++# define IPC_M 0x1000 /* control permission */ ++#endif ++ ++ ++/* Data structure used to pass permission information to IPC operations. */ ++struct ipc_perm ++ { ++ __uint16_t /* yuck! */ cuid; /* creator's user ID */ ++ __uint16_t /* yuck! */ cgid; /* creator's group ID */ ++ __uint16_t /* yuck! */ uid; /* owner's user ID */ ++ __uint16_t /* yuck! */ gid; /* owner's group ID */ ++ __mode_t mode; /* read/write permission */ ++ __uint16_t __seq; ++ __key_t __key; ++ }; +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/local_lim.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/local_lim.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/local_lim.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/local_lim.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/mman.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/mman.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/mman.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/mman.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,118 @@ ++/* Definitions for POSIX memory map interface. FreeBSD version. ++ Copyright (C) 1994-1998, 2000-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_MMAN_H ++# error "Never use directly; include instead." ++#endif ++ ++#include ++#include ++ ++/* Protections are chosen from these bits, OR'd together. The ++ implementation does not necessarily support PROT_EXEC or PROT_WRITE ++ without PROT_READ. The only guarantees are that no writing will be ++ allowed without PROT_WRITE and no access will be allowed for PROT_NONE. */ ++ ++#define PROT_NONE 0x00 /* No access. */ ++#define PROT_READ 0x01 /* Pages can be read. */ ++#define PROT_WRITE 0x02 /* Pages can be written. */ ++#define PROT_EXEC 0x04 /* Pages can be executed. */ ++ ++/* Flags contain mapping type, sharing type and options. */ ++ ++/* Mapping type (must choose one and only one of these). */ ++#ifdef __USE_BSD ++# define MAP_FILE 0x0000 /* Mapped from a file or device. */ ++# define MAP_ANON 0x1000 /* Allocated from anonymous virtual memory. */ ++# define MAP_TYPE 0x1000 /* Mask for type field. */ ++# ifdef __USE_MISC ++# define MAP_ANONYMOUS MAP_ANON /* Linux name. */ ++# endif ++#endif ++ ++/* Sharing types (must choose one and only one of these). */ ++#define MAP_SHARED 0x0001 /* Share changes. */ ++#define MAP_PRIVATE 0x0002 /* Changes private; copy pages on write. */ ++#ifdef __USE_BSD ++# define MAP_COPY MAP_PRIVATE /* Virtual copy of region at mapping time. */ ++#endif ++ ++/* Other flags. */ ++#define MAP_FIXED 0x0010 /* Map address must be exactly as requested. */ ++#ifdef __USE_BSD ++#define MAP_RENAME 0x0020 /* Sun: rename private pages to file */ ++#define MAP_NORESERVE 0x0040 /* Sun: don't reserve needed swap area */ ++# define MAP_INHERIT 0x0080 /* Region is retained after exec. */ ++# define MAP_NOEXTEND 0x0100 /* For MAP_FILE, don't change file size. */ ++# define MAP_HASSEMPHORE 0x0200 /* Region may contain semaphores. */ ++# define MAP_STACK 0x0400 /* Region grows down, like a stack. */ ++# define MAP_NOSYNC 0x0800 /* Try to avoid flushing to the disk. */ ++# define MAP_NOCORE 0x20000 /* Don't include these pages in a core dump. */ ++#endif ++ ++/* Advice to `madvise'. */ ++#ifdef __USE_BSD ++# define MADV_NORMAL 0 /* No further special treatment. */ ++# define MADV_RANDOM 1 /* Expect random page references. */ ++# define MADV_SEQUENTIAL 2 /* Expect sequential page references. */ ++# define MADV_WILLNEED 3 /* Will need these pages. */ ++# define MADV_DONTNEED 4 /* Don't need these pages. */ ++# define MADV_FREE 5 /* Don't need these pages, they contain junk. */ ++# define MADV_NOSYNC 6 /* Try to avoid flushing to the disk. */ ++# define MADV_AUTOSYNC 7 /* Use the default flushing strategy. */ ++# define MADV_NOCORE 8 /* Don't include these pages in a core dump. */ ++# define MADV_CORE 9 /* Include pages in a core dump (default). */ ++#endif ++ ++/* The POSIX people had to invent similar names for the same things. */ ++#ifdef __USE_XOPEN2K ++# define POSIX_MADV_NORMAL 0 /* No further special treatment. */ ++# define POSIX_MADV_RANDOM 1 /* Expect random page references. */ ++# define POSIX_MADV_SEQUENTIAL 2 /* Expect sequential page references. */ ++# define POSIX_MADV_WILLNEED 3 /* Will need these pages. */ ++# define POSIX_MADV_DONTNEED 4 /* Don't need these pages. */ ++#endif ++ ++/* Flags to `msync'. */ ++#define MS_ASYNC 1 /* Sync memory asynchronously. */ ++#define MS_SYNC 0 /* Synchronous memory sync. */ ++#define MS_INVALIDATE 2 /* Invalidate the caches. */ ++ ++/* Flags for `mlockall' (can be OR'd together). */ ++#define MCL_CURRENT 1 /* Lock all currently mapped pages. */ ++#define MCL_FUTURE 2 /* Lock all additions to address ++ space. */ ++ ++/* Flags for 'minherit'. */ ++#ifdef __USE_BSD ++# define INHERIT_SHARE 0 ++# define INHERIT_COPY 1 ++# define INHERIT_NONE 2 ++#endif ++ ++ ++#ifdef __USE_BSD ++ ++__BEGIN_DECLS ++ ++extern int minherit (void *__addr, size_t __len, int __inherit); ++ ++__END_DECLS ++ ++#endif /* Use BSD */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/msq.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/msq.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/msq.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/msq.h 2006-11-22 11:44:31.000000000 +0100 +@@ -0,0 +1,73 @@ ++/* Copyright (C) 1995, 1997, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_MSG_H ++#error "Never use directly; include instead." ++#endif ++ ++#include ++ ++/* Define options for message queue functions. */ ++#define MSG_NOERROR 010000 /* no error if message is too big */ ++ ++/* Types used in the structure definition. */ ++typedef unsigned long int msgqnum_t; ++typedef unsigned long int msglen_t; ++ ++ ++/* Structure of record for one message inside the kernel. ++ The type `struct __msg' is opaque. */ ++struct msqid_ds ++{ ++ struct ipc_perm msg_perm; /* structure describing operation permission */ ++ void *__msg_first; ++ void *__msg_last; ++ msglen_t __msg_cbytes; /* current number of bytes on queue */ ++ msgqnum_t msg_qnum; /* number of messages currently on queue */ ++ msglen_t msg_qbytes; /* max number of bytes allowed on queue */ ++ __pid_t msg_lspid; /* pid of last msgsnd() */ ++ __pid_t msg_lrpid; /* pid of last msgrcv() */ ++ __time_t msg_stime; /* time of last msgsnd command */ ++ long __unused1; ++ __time_t msg_rtime; /* time of last msgrcv command */ ++ long __unused2; ++ __time_t msg_ctime; /* time of last change */ ++ long __unused3; ++ long __unused4[4]; ++}; ++ ++#ifdef __USE_MISC ++ ++# define msg_cbytes __msg_cbytes ++ ++# ifdef _KERNEL ++ ++/* buffer for msgctl calls IPC_INFO, MSG_INFO */ ++struct msginfo ++ { ++ int msgmax; ++ int msgmni; ++ int msgmnb; ++ int msgtql; ++ int msgssz; ++ int msgseg; ++ }; ++ ++# endif ++ ++#endif /* __USE_MISC */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/poll.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/poll.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/poll.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/poll.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,51 @@ ++/* Copyright (C) 1997, 2001-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_POLL_H ++# error "Never use directly; include instead." ++#endif ++ ++/* Event types that can be polled for. These bits may be set in `events' ++ to indicate the interesting event types; they will appear in `revents' ++ to indicate the status of the file descriptor. */ ++#define POLLIN 0x0001 /* There is data to read. */ ++#define POLLPRI 0x0002 /* There is urgent data to read. */ ++#define POLLOUT 0x0004 /* Writing now will not block. */ ++ ++#ifdef __USE_XOPEN ++/* These values are defined in XPG4.2. */ ++# define POLLRDNORM 0x0040 /* Normal data may be read. */ ++# define POLLRDBAND 0x0080 /* Priority data may be read. */ ++# define POLLWRNORM 0x0004 /* Writing now will not block. */ ++# define POLLWRBAND 0x0100 /* Priority data may be written. */ ++#endif ++ ++#ifdef __USE_BSD ++/* These are extensions for FreeBSD. */ ++# define POLLEXTEND 0x0200 /* File size may have grown. */ ++# define POLLATTRIB 0x0400 /* File attributes may have changed. */ ++# define POLLNLINK 0x0800 /* File may have been moved/removed. */ ++# define POLLWRITE 0x1000 /* File's contents may have changed. */ ++#endif ++ ++/* Event types always implicitly polled for. These bits need not be set in ++ `events', but they will appear in `revents' to indicate the status of ++ the file descriptor. */ ++#define POLLERR 0x0008 /* Error condition. */ ++#define POLLHUP 0x0010 /* Hung up. */ ++#define POLLNVAL 0x0020 /* Invalid polling request. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/posix_opt.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/posix_opt.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/posix_opt.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/posix_opt.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,90 @@ ++/* Define POSIX options for FreeBSD. ++ Copyright (C) 1996-1997, 1999, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* ++ * Never include this file directly; use instead. ++ */ ++ ++#ifndef _BITS_POSIX_OPT_H ++#define _BITS_POSIX_OPT_H 1 ++ ++/* Job control is supported. */ ++#define _POSIX_JOB_CONTROL 1 ++ ++/* Processes have a saved set-user-ID and a saved set-group-ID. */ ++#define _POSIX_SAVED_IDS 1 ++ ++/* Priority scheduling is supported. */ ++#define _POSIX_PRIORITY_SCHEDULING 1 ++ ++/* Synchronizing file data is supported. */ ++#define _POSIX_SYNCHRONIZED_IO 1 ++ ++/* The fsync function is present. */ ++#define _POSIX_FSYNC 1 ++ ++/* Mapping of files to memory is supported. */ ++#define _POSIX_MAPPED_FILES 1 ++ ++/* Locking of all memory is supported. */ ++#define _POSIX_MEMLOCK 1 ++ ++/* Locking of ranges of memory is supported. */ ++#define _POSIX_MEMLOCK_RANGE 1 ++ ++/* Setting of memory protections is supported. */ ++#define _POSIX_MEMORY_PROTECTION 1 ++ ++/* Implementation supports `poll' function. */ ++#define _POSIX_POLL 1 ++ ++/* Implementation supports `select' and `pselect' functions. */ ++#define _POSIX_SELECT 1 ++ ++/* XPG4.2 shared memory is supported. */ ++#define _XOPEN_SHM 1 ++ ++/* X/Open realtime support is available. */ ++#define _XOPEN_REALTIME 1 ++ ++/* Only root can change owner of file. */ ++#define _POSIX_CHOWN_RESTRICTED 1 ++ ++/* `c_cc' member of 'struct termios' structure can be disabled by ++ using the value _POSIX_VDISABLE. */ ++#define _POSIX_VDISABLE '\0' ++ ++/* The LFS interface is available, except for the asynchronous I/O. */ ++#define _LFS_LARGEFILE 1 ++#define _LFS64_LARGEFILE 1 ++#define _LFS64_STDIO 1 ++ ++/* POSIX timers are available. */ ++#define _POSIX_TIMERS 1 ++ ++/* GNU libc provides regular expression handling. */ ++#define _POSIX_REGEXP 1 ++ ++/* We have a POSIX shell. */ ++#define _POSIX_SHELL 1 ++ ++/* The `spawn' function family is supported. */ ++#define _POSIX_SPAWN 200912L ++ ++#endif /* bits/posix_opt.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/resource.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/resource.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/resource.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/resource.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,200 @@ ++/* Bit values & structures for resource limits. FreeBSD version. ++ Copyright (C) 1994, 1996-1998, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_RESOURCE_H ++# error "Never use directly; include instead." ++#endif ++ ++#include ++ ++/* Transmute defines to enumerations. The macro re-definitions are ++ necessary because some programs want to test for operating system ++ features with #ifdef RUSAGE_SELF. In ISO C the reflexive ++ definition is a no-op. ++ ++ These are the values for FreeBSD. Earlier BSD systems have a subset of ++ these kinds of resource limit. */ ++ ++/* Kinds of resource limit. */ ++enum __rlimit_resource ++{ ++ /* Per-process CPU limit, in seconds. */ ++ RLIMIT_CPU = 0, ++#define RLIMIT_CPU RLIMIT_CPU ++ ++ /* Largest file that can be created, in bytes. */ ++ RLIMIT_FSIZE = 1, ++#define RLIMIT_FSIZE RLIMIT_FSIZE ++ ++ /* Maximum size of data segment, in bytes. */ ++ RLIMIT_DATA = 2, ++#define RLIMIT_DATA RLIMIT_DATA ++ ++ /* Maximum size of stack segment, in bytes. */ ++ RLIMIT_STACK = 3, ++#define RLIMIT_STACK RLIMIT_STACK ++ ++ /* Largest core file that can be created, in bytes. */ ++ RLIMIT_CORE = 4, ++#define RLIMIT_CORE RLIMIT_CORE ++ ++ /* Largest resident set size, in bytes. ++ This affects swapping; processes that are exceeding their ++ resident set size will be more likely to have physical memory ++ taken from them. */ ++ __RLIMIT_RSS = 5, ++#define RLIMIT_RSS __RLIMIT_RSS ++ ++ /* Locked-in-memory address space. */ ++ __RLIMIT_MEMLOCK = 6, ++#define RLIMIT_MEMLOCK __RLIMIT_MEMLOCK ++ ++ /* Number of processes. */ ++ __RLIMIT_NPROC = 7, ++#define RLIMIT_NPROC __RLIMIT_NPROC ++ ++ /* Number of open files. */ ++ RLIMIT_NOFILE = 8, ++#define RLIMIT_NOFILE RLIMIT_NOFILE ++ ++ /* Maximum size of all socket buffers. */ ++ __RLIMIT_SBSIZE = 9, ++#define RLIMIT_SBSIZE __RLIMIT_SBSIZE ++ ++ /* Address space limit. */ ++ RLIMIT_AS = 10, ++#define RLIMIT_AS RLIMIT_AS ++ ++ __RLIMIT_NLIMITS = 11, ++ __RLIM_NLIMITS = __RLIMIT_NLIMITS ++#define RLIMIT_NLIMITS __RLIMIT_NLIMITS ++#define RLIM_NLIMITS __RLIM_NLIMITS ++}; ++ ++/* Value to indicate that there is no limit. */ ++#define RLIM_INFINITY 0x7fffffffffffffffLL ++#ifdef __USE_LARGEFILE64 ++# define RLIM64_INFINITY 0x7fffffffffffffffLL ++#endif ++ ++ ++/* Type for resource quantity measurement. */ ++typedef __rlim_t rlim_t; ++#ifdef __USE_LARGEFILE64 ++typedef __rlim64_t rlim64_t; ++#endif ++ ++struct rlimit ++ { ++ /* The current (soft) limit. */ ++ rlim_t rlim_cur; ++ /* The hard limit. */ ++ rlim_t rlim_max; ++ }; ++ ++#ifdef __USE_LARGEFILE64 ++struct rlimit64 ++ { ++ /* The current (soft) limit. */ ++ rlim64_t rlim_cur; ++ /* The hard limit. */ ++ rlim64_t rlim_max; ++ }; ++#endif ++ ++#define CP_USER 0 ++#define CP_NICE 1 ++#define CP_SYS 2 ++#define CP_INTR 3 ++#define CP_IDLE 4 ++#define CPUSTATES 5 ++ ++/* Whose usage statistics do you want? */ ++enum __rusage_who ++{ ++ /* The calling process. */ ++ RUSAGE_SELF = 0, ++#define RUSAGE_SELF RUSAGE_SELF ++ ++ /* All of its terminated child processes. */ ++ RUSAGE_CHILDREN = -1 ++#define RUSAGE_CHILDREN RUSAGE_CHILDREN ++}; ++ ++#define __need_timeval ++#include /* For `struct timeval'. */ ++ ++/* Structure which says how much of each resource has been used. */ ++struct rusage ++ { ++ /* Total amount of user time used. */ ++ struct timeval ru_utime; ++ /* Total amount of system time used. */ ++ struct timeval ru_stime; ++ /* Maximum resident set size (in kilobytes). */ ++ long int ru_maxrss; ++ /* Amount of sharing of text segment memory ++ with other processes (kilobyte-seconds). */ ++ long int ru_ixrss; ++ /* Amount of data segment memory used (kilobyte-seconds). */ ++ long int ru_idrss; ++ /* Amount of stack memory used (kilobyte-seconds). */ ++ long int ru_isrss; ++ /* Number of soft page faults (i.e. those serviced by reclaiming ++ a page from the list of pages awaiting reallocation. */ ++ long int ru_minflt; ++ /* Number of hard page faults (i.e. those that required I/O). */ ++ long int ru_majflt; ++ /* Number of times a process was swapped out of physical memory. */ ++ long int ru_nswap; ++ /* Number of input operations via the file system. Note: This ++ and `ru_oublock' do not include operations with the cache. */ ++ long int ru_inblock; ++ /* Number of output operations via the file system. */ ++ long int ru_oublock; ++ /* Number of IPC messages sent. */ ++ long int ru_msgsnd; ++ /* Number of IPC messages received. */ ++ long int ru_msgrcv; ++ /* Number of signals delivered. */ ++ long int ru_nsignals; ++ /* Number of voluntary context switches, i.e. because the process ++ gave up the process before it had to (usually to wait for some ++ resource to be available). */ ++ long int ru_nvcsw; ++ /* Number of involuntary context switches, i.e. a higher priority process ++ became runnable or the current process used up its time slice. */ ++ long int ru_nivcsw; ++ }; ++ ++/* Priority limits. */ ++#define PRIO_MIN -20 /* Minimum priority a process can have. */ ++#define PRIO_MAX 20 /* Maximum priority a process can have. */ ++ ++/* The type of the WHICH argument to `getpriority' and `setpriority', ++ indicating what flavor of entity the WHO argument specifies. */ ++enum __priority_which ++{ ++ PRIO_PROCESS = 0, /* WHO is a process ID. */ ++#define PRIO_PROCESS PRIO_PROCESS ++ PRIO_PGRP = 1, /* WHO is a process group ID. */ ++#define PRIO_PGRP PRIO_PGRP ++ PRIO_USER = 2 /* WHO is a user ID. */ ++#define PRIO_USER PRIO_USER ++}; +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sched.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sched.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sched.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sched.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,113 @@ ++/* Definitions of constants and data structure for POSIX 1003.1b-1993 ++ scheduling interface. ++ Copyright (C) 1996, 1997, 2001, 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef __need_schedparam ++ ++#ifndef _SCHED_H ++# error "Never include directly; use instead." ++#endif ++ ++ ++/* Scheduling algorithms. */ ++#define SCHED_OTHER 2 ++#define SCHED_FIFO 1 ++#define SCHED_RR 3 ++ ++/* Data structure to describe a process' schedulability. */ ++struct sched_param ++{ ++ int __sched_priority; ++}; ++ ++ ++#ifdef __USE_MISC ++/* Cloning flags. */ ++# define CSIGNAL 0x000000ff /* Signal mask to be sent at exit. */ ++# define CLONE_VM 0x00000100 /* Set if VM shared between processes. */ ++# define CLONE_FS 0x00000200 /* Set if fs info shared between processes. */ ++# define CLONE_FILES 0x00000400 /* Set if open files shared between processes. */ ++# define CLONE_SIGHAND 0x00000800 /* Set if signal handlers shared. */ ++# define CLONE_PTRACE 0x00002000 /* Set if tracing continues on the child. */ ++# define CLONE_VFORK 0x00004000 /* Set if the parent wants the child to ++ wake it up on mm_release. */ ++# define CLONE_SYSVSEM 0x00040000 /* share system V SEM_UNDO semantics */ ++#endif ++ ++__BEGIN_DECLS ++ ++/* Clone current process. */ ++#ifdef __USE_MISC ++extern int clone (int (*__fn) (void *__arg), void *__child_stack, ++ int __flags, void *__arg) __THROW; ++#endif ++ ++__END_DECLS ++ ++#endif /* need schedparam */ ++ ++ ++#if !defined __defined_schedparam \ ++ && (defined __need_schedparam || defined _SCHED_H) ++# define __defined_schedparam 1 ++ ++/* Data structure to describe a process' schedulability. */ ++struct __sched_param ++ { ++ int __sched_priority; ++ }; ++ ++# undef __need_schedparam ++#endif ++ ++ ++#if defined _SCHED_H && !defined __cpu_set_t_defined ++# define __cpu_set_t_defined ++/* Size definition for CPU sets. */ ++# define __CPU_SETSIZE 1024 ++# define __NCPUBITS (8 * sizeof (__cpu_mask)) ++ ++/* Type for array elements in 'cpu_set'. */ ++typedef unsigned long int __cpu_mask; ++ ++/* Basic access functions. */ ++# define __CPUELT(cpu) ((cpu) / __NCPUBITS) ++# define __CPUMASK(cpu) ((__cpu_mask) 1 << ((cpu) % __NCPUBITS)) ++ ++/* Data structure to describe CPU mask. */ ++typedef struct ++{ ++ __cpu_mask __bits[__CPU_SETSIZE / __NCPUBITS]; ++} cpu_set_t; ++ ++/* Access functions for CPU masks. */ ++# define __CPU_ZERO(cpusetp) \ ++ do { \ ++ unsigned int __i; \ ++ cpu_set *__arr = (cpusetp); \ ++ for (__i = 0; __i < sizeof (cpu_set) / sizeof (__cpu_mask); ++__i) \ ++ __arr->__bits[__i] = 0; \ ++ } while (0) ++# define __CPU_SET(cpu, cpusetp) \ ++ ((cpusetp)->__bits[__CPUELT (cpu)] |= __CPUMASK (cpu)) ++# define __CPU_CLR(cpu, cpusetp) \ ++ ((cpusetp)->__bits[__CPUELT (cpu)] &= ~__CPUMASK (cpu)) ++# define __CPU_ISSET(cpu, cpusetp) \ ++ (((cpusetp)->__bits[__CPUELT (cpu)] & __CPUMASK (cpu)) != 0) ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sem.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sem.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sem.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sem.h 2006-11-22 11:44:31.000000000 +0100 +@@ -0,0 +1,91 @@ ++/* Copyright (C) 1995-1998, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_SEM_H ++# error "Never include directly; use instead." ++#endif ++ ++#include ++ ++/* Flags for `semop'. */ ++#define SEM_UNDO 0x1000 /* undo the operation on exit */ ++ ++/* Commands for `semctl'. */ ++#define GETPID 4 /* get sempid */ ++#define GETVAL 5 /* get semval */ ++#define GETALL 6 /* get all semval's */ ++#define GETNCNT 3 /* get semncnt */ ++#define GETZCNT 7 /* get semzcnt */ ++#define SETVAL 8 /* set semval */ ++#define SETALL 9 /* set all semval's */ ++ ++#ifdef __USE_BSD ++# define SEM_R IPC_R /* read permission for user */ ++# define SEM_A IPC_W /* alter permission for user */ ++#endif ++ ++ ++/* Data structure describing a set of semaphores. */ ++struct semid_ds ++{ ++ struct ipc_perm sem_perm; /* operation permission struct */ ++ void *__sem_base; ++ unsigned short int sem_nsems; /* number of semaphores in set */ ++ __time_t sem_otime; /* last semop() time */ ++ long __unused1; ++ __time_t sem_ctime; /* last time changed by semctl() */ ++ long __unused2; ++ long __unused3[4]; ++}; ++ ++/* The user should define a union like the following to use it for arguments ++ for `semctl'. ++ ++ union semun ++ { ++ int val; <= value for SETVAL ++ struct semid_ds *buf; <= buffer for IPC_STAT & IPC_SET ++ unsigned short int *array; <= array for GETALL & SETALL ++ struct seminfo *__buf; <= buffer for IPC_INFO ++ }; ++ ++ Previous versions of this file used to define this union but this is ++ incorrect. One can test the macro _SEM_SEMUN_UNDEFINED to see whether ++ one must define the union or not. */ ++#define _SEM_SEMUN_UNDEFINED 1 ++ ++#ifdef _KERNEL ++ ++/* ++ * semaphore info struct ++ */ ++struct seminfo { ++ int semmap, /* # of entries in semaphore map */ ++ semmni, /* # of semaphore identifiers */ ++ semmns, /* # of semaphores in system */ ++ semmnu, /* # of undo structures in system */ ++ semmsl, /* max # of semaphores per id */ ++ semopm, /* max # of operations per semop call */ ++ semume, /* max # of undo entries per process */ ++ semusz, /* size in bytes of undo structure */ ++ semvmx, /* semaphore maximum value */ ++ semaem; /* adjust on exit max value */ ++}; ++ ++#endif ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/shm.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/shm.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/shm.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/shm.h 2006-11-22 11:44:31.000000000 +0100 +@@ -0,0 +1,74 @@ ++/* Copyright (C) 1995-1997, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_SHM_H ++# error "Never include directly; use instead." ++#endif ++ ++#include ++ ++/* Permission flag for shmget. */ ++#ifdef __USE_BSD ++# define SHM_R IPC_R /* read permission for user */ ++# define SHM_W IPC_W /* write permission for user */ ++#endif ++ ++/* Flags for `shmat'. */ ++#define SHM_RDONLY 010000 /* attach read-only else read-write */ ++#define SHM_RND 020000 /* round attach address to SHMLBA */ ++ ++/* Commands for `shmctl'. */ ++#if 0 /* FreeBSD does not have these yet. */ ++#define SHM_LOCK 11 /* lock segment (root only) */ ++#define SHM_UNLOCK 12 /* unlock segment (root only) */ ++#endif ++ ++/* Segment low boundary address multiple. */ ++#define SHMLBA (__getpagesize ()) ++extern int __getpagesize (void) __THROW __attribute__ ((__const__)); ++ ++ ++/* Type to count number of attaches. */ ++typedef unsigned short int shmatt_t; ++ ++/* Data structure describing a set of semaphores. */ ++struct shmid_ds ++ { ++ struct ipc_perm shm_perm; /* operation permission struct */ ++ int shm_segsz; /* size of segment in bytes */ ++ __pid_t shm_lpid; /* pid of last shmop */ ++ __pid_t shm_cpid; /* pid of creator */ ++ shmatt_t shm_nattch; /* number of current attaches */ ++ __time_t shm_atime; /* time of last shmat() */ ++ __time_t shm_dtime; /* time of last shmdt() */ ++ __time_t shm_ctime; /* time of last change by shmctl() */ ++ void *__shm_internal; ++ }; ++ ++#ifdef _KERNEL ++ ++struct shminfo { ++ int shmmax, /* max shared memory segment size (bytes) */ ++ shmmin, /* min shared memory segment size (bytes) */ ++ shmmni, /* max number of shared memory identifiers */ ++ shmseg, /* max shared memory segments per process */ ++ shmall; /* max amount of shared memory (pages) */ ++}; ++ ++#endif ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sigaction.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sigaction.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sigaction.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sigaction.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,76 @@ ++/* Copyright (C) 1991-1992,1996-1998,2001-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SIGNAL_H ++# error "Never include directly; use instead." ++#endif ++ ++/* These definitions match those used by the FreeBSD kernel. */ ++ ++/* Structure describing the action to be taken when a signal arrives. */ ++struct sigaction ++ { ++ /* Signal handler. */ ++#ifdef __USE_POSIX199309 ++ union ++ { ++ /* Used if SA_SIGINFO is not set. */ ++ __sighandler_t sa_handler; ++ /* Used if SA_SIGINFO is set. */ ++ void (*sa_sigaction) (int, siginfo_t *, void *); ++ } ++ __sigaction_handler; ++# define sa_handler __sigaction_handler.sa_handler ++# define sa_sigaction __sigaction_handler.sa_sigaction ++#else ++ __sighandler_t sa_handler; ++#endif ++ ++ /* Special flags. */ ++ int sa_flags; ++ ++ /* Additional set of signals to be blocked. */ ++ __sigset_t sa_mask; ++ }; ++ ++/* Bits in `sa_flags'. */ ++#if defined __USE_UNIX98 || defined __USE_MISC ++# define SA_ONSTACK 0x0001 /* Take signal on signal stack. */ ++# define SA_RESTART 0x0002 /* Restart syscall on signal return. */ ++# define SA_RESETHAND 0x0004 /* Reset to SIG_DFL on entry to handler. */ ++# define SA_NODEFER 0x0010 /* Don't automatically block the signal when ++ its handler is being executed. */ ++# define SA_NOCLDWAIT 0x0020 /* Don't save zombie processes. */ ++# define SA_SIGINFO 0x0040 /* Provide additional info to the handler. */ ++#endif ++#define SA_NOCLDSTOP 0x0008 /* Don't send SIGCHLD when children stop. */ ++ ++#ifdef __USE_MISC ++# define SA_INTERRUPT 0 /* Historical no-op ("not SA_RESTART"). */ ++ ++/* Some aliases for the SA_ constants. */ ++# define SA_NOMASK SA_NODEFER ++# define SA_ONESHOT SA_RESETHAND ++# define SA_STACK SA_ONSTACK ++#endif ++ ++ ++/* Values for the HOW argument to `sigprocmask'. */ ++#define SIG_BLOCK 1 /* Block signals. */ ++#define SIG_UNBLOCK 2 /* Unblock signals. */ ++#define SIG_SETMASK 3 /* Set the set of blocked signals. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/siginfo.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/siginfo.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/siginfo.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/siginfo.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,222 @@ ++/* siginfo_t, sigevent and constants. FreeBSD version. ++ Copyright (C) 1997-1998, 2000-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#if !defined _SIGNAL_H && !defined __need_siginfo_t \ ++ && !defined __need_sigevent_t ++# error "Never include this file directly. Use instead" ++#endif ++ ++#if (!defined __have_sigval_t \ ++ && (defined _SIGNAL_H || defined __need_siginfo_t \ ++ || defined __need_sigevent_t)) ++# define __have_sigval_t 1 ++ ++/* Type for data associated with a signal. */ ++typedef union sigval ++ { ++ int sival_int; ++ void *sival_ptr; ++ } sigval_t; ++#endif ++ ++#if (!defined __have_siginfo_t \ ++ && (defined _SIGNAL_H || defined __need_siginfo_t)) ++# define __have_siginfo_t 1 ++ ++typedef struct siginfo ++ { ++ int si_signo; /* Signal number. */ ++ int si_errno; /* If non-zero, an errno value associated with ++ this signal, as defined in . */ ++ int si_code; /* Signal code. */ ++ int si_pid; /* Sending process ID. */ ++ unsigned int si_uid; /* Real user ID of sending process. */ ++ int si_status; /* Exit value or signal. */ ++ void *si_addr; /* Address of faulting instruction. */ ++ union sigval si_value; /* Signal value. */ ++ long int si_band; /* Band event for SIGPOLL. */ ++ int __si_spare[7]; ++ } siginfo_t; ++ ++ ++/* Values for `si_code'. Positive values are reserved for kernel-generated ++ signals. */ ++enum ++{ ++ SI_ASYNCIO = 0x10004, /* Sent by AIO completion. */ ++# define SI_ASYNCIO SI_ASYNCIO ++ SI_MESGQ = 0x10005, /* Sent by real time mesq state change. */ ++# define SI_MESGQ SI_MESGQ ++ SI_TIMER = 0x10003, /* Sent by timer expiration. */ ++# define SI_TIMER SI_TIMER ++ SI_QUEUE = 0x10002, /* Sent by sigqueue. */ ++# define SI_QUEUE SI_QUEUE ++ SI_USER = 0x10001, /* Sent by kill, sigsend, raise. */ ++# define SI_USER SI_USER ++ SI_UNDEFINED = 0 ++# define SI_UNDEFINED SI_UNDEFINED ++}; ++ ++#if 0 /* XXX These need verification. See . */ ++ ++/* `si_code' values for SIGILL signal. */ ++enum ++{ ++ ILL_ILLOPC = 1, /* Illegal opcode. */ ++# define ILL_ILLOPC ILL_ILLOPC ++ ILL_ILL_OPN, /* Illegal operand. */ ++# define ILL_ILLOPN ILL_ILLOPN ++ ILL_ILLADR, /* Illegal addressing mode. */ ++# define ILL_ILLADR ILL_ILLADR ++ ILL_ILLTRP, /* Illegal trap. */ ++# define ILL_ILLTRP ILL_ILLTRP ++ ILL_PRVOPC, /* Privileged opcode. */ ++# define ILL_PRVOPC ILL_PRVOPC ++ ILL_PRVREG, /* Privileged register. */ ++# define ILL_PRVREG ILL_PRVREG ++ ILL_COPROC, /* Coprocessor error. */ ++# define ILL_COPROC ILL_COPROC ++ ILL_BADSTK /* Internal stack error. */ ++# define ILL_BADSTK ILL_BADSTK ++}; ++ ++/* `si_code' values for SIGFPE signal. */ ++enum ++{ ++ FPE_INTDIV = 1, /* Integer divide by zero. */ ++# define FPE_INTDIV FPE_INTDIV ++ FPE_INTOVF, /* Integer overflow. */ ++# define FPE_INTOVF FPE_INTOVF ++ FPE_FLTDIV, /* Floating point divide by zero. */ ++# define FPE_FLTDIV FPE_FLTDIV ++ FPE_FLTOVF, /* Floating point overflow. */ ++# define FPE_FLTOVF FPE_FLTOVF ++ FPE_FLTUND, /* Floating point underflow. */ ++# define FPE_FLTUND FPE_FLTUND ++ FPE_FLTRES, /* Floating point inexact result. */ ++# define FPE_FLTRES FPE_FLTRES ++ FPE_FLTINV, /* Floating point invalid operation. */ ++# define FPE_FLTINV FPE_FLTINV ++ FPE_FLTSUB /* Subscript out of range. */ ++# define FPE_FLTSUB FPE_FLTSUB ++}; ++ ++/* `si_code' values for SIGSEGV signal. */ ++enum ++{ ++ SEGV_MAPERR = 1, /* Address not mapped to object. */ ++# define SEGV_MAPERR SEGV_MAPERR ++ SEGV_ACCERR /* Invalid permissions for mapped object. */ ++# define SEGV_ACCERR SEGV_ACCERR ++}; ++ ++/* `si_code' values for SIGBUS signal. */ ++enum ++{ ++ BUS_ADRALN = 1, /* Invalid address alignment. */ ++# define BUS_ADRALN BUS_ADRALN ++ BUS_ADRERR, /* Non-existant physical address. */ ++# define BUS_ADRERR BUS_ADRERR ++ BUS_OBJERR /* Object specific hardware error. */ ++# define BUS_OBJERR BUS_OBJERR ++}; ++ ++/* `si_code' values for SIGTRAP signal. */ ++enum ++{ ++ TRAP_BRKPT = 1, /* Process breakpoint. */ ++# define TRAP_BRKPT TRAP_BRKPT ++ TRAP_TRACE /* Process trace trap. */ ++# define TRAP_TRACE TRAP_TRACE ++}; ++ ++#endif ++ ++/* `si_code' values for SIGCHLD signal. */ ++/* XXX These are only used by the waitid() function, not by the kernel. */ ++enum ++{ ++ CLD_EXITED = 1, /* Child has exited. */ ++# define CLD_EXITED CLD_EXITED ++ CLD_KILLED, /* Child was killed. */ ++# define CLD_KILLED CLD_KILLED ++ CLD_DUMPED, /* Child terminated abnormally. */ ++# define CLD_DUMPED CLD_DUMPED ++ CLD_TRAPPED, /* Traced child has trapped. */ ++# define CLD_TRAPPED CLD_TRAPPED ++ CLD_STOPPED, /* Child has stopped. */ ++# define CLD_STOPPED CLD_STOPPED ++ CLD_CONTINUED /* Stopped child has continued. */ ++# define CLD_CONTINUED CLD_CONTINUED ++}; ++ ++#if 0 /* XXX These need verification. See . */ ++ ++/* `si_code' values for SIGPOLL signal. */ ++enum ++{ ++ POLL_IN = 1, /* Data input available. */ ++# define POLL_IN POLL_IN ++ POLL_OUT, /* Output buffers available. */ ++# define POLL_OUT POLL_OUT ++ POLL_MSG, /* Input message available. */ ++# define POLL_MSG POLL_MSG ++ POLL_ERR, /* I/O error. */ ++# define POLL_ERR POLL_ERR ++ POLL_PRI, /* High priority input available. */ ++# define POLL_PRI POLL_PRI ++ POLL_HUP /* Device disconnected. */ ++# define POLL_HUP POLL_HUP ++}; ++ ++#endif ++ ++# undef __need_siginfo_t ++#endif /* !have siginfo_t && (have _SIGNAL_H || need siginfo_t). */ ++ ++ ++#if (defined _SIGNAL_H || defined __need_sigevent_t) \ ++ && !defined __have_sigevent_t ++# define __have_sigevent_t 1 ++ ++/* Structure to transport application-defined values with signals. */ ++ ++typedef struct sigevent ++ { ++ int sigev_notify; ++ int sigev_signo; ++ sigval_t sigev_value; ++ /* Not yet supported by the kernel. */ ++ void (*sigev_notify_function) (sigval_t); /* Function to start. */ ++ void *sigev_notify_attributes; /* Really pthread_attr_t. */ ++ } sigevent_t; ++ ++/* `sigev_notify' values. */ ++enum ++{ ++ SIGEV_SIGNAL = 1, /* Notify via signal. */ ++# define SIGEV_SIGNAL SIGEV_SIGNAL ++ SIGEV_NONE = 0, /* Other notification: meaningless. */ ++# define SIGEV_NONE SIGEV_NONE ++ /* Not yet supported by the kernel. */ ++ SIGEV_THREAD = 2 /* Deliver via thread creation. */ ++# define SIGEV_THREAD SIGEV_THREAD ++}; ++ ++#endif /* have _SIGNAL_H. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/signum.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/signum.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/signum.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/signum.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,71 @@ ++/* Signal number definitions. FreeBSD version. ++ Copyright (C) 1991-1993, 1996, 1998, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifdef _SIGNAL_H ++ ++/* This file defines the fake signal functions and signal ++ number constants for 4.2 or 4.3 BSD-derived Unix system. */ ++ ++/* Fake signal functions. */ ++#define SIG_ERR ((__sighandler_t) -1) /* Error return. */ ++#define SIG_DFL ((__sighandler_t) 0) /* Default action. */ ++#define SIG_IGN ((__sighandler_t) 1) /* Ignore signal. */ ++ ++#define SIG_CATCH ((__sighandler_t) 2) /* FreeBSD specific ? */ ++#define SIG_HOLD ((__sighandler_t) 3) /* Add signal to hold mask. */ ++ ++/* Signals. */ ++#define SIGHUP 1 /* Hangup (POSIX). */ ++#define SIGINT 2 /* Interrupt (ANSI). */ ++#define SIGQUIT 3 /* Quit (POSIX). */ ++#define SIGILL 4 /* Illegal instruction (ANSI). */ ++#define SIGABRT SIGIOT /* Abort (ANSI). */ ++#define SIGTRAP 5 /* Trace trap (POSIX). */ ++#define SIGIOT 6 /* IOT trap (4.2 BSD). */ ++#define SIGEMT 7 /* EMT trap (4.2 BSD). */ ++#define SIGFPE 8 /* Floating-point exception (ANSI). */ ++#define SIGKILL 9 /* Kill, unblockable (POSIX). */ ++#define SIGBUS 10 /* Bus error (4.2 BSD). */ ++#define SIGSEGV 11 /* Segmentation violation (ANSI). */ ++#define SIGSYS 12 /* Bad argument to system call (4.2 BSD). */ ++#define SIGPIPE 13 /* Broken pipe (POSIX). */ ++#define SIGALRM 14 /* Alarm clock (POSIX). */ ++#define SIGTERM 15 /* Termination (ANSI). */ ++#define SIGURG 16 /* Urgent condition on socket (4.2 BSD). */ ++#define SIGSTOP 17 /* Stop, unblockable (POSIX). */ ++#define SIGTSTP 18 /* Keyboard stop (POSIX). */ ++#define SIGCONT 19 /* Continue (POSIX). */ ++#define SIGCHLD 20 /* Child status has changed (POSIX). */ ++#define SIGCLD SIGCHLD /* Same as SIGCHLD (System V). */ ++#define SIGTTIN 21 /* Background read from tty (POSIX). */ ++#define SIGTTOU 22 /* Background write to tty (POSIX). */ ++#define SIGIO 23 /* I/O now possible (4.2 BSD). */ ++#define SIGPOLL SIGIO /* Pollable event occurred (System V). */ ++#define SIGXCPU 24 /* CPU limit exceeded (4.2 BSD). */ ++#define SIGXFSZ 25 /* File size limit exceeded (4.2 BSD). */ ++#define SIGVTALRM 26 /* Virtual alarm clock (4.2 BSD). */ ++#define SIGPROF 27 /* Profiling alarm clock (4.2 BSD). */ ++#define SIGWINCH 28 /* Window size change (4.3 BSD, Sun). */ ++#define SIGINFO 29 /* Information request (4.4 BSD). */ ++#define SIGUSR1 30 /* User-defined signal 1 (POSIX). */ ++#define SIGUSR2 31 /* User-defined signal 2 (POSIX). */ ++ ++#endif /* included. */ ++ ++#define _NSIG 129 /* Biggest signal number + 1. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sigset.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sigset.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sigset.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sigset.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,140 @@ ++/* __sig_atomic_t, __sigset_t, and related definitions. FreeBSD version. ++ Copyright (C) 1994-1996, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SIGSET_H_types ++#define _SIGSET_H_types 1 ++ ++typedef int __sig_atomic_t; ++ ++/* A `sigset_t' has a bit for each signal. */ ++__extension__ ++typedef struct ++ { ++ union ++ { ++ unsigned int __sigbits[4]; ++ unsigned int __bits[4]; ++ }; ++ } __sigset_t; ++ ++#endif /* ! _SIGSET_H_types */ ++ ++/* We only want to define these functions if was actually ++ included; otherwise we were included just to define the types. Since we ++ are namespace-clean, it wouldn't hurt to define extra macros. But ++ trouble can be caused by functions being defined (e.g., any global ++ register vars declared later will cause compilation errors). */ ++ ++#if !defined (_SIGSET_H_fns) && defined (_SIGNAL_H) ++#define _SIGSET_H_fns 1 ++ ++# ifndef _EXTERN_INLINE ++# define _EXTERN_INLINE extern __inline ++# endif ++ ++/* Return a mask that includes SIG only. */ ++# define __sigmask(sig) ((unsigned int) 1 << ((sig) - 1) % 32) ++ ++/* Return the word index for SIG. */ ++# define __sigword(sig) (((sig) - 1) >> 5) ++ ++# if defined __GNUC__ && __GNUC__ >= 2 ++# define __sigemptyset(set) \ ++ (__extension__ ({ sigset_t *__set = (set); \ ++ __set->__sigbits[0] = 0; __set->__sigbits[1] = 0; \ ++ __set->__sigbits[2] = 0; __set->__sigbits[3] = 0; \ ++ 0; })) ++# define __sigfillset(set) \ ++ (__extension__ ({ sigset_t *__set = (set); \ ++ __set->__sigbits[0] = ~0; __set->__sigbits[1] = ~0; \ ++ __set->__sigbits[2] = ~0; __set->__sigbits[3] = ~0; \ ++ 0; })) ++ ++# ifdef __USE_GNU ++/* The POSIX does not specify for handling the whole signal set in one ++ command. This is often wanted and so we define three more functions ++ here. */ ++# define __sigisemptyset(set) \ ++ (__extension__ ({ const sigset_t *__set = (set); \ ++ __set->__sigbits[0] == 0 \ ++ && __set->__sigbits[1] == 0 \ ++ && __set->__sigbits[2] == 0 \ ++ && __set->__sigbits[3] == 0; })) ++# define __sigandset(dest, left, right) \ ++ (__extension__ ({ sigset_t *__dest = (dest); \ ++ const sigset_t *__left = (left); \ ++ const sigset_t *__right = (right); \ ++ __dest->__sigbits[0] = \ ++ __left->__sigbits[0] & __right->__sigbits[0]; \ ++ __dest->__sigbits[1] = \ ++ __left->__sigbits[1] & __right->__sigbits[1]; \ ++ __dest->__sigbits[2] = \ ++ __left->__sigbits[2] & __right->__sigbits[2]; \ ++ __dest->__sigbits[3] = \ ++ __left->__sigbits[3] & __right->__sigbits[3]; \ ++ 0; })) ++# define __sigorset(dest, left, right) \ ++ (__extension__ ({ sigset_t *__dest = (dest); \ ++ const sigset_t *__left = (left); \ ++ const sigset_t *__right = (right); \ ++ __dest->__sigbits[0] = \ ++ __left->__sigbits[0] | __right->__sigbits[0]; \ ++ __dest->__sigbits[1] = \ ++ __left->__sigbits[1] | __right->__sigbits[1]; \ ++ __dest->__sigbits[2] = \ ++ __left->__sigbits[2] | __right->__sigbits[2]; \ ++ __dest->__sigbits[3] = \ ++ __left->__sigbits[3] | __right->__sigbits[3]; \ ++ 0; })) ++# endif ++# endif ++ ++/* These functions needn't check for a bogus signal number -- error ++ checking is done in the non __ versions. */ ++ ++extern int __sigismember (__const __sigset_t *, int); ++extern int __sigaddset (__sigset_t *, int); ++extern int __sigdelset (__sigset_t *, int); ++ ++# ifdef __USE_EXTERN_INLINES ++ ++_EXTERN_INLINE int ++__sigismember (__const __sigset_t *__set, int __sig) ++{ ++ return (__set->__sigbits[__sigword (__sig)] & __sigmask (__sig) ? 1 : 0); ++} ++ ++_EXTERN_INLINE int ++__sigaddset (__sigset_t *__set, int __sig) ++{ ++ __set->__sigbits[__sigword (__sig)] |= __sigmask (__sig); ++ return 0; ++} ++ ++_EXTERN_INLINE int ++__sigdelset (__sigset_t *__set, int __sig) ++{ ++ __set->__sigbits[__sigword (__sig)] &= ~__sigmask (__sig); ++ return 0; ++} ++ ++# endif ++ ++ ++#endif /* ! _SIGSET_H_fns */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/socket.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/socket.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/socket.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/socket.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,381 @@ ++/* System-specific socket constants and types. FreeBSD version. ++ Copyright (C) 1991-1992,1994-1999,2000-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#ifndef __BITS_SOCKET_H ++#define __BITS_SOCKET_H 1 ++ ++#if !defined _SYS_SOCKET_H && !defined _NETINET_IN_H ++# error "Never include directly; use instead." ++#endif ++ ++#define __need_size_t ++#define __need_NULL ++#include ++ ++#include /* XXX Is this allowed? */ ++#include ++ ++/* Type for length arguments in socket calls. */ ++#ifndef __socklen_t_defined ++typedef __socklen_t socklen_t; ++# define __socklen_t_defined ++#endif ++ ++ ++/* Types of sockets. */ ++enum __socket_type ++{ ++ SOCK_STREAM = 1, /* Sequenced, reliable, connection-based ++ byte streams. */ ++#define SOCK_STREAM SOCK_STREAM ++ SOCK_DGRAM = 2, /* Connectionless, unreliable datagrams ++ of fixed maximum length. */ ++#define SOCK_DGRAM SOCK_DGRAM ++ SOCK_RAW = 3, /* Raw protocol interface. */ ++#define SOCK_RAW SOCK_RAW ++ SOCK_RDM = 4, /* Reliably-delivered messages. */ ++#define SOCK_RDM SOCK_RDM ++ SOCK_SEQPACKET = 5 /* Sequenced, reliable, connection-based, ++ datagrams of fixed maximum length. */ ++#define SOCK_SEQPACKET SOCK_SEQPACKET ++}; ++ ++/* Protocol families. */ ++#define PF_UNSPEC 0 /* Unspecified. */ ++#define PF_LOCAL 1 /* Local to host (pipes and file-domain). */ ++#define PF_UNIX PF_LOCAL /* Old BSD name for PF_LOCAL. */ ++#define PF_FILE PF_LOCAL /* POSIX name for PF_LOCAL. */ ++#define PF_INET 2 /* IP protocol family. */ ++#define PF_IMPLINK 3 /* ARPAnet IMP protocol. */ ++#define PF_PUP 4 /* PUP protocols. */ ++#define PF_CHAOS 5 /* MIT Chaos protocols. */ ++#define PF_NS 6 /* Xerox NS protocols. */ ++#define PF_ISO 7 /* ISO protocols. */ ++#define PF_OSI PF_ISO ++#define PF_ECMA 8 /* ECMA protocols. */ ++#define PF_DATAKIT 9 /* AT&T Datakit protocols. */ ++#define PF_CCITT 10 /* CCITT protocols (X.25 et al). */ ++#define PF_SNA 11 /* IBM SNA protocol. */ ++#define PF_DECnet 12 /* DECnet protocols. */ ++#define PF_DLI 13 /* Direct data link interface. */ ++#define PF_LAT 14 /* DEC Local Area Transport protocol. */ ++#define PF_HYLINK 15 /* NSC Hyperchannel protocol. */ ++#define PF_APPLETALK 16 /* Don't use this. */ ++#define PF_ROUTE 17 /* Internal Routing Protocol. */ ++#define PF_LINK 18 /* Link layer interface. */ ++#define PF_XTP 19 /* eXpress Transfer Protocol (no AF). */ ++#define PF_COIP 20 /* Connection-oriented IP, aka ST II. */ ++#define PF_CNT 21 /* Computer Network Technology. */ ++#define PF_RTIP 22 /* Help Identify RTIP packets. **/ ++#define PF_IPX 23 /* Novell Internet Protocol. */ ++#define PF_SIP 24 /* Simple Internet Protocol. */ ++#define PF_PIP 25 /* Help Identify PIP packets. */ ++#define PF_ISDN 26 /* Integrated Services Digital Network. */ ++#define PF_KEY 27 /* Internal key-management function. */ ++#define PF_INET6 28 /* IP version 6. */ ++#define PF_NATM 29 /* Native ATM access. */ ++#define PF_ATM 30 /* ATM. */ ++#define PF_HDRCMPLT 31 /* Used by BPF to not rewrite headers in ++ interface output routine. */ ++#define PF_NETGRAPH 32 /* Netgraph sockets. */ ++#define PF_MAX 33 ++ ++/* Address families. */ ++#define AF_UNSPEC PF_UNSPEC ++#define AF_LOCAL PF_LOCAL ++#define AF_UNIX PF_UNIX ++#define AF_FILE PF_FILE ++#define AF_INET PF_INET ++#define AF_IMPLINK PF_IMPLINK ++#define AF_PUP PF_PUP ++#define AF_CHAOS PF_CHAOS ++#define AF_NS PF_NS ++#define AF_ISO PF_ISO ++#define AF_OSI PF_OSI ++#define AF_ECMA PF_ECMA ++#define AF_DATAKIT PF_DATAKIT ++#define AF_CCITT PF_CCITT ++#define AF_SNA PF_SNA ++#define AF_DECnet PF_DECnet ++#define AF_DLI PF_DLI ++#define AF_LAT PF_LAT ++#define AF_HYLINK PF_HYLINK ++#define AF_APPLETALK PF_APPLETALK ++#define AF_ROUTE PF_ROUTE ++#define AF_LINK PF_LINK ++#define pseudo_AF_XTP PF_XTP ++#define AF_COIP PF_COIP ++#define AF_CNT PF_CNT ++#define pseudo_AF_RTIP PF_RTIP ++#define AF_IPX PF_IPX ++#define AF_SIP PF_SIP ++#define pseudo_AF_PIP PF_PIP ++#define AF_ISDN PF_ISDN ++#define AF_E164 AF_ISDN /* CCITT E.164 recommendation. */ ++#define pseudo_AF_KEY PF_KEY ++#define AF_INET6 PF_INET6 ++#define AF_NATM PF_NATM ++#define AF_ATM PF_ATM ++#define pseudo_AF_HDRCMPLT PF_HDRCMPLT ++#define AF_NETGRAPH PF_NETGRAPH ++#define AF_MAX PF_MAX ++ ++/* Maximum queue length specifiable by listen. */ ++#define SOMAXCONN 128 /* 5 on the original 4.4 BSD. */ ++ ++/* Get the definition of the macro to define the common sockaddr members. */ ++#include ++ ++/* Structure describing a generic socket address. */ ++struct sockaddr ++ { ++ __SOCKADDR_COMMON (sa_); /* Common data: address family and length. */ ++ char sa_data[14]; /* Address data. */ ++ }; ++ ++ ++/* Structure large enough to hold any socket address (with the historical ++ exception of AF_UNIX). We reserve 128 bytes. */ ++#if ULONG_MAX > 0xffffffff ++# define __ss_aligntype __uint64_t ++#else ++# define __ss_aligntype __uint32_t ++#endif ++#define _SS_SIZE 128 ++#define _SS_PADSIZE (_SS_SIZE - (2 * sizeof (__ss_aligntype))) ++ ++struct sockaddr_storage ++ { ++ __SOCKADDR_COMMON (ss_); /* Address family, etc. */ ++ __ss_aligntype __ss_align; /* Force desired alignment. */ ++ char __ss_padding[_SS_PADSIZE]; ++ }; ++ ++ ++/* Bits in the FLAGS argument to `send', `recv', et al. */ ++enum ++ { ++ MSG_OOB = 0x01, /* Process out-of-band data. */ ++#define MSG_OOB MSG_OOB ++ MSG_PEEK = 0x02, /* Peek at incoming messages. */ ++#define MSG_PEEK MSG_PEEK ++ MSG_DONTROUTE = 0x04, /* Don't use local routing. */ ++#define MSG_DONTROUTE MSG_DONTROUTE ++ MSG_EOR = 0x08, /* Data completes record. */ ++#define MSG_EOR MSG_EOR ++ MSG_TRUNC = 0x10, /* Data discarded before delivery. */ ++#define MSG_TRUNC MSG_TRUNC ++ MSG_CTRUNC = 0x20, /* Control data lost before delivery. */ ++#define MSG_CTRUNC MSG_CTRUNC ++ MSG_WAITALL = 0x40, /* Wait for full request or error. */ ++#define MSG_WAITALL MSG_WAITALL ++ MSG_DONTWAIT = 0x80, /* This message should be nonblocking. */ ++#define MSG_DONTWAIT MSG_DONTWAIT ++ MSG_EOF = 0x100, /* Data completes connection. */ ++#define MSG_EOF MSG_EOF ++ MSG_COMPAT = 0x8000,/* Used in sendit(). */ ++#define MSG_COMPAT MSG_COMPAT ++ MSG_NOSIGNAL = 0x20000 /* do not generate SIGPIPE on EOF */ ++#if 0 /* available since FreeBSD 6.0 */ ++#define MSG_NOSIGNAL MSG_NOSIGNAL ++#endif ++ }; ++ ++ ++/* Structure describing messages sent by ++ `sendmsg' and received by `recvmsg'. */ ++struct msghdr ++ { ++ void *msg_name; /* Address to send to/receive from. */ ++ socklen_t msg_namelen; /* Length of address data. */ ++ ++ struct iovec *msg_iov; /* Vector of data to send/receive into. */ ++ int msg_iovlen; /* Number of elements in the vector. */ ++ ++ void *msg_control; /* Ancillary data (eg BSD filedesc passing). */ ++ socklen_t msg_controllen; /* Ancillary data buffer length. */ ++ ++ int msg_flags; /* Flags in received message. */ ++ }; ++ ++/* Structure used for storage of ancillary data object information. */ ++struct cmsghdr ++ { ++ socklen_t cmsg_len; /* Length of data in cmsg_data plus length ++ of cmsghdr structure. */ ++ int cmsg_level; /* Originating protocol. */ ++ int cmsg_type; /* Protocol specific type. */ ++#if (!defined __STRICT_ANSI__ && __GNUC__ >= 2) || __STDC_VERSION__ >= 199901L ++ __extension__ unsigned char __cmsg_data __flexarr __attribute__ ((aligned (__alignof__(size_t)))); /* Ancillary data. */ ++#endif ++ }; ++ ++#define CMSG_NXTHDR(mhdr, cmsg) __cmsg_nxthdr (mhdr, cmsg) ++ ++#define CMSG_FIRSTHDR(mhdr) \ ++ ((size_t) (mhdr)->msg_controllen >= sizeof (struct cmsghdr) \ ++ ? (struct cmsghdr *) (mhdr)->msg_control : (struct cmsghdr *) NULL) ++ ++#define CMSG_ALIGN(len) (((len) + sizeof (size_t) - 1) \ ++ & (size_t) ~(sizeof (size_t) - 1)) ++#define CMSG_SPACE(len) (CMSG_ALIGN (len) \ ++ + CMSG_ALIGN (sizeof (struct cmsghdr))) ++#define CMSG_LEN(len) (CMSG_ALIGN (sizeof (struct cmsghdr)) + (len)) ++ ++/* Ancillary data object manipulation macros. */ ++#if (!defined __STRICT_ANSI__ && __GNUC__ >= 2) || __STDC_VERSION__ >= 199901L ++# define CMSG_DATA(cmsg) ((cmsg)->__cmsg_data) ++#else ++# define CMSG_DATA(cmsg) ((unsigned char *) (cmsg) + CMSG_ALIGN(sizeof (struct cmsghdr))) ++#endif ++ ++extern struct cmsghdr *__cmsg_nxthdr (struct msghdr *__mhdr, ++ struct cmsghdr *__cmsg) __THROW; ++#ifdef __USE_EXTERN_INLINES ++# ifndef _EXTERN_INLINE ++# define _EXTERN_INLINE extern __inline ++# endif ++_EXTERN_INLINE struct cmsghdr * ++__NTH (__cmsg_nxthdr (struct msghdr *__mhdr, struct cmsghdr *__cmsg)) ++{ ++ if ((size_t) __cmsg->cmsg_len < sizeof (struct cmsghdr)) ++ /* The kernel header does this so there may be a reason. */ ++ return 0; ++ ++ __cmsg = (struct cmsghdr *) ((unsigned char *) __cmsg ++ + CMSG_ALIGN (__cmsg->cmsg_len)); ++ if ((unsigned char *) (__cmsg + 1) > ((unsigned char *) __mhdr->msg_control ++ + __mhdr->msg_controllen) ++ || ((unsigned char *) __cmsg + CMSG_ALIGN (__cmsg->cmsg_len) ++ > ((unsigned char *) __mhdr->msg_control + __mhdr->msg_controllen))) ++ /* No more entries. */ ++ return 0; ++ return __cmsg; ++} ++#endif /* Use `extern inline'. */ ++ ++/* Socket level message types. */ ++enum ++ { ++ SCM_RIGHTS = 0x01, /* Access rights (array of int). */ ++#define SCM_RIGHTS SCM_RIGHTS ++ SCM_TIMESTAMP = 0x02, /* Timestamp (struct timeval). */ ++#define SCM_TIMESTAMP SCM_TIMESTAMP ++ SCM_CREDS = 0x03 /* Process creds (struct cmsgcred). */ ++#define SCM_CREDS SCM_CREDS ++ }; ++ ++/* Unfortunately, BSD practice dictates this structure be of fixed size. ++ If there are more than CMGROUP_MAX groups, the list is truncated. ++ (On GNU systems, the `cmcred_euid' field is just the first in the ++ list of effective UIDs.) */ ++#define CMGROUP_MAX 16 ++ ++/* Structure delivered by SCM_CREDS. This describes the identity of the ++ sender of the data simultaneously received on the socket. By BSD ++ convention, this is included only when a sender on a AF_LOCAL socket ++ sends cmsg data of this type and size; the sender's structure is ++ ignored, and the system fills in the various IDs of the sender process. */ ++struct cmsgcred ++ { ++ __pid_t cmcred_pid; ++ __uid_t cmcred_uid; ++ __uid_t cmcred_euid; ++ __gid_t cmcred_gid; ++ short cmcred_ngroups; ++ __gid_t cmcred_groups[CMGROUP_MAX]; ++ }; ++ ++/* Protocol number used to manipulate socket-level options ++ with `getsockopt' and `setsockopt'. */ ++#define SOL_SOCKET 0xffff ++ ++/* Socket-level options for `getsockopt' and `setsockopt'. */ ++enum ++ { ++ SO_DEBUG = 0x0001, /* Record debugging information. */ ++#define SO_DEBUG SO_DEBUG ++ SO_ACCEPTCONN = 0x0002, /* Accept connections on socket. */ ++#define SO_ACCEPTCONN SO_ACCEPTCONN ++ SO_REUSEADDR = 0x0004, /* Allow reuse of local addresses. */ ++#define SO_REUSEADDR SO_REUSEADDR ++ SO_KEEPALIVE = 0x0008, /* Keep connections alive and send ++ SIGPIPE when they die. */ ++#define SO_KEEPALIVE SO_KEEPALIVE ++ SO_DONTROUTE = 0x0010, /* Don't do local routing. */ ++#define SO_DONTROUTE SO_DONTROUTE ++ SO_BROADCAST = 0x0020, /* Allow transmission of ++ broadcast messages. */ ++#define SO_BROADCAST SO_BROADCAST ++ SO_USELOOPBACK = 0x0040, /* Use the software loopback to avoid ++ hardware use when possible. */ ++#define SO_USELOOPBACK SO_USELOOPBACK ++ SO_LINGER = 0x0080, /* Block on close of a reliable ++ socket to transmit pending data. */ ++#define SO_LINGER SO_LINGER ++ SO_OOBINLINE = 0x0100, /* Receive out-of-band data in-band. */ ++#define SO_OOBINLINE SO_OOBINLINE ++ SO_REUSEPORT = 0x0200, /* Allow local address and port reuse. */ ++#define SO_REUSEPORT SO_REUSEPORT ++ SO_TIMESTAMP = 0x0400, /* Timestamp received dgram traffic. */ ++#define SO_TIMESTAMP SO_TIMESTAMP ++ SO_SNDBUF = 0x1001, /* Send buffer size. */ ++#define SO_SNDBUF SO_SNDBUF ++ SO_RCVBUF = 0x1002, /* Receive buffer. */ ++#define SO_RCVBUF SO_RCVBUF ++ SO_SNDLOWAT = 0x1003, /* Send low-water mark. */ ++#define SO_SNDLOWAT SO_SNDLOWAT ++ SO_RCVLOWAT = 0x1004, /* Receive low-water mark. */ ++#define SO_RCVLOWAT SO_RCVLOWAT ++ SO_SNDTIMEO = 0x1005, /* Send timeout. */ ++#define SO_SNDTIMEO SO_SNDTIMEO ++ SO_RCVTIMEO = 0x1006, /* Receive timeout. */ ++#define SO_RCVTIMEO SO_RCVTIMEO ++ SO_ERROR = 0x1007, /* Get and clear error status. */ ++#define SO_ERROR SO_ERROR ++ SO_STYLE = 0x1008, /* Get socket connection style. */ ++#define SO_STYLE SO_STYLE ++ SO_TYPE = SO_STYLE /* Compatible name for SO_STYLE. */ ++#define SO_TYPE SO_TYPE ++ }; ++ ++/* Structure used to manipulate the SO_LINGER option. */ ++struct linger ++ { ++ int l_onoff; /* Nonzero to linger on close. */ ++ int l_linger; /* Time to linger. */ ++ }; ++ ++ ++#ifdef __USE_BSD ++ ++struct sf_hdtr; ++ ++__BEGIN_DECLS ++ ++extern int bsd_sendfile (int __in_fd, int __out_sock, ++ __off_t __in_offset, size_t __nbytes, ++ struct sf_hdtr *__hdtr, __off_t *__sockbytes, ++ int __flags) __THROW; ++ ++__END_DECLS ++ ++#endif /* Use BSD */ ++ ++#endif /* bits/socket.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/stat.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/stat.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/stat.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/stat.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,198 @@ ++/* Copyright (C) 1992, 1996-1997, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_STAT_H ++# error "Never include directly; use instead." ++#endif ++ ++/* This structure needs to be defined in accordance with the ++ implementation of __stat, __fstat, and __lstat. */ ++ ++#include ++ ++/* Versions of the 'struct stat' data structure. */ ++#define _STAT_VER_ostat 0 /* 'struct ostat' in /usr/src/sys/sys/stat.h */ ++#define _STAT_VER_stat 1 /* 'struct stat' in /usr/src/sys/sys/stat.h */ ++#define _STAT_VER_nstat 2 /* 'struct nstat' in /usr/src/sys/sys/stat.h */ ++#define _STAT_VER_gstat 3 /* glibc's 'struct stat' without LFS */ ++/* By default we use _STAT_VER_gstat, but we support also _STAT_VER_stat */ ++#define _STAT_VER _STAT_VER_gstat ++ ++/* Structure describing file characteristics. */ ++struct stat ++ { ++ __dev_t st_dev; /* Device containing the file. */ ++#ifndef __USE_FILE_OFFSET64 ++ __ino_t st_ino; /* File serial number. */ ++#else ++ __ino64_t st_ino; /* File serial number. */ ++#endif ++ ++ __uint32_t st_mode; /* File mode. */ ++ __uint32_t st_nlink; /* Link count. */ ++ ++ __uid_t st_uid; /* User ID of the file's owner. */ ++ __gid_t st_gid; /* Group ID of the file's group. */ ++ ++ __dev_t st_rdev; /* Device number, if device. */ ++ ++#ifdef __USE_MISC ++ /* Nanosecond resolution timestamps are stored in a format ++ equivalent to 'struct timespec'. This is the type used ++ whenever possible but the Unix namespace rules do not allow the ++ identifier 'timespec' to appear in the header. ++ Therefore we have to handle the use of this header in strictly ++ standard-compliant sources special. */ ++ struct timespec st_atim; /* Time of last access. */ ++ struct timespec st_mtim; /* Time of last modification. */ ++ struct timespec st_ctim; /* Time of last status change. */ ++# define st_atime st_atim.tv_sec /* Backward compatibility. */ ++# define st_mtime st_mtim.tv_sec ++# define st_ctime st_ctim.tv_sec ++#else ++ __time_t st_atime; /* Time of last access. */ ++ long int st_atimensec; /* Nanoseconds of last access. */ ++ __time_t st_mtime; /* Time of last modification. */ ++ long int st_mtimensec; /* Nanoseconds of last modification. */ ++ __time_t st_ctime; /* Time of last status change. */ ++ long int st_ctimensec; /* Nanoseconds of last status change. */ ++#endif ++ ++ __off_t st_size; /* Size of file, in bytes. */ ++ ++ __blkcnt_t st_blocks; /* Number of 512-byte blocks allocated. */ ++ ++ __blksize_t st_blksize; /* Optimal block size for I/O. */ ++#define _STATBUF_ST_BLKSIZE /* Tell code we have this member. */ ++ ++ __uint32_t st_flags; /* User defined flags. */ ++ ++ __uint32_t st_gen; /* Generation number. */ ++ ++ __quad_t __unused1[2]; ++ }; ++ ++#ifdef __USE_LARGEFILE64 ++struct stat64 ++ { ++ __dev_t st_dev; /* Device containing the file. */ ++ __ino64_t st_ino; /* File serial number. */ ++ ++ __uint32_t st_mode; /* File mode. */ ++ __uint32_t st_nlink; /* Link count. */ ++ ++ __uid_t st_uid; /* User ID of the file's owner. */ ++ __gid_t st_gid; /* Group ID of the file's group. */ ++ ++ __dev_t st_rdev; /* Device number, if device. */ ++ ++#ifdef __USE_MISC ++ /* Nanosecond resolution timestamps are stored in a format ++ equivalent to 'struct timespec'. This is the type used ++ whenever possible but the Unix namespace rules do not allow the ++ identifier 'timespec' to appear in the header. ++ Therefore we have to handle the use of this header in strictly ++ standard-compliant sources special. */ ++ struct timespec st_atim; /* Time of last access. */ ++ struct timespec st_mtim; /* Time of last modification. */ ++ struct timespec st_ctim; /* Time of last status change. */ ++# define st_atime st_atim.tv_sec /* Backward compatibility. */ ++# define st_mtime st_mtim.tv_sec ++# define st_ctime st_ctim.tv_sec ++#else ++ __time_t st_atime; /* Time of last access. */ ++ long int st_atimensec; /* Nanoseconds of last access. */ ++ __time_t st_mtime; /* Time of last modification. */ ++ long int st_mtimensec; /* Nanoseconds of last modification. */ ++ __time_t st_ctime; /* Time of last status change. */ ++ long int st_ctimensec; /* Nanoseconds of last status change. */ ++#endif ++ ++ __off_t st_size; /* Size of file, in bytes. */ ++ ++ __blkcnt_t st_blocks; /* Number of 512-byte blocks allocated. */ ++ ++ __blksize_t st_blksize; /* Optimal block size for I/O. */ ++ ++ __uint32_t st_flags; /* User defined flags. */ ++ ++ __uint32_t st_gen; /* Generation number. */ ++ ++ __quad_t __unused1[2]; ++ }; ++#endif ++ ++/* Encoding of the file mode. These are the standard Unix values, ++ but POSIX.1 does not specify what values should be used. */ ++ ++#define __S_IFMT 0170000 /* These bits determine file type. */ ++ ++/* File types. */ ++#define __S_IFDIR 0040000 /* Directory. */ ++#define __S_IFCHR 0020000 /* Character device. */ ++#define __S_IFBLK 0060000 /* Block device. */ ++#define __S_IFREG 0100000 /* Regular file. */ ++#define __S_IFLNK 0120000 /* Symbolic link. */ ++#define __S_IFSOCK 0140000 /* Socket. */ ++#define __S_IFWHT 0160000 /* Whiteout. */ ++#define __S_IFIFO 0010000 /* FIFO. */ ++ ++/* POSIX.1b objects. */ ++#define __S_TYPEISMQ(buf) 0 ++#define __S_TYPEISSEM(buf) 0 ++#define __S_TYPEISSHM(buf) 0 ++ ++/* Protection bits. */ ++ ++#define __S_ISUID 04000 /* Set user ID on execution. */ ++#define __S_ISGID 02000 /* Set group ID on execution. */ ++#define __S_ISVTX 01000 /* Save swapped text after use (sticky). */ ++#define __S_IREAD 0400 /* Read by owner. */ ++#define __S_IWRITE 0200 /* Write by owner. */ ++#define __S_IEXEC 0100 /* Execute by owner. */ ++ ++#ifdef __USE_BSD ++ ++/* Definitions of flags stored in file flags word. */ ++ ++/* Super-user and owner changeable flags. */ ++# define UF_SETTABLE 0x0000ffff /* mask of owner changeable flags */ ++# define UF_NODUMP 0x00000001 /* do not dump file */ ++# define UF_IMMUTABLE 0x00000002 /* file may not be changed */ ++# define UF_APPEND 0x00000004 /* writes to file may only append */ ++# define UF_OPAQUE 0x00000008 /* directory is opaque wrt. union */ ++# define UF_NOUNLINK 0x00000010 /* file may not be removed or renamed */ ++ ++/* Super-user changeable flags. */ ++# define SF_SETTABLE 0xffff0000 /* mask of superuser changeable flags */ ++# define SF_ARCHIVED 0x00010000 /* file is archived */ ++# define SF_IMMUTABLE 0x00020000 /* file may not be changed */ ++# define SF_APPEND 0x00040000 /* writes to file may only append */ ++# define SF_NOUNLINK 0x00100000 /* file may not be removed or renamed */ ++ ++__BEGIN_DECLS ++ ++/* Set file flags for FILE to FLAGS. */ ++extern int chflags (__const char *__file, unsigned long int __flags) __THROW; ++ ++/* Set file flags of the file referred to by FD to FLAGS. */ ++extern int fchflags (int __fd, unsigned long int __flags) __THROW; ++ ++__END_DECLS ++ ++#endif /* __USE_BSD */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/stat16.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/stat16.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/stat16.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/stat16.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,56 @@ ++/* Copyright (C) 2002, 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* This structure corresponds to the standard FreeBSD 'struct stat' ++ (i.e. _STAT_VER_stat), and is used by the stat() system call family. */ ++ ++struct stat16 ++ { ++ __dev_t st_dev; /* Device containing the file. */ ++ __ino_t st_ino; /* File serial number. */ ++ ++ __uint16_t st_mode; /* File mode. */ ++ __uint16_t st_nlink; /* Link count. */ ++ ++ __uid_t st_uid; /* User ID of the file's owner. */ ++ __gid_t st_gid; /* Group ID of the file's group. */ ++ ++ __dev_t st_rdev; /* Device number, if device. */ ++ ++ struct timespec st_atimespec; /* time of last access */ ++ struct timespec st_mtimespec; /* time of last data modification */ ++ struct timespec st_ctimespec; /* time of last file status change */ ++ ++ __off_t st_size; /* Size of file, in bytes. */ ++ ++ __blkcnt_t st_blocks; /* Number of 512-byte blocks allocated. */ ++ ++ __blksize_t st_blksize; /* Optimal block size for I/O. */ ++ ++ __uint32_t st_flags; /* User defined flags. */ ++ ++ __uint32_t st_gen; /* Generation number. */ ++ ++ __uint32_t __unused1; ++ ++ long int st_birthtime; /* Time of file creation. */ ++ long int st_birthtimensec; /* Nanoseconds of file creation. */ ++ ++#define _BIRTH_PADSIZE (2*(8 - sizeof (long))) ++ char __birth_padding[_BIRTH_PADSIZE]; ++ }; +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/statfs.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/statfs.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/statfs.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/statfs.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,91 @@ ++/* Definition of `struct statfs', information about a filesystem. ++ Copyright (C) 1996-1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _BITS_STATFS_H ++#define _BITS_STATFS_H 1 ++ ++#if !defined _SYS_STATFS_H && !defined _SYS_MOUNT_H ++# error "Never include directly; use instead." ++#endif ++ ++#include ++ ++struct statfs ++ { ++ unsigned long f_version; ++ unsigned long f_bsize; ++ unsigned long f_iosize; ++#ifndef __USE_FILE_OFFSET64 ++ __fsblkcnt_t f_blocks; ++ __fsblkcnt_t f_bfree; ++ __fsblkcnt_t f_bavail; ++ __fsfilcnt_t f_files; ++ __fsfilcnt_t f_ffree; ++#else ++ __fsblkcnt64_t f_blocks; ++ __fsblkcnt64_t f_bfree; ++ __fsblkcnt64_t f_bavail; ++ __fsfilcnt64_t f_files; ++ __fsfilcnt64_t f_ffree; ++#endif ++ __fsid_t f_fsid; ++ __uid_t f_owner; ++ int f_type; ++ int f_flags; ++ unsigned long int f_syncwrites; ++ unsigned long int f_asyncwrites; ++ char f_fstypename[16]; ++ char f_mntonname[80]; ++ unsigned long int f_syncreads; ++ unsigned long int f_asyncreads; ++ unsigned short f_namemax; ++ char f_mntfromname[80]; ++ short __unused3; ++ long __unused4[2]; ++ }; ++ ++#ifdef __USE_LARGEFILE64 ++struct statfs64 ++ { ++ unsigned long f_version; ++ unsigned long f_bsize; ++ unsigned long f_iosize; ++ __fsblkcnt64_t f_blocks; ++ __fsblkcnt64_t f_bfree; ++ __fsblkcnt64_t f_bavail; ++ __fsfilcnt64_t f_files; ++ __fsfilcnt64_t f_ffree; ++ __fsid_t f_fsid; ++ __uid_t f_owner; ++ int f_type; ++ int f_flags; ++ unsigned long int f_syncwrites; ++ unsigned long int f_asyncwrites; ++ char f_fstypename[16]; ++ char f_mntonname[80]; ++ unsigned long int f_syncreads; ++ unsigned long int f_asyncreads; ++ unsigned short f_namemax; ++ char f_mntfromname[80]; ++ short __unused3; ++ long __unused4[2]; ++ }; ++#endif ++ ++#endif /* _BITS_STATFS_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/statvfs.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/statvfs.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/statvfs.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/statvfs.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,95 @@ ++/* Definition of `struct statvfs', information about a filesystem. ++ Copyright (C) 1998, 2000-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_STATVFS_H ++# error "Never include directly; use instead." ++#endif ++ ++#include ++ ++#if __WORDSIZE == 32 ++#define _STATVFSBUF_F_UNUSED ++#endif ++ ++struct statvfs ++ { ++ unsigned long int f_bsize; ++ unsigned long int f_frsize; ++#ifndef __USE_FILE_OFFSET64 ++ __fsblkcnt_t f_blocks; ++ __fsblkcnt_t f_bfree; ++ __fsblkcnt_t f_bavail; ++ __fsfilcnt_t f_files; ++ __fsfilcnt_t f_ffree; ++ __fsfilcnt_t f_favail; ++#else ++ __fsblkcnt64_t f_blocks; ++ __fsblkcnt64_t f_bfree; ++ __fsblkcnt64_t f_bavail; ++ __fsfilcnt64_t f_files; ++ __fsfilcnt64_t f_ffree; ++ __fsfilcnt64_t f_favail; ++#endif ++ unsigned long int f_fsid; ++#ifdef _STATVFSBUF_F_UNUSED ++ int __f_unused; ++#endif ++ unsigned long int f_flag; ++ unsigned long int f_namemax; ++ unsigned int f_spare[6]; ++ }; ++ ++#ifdef __USE_LARGEFILE64 ++struct statvfs64 ++ { ++ unsigned long int f_bsize; ++ unsigned long int f_frsize; ++ __fsblkcnt64_t f_blocks; ++ __fsblkcnt64_t f_bfree; ++ __fsblkcnt64_t f_bavail; ++ __fsfilcnt64_t f_files; ++ __fsfilcnt64_t f_ffree; ++ __fsfilcnt64_t f_favail; ++ unsigned long int f_fsid; ++#ifdef _STATVFSBUF_F_UNUSED ++ int __f_unused; ++#endif ++ unsigned long int f_flag; ++ unsigned long int f_namemax; ++ unsigned int f_spare[6]; ++ }; ++#endif ++ ++/* Definitions for the flag in `f_flag'. */ ++enum ++{ ++ ST_RDONLY = 1, /* Mount read-only. */ ++#define ST_RDONLY ST_RDONLY ++ ST_NOSUID = 2 /* Ignore suid and sgid bits. */ ++#define ST_NOSUID ST_NOSUID ++#ifdef __USE_GNU ++ , ++ ST_NODEV = 4, /* Disallow access to device special files. */ ++# define ST_NODEV ST_NODEV ++ ST_NOEXEC = 8, /* Disallow program execution. */ ++# define ST_NOEXEC ST_NOEXEC ++ ST_SYNCHRONOUS = 16 /* Writes are synced at once. */ ++# define ST_SYNCHRONOUS ST_SYNCHRONOUS ++#endif /* Use GNU. */ ++}; +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sys_errlist.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sys_errlist.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sys_errlist.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/sys_errlist.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,33 @@ ++/* Declare sys_errlist and sys_nerr, or don't. Compatibility (do) version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _STDIO_H ++# error "Never include directly; use instead." ++#endif ++ ++/* sys_errlist and sys_nerr are deprecated. Use strerror instead. */ ++ ++#ifdef __USE_BSD ++extern int sys_nerr; ++extern __const char *__const sys_errlist[]; ++#endif ++#ifdef __USE_GNU ++extern int _sys_nerr; ++extern __const char *__const _sys_errlist[]; ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/syslog-path.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/syslog-path.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/syslog-path.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/syslog-path.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,31 @@ ++/* -- _PATH_LOG definition ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_SYSLOG_H ++# error "Never include this file directly. Use instead" ++#endif ++ ++#ifndef _BITS_SYSLOG_PATH_H ++#define _BITS_SYSLOG_PATH_H 1 ++ ++/* On kFreeBSD, named pipes are not allowed in /dev (devfs), so we pick this ++ alternate path. */ ++#define _PATH_LOG "/var/run/log" ++ ++#endif /* bits/syslog-path.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/termios.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/termios.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/termios.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/termios.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,258 @@ ++/* termios type and macro definitions. FreeBSD version. ++ Copyright (C) 1993-1994,1996-1997,1999,2001-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _TERMIOS_H ++# error "Never include directly; use instead." ++#endif ++ ++/* These macros are also defined in some files (with ++ numerically identical values), but this serves to shut up cpp's ++ complaining. */ ++#ifdef __USE_BSD ++ ++# ifdef MDMBUF ++# undef MDMBUF ++# endif ++# ifdef FLUSHO ++# undef FLUSHO ++# endif ++# ifdef PENDIN ++# undef PENDIN ++# endif ++ ++#endif /* __USE_BSD */ ++ ++#ifdef ECHO ++# undef ECHO ++#endif ++#ifdef TOSTOP ++# undef TOSTOP ++#endif ++#ifdef NOFLSH ++# undef NOFLSH ++#endif ++ ++ ++/* Type of terminal control flag masks. */ ++typedef unsigned int tcflag_t; ++ ++/* Type of control characters. */ ++typedef unsigned char cc_t; ++ ++/* Type of baud rate specifiers. */ ++typedef unsigned int speed_t; ++ ++/* Terminal control structure. */ ++struct termios ++{ ++ /* Input modes. */ ++ tcflag_t c_iflag; ++#define IGNBRK (1 << 0) /* Ignore break condition. */ ++#define BRKINT (1 << 1) /* Signal interrupt on break. */ ++#define IGNPAR (1 << 2) /* Ignore characters with parity errors. */ ++#define PARMRK (1 << 3) /* Mark parity and framing errors. */ ++#define INPCK (1 << 4) /* Enable input parity check. */ ++#define ISTRIP (1 << 5) /* Strip 8th bit off characters. */ ++#define INLCR (1 << 6) /* Map NL to CR on input. */ ++#define IGNCR (1 << 7) /* Ignore CR. */ ++#define ICRNL (1 << 8) /* Map CR to NL on input. */ ++#define IXON (1 << 9) /* Enable start/stop output control. */ ++#define IXOFF (1 << 10) /* Enable start/stop input control. */ ++#ifdef __USE_BSD ++# define IXANY (1 << 11) /* Any character will restart after stop. */ ++# define IMAXBEL (1 << 13) /* Ring bell when input queue is full. */ ++#endif ++ ++ /* Output modes. */ ++ tcflag_t c_oflag; ++#define OPOST (1 << 0) /* Perform output processing. */ ++#ifdef __USE_BSD ++# define ONLCR (1 << 1) /* Map NL to CR-NL on output. */ ++# define OXTABS (1 << 2) /* Expand tabs to spaces. */ ++# define ONOEOT (1 << 3) /* Discard EOT (^D) on output. */ ++#endif ++ ++ /* Control modes. */ ++ tcflag_t c_cflag; ++#ifdef __USE_BSD ++# define CIGNORE (1 << 0) /* Ignore these control flags. */ ++#endif ++#define CSIZE (CS5|CS6|CS7|CS8) /* Number of bits per byte (mask). */ ++#define CS5 (0 << 8) /* 5 bits per byte. */ ++#define CS6 (1 << 8) /* 6 bits per byte. */ ++#define CS7 (2 << 8) /* 7 bits per byte. */ ++#define CS8 (3 << 8) /* 8 bits per byte. */ ++#define CSTOPB (1 << 10) /* Two stop bits instead of one. */ ++#define CREAD (1 << 11) /* Enable receiver. */ ++#define PARENB (1 << 12) /* Parity enable. */ ++#define PARODD (1 << 13) /* Odd parity instead of even. */ ++#define HUPCL (1 << 14) /* Hang up on last close. */ ++#define CLOCAL (1 << 15) /* Ignore modem status lines. */ ++#ifdef __USE_BSD ++# define CCTS_OFLOW (1 << 16) /* CTS flow control of output. */ ++# define CRTS_IFLOW (1 << 17) /* RTS flow control of input. */ ++# define CRTSCTS (CCTS_OFLOW|CRTS_IFLOW) /* CTS/RTS flow control. */ ++# define CDTR_IFLOW (1 << 18) /* DTR flow control of input. */ ++# define CDSR_OFLOW (1 << 19) /* DSR flow control of output. */ ++# define CCAR_OFLOW (1 << 20) /* DCD flow control of output. */ ++# define MDMBUF (1 << 20) /* Carrier flow control of output. */ ++#endif ++ ++ /* Local modes. */ ++ tcflag_t c_lflag; ++#ifdef __USE_BSD ++# define ECHOKE (1 << 0) /* Visual erase for KILL. */ ++#endif ++#define _ECHOE (1 << 1) /* Visual erase for ERASE. */ ++#define ECHOE _ECHOE ++#define _ECHOK (1 << 2) /* Echo NL after KILL. */ ++#define ECHOK _ECHOK ++#define _ECHO (1 << 3) /* Enable echo. */ ++#define ECHO _ECHO ++#define _ECHONL (1 << 4) /* Echo NL even if ECHO is off. */ ++#define ECHONL _ECHONL ++#ifdef __USE_BSD ++# define ECHOPRT (1 << 5) /* Hardcopy visual erase. */ ++# define ECHOCTL (1 << 6) /* Echo control characters as ^X. */ ++#endif ++#define _ISIG (1 << 7) /* Enable signals. */ ++#define ISIG _ISIG ++#define _ICANON (1 << 8) /* Do erase and kill processing. */ ++#define ICANON _ICANON ++#ifdef __USE_BSD ++# define ALTWERASE (1 << 9) /* Alternate WERASE algorithm. */ ++#endif ++#define _IEXTEN (1 << 10) /* Enable DISCARD and LNEXT. */ ++#define IEXTEN _IEXTEN ++#define _EXTPROC (1 << 11) /* External processing. */ ++#define EXTPROC _EXTPROC ++#define _TOSTOP (1 << 22) /* Send SIGTTOU for background output. */ ++#define TOSTOP _TOSTOP ++#ifdef __USE_BSD ++# define FLUSHO (1 << 23) /* Output being flushed (state). */ ++# define NOKERNINFO (1 << 25) /* Disable VSTATUS. */ ++# define PENDIN (1 << 29) /* Retype pending input (state). */ ++#endif ++#define _NOFLSH (1 << 31) /* Disable flush after interrupt. */ ++#define NOFLSH _NOFLSH ++ ++ /* Control characters. */ ++#define VEOF 0 /* End-of-file character [ICANON]. */ ++#define VEOL 1 /* End-of-line character [ICANON]. */ ++#ifdef __USE_BSD ++# define VEOL2 2 /* Second EOL character [ICANON]. */ ++#endif ++#define VERASE 3 /* Erase character [ICANON]. */ ++#ifdef __USE_BSD ++# define VWERASE 4 /* Word-erase character [ICANON]. */ ++#endif ++#define VKILL 5 /* Kill-line character [ICANON]. */ ++#ifdef __USE_BSD ++# define VREPRINT 6 /* Reprint-line character [ICANON]. */ ++#endif ++#define VINTR 8 /* Interrupt character [ISIG]. */ ++#define VQUIT 9 /* Quit character [ISIG]. */ ++#define VSUSP 10 /* Suspend character [ISIG]. */ ++#ifdef __USE_BSD ++# define VDSUSP 11 /* Delayed suspend character [ISIG]. */ ++#endif ++#define VSTART 12 /* Start (X-ON) character [IXON, IXOFF]. */ ++#define VSTOP 13 /* Stop (X-OFF) character [IXON, IXOFF]. */ ++#ifdef __USE_BSD ++# define VLNEXT 14 /* Literal-next character [IEXTEN]. */ ++# define VDISCARD 15 /* Discard character [IEXTEN]. */ ++#endif ++#define VMIN 16 /* Minimum number of bytes read at once [!ICANON]. */ ++#define VTIME 17 /* Time-out value (tenths of a second) [!ICANON]. */ ++#ifdef __USE_BSD ++# define VSTATUS 18 /* Status character [ICANON]. */ ++#endif ++#define NCCS 20 ++ cc_t c_cc[NCCS]; ++ ++ /* Input and output baud rates. */ ++#ifdef __USE_BSD ++ speed_t c_ispeed, c_ospeed; ++# define __ispeed c_ispeed ++# define __ospeed c_ospeed ++#else ++ speed_t __ispeed, __ospeed; ++#endif ++#define B0 0 /* Hang up. */ ++#define B50 50 /* 50 baud. */ ++#define B75 75 /* 75 baud. */ ++#define B110 110 /* 110 baud. */ ++#define B134 134 /* 134.5 baud. */ ++#define B150 150 /* 150 baud. */ ++#define B200 200 /* 200 baud. */ ++#define B300 300 /* 300 baud. */ ++#define B600 600 /* 600 baud. */ ++#define B1200 1200 /* 1200 baud. */ ++#define B1800 1800 /* 1800 baud. */ ++#define B2400 2400 /* 2400 baud. */ ++#define B4800 4800 /* 4800 baud. */ ++#define B9600 9600 /* 9600 baud. */ ++#define B19200 19200 /* 19200 baud. */ ++#define B38400 38400 /* 38400 baud. */ ++#define B76800 76800 ++#ifdef __USE_MISC ++# define EXTA 19200 ++# define EXTB 38400 ++#endif ++#define B7200 7200 ++#define B14400 14400 ++#define B28800 28800 ++#define B57600 57600 ++#define B115200 115200 ++#define B230400 230400 ++#define B460800 460800 ++#define B500000 500000 ++#define B576000 576000 ++#define B921600 921600 ++#define B1000000 1000000 ++#define B1152000 1152000 ++#define B1500000 1500000 ++#define B2000000 2000000 ++#define B2500000 2500000 ++#define B3000000 3000000 ++#define B3500000 3500000 ++#define B4000000 4000000 ++}; ++ ++#define _IOT_termios /* Hurd ioctl type field. */ \ ++ _IOT (_IOTS (tcflag_t), 4, _IOTS (cc_t), NCCS, _IOTS (speed_t), 2) ++ ++/* Values for the OPTIONAL_ACTIONS argument to `tcsetattr'. */ ++#define TCSANOW 0 /* Change immediately. */ ++#define TCSADRAIN 1 /* Change when pending output is written. */ ++#define TCSAFLUSH 2 /* Flush pending input before changing. */ ++#ifdef __USE_BSD ++# define TCSASOFT 0x10 /* Flag: Don't alter hardware state. */ ++#endif ++ ++/* Values for the QUEUE_SELECTOR argument to `tcflush'. */ ++#define TCIFLUSH 1 /* Discard data received but not yet read. */ ++#define TCOFLUSH 2 /* Discard data written but not yet sent. */ ++#define TCIOFLUSH 3 /* Discard all pending data. */ ++ ++/* Values for the ACTION argument to `tcflow'. */ ++#define TCOOFF 1 /* Suspend output. */ ++#define TCOON 2 /* Restart suspended output. */ ++#define TCIOFF 3 /* Send a STOP character. */ ++#define TCION 4 /* Send a START character. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/typesizes.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/typesizes.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/typesizes.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/typesizes.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,66 @@ ++/* bits/typesizes.h -- underlying types for *_t. kFreeBSD version. ++ Copyright (C) 2002, 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _BITS_TYPES_H ++# error "Never include directly; use instead." ++#endif ++ ++#ifndef _BITS_TYPESIZES_H ++#define _BITS_TYPESIZES_H 1 ++ ++/* See for the meaning of these macros. This file exists so ++ that need not vary across different GNU platforms. */ ++ ++#define __DEV_T_TYPE __U32_TYPE ++#define __UID_T_TYPE __U32_TYPE ++#define __GID_T_TYPE __U32_TYPE ++#define __INO_T_TYPE __U32_TYPE ++#define __INO64_T_TYPE __UQUAD_TYPE ++#define __MODE_T_TYPE __U16_TYPE ++#define __NLINK_T_TYPE __U16_TYPE ++#define __OFF_T_TYPE __SQUAD_TYPE ++#define __OFF64_T_TYPE __SQUAD_TYPE ++#define __PID_T_TYPE __S32_TYPE ++#define __RLIM_T_TYPE __SQUAD_TYPE ++#define __RLIM64_T_TYPE __SQUAD_TYPE ++#define __BLKCNT_T_TYPE __SQUAD_TYPE ++#define __BLKCNT64_T_TYPE __SQUAD_TYPE ++#define __FSBLKCNT_T_TYPE __ULONGWORD_TYPE ++#define __FSBLKCNT64_T_TYPE __UQUAD_TYPE ++#define __FSFILCNT_T_TYPE __ULONGWORD_TYPE ++#define __FSFILCNT64_T_TYPE __UQUAD_TYPE ++#define __ID_T_TYPE __U32_TYPE ++#define __CLOCK_T_TYPE __S32_TYPE ++#define __TIME_T_TYPE __SLONGWORD_TYPE ++#define __USECONDS_T_TYPE __U32_TYPE ++#define __SUSECONDS_T_TYPE __SLONGWORD_TYPE ++#define __DADDR_T_TYPE __S32_TYPE ++#define __SWBLK_T_TYPE __S32_TYPE ++#define __KEY_T_TYPE __SLONGWORD_TYPE ++#define __CLOCKID_T_TYPE __S32_TYPE ++#define __TIMER_T_TYPE __S32_TYPE ++#define __BLKSIZE_T_TYPE __U32_TYPE ++#define __FSID_T_TYPE struct { int __val[2]; } ++#define __SSIZE_T_TYPE __SWORD_TYPE ++ ++/* Number of descriptors that can fit in an `fd_set'. */ ++#define __FD_SETSIZE 1024 ++ ++ ++#endif /* bits/typesizes.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/uio.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/uio.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/uio.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/uio.h 2006-11-22 11:44:31.000000000 +0100 +@@ -0,0 +1,49 @@ ++/* Copyright (C) 1996-1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_UIO_H ++# error "Never include directly; use instead." ++#endif ++ ++ ++/* `struct iovec' -- Structure describing a section of memory. */ ++ ++struct iovec ++{ ++ /* Starting address. */ ++ __ptr_t iov_base; ++ /* Length in bytes. */ ++ size_t iov_len; ++}; ++ ++/* Maximum number of 'struct iovec's that can be passed to a readv() or ++ writev() system call. For larger arrays of 'struct iovec', the libc ++ uses a single read() or write() call to guarantee atomicity. */ ++#define UIO_MAXIOV 1024 ++ ++#ifdef __USE_BSD ++enum uio_rw { UIO_READ, UIO_WRITE }; ++ ++/* Segment flag values. */ ++enum uio_seg { ++ UIO_USERSPACE, /* from user data space */ ++ UIO_SYSSPACE, /* from system space */ ++ UIO_NOCOPY /* don't copy, already in object */ ++}; ++#endif ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/utsname.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/utsname.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/utsname.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/utsname.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,27 @@ ++/* Copyright (C) 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_UTSNAME_H ++# error "Never include directly; use instead." ++#endif ++ ++/* Length of the entries in 'struct utsname' is 32. */ ++#define _UTSNAME_LENGTH 32 ++ ++/* But the version entry is longer. */ ++#define _UTSNAME_VERSION_LENGTH 256 +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/waitflags.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/waitflags.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/waitflags.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/bits/waitflags.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,36 @@ ++/* Definitions of flag bits for `waitpid' et al. ++ Copyright (C) 1992, 1996-1997, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#if !defined _SYS_WAIT_H && !defined _STDLIB_H ++# error "Never include directly; use instead." ++#endif ++ ++ ++/* Bits in the third argument to `waitpid'. */ ++#define WNOHANG 1 /* Don't block waiting. */ ++#define WUNTRACED 2 /* Report status of stopped children. */ ++ ++/* Bits in the fourth argument to `waitid'. */ ++#define WSTOPPED 2 /* Report stopped child (same as WUNTRACED). */ ++#define WCONTINUED 4 /* Report continued child. */ ++ ++#define __WCLONE 0x80000000 /* Wait for cloned process. */ ++#ifdef __USE_BSD ++# define WLINUXCLONE __WCLONE /* FreeBSD name for __WCLONE. */ ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/brk.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/brk.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/brk.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/brk.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,51 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Robert Millan ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++#ifndef SYS_break ++#define SYS_break SYS_obreak ++#endif ++ ++extern void _end; ++ ++/* sbrk.c expects this. */ ++void *__curbrk = &_end; ++ ++/* Set the end of the process's data space to ADDR. ++ Return 0 if successful, -1 if not. */ ++int ++__brk (addr) ++ void *addr; ++{ ++ if (addr < &_end) ++ return 0; ++ ++ if (syscall (SYS_break, addr) == -1) ++ { ++ __set_errno (ENOMEM); ++ return -1; ++ } ++ ++ __curbrk = addr; ++ return 0; ++} ++weak_alias (__brk, brk) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/check_fds.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/check_fds.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/check_fds.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/check_fds.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++void __libc_check_standard_fds (void) {;} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/check_pf.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/check_pf.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/check_pf.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/check_pf.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_getres.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_getres.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_getres.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_getres.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,32 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++int __syscall_clock_getres(clockid_t clock_id, struct timespec *tp); ++ ++# define SYSDEP_GETRES \ ++ case CLOCK_REALTIME: \ ++ case CLOCK_MONOTONIC: \ ++ retval = INLINE_SYSCALL (clock_getres, 2, clock_id, res); \ ++ break ++ ++/* We handled the REALTIME clock here. */ ++# define HANDLED_REALTIME 1 ++ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_gettime.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_gettime.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_gettime.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_gettime.c 2006-10-19 23:21:13.000000000 +0200 +@@ -0,0 +1,32 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include "kernel-posix-cpu-timers.h" ++ ++int __syscall_clock_gettime(clockid_t clock_id, struct timespec *tp); ++ ++# define SYSDEP_GETTIME \ ++ case CLOCK_REALTIME: \ ++ case CLOCK_MONOTONIC: \ ++ retval = INLINE_SYSCALL (clock_gettime, 2, clock_id, tp); \ ++ break ++ ++/* We handled the REALTIME clock here. */ ++# define HANDLED_REALTIME 1 ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_settime.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_settime.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_settime.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/clock_settime.c 2006-10-19 23:21:18.000000000 +0200 +@@ -0,0 +1,31 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include "kernel-posix-cpu-timers.h" ++ ++int __syscall_clock_settime(clockid_t clock_id, const struct timespec *tp); ++ ++# define SYSDEP_SETTIME \ ++ case CLOCK_REALTIME: \ ++ retval = INLINE_SYSCALL (clock_settime, 2, clock_id, tp); \ ++ break ++/* We handled the REALTIME clock here. */ ++# define HANDLED_REALTIME 1 ++ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/clone.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/clone.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/clone.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/clone.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,105 @@ ++/* Create a thread. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#define __clone __no_broken_clone_decl ++#include ++#include ++#include ++#include ++#include ++#undef __clone ++ ++/* __start_thread (flags, child_stack, fn, arg) ++ is roughly equivalent to ++ ++ int retval = __rfork (flags); ++ if (retval == 0) ++ { ++ // Here we are in the child thread. ++ %stackpointer = child_stack; ++ _exit (fn (arg)); ++ } ++ return retval; ++ ++ but it cannot be done in portable C because it must access fn and arg ++ after having replaced the stack pointer. */ ++ ++extern int __start_thread (int flags, void *child_stack, ++ int (*fn) (void *), void *arg); ++ ++int __clone (int (*fn) (void *), void *child_stack, int flags, void *arg) ++{ ++ int rfork_flags = RFPROC; ++ ++ if (fn == NULL || child_stack == NULL) ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++ ++ /* This implementation of clone() does not support all Linux flags. */ ++ if (flags & ~(CSIGNAL | CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND ++ | CLONE_VFORK | CLONE_SYSVSEM)) ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++ ++ if ((flags & CSIGNAL) != 0 && (flags & CSIGNAL) != SIGCHLD) ++ { ++ if ((flags & CSIGNAL) & ~RFTHPNMASK) ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++ rfork_flags |= (RFLINUXTHPN | ((flags & CSIGNAL) << RFTHPNSHIFT)); ++ } ++ ++ if (flags & CLONE_VM) ++ rfork_flags |= RFMEM; ++ ++ if (flags & CLONE_FS) ++ /* Sharing the filesystem related info (umask, cwd, root dir) ++ is not supported by rfork. Ignore this; let's hope programs ++ will set their umask and cwd before spawning threads. */ ++ ; ++ ++ if (flags & CLONE_SYSVSEM) ++ /* Ignore this; it has been introduced into linuxthreads in post 2.4 glibc */ ++ ; ++ ++ if (!(flags & CLONE_FILES)) ++ rfork_flags |= RFFDG; ++ ++ if (flags & CLONE_SIGHAND) ++ { ++ rfork_flags |= RFSIGSHARE; ++ /* Also set the undocumented flag RFTHREAD. It has the effect that when ++ the thread leader exits, all threads belonging to it are killed. */ ++ rfork_flags |= RFTHREAD; ++ } ++ ++ if (flags & CLONE_VFORK) ++ rfork_flags |= RFPPWAIT; ++ ++ return __start_thread (rfork_flags, child_stack, fn, arg); ++} ++ ++weak_alias (__clone, clone) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/configure ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/configure +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/configure 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/configure 2007-02-08 21:21:06.000000000 +0100 +@@ -0,0 +1,342 @@ ++# This file is generated from configure.in by Autoconf. DO NOT EDIT! ++ # Local configure fragment for sysdeps/unix/bsd/bsd4.4/kfreebsd. ++ ++case "$machine" in ++ x86_64*) ++ echo "Adding extra sysnames for kfreebsd/x86_64/elf" ++ sysnames="ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/elf $sysnames" ++ ;; ++esac ++ ++# The kFreeBSD headers can be found in ++# /usr/src/sys/ ++# Check whether this directory is available. ++if test -z "$sysheaders" && ++ test "x$cross_compiling" = xno && ++ test -d /usr/src/sys/ ; then ++ sysheaders="/usr/src/sys/" ++ ccheaders=`$CC -print-file-name=include` ++ SYSINCLUDES="-I $sysheaders" ++fi ++ ++# Don't bother trying to generate any glue code to be compatible with the ++# existing system library, because we are the only system library. ++inhibit_glue=yes ++ ++if test -n "$sysheaders"; then ++ OLD_CPPFLAGS=$CPPFLAGS ++ CPPFLAGS="$CPPFLAGS $SYSINCLUDES" ++fi ++ ++ ++echo "$as_me:$LINENO: checking for egrep" >&5 ++echo $ECHO_N "checking for egrep... $ECHO_C" >&6 ++if test "${ac_cv_prog_egrep+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ if echo a | (grep -E '(a|b)') >/dev/null 2>&1 ++ then ac_cv_prog_egrep='grep -E' ++ else ac_cv_prog_egrep='egrep' ++ fi ++fi ++echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 ++echo "${ECHO_T}$ac_cv_prog_egrep" >&6 ++ EGREP=$ac_cv_prog_egrep ++ ++ ++echo "$as_me:$LINENO: checking installed kFreeBSD kernel header files" >&5 ++echo $ECHO_N "checking installed kFreeBSD kernel header files... $ECHO_C" >&6 ++if test "${libc_cv_kfreebsd540+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++#include ++#if !defined(__FreeBSD_kernel_version) && defined(__FreeBSD_version) ++#define __FreeBSD_kernel_version __FreeBSD_version ++#endif ++#if !defined __FreeBSD_kernel_version || __FreeBSD_kernel_version < (5 *10000+ 4 *100+ 0) /* 5.4.0 */ ++eat flaming death ++#endif ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "eat flaming death" >/dev/null 2>&1; then ++ libc_cv_kfreebsd540='TOO OLD!' ++else ++ libc_cv_kfreebsd540='5.4.0 or later' ++fi ++rm -f conftest* ++ ++fi ++echo "$as_me:$LINENO: result: $libc_cv_kfreebsd540" >&5 ++echo "${ECHO_T}$libc_cv_kfreebsd540" >&6 ++if test "$libc_cv_kfreebsd540" != '5.4.0 or later'; then ++ { { echo "$as_me:$LINENO: error: GNU libc requires kernel header files from ++kFreeBSD 5.4.0 or later to be installed before configuring. ++The kernel header files are found usually in /usr/src/sys/; make sure ++these directories use files from kFreeBSD 5.4.0 or later. ++This check uses , so ++make sure that file was built correctly when installing the kernel header ++files. To use kernel headers not from /usr/src/sys/, use the ++configure option --with-headers." >&5 ++echo "$as_me: error: GNU libc requires kernel header files from ++kFreeBSD 5.4.0 or later to be installed before configuring. ++The kernel header files are found usually in /usr/src/sys/; make sure ++these directories use files from kFreeBSD 5.4.0 or later. ++This check uses , so ++make sure that file was built correctly when installing the kernel header ++files. To use kernel headers not from /usr/src/sys/, use the ++configure option --with-headers." >&2;} ++ { (exit 1); exit 1; }; } ++fi ++ ++# Check whether --enable-compatible-utmp or --disable-compatible-utmp was given. ++if test "${enable_compatible_utmp+set}" = set; then ++ enableval="$enable_compatible_utmp" ++ enable_utmp_compat=$enableval ++else ++ enable_utmp_compat=no ++fi; ++if test "$enable_utmp_compat" = no; then ++ utmp_subdir=utmp-utmpx ++else ++ utmp_subdir=utmp-compat ++fi ++sysnames="$sysnames sysdeps/unix/bsd/bsd4.4/kfreebsd/$utmp_subdir" ++ ++# If the user gave a minimal version number test whether the available ++# kernel headers are young enough. Additionally we have minimal ++# kernel versions for some architectures. If a previous configure fragment ++# set arch_minimum_kernel already, let that override our defaults here. ++# Note that we presume such a fragment has set libc_cv_gcc_unwind_find_fde ++# if appropriate too. ++test -n "$arch_minimum_kernel" || ++case "$machine" in ++ i386*) ++ libc_cv_gcc_unwind_find_fde=yes ++ arch_minimum_kernel=5.4.0 ++ ;; ++ x86_64*) ++ arch_minimum_kernel=5.4.0 ++ ;; ++ *) ++ arch_minimum_kernel=5.4.0 ++ ;; ++esac ++if test -n "$minimum_kernel"; then ++ ++ user_version=$((`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 10000 + \2 \* 100 + \3/'`)) ++ arch_version=$((`echo "$arch_minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 10000 + \2 \* 100 + \3/'`)) ++ ++ if test $user_version -lt $arch_version; then ++ { echo "$as_me:$LINENO: WARNING: minimum kernel version reset to $arch_minimum_kernel" >&5 ++echo "$as_me: WARNING: minimum kernel version reset to $arch_minimum_kernel" >&2;} ++ minimum_kernel=$arch_minimum_kernel ++ fi ++else ++ if test $arch_minimum_kernel != '5.4.0'; then ++ minimum_kernel=$arch_minimum_kernel ++ fi ++fi ++ ++if test -n "$minimum_kernel"; then ++ echo "$as_me:$LINENO: checking for kernel header at least $minimum_kernel" >&5 ++echo $ECHO_N "checking for kernel header at least $minimum_kernel... $ECHO_C" >&6 ++ decnum=`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/(\1 * 10000 + \2 * 100 + \3)/'`; ++ abinum=`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1,\2,\3/'`; ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++#include ++#if !defined(__FreeBSD_kernel_version) && defined(__FreeBSD_version) ++#define __FreeBSD_kernel_version __FreeBSD_version ++#endif ++#if __FreeBSD_kernel_version < $decnum ++eat flaming death ++#endif ++_ACEOF ++if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | ++ $EGREP "eat flaming death" >/dev/null 2>&1; then ++ libc_minimum_kernel='too old!' ++else ++ libc_minimum_kernel=ok ++fi ++rm -f conftest* ++ ++ echo "$as_me:$LINENO: result: $libc_minimum_kernel" >&5 ++echo "${ECHO_T}$libc_minimum_kernel" >&6 ++ if test "$libc_minimum_kernel" = ok; then ++ cat >>confdefs.h <<_ACEOF ++#define __KFREEBSD_KERNEL_VERSION $decnum ++_ACEOF ++ ++ cat >>confdefs.h <<_ACEOF ++#define __ABI_TAG_VERSION $abinum ++_ACEOF ++ ++ else ++ { { echo "$as_me:$LINENO: error: *** The available kernel headers are older than the requested ++*** compatible kernel version" >&5 ++echo "$as_me: error: *** The available kernel headers are older than the requested ++*** compatible kernel version" >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++fi ++ ++if test -n "$sysheaders"; then ++ CPPFLAGS=$OLD_CPPFLAGS ++fi ++# The Linux filesystem standard prescribes where to place "essential" ++# files. I.e., when the installation prefix is "/usr" we have to place ++# shared library objects and the configuration files on the root partition ++# in /lib and /etc. ++case "$prefix" in ++/usr | /usr/) ++ # 64-bit libraries on bi-arch platforms go in /lib64 instead of /lib ++ case $machine in ++ sparc/sparc64 | x86_64 | powerpc/powerpc64 | s390/s390-64 | \ ++ mips/mips64/n64/* ) ++ libc_cv_slibdir="/lib64" ++ if test "$libdir" = '${exec_prefix}/lib'; then ++ libdir='${exec_prefix}/lib64'; ++ # Locale data can be shared between 32bit and 64bit libraries ++ libc_cv_localedir='${exec_prefix}/lib/locale' ++ fi ++ ;; ++ mips/mips64/n32/* ) ++ libc_cv_slibdir="/lib32" ++ if test "$libdir" = '${exec_prefix}/lib'; then ++ libdir='${exec_prefix}/lib32'; ++ # Locale data can be shared between 32bit and 64bit libraries ++ libc_cv_localedir='${exec_prefix}/lib/locale' ++ fi ++ ;; ++ *) ++ libc_cv_slibdir="/lib" ++ ;; ++ esac ++ # Allow the user to override the path with --sysconfdir ++ if test $sysconfdir = '${prefix}/etc'; then ++ libc_cv_sysconfdir=/etc ++ else ++ libc_cv_sysconfdir=$sysconfdir ++ fi ++ libc_cv_rootsbindir="/sbin" ++ ;; ++esac ++ ++ ++# Put exception handling support into libc, so that not every shared ++# library needs to include it. ++# FIXME: Does not work yet. ++libc_cv_gcc_unwind_find_fde=no ++ ++ ++# Under kFreeBSD the LinuxThreads or (may be later) NPTL add-on should be available. ++case $add_ons in ++ # Only one of the add-ons should be available. ++ *linuxthreads*nptl*|*nptl*linuxthreads*) ++ echo "\ ++*** LinuxThreads and NPTL add-ons are both available. Only one must be used." ++ exit 1 ++ ;; ++ # It is available. Good. ++ *linuxthreads*) ++ linuxthreads_missing= ++ ;; ++ *nptl*) ++ linuxthreads_missing= ++ ;; ++ *) ++ linuxthreads_missing=yes ++ ;; ++esac ++ ++if test "$linuxthreads_missing"; then ++ if test $enable_sanity = yes; then ++ echo "\ ++*** On GNU/kFreeBSD systems it is normal to compile GNU libc with the ++*** \`linuxthreads' add-on. Without that, the library will be ++*** incompatible with normal GNU/kFreeBSD systems. ++*** If you really mean to not use this add-on, run configure again ++*** using the extra parameter \`--disable-sanity-checks'." ++ exit 1 ++ else ++ echo "\ ++*** WARNING: Are you sure you do not want to use the \`linuxthreads' ++*** add-on?" ++ fi ++fi ++ ++if test "$prefix" = "/usr/local" -o "$prefix" = "/usr/local/" -o "$prefix" = "NONE"; then ++ if test $enable_sanity = yes; then ++ echo "\ ++*** On GNU/kFreeBSD systems the GNU C Library should not be installed into ++*** /usr/local since this might make your system totally unusable. ++*** We strongly advise to use a different prefix. For details read the FAQ. ++*** If you really mean to do this, run configure again using the extra ++*** parameter \`--disable-sanity-checks'." ++ exit 1 ++ else ++ echo "\ ++*** WARNING: Do you really want to install the GNU C Library into /usr/local? ++*** This might make your system totally unusable, for details read the FAQ." ++ fi ++fi ++ ++ ++# One kFreeBSD we use ldconfig. ++use_ldconfig=yes ++ ++# We need some extensions to the `ldd' script. ++case "$machine" in ++ x86_64*) ++ ldd_rewrite_script=../ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldd-rewrite.sed ++ ;; ++ *) ++ ;; ++esac ++ ++ ++if test $host = $build; then ++ # If $prefix/include/{net,scsi} are symlinks, make install will ++ # clobber what they're linked to (probably a kernel tree). ++ # test -L ought to work on all Linux boxes. ++ if test "x$prefix" != xNONE; then ++ ac_prefix=$prefix ++ else ++ ac_prefix=$ac_default_prefix ++ fi ++ echo "$as_me:$LINENO: checking for symlinks in ${ac_prefix}/include" >&5 ++echo $ECHO_N "checking for symlinks in ${ac_prefix}/include... $ECHO_C" >&6 ++ ac_message= ++ if test -L ${ac_prefix}/include/net; then ++ ac_message="$ac_message ++ ${ac_prefix}/include/net is a symlink" ++ fi ++ if test -L ${ac_prefix}/include/scsi; then ++ ac_message="$ac_message ++ ${ac_prefix}/include/scsi is a symlink" ++ fi ++ if test -n "$ac_message"; then ++ { { echo "$as_me:$LINENO: error: $ac_message ++\`make install' will destroy the target of the link(s). ++Delete the links and re-run configure, or better still, move the entire ++${ac_prefix}/include directory out of the way." >&5 ++echo "$as_me: error: $ac_message ++\`make install' will destroy the target of the link(s). ++Delete the links and re-run configure, or better still, move the entire ++${ac_prefix}/include directory out of the way." >&2;} ++ { (exit 1); exit 1; }; } ++ else ++ echo "$as_me:$LINENO: result: ok" >&5 ++echo "${ECHO_T}ok" >&6 ++ fi ++fi +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/configure.in ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/configure.in +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/configure.in 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/configure.in 2007-02-08 21:21:06.000000000 +0100 +@@ -0,0 +1,268 @@ ++GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory. ++# Local configure fragment for sysdeps/unix/bsd/bsd4.4/kfreebsd. ++ ++case "$machine" in ++ x86_64*) ++ echo "Adding extra sysnames for kfreebsd/x86_64/elf" ++ sysnames="ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/elf $sysnames" ++ ;; ++esac ++ ++# The kFreeBSD headers can be found in ++# /usr/src/sys/ ++# Check whether this directory is available. ++if test -z "$sysheaders" && ++ test "x$cross_compiling" = xno && ++ test -d /usr/src/sys/ ; then ++ sysheaders="/usr/src/sys/" ++ ccheaders=`$CC -print-file-name=include` ++ dnl We don't have to use -nostdinc. We just want one more directory ++ dnl to be used. ++ SYSINCLUDES="-I $sysheaders" ++fi ++ ++# Don't bother trying to generate any glue code to be compatible with the ++# existing system library, because we are the only system library. ++inhibit_glue=yes ++ ++define([LIBC_KFREEBSD_VERSION],[5.4.0])dnl ++if test -n "$sysheaders"; then ++ OLD_CPPFLAGS=$CPPFLAGS ++ CPPFLAGS="$CPPFLAGS $SYSINCLUDES" ++fi ++define([libc_cv_kfreebsdVER], [libc_cv_kfreebsd]patsubst(LIBC_KFREEBSD_VERSION,[\.]))dnl ++AC_CACHE_CHECK(installed kFreeBSD kernel header files, libc_cv_kfreebsdVER, [dnl ++AC_EGREP_CPP([eat flaming death], [#include ++#if !defined(__FreeBSD_kernel_version) && defined(__FreeBSD_version) ++#define __FreeBSD_kernel_version __FreeBSD_version ++#endif ++#if !defined __FreeBSD_kernel_version || __FreeBSD_kernel_version < ]dnl ++patsubst(LIBC_KFREEBSD_VERSION,[^\([^.]*\)\.\([^.]*\)\.\([^.]*\)$],dnl ++[ (\1 *10000+ \2 *100+ \3) /* \1.\2.\3 */])[ ++eat flaming death ++#endif], ++ libc_cv_kfreebsdVER='TOO OLD!', ++ libc_cv_kfreebsdVER='LIBC_KFREEBSD_VERSION or later')]) ++if test "$libc_cv_kfreebsdVER" != 'LIBC_KFREEBSD_VERSION or later'; then ++ AC_MSG_ERROR([GNU libc requires kernel header files from ++kFreeBSD LIBC_KFREEBSD_VERSION or later to be installed before configuring. ++The kernel header files are found usually in /usr/src/sys/; make sure ++these directories use files from kFreeBSD LIBC_KFREEBSD_VERSION or later. ++This check uses , so ++make sure that file was built correctly when installing the kernel header ++files. To use kernel headers not from /usr/src/sys/, use the ++configure option --with-headers.]) ++fi ++ ++AC_ARG_ENABLE(compatible-utmp, dnl ++[ --disable-compatible-utmp use a struct utmp which is the same as struct ++ utmpx, as on kFreeBSD, but incompatible with FreeBSD], ++ enable_utmp_compat=$enableval, enable_utmp_compat=no) ++if test "$enable_utmp_compat" = no; then ++ utmp_subdir=utmp-utmpx ++else ++ utmp_subdir=utmp-compat ++fi ++sysnames="$sysnames sysdeps/unix/bsd/bsd4.4/kfreebsd/$utmp_subdir" ++ ++# If the user gave a minimal version number test whether the available ++# kernel headers are young enough. Additionally we have minimal ++# kernel versions for some architectures. If a previous configure fragment ++# set arch_minimum_kernel already, let that override our defaults here. ++# Note that we presume such a fragment has set libc_cv_gcc_unwind_find_fde ++# if appropriate too. ++test -n "$arch_minimum_kernel" || ++case "$machine" in ++ i386*) ++ libc_cv_gcc_unwind_find_fde=yes ++ arch_minimum_kernel=5.4.0 ++ ;; ++ x86_64*) ++ arch_minimum_kernel=5.4.0 ++ ;; ++ *) ++ arch_minimum_kernel=5.4.0 ++ ;; ++esac ++if test -n "$minimum_kernel"; then ++ changequote(,) ++ user_version=$((`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 10000 + \2 \* 100 + \3/'`)) ++ arch_version=$((`echo "$arch_minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 10000 + \2 \* 100 + \3/'`)) ++ changequote([,]) ++ if test $user_version -lt $arch_version; then ++ AC_MSG_WARN([minimum kernel version reset to $arch_minimum_kernel]) ++ minimum_kernel=$arch_minimum_kernel ++ fi ++else ++ if test $arch_minimum_kernel != '5.4.0'; then ++ minimum_kernel=$arch_minimum_kernel ++ fi ++fi ++ ++if test -n "$minimum_kernel"; then ++ AC_MSG_CHECKING(for kernel header at least $minimum_kernel) ++changequote(,)dnl ++ decnum=`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/(\1 * 10000 + \2 * 100 + \3)/'`; ++ abinum=`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1,\2,\3/'`; ++changequote([,])dnl ++ AC_EGREP_CPP([eat flaming death], [#include ++#if !defined(__FreeBSD_kernel_version) && defined(__FreeBSD_version) ++#define __FreeBSD_kernel_version __FreeBSD_version ++#endif ++#if __FreeBSD_kernel_version < $decnum ++eat flaming death ++#endif], libc_minimum_kernel='too old!', libc_minimum_kernel=ok) ++ AC_MSG_RESULT($libc_minimum_kernel) ++ if test "$libc_minimum_kernel" = ok; then ++ AC_DEFINE_UNQUOTED(__KFREEBSD_KERNEL_VERSION, $decnum) ++ AC_DEFINE_UNQUOTED(__ABI_TAG_VERSION, $abinum) ++ else ++ AC_MSG_ERROR([*** The available kernel headers are older than the requested ++*** compatible kernel version]) ++ fi ++fi ++ ++if test -n "$sysheaders"; then ++ CPPFLAGS=$OLD_CPPFLAGS ++fi ++# The Linux filesystem standard prescribes where to place "essential" ++# files. I.e., when the installation prefix is "/usr" we have to place ++# shared library objects and the configuration files on the root partition ++# in /lib and /etc. ++case "$prefix" in ++/usr | /usr/) ++ # 64-bit libraries on bi-arch platforms go in /lib64 instead of /lib ++ case $machine in ++ sparc/sparc64 | x86_64 | powerpc/powerpc64 | s390/s390-64 | \ ++ mips/mips64/n64/* ) ++ libc_cv_slibdir="/lib64" ++ if test "$libdir" = '${exec_prefix}/lib'; then ++ libdir='${exec_prefix}/lib64'; ++ # Locale data can be shared between 32bit and 64bit libraries ++ libc_cv_localedir='${exec_prefix}/lib/locale' ++ fi ++ ;; ++ mips/mips64/n32/* ) ++ libc_cv_slibdir="/lib32" ++ if test "$libdir" = '${exec_prefix}/lib'; then ++ libdir='${exec_prefix}/lib32'; ++ # Locale data can be shared between 32bit and 64bit libraries ++ libc_cv_localedir='${exec_prefix}/lib/locale' ++ fi ++ ;; ++ *) ++ libc_cv_slibdir="/lib" ++ ;; ++ esac ++ # Allow the user to override the path with --sysconfdir ++ if test $sysconfdir = '${prefix}/etc'; then ++ libc_cv_sysconfdir=/etc ++ else ++ libc_cv_sysconfdir=$sysconfdir ++ fi ++ libc_cv_rootsbindir="/sbin" ++ ;; ++esac ++ ++ ++# Put exception handling support into libc, so that not every shared ++# library needs to include it. ++# FIXME: Does not work yet. ++libc_cv_gcc_unwind_find_fde=no ++ ++ ++# Under kFreeBSD the LinuxThreads or (may be later) NPTL add-on should be available. ++case $add_ons in ++ # Only one of the add-ons should be available. ++ *linuxthreads*nptl*|*nptl*linuxthreads*) ++ echo "\ ++*** LinuxThreads and NPTL add-ons are both available. Only one must be used." ++ exit 1 ++ ;; ++ # It is available. Good. ++ *linuxthreads*) ++ linuxthreads_missing= ++ ;; ++ *nptl*) ++ linuxthreads_missing= ++ ;; ++ *) ++ linuxthreads_missing=yes ++ ;; ++esac ++ ++if test "$linuxthreads_missing"; then ++ if test $enable_sanity = yes; then ++ echo "\ ++*** On GNU/kFreeBSD systems it is normal to compile GNU libc with the ++*** \`linuxthreads' add-on. Without that, the library will be ++*** incompatible with normal GNU/kFreeBSD systems. ++*** If you really mean to not use this add-on, run configure again ++*** using the extra parameter \`--disable-sanity-checks'." ++ exit 1 ++ else ++ echo "\ ++*** WARNING: Are you sure you do not want to use the \`linuxthreads' ++*** add-on?" ++ fi ++fi ++ ++if test "$prefix" = "/usr/local" -o "$prefix" = "/usr/local/" -o "$prefix" = "NONE"; then ++ if test $enable_sanity = yes; then ++ echo "\ ++*** On GNU/kFreeBSD systems the GNU C Library should not be installed into ++*** /usr/local since this might make your system totally unusable. ++*** We strongly advise to use a different prefix. For details read the FAQ. ++*** If you really mean to do this, run configure again using the extra ++*** parameter \`--disable-sanity-checks'." ++ exit 1 ++ else ++ echo "\ ++*** WARNING: Do you really want to install the GNU C Library into /usr/local? ++*** This might make your system totally unusable, for details read the FAQ." ++ fi ++fi ++ ++ ++# One kFreeBSD we use ldconfig. ++use_ldconfig=yes ++ ++# We need some extensions to the `ldd' script. ++changequote(,) ++case "$machine" in ++ x86_64*) ++ ldd_rewrite_script=../ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldd-rewrite.sed ++ ;; ++ *) ++ ;; ++esac ++changequote([,]) ++ ++if test $host = $build; then ++ # If $prefix/include/{net,scsi} are symlinks, make install will ++ # clobber what they're linked to (probably a kernel tree). ++ # test -L ought to work on all Linux boxes. ++ if test "x$prefix" != xNONE; then ++ ac_prefix=$prefix ++ else ++ ac_prefix=$ac_default_prefix ++ fi ++ AC_MSG_CHECKING([for symlinks in ${ac_prefix}/include]) ++ ac_message= ++ if test -L ${ac_prefix}/include/net; then ++ ac_message="$ac_message ++ ${ac_prefix}/include/net is a symlink" ++ fi ++ if test -L ${ac_prefix}/include/scsi; then ++ ac_message="$ac_message ++ ${ac_prefix}/include/scsi is a symlink" ++ fi ++ if test -n "$ac_message"; then ++ AC_MSG_ERROR([$ac_message ++\`make install' will destroy the target of the link(s). ++Delete the links and re-run configure, or better still, move the entire ++${ac_prefix}/include directory out of the way.]) ++ else ++ AC_MSG_RESULT(ok) ++ fi ++fi +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/connect.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/connect.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/connect.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/connect.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,68 @@ ++/* Copyright (C) 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Aurelien Jarno , 2005. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++/* According to POSIX.1-2004 the len argument specifies the length of ++ the sockaddr structure pointed to by the addrarg argument. However ++ the FreeBSD kernel waits the actual length of the address stored ++ there. The code below emulate this behaviour. */ ++ ++extern int __libc_sa_len (sa_family_t __af); ++extern int __libc_sa_len_internal (sa_family_t __af); ++ ++extern int __syscall_connect (int fd, __CONST_SOCKADDR_ARG addr, ++ socklen_t addrlen); ++ ++/* Open a connection on socket FD to peer at ADDR (which LEN bytes long). ++ For connectionless socket types, just set the default address to send to ++ and the only address from which to accept transmissions. ++ Return 0 on success, -1 for errors. */ ++ ++int ++__libc_connect (int fd, __CONST_SOCKADDR_ARG addr, socklen_t addrlen) ++{ ++ socklen_t new_addrlen; ++ ++#ifndef NOT_IN_libc ++ new_addrlen = INTUSE(__libc_sa_len) ((addr.__sockaddr__)->sa_family); ++#else ++ new_addrlen = __libc_sa_len ((addr.__sockaddr__)->sa_family); ++#endif ++ ++ /* Only allow a smaller size, otherwise it could lead to ++ stack corruption */ ++ if (new_addrlen < addrlen) ++ addrlen = new_addrlen; ++ ++ /* We pass 3 arguments. */ ++ if (SINGLE_THREAD_P) ++ return INLINE_SYSCALL (connect, 3, fd, addr, addrlen); ++ ++ int oldtype = LIBC_CANCEL_ASYNC (); ++ int result = INLINE_SYSCALL (connect, 3, fd, addr, addrlen); ++ LIBC_CANCEL_RESET (oldtype); ++ return result; ++} ++ ++strong_alias (__libc_connect, __connect_internal) ++weak_alias (__libc_connect, __connect) ++weak_alias (__libc_connect, connect) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-execstack.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-execstack.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-execstack.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-execstack.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,58 @@ ++/* Stack executability handling for GNU dynamic linker. Linux version. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++ ++extern int __stack_prot attribute_relro attribute_hidden; ++ ++ ++int ++internal_function ++_dl_make_stack_executable (void **stack_endp) ++{ ++ /* This gives us the highest/lowest page that needs to be changed. */ ++ uintptr_t page = ((uintptr_t) *stack_endp ++ & -(intptr_t) GLRO(dl_pagesize)); ++ ++ /* Challenge the caller. */ ++ if (__builtin_expect (__check_caller (RETURN_ADDRESS (0), ++ allow_ldso|allow_libpthread) != 0, 0) ++ || __builtin_expect (*stack_endp != __libc_stack_end, 0)) ++ return EPERM; ++ ++ if (__builtin_expect (__mprotect ((void *) page, GLRO(dl_pagesize), ++ __stack_prot) != 0, 0)) ++ return errno; ++ ++ /* Clear the address. */ ++ *stack_endp = NULL; ++ ++ /* Remember that we changed the permission. */ ++ GL(dl_stack_flags) |= PF_X; ++ ++ return 0; ++} ++rtld_hidden_def (_dl_make_stack_executable) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-machine.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-machine.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-machine.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-machine.h 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,31 @@ ++/* Dynamic linker magic for glibc on FreeBSD kernel. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Aurelien Jarno , 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* Contrary to most kernels which use ELFOSABI_SYSV aka ELFOSABI_NONE, ++ FreeBSD uses ELFOSABI_FREEBSD for the OSABI field. */ ++ ++# define VALID_ELF_OSABI(osabi) (osabi == ELFOSABI_FREEBSD) ++# define VALID_ELF_ABIVERSION(ver) (ver == 0) ++# define VALID_ELF_HEADER(hdr,exp,size) \ ++ memcmp (hdr,exp,size-2) == 0 \ ++ && VALID_ELF_OSABI (hdr[EI_OSABI]) \ ++ && VALID_ELF_ABIVERSION (hdr[EI_ABIVERSION]) ++ ++#include_next +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-osinfo.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-osinfo.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-osinfo.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/dl-osinfo.h 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,120 @@ ++/* Operating system specific code for generic dynamic loader functions. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++#ifndef MIN ++# define MIN(a,b) (((a)<(b))?(a):(b)) ++#endif ++ ++#ifdef SHARED ++/* This is the function used in the dynamic linker to print the fatal error ++ message. */ ++static inline void ++__attribute__ ((__noreturn__)) ++dl_fatal (const char *str) ++{ ++ _dl_dprintf (2, str); ++ _exit (1); ++} ++#endif ++ ++ ++#define DL_SYSDEP_OSCHECK(FATAL) \ ++ do { \ ++ /* Test whether the kernel is new enough. This test is only \ ++ performed if the library is not compiled to run on all \ ++ kernels. */ \ ++ if (__KFREEBSD_KERNEL_VERSION > 0) \ ++ { \ ++ char bufmem[64]; \ ++ char *buf = bufmem; \ ++ unsigned int version; \ ++ int parts; \ ++ char *cp; \ ++ struct utsname uts; \ ++ \ ++ /* Try the uname syscall */ \ ++ if (! __uname (&uts)) \ ++ { \ ++ /* Now convert it into a number. The string consists of at most \ ++ three parts. */ \ ++ version = 0; \ ++ parts = 0; \ ++ buf = uts.release; \ ++ cp = buf; \ ++ while ((*cp >= '0') && (*cp <= '9')) \ ++ { \ ++ unsigned int here = *cp++ - '0'; \ ++ \ ++ while ((*cp >= '0') && (*cp <= '9')) \ ++ { \ ++ here *= 10; \ ++ here += *cp++ - '0'; \ ++ } \ ++ \ ++ ++parts; \ ++ version *= 100; \ ++ version |= here; \ ++ \ ++ if (*cp++ != '.') \ ++ /* Another part following? */ \ ++ break; \ ++ } \ ++ \ ++ if (parts == 2) \ ++ version *= 100; \ ++ \ ++ if (parts == 1) \ ++ version *= 10000; \ ++ \ ++ /* Now we can test with the required version. */ \ ++ if (version < __KFREEBSD_KERNEL_VERSION) \ ++ /* Not sufficent. */ \ ++ FATAL ("FATAL: kernel too old\n"); \ ++ \ ++ GLRO(dl_osversion) = version; \ ++ } \ ++ } \ ++ } while (0) ++ ++static inline uintptr_t __attribute__ ((always_inline)) ++_dl_setup_stack_chk_guard (void) ++{ ++ uintptr_t ret; ++#ifdef ENABLE_STACKGUARD_RANDOMIZE ++ int fd = __open ("/dev/urandom", O_RDONLY); ++ if (fd >= 0) ++ { ++ ssize_t reslen = __read (fd, &ret, sizeof (ret)); ++ __close (fd); ++ if (reslen == (ssize_t) sizeof (ret)) ++ return ret; ++ } ++#endif ++ ret = 0; ++ unsigned char *p = (unsigned char *) &ret; ++ p[sizeof (ret) - 1] = 255; ++ p[sizeof (ret) - 2] = '\n'; ++ return ret; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fcntl.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fcntl.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fcntl.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fcntl.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstat.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstat.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstat.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstat.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,40 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++#include "stat16conv.c" ++ ++int ++__fhstat (const fhandle_t *fhp, struct stat *buf) ++{ ++ struct stat16 buf16; ++ ++ if (__syscall_fhstat (fhp, &buf16) < 0) ++ return -1; ++ ++ /* Convert a 'struct stat16' to 'struct stat'. */ ++ stat16_to_stat (&buf16, buf); ++ ++ return 0; ++} ++ ++weak_alias (__fhstat, fhstat) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstat64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstat64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstat64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstat64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,38 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++#include "stat16conv.c" ++ ++int ++fhstat64 (const fhandle_t *fhp, struct stat64 *buf) ++{ ++ struct stat16 buf16; ++ ++ if (__syscall_fhstat (fhp, &buf16) < 0) ++ return -1; ++ ++ /* Convert a 'struct stat16' to 'struct stat64'. */ ++ stat16_to_stat64 (&buf16, buf); ++ ++ return 0; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstatfs.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstatfs.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstatfs.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstatfs.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,35 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++#include "statfsconv.c" ++ ++int ++fhstatfs (const fhandle_t *fhp, struct statfs *buf) ++{ ++ struct statfs_fbsd5 kbuf; ++ ++ if (__syscall_fhstatfs (fhp, &kbuf) < 0) ++ return -1; ++ ++ statfs5_to_statfs (&kbuf, buf); ++ ++ return 0; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstatfs64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstatfs64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstatfs64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fhstatfs64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,36 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++#include "statfsconv.c" ++ ++int ++fhstatfs64 (const fhandle_t *fhp, struct statfs64 *buf) ++{ ++ struct statfs_fbsd5 kbuf; ++ ++ if (__syscall_fhstatfs (fhp, &kbuf) < 0) ++ return -1; ++ ++ /* Convert a 'struct statfs' to 'struct statfs64'. */ ++ statfs5_to_statfs64 (&kbuf, buf); ++ ++ return 0; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatfs.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatfs.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatfs.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatfs.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,38 @@ ++/* Return information about the filesystem on which FD resides. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++#include "statfsconv.c" ++ ++/* Return information about the filesystem on which FD resides. */ ++int ++__fstatfs (int fd, struct statfs *buf) ++{ ++ struct statfs_fbsd5 kbuf; ++ ++ if (__syscall_fstatfs (fd, &kbuf) < 0) ++ return -1; ++ ++ statfs5_to_statfs (&kbuf, buf); ++ ++ return 0; ++} ++weak_alias (__fstatfs, fstatfs) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatfs64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatfs64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatfs64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatfs64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,40 @@ ++/* Return information about the filesystem on which FD resides. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++#include "statfsconv.c" ++ ++/* Return information about the filesystem on which FD resides. */ ++int ++__fstatfs64 (int fd, struct statfs64 *buf) ++{ ++ struct statfs_fbsd5 kbuf; ++ ++ if (__syscall_fstatfs (fd, &kbuf) < 0) ++ return -1; ++ ++ /* Convert a 'struct statfs' to 'struct statfs64'. */ ++ statfs5_to_statfs64 (&kbuf, buf); ++ ++ return 0; ++} ++ ++weak_alias (__fstatfs64, fstatfs64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatvfs.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatvfs.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatvfs.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatvfs.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,40 @@ ++/* Return information about the filesystem on which FD resides. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++#include "statfsconv.c" ++ ++/* Return information about the filesystem on which FD resides. */ ++int ++fstatvfs (int fd, struct statvfs *buf) ++{ ++ struct statfs_fbsd5 kbuf; ++ ++ if (__syscall_fstatfs (fd, &kbuf) < 0) ++ return -1; ++ ++ /* Convert a 'struct statfs' to 'struct statvfs'. */ ++ statfs5_to_statvfs (&kbuf, buf); ++ ++ return 0; ++} ++libc_hidden_def (fstatvfs) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatvfs64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatvfs64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatvfs64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fstatvfs64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,41 @@ ++/* Return information about the filesystem on which FD resides. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++#include "statfsconv.c" ++ ++/* Return information about the filesystem on which FD resides. */ ++int ++__fstatvfs64 (int fd, struct statvfs64 *buf) ++{ ++ struct statfs_fbsd5 kbuf; ++ ++ if (__syscall_fstatfs (fd, &kbuf) < 0) ++ return -1; ++ ++ /* Convert a 'struct statfs' to 'struct statvfs64'. */ ++ statfs5_to_statvfs64 (&kbuf, buf); ++ ++ return 0; ++} ++ ++weak_alias (__fstatvfs64, fstatvfs64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ftruncate.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ftruncate.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ftruncate.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ftruncate.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,40 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++/* The real system call has a word of padding before the 64-bit off_t ++ argument. */ ++extern int __syscall_ftruncate (int __fd, int __unused1, ++ __off_t __length) __THROW; ++ ++int ++__ftruncate (int fd, __off_t length) ++{ ++ /* We pass 2 arguments in 4 words. */ ++ return INLINE_SYSCALL (ftruncate, 2, fd, 0, length); ++} ++ ++weak_alias (__ftruncate, ftruncate) ++ ++/* 'ftruncate64' is the same as 'ftruncate', because __off64_t == __off_t. */ ++strong_alias (__ftruncate, __ftruncate64) ++weak_alias (__ftruncate64, ftruncate64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ftruncate64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ftruncate64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ftruncate64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ftruncate64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++/* 'ftruncate64' is the same as 'ftruncate', because __off64_t == __off_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fxstat.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fxstat.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fxstat.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fxstat.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,48 @@ ++/* fxstat using FreeBSD fstat, nfstat system calls. ++ Copyright (C) 1991,1995-1997,2000,2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#include "stat16conv.c" ++ ++int ++__fxstat (int vers, int fd, struct stat *buf) ++{ ++ if (__builtin_expect (vers == _STAT_VER, 1)) ++ { ++ struct stat16 buf16; ++ int result = __syscall_fstat (fd, __ptrvalue (&buf16)); ++ if (result == 0) ++ stat16_to_stat (&buf16, buf); ++ return result; ++ } ++ else if (__builtin_expect (vers == _STAT_VER_stat, 1)) ++ return __syscall_fstat (fd, CHECK_1 ((struct stat16 *) buf)); ++ else ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++} ++hidden_def (__fxstat) ++ ++weak_alias (__fxstat, _fxstat) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fxstat64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fxstat64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/fxstat64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/fxstat64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,44 @@ ++/* fxstat using FreeBSD fstat, nfstat system calls. ++ Copyright (C) 1991,1995-1997,2000,2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#include "stat16conv.c" ++ ++int ++__fxstat64 (int vers, int fd, struct stat64 *buf) ++{ ++ if (__builtin_expect (vers == _STAT_VER, 1)) ++ { ++ struct stat16 buf16; ++ int result = __syscall_fstat (fd, __ptrvalue (&buf16)); ++ if (result == 0) ++ stat16_to_stat64 (&buf16, buf); ++ return result; ++ } ++ else ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++} ++hidden_def (__fxstat64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getcwd.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getcwd.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getcwd.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getcwd.c 2007-02-12 17:35:20.000000000 +0100 +@@ -0,0 +1,95 @@ ++/* Determine current working directory. FreeBSD version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++ ++/* The system calls only makes a lookup in the VFS cache, which can easily ++ fail. Therefore we use the generic version as a fallback. */ ++extern int __syscall_getcwd (char *__unbounded buf, unsigned int size); ++static char *generic_getcwd (char *buf, size_t size) internal_function; ++ ++char * ++__getcwd (char *buf, size_t size) ++{ ++ char tmpbuf[PATH_MAX]; ++ ++ if (INLINE_SYSCALL (getcwd, 2, tmpbuf, PATH_MAX) >= 0) ++ { ++ size_t len = strlen (tmpbuf) + 1; ++ ++ if (size == 0) ++ { ++ if (__builtin_expect (buf != NULL, 0)) ++ { ++ __set_errno (EINVAL); ++ return NULL; ++ } ++ ++ buf = (char *) malloc (len); ++ if (__builtin_expect (buf == NULL, 0)) ++ { ++ __set_errno (ENOMEM); ++ return NULL; ++ } ++ } ++ else ++ { ++ if (size < len) ++ { ++ __set_errno (ERANGE); ++ return NULL; ++ } ++ ++ if (buf == NULL) ++ { ++ buf = (char *) malloc (size); ++ if (__builtin_expect (buf == NULL, 0)) ++ { ++ __set_errno (ENOMEM); ++ return NULL; ++ } ++ } ++ } ++ ++ memcpy (buf, tmpbuf, len); ++ return buf; ++ } ++#if IS_IN_rtld ++ return NULL; ++#else ++ return generic_getcwd (buf, size); ++#endif ++} ++ ++weak_alias (__getcwd, getcwd) ++ ++#if !IS_IN_rtld ++/* Get the code for the generic version. */ ++#define GETCWD_RETURN_TYPE static char * internal_function ++#define __getcwd generic_getcwd ++#include ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdents.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdents.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdents.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdents.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,89 @@ ++/* Read directory entries, 3 argument function. FreeBSD version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#if 1 ++ ++/* Use the 3-argument system call. */ ++ ++extern int __syscall_getdents (int fd, char *buf, size_t nbytes); ++ ++/* Read directory entries from FD into BUF, reading at most NBYTES. ++ Returns the number of bytes read; zero when at end of directory; or ++ -1 for errors. */ ++ssize_t ++internal_function ++__getdents (int fd, char *buf, size_t nbytes) ++{ ++ return __syscall_getdents (fd, buf, nbytes); ++} ++ ++/* Export getdents(). Not an internal_function. */ ++ssize_t ++getdents (int fd, char *buf, size_t nbytes) ++{ ++ return __syscall_getdents (fd, buf, nbytes); ++} ++ ++#else ++ ++/* Use the 4-argument system call. */ ++ ++extern int __syscall_getdirentries (int fd, char *buf, unsigned int nbytes, ++ long *basep); ++ ++/* Read directory entries from FD into BUF, reading at most NBYTES. ++ Returns the number of bytes read; zero when at end of directory; or ++ -1 for errors. */ ++ssize_t ++internal_function ++__getdents (int fd, char *buf, size_t nbytes) ++{ ++ /* On 64-bit platforms, the system call differs from this function ++ because it takes an 'unsigned int', not a 'size_t'. */ ++ unsigned int nbytes32; ++ ++ nbytes32 = nbytes; ++ if (nbytes32 == nbytes) ++ return __syscall_getdirentries (fd, buf, nbytes32, NULL); ++ else ++ { ++ /* NBYTES is too large. */ ++ __set_errno (EINVAL); ++ return -1; ++ } ++} ++ ++/* Export getdents(). Not an internal_function. */ ++ssize_t ++getdents (int fd, char *buf, size_t nbytes) ++{ ++ return __getdents (fd, buf, nbytes); ++} ++ ++#endif ++ ++/* Since 'struct dirent64' == 'struct dirent', the functions '__getdents64' ++ and '__getdents' are equal. */ ++strong_alias (__getdents, __getdents64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdents64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdents64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdents64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdents64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++/* We have the function getdirentries64 in file getdirentries64.c. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdirentries.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdirentries.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdirentries.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdirentries.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,100 @@ ++/* Read directory entries, 4 argument function. FreeBSD version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef GETDIRENTRIES ++# define GETDIRENTRIES getdirentries ++# define OFF_T off_t ++#endif ++ ++#include ++#include ++#include ++#include ++#include ++ ++#if 1 ++ ++/* Use the 4-argument system call. */ ++ ++extern int __syscall_getdirentries (int fd, char *buf, unsigned int nbytes, ++ long *basep); ++ ++/* Read directory entries from FD into BUF, reading at most NBYTES. ++ Reading starts at offset *BASEP, and *BASEP is updated with the new ++ position after reading. Returns the number of bytes read; zero when at ++ end of directory; or -1 for errors. */ ++/* FIXME: This is not what this function does. It starts reading at the ++ current position of FD, not at *BASEP. */ ++ssize_t ++GETDIRENTRIES (int fd, char *buf, size_t nbytes, OFF_T *basep) ++{ ++ /* On 32-bit platforms, the system call differs from this function because ++ it takes a 'long *', not an 'OFF_T *'. On 64-bit platforms, the system ++ call differs from this function because it takes an 'unsigned int', not ++ a 'size_t'. */ ++ unsigned int nbytes32; ++ ++ nbytes32 = nbytes; ++ if (nbytes32 == nbytes) ++ { ++ long base; ++ int result = __syscall_getdirentries (fd, buf, nbytes32, &base); ++ ++ if (result >= 0 && basep != NULL) ++ *basep = base; ++ return result; ++ } ++ else ++ { ++ /* NBYTES is too large. */ ++ __set_errno (EINVAL); ++ return -1; ++ } ++} ++ ++#else ++ ++/* Use the 3-argument system call. */ ++ ++extern int __syscall_getdents (int fd, char *buf, size_t nbytes); ++ ++/* Read directory entries from FD into BUF, reading at most NBYTES. ++ Reading starts at offset *BASEP, and *BASEP is updated with the new ++ position after reading. Returns the number of bytes read; zero when at ++ end of directory; or -1 for errors. */ ++/* FIXME: This is not what this function does. It starts reading at the ++ current position of FD, not at *BASEP. */ ++ssize_t ++GETDIRENTRIES (int fd, char *buf, size_t nbytes, OFF_T *basep) ++{ ++ OFF_T base = 0; ++ ssize_t result; ++ ++ if (basep) ++ base = __lseek (fd, (off_t) 0, SEEK_CUR); ++ ++ result = __syscall_getdents (fd, buf, nbytes); ++ ++ if (basep && result >= 0) ++ *basep = base; ++ return result; ++} ++ ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdirentries64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdirentries64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdirentries64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getdirentries64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,5 @@ ++/* Since 'struct dirent64' == 'struct dirent', the functions 'getdirentries64' ++ and 'getdirentries' differ only in the type of the BASEP argument. */ ++#define GETDIRENTRIES getdirentries64 ++#define OFF_T off64_t ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getfsstat.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getfsstat.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getfsstat.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getfsstat.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,49 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++#include "statfsconv.c" ++ ++int ++__getfsstat (struct statfs *buf, long bufsize, int flags) ++{ ++ long bufcount; ++ struct statfs_fbsd5 *tmpbuf; ++ int count, i; ++ ++ if (bufsize < 0) ++ bufsize = 0; ++ bufcount = bufsize / sizeof (struct statfs); ++ ++ if ((bufcount == 0) || (buf == NULL)) ++ tmpbuf = NULL; ++ else ++ tmpbuf = alloca(bufcount * sizeof (struct statfs_fbsd5)); ++ ++ count = __syscall_getfsstat (tmpbuf, bufcount * sizeof (struct statfs_fbsd5), flags); ++ if (tmpbuf && count > 0) ++ for (i = count - 1; i >= 0; i--) ++ statfs5_to_statfs (&tmpbuf[i], &buf[i]); ++ ++ return count; ++} ++ ++weak_alias (__getfsstat, getfsstat) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getfsstat64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getfsstat64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getfsstat64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getfsstat64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,49 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++#include "statfsconv.c" ++ ++int ++__getfsstat64 (struct statfs64 *buf, long bufsize, int flags) ++{ ++ long bufcount; ++ struct statfs_fbsd5 *tmpbuf; ++ int count, i; ++ ++ if (bufsize < 0) ++ bufsize = 0; ++ bufcount = bufsize / sizeof (struct statfs64); ++ ++ if ((bufcount == 0) || (buf == NULL)) ++ tmpbuf = NULL; ++ else ++ tmpbuf = alloca(bufcount * sizeof (struct statfs_fbsd5)); ++ ++ count = __syscall_getfsstat (tmpbuf, bufcount * sizeof (struct statfs_fbsd5), flags); ++ if (tmpbuf && count > 0) ++ for (i = count - 1; i >= 0; i--) ++ statfs5_to_statfs64 (&tmpbuf[i], &buf[i]); ++ ++ return count; ++} ++ ++weak_alias (__getfsstat64, getfsstat64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/gethostid.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/gethostid.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/gethostid.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/gethostid.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,37 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++/* Return the current machine's Internet number. */ ++long int ++gethostid (void) ++{ ++ /* Fetch sysctl value of "kern.hostid". */ ++ int request[2] = { CTL_KERN, KERN_HOSTID }; ++ int result; ++ size_t result_len = sizeof (result); ++ ++ if (__sysctl (request, 2, &result, &result_len, NULL, 0) < 0) ++ /* Dummy result. */ ++ return 0; ++ ++ return result; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/gethostname.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/gethostname.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/gethostname.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/gethostname.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,52 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++/* Put the name of the current host in no more than LEN bytes of NAME. ++ The result is null-terminated if LEN is large enough for the full ++ name and the terminator. */ ++ ++int ++__gethostname (char *name, size_t len) ++{ ++ /* Fetch the "kern.hostname" sysctl value. */ ++ int request[2] = { CTL_KERN, KERN_HOSTNAME }; ++ size_t result_len = len; ++ ++ if (__sysctl (request, 2, name, &result_len, NULL, 0) < 0) ++ { ++ if (errno == ENOMEM) ++ __set_errno (ENAMETOOLONG); ++ return -1; ++ } ++ ++ if (result_len >= len) ++ { ++ __set_errno (ENAMETOOLONG); ++ return -1; ++ } ++ ++ name[result_len] = '\0'; ++ return 0; ++} ++ ++weak_alias (__gethostname, gethostname) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getloadavg.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getloadavg.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getloadavg.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getloadavg.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,53 @@ ++/* Get system load averages. FreeBSD version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++struct loadavg ++ { ++ unsigned int ldavg[3]; ++ long fscale; ++ }; ++ ++/* Put the 1 minute, 5 minute and 15 minute load averages into the first ++ NELEM elements of LOADAVG. Return the number written (never more than ++ three, but may be less than NELEM), or -1 if an error occurred. */ ++int ++getloadavg (double loadavg[], int nelem) ++{ ++ if (nelem > 3) ++ nelem = 3; ++ if (nelem > 0) ++ { ++ /* Fetch the "vm.loadavg" sysctl value. */ ++ int request[2] = { CTL_VM, VM_LOADAVG }; ++ struct loadavg result; ++ size_t result_len = sizeof (result); ++ int i; ++ ++ if (__sysctl (request, 2, &result, &result_len, NULL, 0) < 0) ++ return -1; ++ ++ for (i = 0; i < nelem; i++) ++ loadavg[i] = (double) result.ldavg[i] / (double) result.fscale; ++ } ++ return nelem; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getlogin.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getlogin.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getlogin.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getlogin.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,49 @@ ++/* Non-reentrant function to return the current login name. FreeBSD version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++/* Defined in getlogin_r.c. */ ++extern char *__getlogin_cache; ++extern char __getlogin_cache_room[MAXLOGNAME]; ++ ++extern int __syscall_getlogin (char *__name, size_t __name_len); ++ ++/* Return the login name of the user, or NULL if it can't be determined. ++ The returned pointer, if not NULL, is good only until the next call. */ ++ ++char * ++getlogin (void) ++{ ++ if (__getlogin_cache == NULL) ++ { ++ if (INLINE_SYSCALL (getlogin, 2, __getlogin_cache_room, MAXLOGNAME) < 0) ++ return NULL; ++ /* The system call should return a NULL terminated name. */ ++ if (__memchr (__getlogin_cache_room, '\0', MAXLOGNAME) == NULL) ++ abort (); ++ __getlogin_cache = __getlogin_cache_room; ++ } ++ return (__getlogin_cache[0] ? __getlogin_cache : NULL); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getlogin_r.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getlogin_r.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getlogin_r.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getlogin_r.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,69 @@ ++/* Reentrant function to return the current login name. FreeBSD version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++/* Cache the system call's return value. */ ++char *__getlogin_cache; ++/* The kernel never returns more than MAXLOGNAME bytes, therefore we don't ++ need more than that either. */ ++char __getlogin_cache_room[MAXLOGNAME]; ++ ++extern int __syscall_getlogin (char *__name, size_t __name_len); ++ ++/* Return at most NAME_LEN characters of the login name of the user in NAME. ++ If it cannot be determined or some other error occurred, return the error ++ code. Otherwise return 0. ++ Note that the getlogin_r function in FreeBSD libc returns a 'char *', ++ but SUSV2 wants a return type of 'int'. */ ++ ++int ++getlogin_r (char *name, size_t name_len) ++{ ++ size_t len; ++ ++ if (__getlogin_cache == NULL) ++ { ++ if (INLINE_SYSCALL (getlogin, 2, __getlogin_cache_room, MAXLOGNAME) < 0) ++ return -1; ++ /* The system call should return a NULL terminated name. */ ++ if (__memchr (__getlogin_cache_room, '\0', MAXLOGNAME) == NULL) ++ abort (); ++ __getlogin_cache = __getlogin_cache_room; ++ } ++ ++ len = strlen (__getlogin_cache); ++ if (__builtin_expect (len < name_len, 1)) ++ { ++ memcpy (name, __getlogin_cache, len + 1); ++ return 0; ++ } ++ else ++ { ++ __set_errno (ERANGE); ++ return -1; ++ } ++} ++libc_hidden_def (getlogin_r) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getmntinfo.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getmntinfo.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getmntinfo.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getmntinfo.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,80 @@ ++/* Return list of mounted filesystems. FreeBSD version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++static int mntbufsize; ++static struct statfs *mntbuf; ++ ++/* Return list of mounted filesystems. ++ Inherently not multithread-safe. */ ++int ++__getmntinfo (struct statfs **mntbufp, int flags) ++{ ++ for (;;) ++ { ++ int count = __getfsstat (NULL, 0, flags); ++ int count2; ++ ++ if (count < 0) ++ return 0; ++ ++ if (count == 0) ++ { ++ __set_errno (0); ++ return 0; ++ } ++ ++ if (count > mntbufsize) ++ { ++ if (mntbuf != NULL) ++ free (mntbuf); ++ mntbufsize = 0; ++ mntbuf = (struct statfs *) malloc (count * sizeof (struct statfs)); ++ if (mntbuf == NULL) ++ { ++ __set_errno (ENOMEM); ++ return 0; ++ } ++ mntbufsize = count; ++ } ++ ++ count2 = __getfsstat (mntbuf, count * sizeof (struct statfs), flags); ++ ++ if (count2 < 0) ++ return 0; ++ ++ if (count2 == 0) ++ { ++ __set_errno (0); ++ return 0; ++ } ++ ++ if (count2 <= count) ++ { ++ *mntbufp = mntbuf; ++ return count2; ++ } ++ } ++} ++ ++weak_alias (__getmntinfo, getmntinfo) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getmntinfo64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getmntinfo64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getmntinfo64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getmntinfo64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,78 @@ ++/* Return list of mounted filesystems. FreeBSD version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++static int mntbufsize; ++static struct statfs64 *mntbuf; ++ ++/* Return list of mounted filesystems. ++ Inherently not multithread-safe. */ ++int ++getmntinfo64 (struct statfs64 **mntbufp, int flags) ++{ ++ for (;;) ++ { ++ int count = __getfsstat64 (NULL, 0, flags); ++ int count2; ++ ++ if (count < 0) ++ return 0; ++ ++ if (count == 0) ++ { ++ __set_errno (0); ++ return 0; ++ } ++ ++ if (count > mntbufsize) ++ { ++ if (mntbuf != NULL) ++ free (mntbuf); ++ mntbufsize = 0; ++ mntbuf = (struct statfs64 *) malloc (count * sizeof (struct statfs64)); ++ if (mntbuf == NULL) ++ { ++ __set_errno (ENOMEM); ++ return 0; ++ } ++ mntbufsize = count; ++ } ++ ++ count2 = __getfsstat64 (mntbuf, count * sizeof (struct statfs64), flags); ++ ++ if (count2 < 0) ++ return 0; ++ ++ if (count2 == 0) ++ { ++ __set_errno (0); ++ return 0; ++ } ++ ++ if (count2 <= count) ++ { ++ *mntbufp = mntbuf; ++ return count2; ++ } ++ } ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getpagesize.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getpagesize.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getpagesize.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getpagesize.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,42 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++/* Return the system page size. */ ++int ++__getpagesize (void) ++{ ++ static int cached_pagesize /* = 0 */; ++ ++ if (cached_pagesize == 0) ++ { ++ /* Fetch sysctl value of "hw.pagesize". */ ++ int request[2] = { CTL_HW, HW_PAGESIZE }; ++ size_t result_len = sizeof (cached_pagesize); ++ ++ if (__sysctl (request, 2, &cached_pagesize, &result_len, NULL, 0) < 0) ++ return -1; ++ } ++ return cached_pagesize; ++} ++libc_hidden_def (__getpagesize) ++ ++weak_alias (__getpagesize, getpagesize) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getpt.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getpt.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getpt.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getpt.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,92 @@ ++/* Copyright (C) 1998-1999, 2000-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++ ++/* Prefix for master pseudo terminal nodes. */ ++#define _PATH_PTY "/dev/pty" ++ ++ ++/* Letters indicating a series of pseudo terminals. */ ++#ifndef PTYNAME1 ++#define PTYNAME1 "pqrs" ++#endif ++const char __libc_ptyname1[] attribute_hidden = PTYNAME1; ++ ++/* Letters indicating the position within a series. */ ++#ifndef PTYNAME2 ++#define PTYNAME2 "0123456789abcdefghijklmnopqrstuv"; ++#endif ++const char __libc_ptyname2[] attribute_hidden = PTYNAME2; ++ ++ ++/* Open a master pseudo terminal and return its file descriptor. */ ++int ++__posix_openpt (int oflag) ++{ ++ char buf[sizeof (_PATH_PTY) + 2]; ++ const char *p, *q; ++ char *s; ++ ++ s = __mempcpy (buf, _PATH_PTY, sizeof (_PATH_PTY) - 1); ++ /* s[0] and s[1] will be filled in the loop. */ ++ s[2] = '\0'; ++ ++ for (p = __libc_ptyname1; *p != '\0'; ++p) ++ { ++ s[0] = *p; ++ ++ for (q = __libc_ptyname2; *q != '\0'; ++q) ++ { ++ int fd; ++ ++ s[1] = *q; ++ ++ fd = __open (buf, oflag); ++ if (fd >= 0) ++ { ++ if (!(oflag & O_NOCTTY)) ++ __ioctl (fd, TIOCSCTTY, NULL); ++ ++ return fd; ++ } ++ ++ if (errno == ENOENT) ++ return -1; ++ } ++ } ++ ++ __set_errno (ENOENT); ++ return -1; ++} ++ ++weak_alias (__posix_openpt, posix_openpt) ++ ++ ++int ++__getpt (void) ++{ ++ return __posix_openpt (O_RDWR); ++} ++ ++weak_alias (__getpt, getpt) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getrlimit64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getrlimit64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getrlimit64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getrlimit64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++/* 'getrlimit64' is the same as 'getrlimit', because __rlim64_t == __rlim_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getsysstats.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getsysstats.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/getsysstats.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/getsysstats.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,108 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++ ++int ++__get_nprocs (void) ++{ ++ /* Fetch sysctl value of "hw.ncpu". */ ++ int request[2] = { CTL_HW, HW_NCPU }; ++ int result; ++ size_t result_len = sizeof (result); ++ ++ if (__sysctl (request, 2, &result, &result_len, NULL, 0) < 0) ++ /* Dummy result. */ ++ return 1; ++ ++ return result; ++} ++ ++weak_alias (__get_nprocs, get_nprocs) ++ ++ ++int ++__get_nprocs_conf (void) ++{ ++ /* We don't know how to distinguish between configured and active CPUs. */ ++ return __get_nprocs (); ++} ++ ++weak_alias (__get_nprocs_conf, get_nprocs_conf) ++ ++ ++long int ++__get_phys_pages (void) ++{ ++ /* Fetch sysctl value of "hw.physmem". This is a little smaller than ++ the real installed memory size, but so what. */ ++ int request[2] = { CTL_HW, HW_PHYSMEM }; ++ int result; ++ size_t result_len = sizeof (result); ++ ++ if (__sysctl (request, 2, &result, &result_len, NULL, 0) < 0) ++ return -1; ++ ++ return result; ++} ++ ++weak_alias (__get_phys_pages, get_phys_pages) ++ ++ ++long int ++__get_avphys_pages (void) ++{ ++#if 1 ++ int result1; ++ int result2; ++ { ++ /* Fetch sysctl value of "vm.stats.vm.v_inactive_count". */ ++ size_t result_len = sizeof (result1); ++ ++ if (__sysctlbyname ("vm.stats.vm.v_inactive_count", &result1, &result_len, ++ NULL, 0) < 0) ++ return -1; ++ } ++ { ++ /* Fetch sysctl value of "vm.stats.vm.v_free_count". */ ++ size_t result_len = sizeof (result2); ++ ++ if (__sysctlbyname ("vm.stats.vm.v_free_count", &result2, &result_len, ++ NULL, 0) < 0) ++ return -1; ++ } ++ ++ return result1 + result2; ++#else ++ /* This does not appear to work. */ ++ /* Fetch v_inactive_count field of sysctl value of "vm.vmmeter". */ ++ int request[2] = { CTL_VM, VM_METER }; ++ struct vmmeter result; ++ size_t result_len = sizeof (result); ++ ++ if (__sysctl (request, 2, &result, &result_len, NULL, 0) < 0) ++ return -1; ++ ++ return result.v_inactive_count; ++#endif ++} ++ ++weak_alias (__get_avphys_pages, get_avphys_pages) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/glob.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/glob.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/glob.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/glob.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,3 @@ ++/* 'glob64' is different from 'glob', because ++ 'struct stat64' != 'struct stat'. */ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/glob64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/glob64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/glob64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/glob64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,3 @@ ++/* 'glob64' is different from 'glob', because ++ 'struct stat64' != 'struct stat'. */ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/Makefile ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/Makefile +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/Makefile 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/Makefile 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,19 @@ ++# Additional header files to be installed in $prefix/include: ++ ++ifeq ($(subdir),misc) ++sysdep_headers += \ ++ sys/io.h \ ++ sys/perm.h \ ++ sys/vm86.h ++endif ++ ++# Additional functions, and particular system calls: ++ ++ifeq ($(subdir),misc) ++# For and . ++sysdep_routines += i386_get_ioperm i386_set_ioperm iopl ++# For . ++sysdep_routines += i386_vm86 ++# For . ++sysdep_routines += i386_get_ldt i386_set_ldt ++endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/Versions ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/Versions +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/Versions 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/Versions 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,7 @@ ++libc { ++ GLIBC_2.2.6 { ++ i386_get_ioperm; i386_set_ioperm; i386_vm86; ++ ioperm; iopl; ++ i386_get_ldt; i386_set_ldt; ++ } ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/mcontext.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/mcontext.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/mcontext.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/mcontext.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,111 @@ ++/* Machine-dependent processor state structure for FreeBSD. i386 version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#if !defined _SYS_UCONTEXT_H ++# error "Never use directly; include instead." ++#endif ++ ++/*- ++ * Copyright (c) 1999 Marcel Moolenaar ++ * All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer ++ * in this position and unchanged. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * 3. The name of the author may not be used to endorse or promote products ++ * derived from this software without specific prior written permission. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR ++ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ++ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ++ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, ++ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT ++ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ++ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ++ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ++ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ++ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ++ * ++ * based on $FreeBSD: src/sys/i386/include/ucontext.h,v 1.10 2002/12/02 19:58:55 deischen Exp $ ++ */ ++ ++ /* ++ * The first 20 fields must match the definition of ++ * sigcontext. So that we can support sigcontext ++ * and ucontext_t at the same time. ++ */ ++ ++/* Whole processor state. */ ++typedef struct ++ { ++ int mc_onstack; /* Nonzero if running on sigstack. */ ++ ++ /* Segment registers. */ ++ int mc_gs; ++ int mc_fs; ++ int mc_es; ++ int mc_ds; ++ ++ /* "General" registers. These members are in the order that the i386 ++ `pusha' and `popa' instructions use (`popa' ignores %esp). */ ++ int mc_edi; ++ int mc_esi; ++ int mc_ebp; ++ int mc_isp; /* Not used; sc_esp is used instead. */ ++ int mc_ebx; ++ int mc_edx; ++ int mc_ecx; ++ int mc_eax; ++ ++ int mc_trapno; ++ int mc_err; ++ ++ int mc_eip; /* Instruction pointer. */ ++ int mc_cs; /* Code segment register. */ ++ ++ int mc_efl; /* Processor flags. */ ++ ++ int mc_esp; /* This stack pointer is used. */ ++ int mc_ss; /* Stack segment register. */ ++ ++ int mc_len; /* sizeof(mcontext_t) */ ++#define _MC_FPFMT_NODEV 0x10000 /* device not present or configured */ ++#define _MC_FPFMT_387 0x10001 ++#define _MC_FPFMT_XMM 0x10002 ++ int mc_fpformat; ++#define _MC_FPOWNED_NONE 0x20000 /* FP state not used */ ++#define _MC_FPOWNED_FPU 0x20001 /* FP state came from FPU */ ++#define _MC_FPOWNED_PCB 0x20002 /* FP state came from PCB */ ++ int mc_ownedfp; ++ int mc_spare1[1]; /* align next field to 16 bytes */ ++ /* ++ * See for the internals of mc_fpstate[]. ++ */ ++ int mc_fpstate[128] __attribute__((aligned(16))); ++ int mc_spare2[8]; ++ } mcontext_t; ++ ++/* Traditional BSD names for some members. */ ++#define mc_eflags mc_efl +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/sigcontext.h 2006-11-07 19:20:05.000000000 +0100 +@@ -0,0 +1,159 @@ ++/* Machine-dependent signal context structure for FreeBSD. i386 version. ++ Copyright (C) 1991-1992,1994,1997,2001-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#if !defined _SIGNAL_H && !defined _SYS_UCONTEXT_H ++# error "Never use directly; include instead." ++#endif ++ ++#ifndef _BITS_SIGCONTEXT_H ++#define _BITS_SIGCONTEXT_H 1 ++ ++#ifdef __x86_64__ ++struct sigcontext { ++ __sigset_t sc_mask; /* signal mask to restore */ ++ long sc_onstack; /* sigstack state to restore */ ++ union { long sc_rdi; long rdi;}; ++ union { long sc_rsi; long rsi;}; ++ union { long sc_rdx; long rdx;}; ++ union { long sc_rcx; long rcx;}; ++ union { long sc_r8; long r8;}; ++ union { long sc_r9; long r9;}; ++ union { long sc_rax; long rax;}; ++ union { long sc_rbx; long rbx;}; ++ union { long sc_rbp; long rbp;}; ++ union { long sc_r10; long r10;}; ++ union { long sc_r11; long r11;}; ++ union { long sc_r12; long r12;}; ++ union { long sc_r13; long r13;}; ++ union { long sc_r14; long r14;}; ++ union { long sc_r15; long r15;}; ++ union { long sc_trapno; long trapno;}; ++ union { long sc_addr; long addr;}; ++ union { long sc_flags; long flags;}; ++ union { long sc_err; long err;}; ++ union { long sc_rip; long rip;}; ++ union { long sc_cs; long cs;}; ++ union { long sc_rflags; long rflags;}; ++ union { long sc_rsp; long rsp;}; ++ union { long sc_ss; long ss;}; ++ long sc_len; /* sizeof(mcontext_t) */ ++ /* ++ * XXX - See and for ++ * the following fields. ++ */ ++ long sc_fpformat; ++ long sc_ownedfp; ++ long sc_fpstate[64] __attribute__((aligned(16))); ++ long sc_spare[8]; ++}; ++ ++/* Traditional BSD names for some members. */ ++#define sc_sp sc_rsp /* Stack pointer. */ ++#define sc_fp sc_rbp /* Frame pointer. */ ++#define sc_pc sc_rip /* Process counter. */ ++ ++#else ++ ++/* State of this thread when the signal was taken. ++ The unions below are for compatibility with Linux (whose sigcontext ++ components don't have sc_ prefix) */ ++struct sigcontext ++ { ++ __sigset_t sc_mask; /* Blocked signals to restore. */ ++ int sc_onstack; /* Nonzero if running on sigstack. */ ++ ++ /* Segment registers. */ ++ union { int sc_gs; int gs; }; ++ union { int sc_fs; int fs; }; ++ union { int sc_es; int es; }; ++ union { int sc_ds; int ds; }; ++ ++ /* "General" registers. These members are in the order that the i386 ++ `pusha' and `popa' instructions use (`popa' ignores %esp). */ ++ union { int sc_edi; int edi; }; ++ union { int sc_esi; int esi; }; ++ union { int sc_ebp; int ebp; }; ++ union { int sc_isp; int isp; }; /* Not used; sc_esp is used instead. */ ++ union { int sc_ebx; int ebx; }; ++ union { int sc_edx; int edx; }; ++ union { int sc_ecx; int ecx; }; ++ union { int sc_eax; int eax; }; ++ ++ union { int sc_trapno; int trapno; }; ++ union { int sc_err; int err; }; ++ ++ union { int sc_eip; int eip; }; /* Instruction pointer. */ ++ union { int sc_cs; int cs; }; /* Code segment register. */ ++ ++ union { int sc_efl; int eflags; }; /* Processor flags. */ ++ ++ union { int sc_esp; int esp; }; /* This stack pointer is used. */ ++ union { int sc_ss; int ss; }; /* Stack segment register. */ ++ ++ int sc_len; /* sizeof(mcontext_t) */ ++ /* ++ * XXX - See and for ++ * the following fields. ++ */ ++ int sc_fpformat; ++ int sc_ownedfp; ++ int sc_spare1[1]; ++ int sc_fpstate[128] __attribute__((aligned(16))); ++ int sc_spare2[8]; ++ }; ++ ++/* Traditional BSD names for some members. */ ++#define sc_sp sc_esp /* Stack pointer. */ ++#define sc_fp sc_ebp /* Frame pointer. */ ++#define sc_pc sc_eip /* Process counter. */ ++#define sc_ps sc_efl ++#define sc_eflags sc_efl ++ ++ ++/* Codes for SIGFPE. */ ++#define FPE_INTDIV 1 /* integer divide by zero */ ++#define FPE_INTOVF 2 /* integer overflow */ ++ ++#if 1 /* FIXME: These need verification. */ ++ ++#define FPE_FLTDIV 3 /* floating divide by zero */ ++#define FPE_FLTOVF 4 /* floating overflow */ ++#define FPE_FLTUND 5 /* floating underflow */ ++#define FPE_FLTINX 6 /* floating loss of precision */ ++#define FPE_SUBRNG_FAULT 0x7 /* BOUNDS instruction failed */ ++#define FPE_FLTDNR_FAULT 0x8 /* denormalized operand */ ++#define FPE_EMERR_FAULT 0xa /* mysterious emulation error 33 */ ++#define FPE_EMBND_FAULT 0xb /* emulation BOUNDS instruction failed */ ++ ++/* Codes for SIGILL. */ ++#define ILL_PRIVIN_FAULT 1 ++#define ILL_ALIGN_FAULT 14 ++#define ILL_FPOP_FAULT 24 ++ ++/* Codes for SIGBUS. */ ++#define BUS_PAGE_FAULT 12 ++#define BUS_SEGNP_FAULT 26 ++#define BUS_STK_FAULT 27 ++#define BUS_SEGM_FAULT 29 ++ ++#endif ++ ++#endif ++ ++#endif /* _BITS_SIGCONTEXT_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/time.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/time.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/time.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/bits/time.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,89 @@ ++/* System-dependent timing definitions. FreeBSD version. ++ Copyright (C) 1996-1997, 1999, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* ++ * Never include this file directly; use instead. ++ */ ++ ++#ifndef __need_timeval ++# ifndef _BITS_TIME_H ++# define _BITS_TIME_H 1 ++ ++/* ISO/IEC 9899:1990 7.12.1: ++ The macro `CLOCKS_PER_SEC' is the number per second of the value ++ returned by the `clock' function. */ ++/* CAE XSH, Issue 4, Version 2: ++ The value of CLOCKS_PER_SEC is required to be 1 million on all ++ XSI-conformant systems. */ ++# define CLOCKS_PER_SEC 1000000l ++ ++# if !defined __STRICT_ANSI__ && !defined __USE_XOPEN2K ++/* Even though CLOCKS_PER_SEC has such a strange value CLK_TCK ++ presents the real value for clock ticks per second for the system. */ ++# define CLK_TCK 128 ++# endif ++ ++# ifdef __USE_POSIX199309 ++/* Identifier for system-wide realtime clock. */ ++# define CLOCK_REALTIME 0 ++/* High-resolution timer from the CPU. */ ++# define CLOCK_PROCESS_CPUTIME_ID 2 ++/* Thread-specific CPU-time clock. */ ++# define CLOCK_THREAD_CPUTIME_ID 3 ++/* Monotonic system-wide clock. */ ++# define CLOCK_MONOTONIC 4 ++/* These are BSD specific clocks. */ ++# ifdef __USE_BSD ++# define CLOCK_VIRTUAL 1 ++# define CLOCK_PROF 2 ++# endif ++ ++/* Flag to indicate time is absolute. */ ++# define TIMER_ABSTIME 1 ++# endif ++ ++ ++/* Getkerninfo clock information structure */ ++struct clockinfo ++ { ++ int hz; /* clock frequency */ ++ int tick; /* micro-seconds per hz tick */ ++ int spare; ++ int stathz; /* statistics clock frequency */ ++ int profhz; /* profiling clock frequency */ ++ }; ++ ++# endif /* bits/time.h */ ++#endif ++ ++#ifdef __need_timeval ++# undef __need_timeval ++# ifndef _STRUCT_TIMEVAL ++# define _STRUCT_TIMEVAL 1 ++# include ++ ++/* A time value that is accurate to the nearest ++ microsecond but also has a range of years. */ ++struct timeval ++ { ++ __time_t tv_sec; /* Seconds. */ ++ __suseconds_t tv_usec; /* Microseconds. */ ++ }; ++# endif /* struct timeval */ ++#endif /* need timeval */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/dl-machine.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/dl-machine.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/dl-machine.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/dl-machine.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,124 @@ ++/* Machine-dependent ELF dynamic relocation inline functions. ++ FreeBSD i386 specific version of dl_platform_init() ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++/* For FreeBSD we redefine an initialization function. ++ This is called very early in dl_sysdep_start. */ ++ ++#include_next ++ ++#undef DL_PLATFORM_INIT ++#define DL_PLATFORM_INIT dl_platform_kfreebsd_i386_init () ++ ++#ifndef _DL_MACHINE_KFREEBSD ++#define _DL_MACHINE_KFREEBSD ++ ++#define X86_EFLAGS_AC 0x00040000 /* Alignment Check */ ++#define X86_EFLAGS_ID 0x00200000 /* CPUID detection flag */ ++ ++static inline int try_flip_flags(int val) ++{ ++ int ret; ++ __asm__( ++ "pushfl\n\t" ++ "pushfl\n\t" ++ "popl %%ecx\n\t" ++ "xorl %%ecx,%%eax\n\t" ++ "pushl %%eax\n\t" ++ "popfl\n\t" ++ "pushfl\n\t" ++ "popl %%eax\n\t" ++ "xorl %%ecx,%%eax\n\t" ++ "popfl\n\t" ++ : "=a" (ret) ++ : "0" (val) ++ : "cx" ++ ); ++ return ret; ++} ++ ++static inline void cpuid(int op, int *eax, int *edx) ++{ ++ __asm__( ++ "push %%ebx\n\t" ++ "cpuid\n\t" ++ "pop %%ebx\n\t" ++ : "=a" (*eax), ++ "=d" (*edx) ++ : "0" (op) ++ : "cx" ++ ); ++} ++ ++static inline void __attribute__ ((unused)) ++dl_platform_kfreebsd_i386_init (void) ++{ ++ if ((GLRO(dl_platform) == NULL) || (*GLRO(dl_platform) == '\0')) ++ { ++ /* we don't have reasonable AT_PLATFORM from kernel ++ try to use cpuid to get one, also guess AT_HWCAP */ ++ ++ int val, hwcap; ++ ++ val = try_flip_flags(X86_EFLAGS_AC | X86_EFLAGS_ID); ++ ++ if (!(val & X86_EFLAGS_AC)) ++ { ++ /* 386 */ ++ GLRO(dl_platform) = GLRO(dl_x86_platforms)[0]; ++ GLRO(dl_hwcap) = 0; ++ } ++ else if (!(val & X86_EFLAGS_ID)) ++ { ++ /* 486 */ ++ GLRO(dl_platform) = GLRO(dl_x86_platforms)[1]; ++ GLRO(dl_hwcap) = 0; ++ } ++ else ++ { ++ cpuid(0, &val, &hwcap); ++ if (val == 0) ++ { ++ /* 486 */ ++ GLRO(dl_platform) = GLRO(dl_x86_platforms)[1]; ++ GLRO(dl_hwcap) = 0; ++ } ++ else ++ { ++ cpuid(1, &val, &hwcap); ++ GLRO(dl_hwcap) = hwcap; ++ switch (val & 0xf00) ++ { ++ case 0x400: /* 486 */ ++ GLRO(dl_platform) = GLRO(dl_x86_platforms)[1]; ++ break; ++ case 0x500: /* 586 */ ++ GLRO(dl_platform) = GLRO(dl_x86_platforms)[2]; ++ break; ++ default: /* 686 */ ++ GLRO(dl_platform) = GLRO(dl_x86_platforms)[3]; ++ } ++ } ++ } ++ } ++} ++ ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/dl-procinfo.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/dl-procinfo.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/dl-procinfo.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/dl-procinfo.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/get_clockfreq.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/get_clockfreq.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/get_clockfreq.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/get_clockfreq.c 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/getcontext.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/getcontext.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/getcontext.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/getcontext.S 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,38 @@ ++/* Save current context. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++.text ++ENTRY(__getcontext) ++ clc ++ movl 0(%esp), %ecx /* save the return PC value */ ++ ++ DO_CALL (getcontext, 1) ++ jb SYSCALL_ERROR_LABEL ++ ++ addl $4, %esp /* remove stale return address */ ++ jmp *%ecx ++ ++L(pseudo_end): ++ ret ++ ++PSEUDO_END(__getcontext) ++ ++weak_alias(__getcontext, getcontext) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_get_ioperm.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_get_ioperm.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_get_ioperm.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_get_ioperm.c 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,36 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++int ++i386_get_ioperm (unsigned long int from, unsigned long int *num, int *turned_on) ++{ ++ struct i386_ioperm_args args; ++ ++ args.start = from; ++ ++ if (__sysarch (I386_GET_IOPERM, &args) < 0) ++ return -1; ++ ++ *num = args.length; ++ *turned_on = args.enable; ++ ++ return 0; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_get_ldt.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_get_ldt.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_get_ldt.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_get_ldt.c 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,38 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ Contributed by Robert Millan ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++int ++i386_get_ldt (int from, union descriptor *descs, int num) ++{ ++ struct i386_ldt_args args; ++ ++ args.start = from; ++ args.descs = descs; ++ args.num = num; ++ ++ if (__sysarch (I386_GET_LDT, &args) < 0) ++ return -1; ++ ++ return 0; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_set_ioperm.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_set_ioperm.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_set_ioperm.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_set_ioperm.c 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,34 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++int ++i386_set_ioperm (unsigned long int from, unsigned long int num, int turn_on) ++{ ++ struct i386_ioperm_args args; ++ ++ args.start = from; ++ args.length = num; ++ args.enable = turn_on; ++ ++ return __sysarch (I386_SET_IOPERM, &args); ++} ++ ++strong_alias (i386_set_ioperm, ioperm) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_set_ldt.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_set_ldt.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_set_ldt.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_set_ldt.c 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,38 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ Contributed by Robert Millan ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++int ++i386_set_ldt (int from, union descriptor *descs, int num) ++{ ++ struct i386_ldt_args args; ++ ++ args.start = from; ++ args.descs = descs; ++ args.num = num; ++ ++ if (__sysarch (I386_SET_LDT, &args) < 0) ++ return -1; ++ ++ return 0; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_vm86.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_vm86.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_vm86.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i386_vm86.c 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,31 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++int ++i386_vm86 (int cmd, void *arg) ++{ ++ struct i386_vm86_args args; ++ ++ args.sub_op = cmd; ++ args.sub_args = arg; ++ ++ return __sysarch (I386_VM86, &args); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i486/linuxthreads/pt-machine.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i486/linuxthreads/pt-machine.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i486/linuxthreads/pt-machine.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i486/linuxthreads/pt-machine.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,8 @@ ++ ++/* i486+ is almost same as plain i386 version */ ++#include_next ++ ++/* but compare-and-swap is always available */ ++ ++#undef TEST_FOR_COMPARE_AND_SWAP ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i586/linuxthreads/pt-machine.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i586/linuxthreads/pt-machine.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i586/linuxthreads/pt-machine.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i586/linuxthreads/pt-machine.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,8 @@ ++ ++/* i486+ is almost same as plain i386 version */ ++#include_next ++ ++/* but compare-and-swap is always available */ ++ ++#undef TEST_FOR_COMPARE_AND_SWAP ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i686/linuxthreads/pt-machine.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i686/linuxthreads/pt-machine.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i686/linuxthreads/pt-machine.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/i686/linuxthreads/pt-machine.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,8 @@ ++ ++/* i486+ is almost same as plain i386 version */ ++#include_next ++ ++/* but compare-and-swap is always available */ ++ ++#undef TEST_FOR_COMPARE_AND_SWAP ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/iopl.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/iopl.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/iopl.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/iopl.c 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,54 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Robert Millan ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include /* open */ ++#include /* close */ ++ ++static int __iopl_fd = -1; ++ ++int ++iopl (int level) ++ { ++ switch (level) ++ { ++ case 3: ++ if (__iopl_fd != -1) ++ return 0; ++ ++ __iopl_fd = open ("/dev/io", O_RDWR); ++ if (__iopl_fd == -1) ++ { ++ if (errno == EACCES) ++ __set_errno (EPERM); ++ return -1; ++ } ++ return 0; ++ ++ case 0: ++ if (__iopl_fd != -1) ++ if (close (__iopl_fd) == -1) ++ return 1; ++ return 0; ++ ++ default: ++ __set_errno (EINVAL); ++ return -1; ++ } ++ } +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/ldconfig.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/ldconfig.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/ldconfig.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/ldconfig.h 2007-01-05 11:36:38.000000000 +0100 +@@ -0,0 +1,37 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++#define SYSDEP_KNOWN_INTERPRETER_NAMES \ ++ { "/lib/ld.so.1", FLAG_ELF_LIBC6 }, \ ++ { "/libexec/ld-elf.so.1", FLAG_ELF_LIBC5 }, ++ ++#define SYSDEP_KNOWN_LIBRARY_NAMES \ ++ { "libc.so.0.1", FLAG_ELF_LIBC6 }, \ ++ { "libm.so.1", FLAG_ELF_LIBC6 }, \ ++ { "libc.so.4", FLAG_ELF_LIBC5 }, \ ++ { "libm.so.4", FLAG_ELF_LIBC5 }, \ ++ { "libc.so.5", FLAG_ELF_LIBC5 }, \ ++ { "libm.so.5", FLAG_ELF_LIBC5 }, \ ++ { "libc.so.6", FLAG_ELF_LIBC5 }, \ ++ { "libm.so.6", FLAG_ELF_LIBC5 }, \ ++ { "libc.so.7", FLAG_ELF_LIBC5 }, \ ++ { "libm.so.7", FLAG_ELF_LIBC5 }, \ ++ { "libc.so.8", FLAG_ELF_LIBC5 }, \ ++ { "libm.so.8", FLAG_ELF_LIBC5 }, +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/pt-machine.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/pt-machine.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/pt-machine.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/pt-machine.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,76 @@ ++/* Machine-dependent pthreads configuration and inline functions. ++ ix86 version for FreeBSD. ++ Copyright (C) 1996-2001, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Petr Salinger, 2005. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public License as ++ published by the Free Software Foundation; either version 2.1 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#ifndef _FREEBSD_PT_MACHINE_H ++#define _FREEBSD_PT_MACHINE_H 1 ++ ++/* ++ some parts are common with linux/i386 version ++ ++ linux specific parts should be in ++ linuxthreads/sysdeps/unix/sysv/linux/i386/ ++ but they are included directly in ++ linuxthreads/sysdeps/i386/ ++ ++ so include them ++ ++ */ ++ ++#include ++#include ++ ++/* hack them */ ++ ++#ifndef __ASSEMBLER__ ++ ++#undef INIT_THREAD_SELF ++#undef FREE_THREAD ++ ++/* The P4 and above really want some help to prevent overheating. */ ++#define BUSY_WAIT_NOP __asm__ ("rep; nop") ++ ++/* and add few FreeBSD specifics */ ++ ++#include ++ ++/* Initialize the thread-unique value. */ ++ ++#define INIT_THREAD_SELF(descr, nr) \ ++{ \ ++ long tmp; \ ++ tmp = (long) descr; \ ++ if (sysarch(I386_SET_GSBASE, &tmp) != 0) \ ++ { \ ++ abort(); \ ++ } \ ++} ++ ++#define FREE_THREAD(descr, nr) do { } while (0) ++ ++#endif /* __ASSEMBLER__ */ ++ ++/* We want the OS to assign stack addresses. */ ++#define FLOATING_STACKS 1 ++ ++/* Maximum size of the stack if the rlimit is unlimited. */ ++#define ARCH_STACK_MAX_SIZE 8*1024*1024 ++ ++#endif /* _FREEBSD_PT_MACHINE_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/sysdep-cancel.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/sysdep-cancel.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/sysdep-cancel.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/sysdep-cancel.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,158 @@ ++/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Jakub Jelinek , 2002. ++ Modification for FreeBSD by Petr Salinger, 2005. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#ifndef __ASSEMBLER__ ++# include ++#endif ++ ++#if !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt ++ ++# undef PSEUDO ++# define PSEUDO(name, syscall_name, args) \ ++ .text; \ ++ ENTRY (name) \ ++ SINGLE_THREAD_P; \ ++ jne L(pseudo_cancel); \ ++ DO_CALL (syscall_name, args); \ ++ jb SYSCALL_ERROR_LABEL; \ ++ ret; \ ++ L(pseudo_cancel): \ ++ CENABLE \ ++ movl %eax, %ecx; \ ++ movl $SYS_ify (syscall_name), %eax; \ ++ int $0x80; \ ++ PUSHRESULT; \ ++ movl %ecx, %eax; \ ++ CDISABLE; \ ++ POPRESULT; \ ++ jb SYSCALL_ERROR_LABEL; \ ++ L(pseudo_end): ++ ++/* ++ on FreeBSD some syscalls return result in pair edx+eax, ++ therefore proper way would be ++ ++# define PUSHRESULT pushl %edx; pushl %eax; pushfl ++# define POPRESULT popfl; popl %eax; popl %edx ++ ++ for FreeBSD 5.4 affected syscalls are ++ ++ lseek() ++ fork() ++ vfork() ++ rfork() ++ pipe() ++ ++ none of them is cancelable, therefore ++*/ ++ ++# define PUSHRESULT pushl %eax; cfi_adjust_cfa_offset (4); pushfl; cfi_adjust_cfa_offset (4) ++# define POPRESULT popfl; cfi_adjust_cfa_offset (-4); popl %eax; cfi_adjust_cfa_offset (-4) ++ ++# ifdef IS_IN_libpthread ++# define CENABLE call __pthread_enable_asynccancel; ++# define CDISABLE call __pthread_disable_asynccancel ++# elif defined IS_IN_librt ++# ifdef PIC ++# define CENABLE pushl %ebx; \ ++ cfi_adjust_cfa_offset (4); \ ++ cfi_rel_offset (ebx, 0); \ ++ call __i686.get_pc_thunk.bx; \ ++ addl $_GLOBAL_OFFSET_TABLE_, %ebx; \ ++ call __librt_enable_asynccancel@PLT; \ ++ popl %ebx; \ ++ cfi_adjust_cfa_offset (-4); \ ++ cfi_restore (ebx); ++# define CDISABLE pushl %ebx; \ ++ cfi_adjust_cfa_offset (4); \ ++ cfi_rel_offset (ebx, 0); \ ++ call __i686.get_pc_thunk.bx; \ ++ addl $_GLOBAL_OFFSET_TABLE_, %ebx; \ ++ call __librt_disable_asynccancel@PLT; \ ++ popl %ebx; \ ++ cfi_adjust_cfa_offset (-4); \ ++ cfi_restore (ebx); ++# else ++# define CENABLE call __librt_enable_asynccancel; ++# define CDISABLE call __librt_disable_asynccancel ++# endif ++# else ++# define CENABLE call __libc_enable_asynccancel; ++# define CDISABLE call __libc_disable_asynccancel ++# endif ++ ++#if !defined NOT_IN_libc ++# define __local_multiple_threads __libc_multiple_threads ++#elif defined IS_IN_libpthread ++# define __local_multiple_threads __pthread_multiple_threads ++#else ++# define __local_multiple_threads __librt_multiple_threads ++#endif ++ ++# ifndef __ASSEMBLER__ ++# if defined FLOATING_STACKS && USE___THREAD && defined PIC ++# define SINGLE_THREAD_P \ ++ __builtin_expect (THREAD_GETMEM (THREAD_SELF, \ ++ p_header.data.multiple_threads) == 0, 1) ++# else ++extern int __local_multiple_threads ++# if !defined NOT_IN_libc || defined IS_IN_libpthread ++ attribute_hidden; ++# else ++ ; ++# endif ++# define SINGLE_THREAD_P __builtin_expect (__local_multiple_threads == 0, 1) ++# endif ++# else ++# if !defined PIC ++# define SINGLE_THREAD_P cmpl $0, __local_multiple_threads ++# elif defined FLOATING_STACKS && USE___THREAD ++# define SINGLE_THREAD_P cmpl $0, %gs:MULTIPLE_THREADS_OFFSET ++# else ++# if !defined NOT_IN_libc || defined IS_IN_libpthread ++# define __SINGLE_THREAD_CMP cmpl $0, __local_multiple_threads@GOTOFF(%ecx) ++# else ++# define __SINGLE_THREAD_CMP \ ++ movl __local_multiple_threads@GOT(%ecx), %ecx;\ ++ cmpl $0, (%ecx) ++# endif ++# if !defined HAVE_HIDDEN || !USE___THREAD ++# define SINGLE_THREAD_P \ ++ SETUP_PIC_REG (cx); \ ++ addl $_GLOBAL_OFFSET_TABLE_, %ecx; \ ++ __SINGLE_THREAD_CMP ++# else ++# define SINGLE_THREAD_P \ ++ call __i686.get_pc_thunk.cx; \ ++ addl $_GLOBAL_OFFSET_TABLE_, %ecx; \ ++ __SINGLE_THREAD_CMP ++# endif ++# endif ++# endif ++ ++#elif !defined __ASSEMBLER__ ++ ++/* This code should never be used but we define it anyhow. */ ++# define SINGLE_THREAD_P (1) ++ ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/tls.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/tls.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/tls.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/linuxthreads/tls.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,93 @@ ++/* Definition for thread-local data handling. linuxthreads/i386 version. ++ Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Modification for FreeBSD by Petr Salinger, 2005. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _FREEBSD_TLS_H ++#define _FREEBSD_TLS_H ++ ++#include ++ ++/* We can support TLS only if the floating-stack support is available. ++ To avoid bothering with the TLS support code at all, ++ use configure --without-tls. ++ ++ We need USE_TLS to be consistently defined, for ldsodefs.h conditionals. ++ But some of the code below can cause problems in building libpthread ++*/ ++ ++#if defined HAVE_TLS_SUPPORT \ ++ && (defined FLOATING_STACKS || !defined IS_IN_libpthread) ++ ++# ifndef __ASSEMBLER__ ++ ++#undef TLS_INIT_TP ++#undef TLS_SETUP_GS_SEGMENT ++ ++#include ++#include ++ ++ ++/* Code to initially initialize the thread pointer. This might need ++ special attention since 'errno' is not yet available and if the ++ operation can cause a failure 'errno' must not be touched. */ ++ ++# define TLS_DO_SET_GSBASE(descr) \ ++({ \ ++ long base = (long) descr; \ ++ int result; \ ++ asm volatile ( \ ++ "pushl %3\n\t" \ ++ "pushl %2\n\t" \ ++ "pushl %1\n\t" \ ++ "int $0x80\n\t" \ ++ "popl %3\n\t" \ ++ "popl %3\n\t" \ ++ "popl %3\n\t" \ ++ : "=a" (result) \ ++ : "0" (SYS_sysarch), \ ++ "i" (I386_SET_GSBASE), \ ++ "d" (&base) \ ++ : "memory", "cc" ); \ ++ result; \ ++}) ++ ++# define TLS_SETUP_GS_SEGMENT(descr, secondcall) \ ++ (TLS_DO_SET_GSBASE(descr) \ ++ ? "set_thread_area failed when setting up thread-local storage\n" : NULL) ++ ++/* The value of this macro is null if successful, or an error string. */ ++ ++# define TLS_INIT_TP(descr, secondcall) \ ++ ({ \ ++ void *_descr = (descr); \ ++ tcbhead_t *head = _descr; \ ++ \ ++ head->tcb = _descr; \ ++ /* For now the thread descriptor is at the same address. */ \ ++ head->self = _descr; \ ++ \ ++ INIT_SYSINFO; \ ++ TLS_SETUP_GS_SEGMENT (_descr, secondcall); \ ++ }) ++ ++# endif /* __ASSEMBLER__ */ ++ ++#endif /* HAVE_TLS_SUPPORT && (FLOATING_STACKS || !IS_IN_libpthread) */ ++ ++#endif /* _FREEBSD_TLS_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/makecontext.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/makecontext.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/makecontext.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/makecontext.S 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,113 @@ ++/* Create new context. ++ Copyright (C) 2001,02 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Ulrich Drepper , 2001. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++#include ++ ++ ++ENTRY(__makecontext) ++ movl 4(%esp), %eax ++ ++ /* Load the address of the function we are supposed to run. */ ++ movl 8(%esp), %ecx ++ ++ /* Compute the address of the stack. The information comes from ++ to us_stack element. */ ++ movl oSS_SP(%eax), %edx ++ movl %ecx, oEIP(%eax) ++ addl oSS_SIZE(%eax), %edx ++ ++ /* Put the next context on the new stack (from the uc_link ++ element). */ ++ movl oLINK(%eax), %ecx ++ movl %ecx, -4(%edx) ++ ++ /* Remember the number of parameters for the exit handler since ++ it has to remove them. We store the number in the EBX register ++ which the function we will call must preserve. */ ++ movl 12(%esp), %ecx ++ movl %ecx, oEBX(%eax) ++ ++ /* Make room on the new stack for the parameters. */ ++ negl %ecx ++ leal -8(%edx,%ecx,4), %edx ++ negl %ecx ++ /* Store the future stack pointer. */ ++ movl %edx, oESP(%eax) ++ ++ /* Copy all the parameters. */ ++ jecxz 2f ++1: movl 12(%esp,%ecx,4), %eax ++ movl %eax, (%edx,%ecx,4) ++ decl %ecx ++ jnz 1b ++2: ++ ++ /* If the function we call returns we must continue with the ++ context which is given in the uc_link element. To do this ++ set the return address for the function the user provides ++ to a little bit of helper code which does the magic (see ++ below). */ ++#ifdef PIC ++ call 1f ++1: popl %ecx ++ addl $L(exitcode)-1b, %ecx ++ movl %ecx, (%edx) ++#else ++ movl $L(exitcode), (%edx) ++#endif ++ /* 'makecontext' returns no value. */ ++ ret ++ ++ /* This is the helper code which gets called if a function which ++ is registered with 'makecontext' returns. In this case we ++ have to install the context listed in the uc_link element of ++ the context 'makecontext' manipulated at the time of the ++ 'makecontext' call. If the pointer is NULL the process must ++ terminate. */ ++L(exitcode): ++ /* This removes the parameters passed to the function given to ++ 'makecontext' from the stack. EBX contains the number of ++ parameters (see above). */ ++ leal (%esp,%ebx,4), %esp ++ ++#ifdef PIC ++ call 1f ++1: popl %ebx ++ addl $_GLOBAL_OFFSET_TABLE_+[.-1b], %ebx ++#endif ++ popl %eax /* This is the next context. */ ++ testl %eax, %eax ++ je 2f /* If it is zero exit. */ ++ ++ pushl %eax ++ call JUMPTARGET(__setcontext) ++ /* If this returns (which can happen if the syscall fails) we'll ++ exit the program with the return error value (-1). */ ++ ++2: pushl %eax ++ call HIDDEN_JUMPTARGET(exit) ++ /* The 'exit' call should never return. In case it does cause ++ the process to terminate. */ ++ hlt ++END(__makecontext) ++ ++weak_alias(__makecontext, makecontext) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/rfork.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/rfork.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/rfork.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/rfork.S 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,44 @@ ++/* Copyright (C) 1991-1992, 1994-1995, 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++.text; ++ENTRY (__rfork) ++ /* save the return PC value into ECX, ++ preserve stack frame with argument */ ++ movl 0(%esp), %ecx; ++ DO_CALL (rfork, 1) ++ jb SYSCALL_ERROR_LABEL; ++ /* R1 is now 0 for the parent and 1 for the child. Decrement it to ++ make it -1 (all bits set) for the parent, and 0 (no bits set) ++ for the child. Then AND it with R0, so the parent gets ++ R0&-1==R0, and the child gets R0&0==0. */ ++ decl %edx ++ andl %edx, %eax ++ ++ popl %edx ++ cfi_adjust_cfa_offset(-4) ++ jmp *%ecx ++ ++L(pseudo_end): ++ ret ++PSEUDO_END (__rfork) ++ ++weak_alias (__rfork, rfork) ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sigcontextinfo.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sigcontextinfo.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sigcontextinfo.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sigcontextinfo.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,25 @@ ++/* Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#define SIGCONTEXT int _code, struct sigcontext * ++#define SIGCONTEXT_EXTRA_ARGS _code, ++#define GET_PC(ctx) ((void *) (ctx)->sc_eip) ++#define GET_FRAME(ctx) ((void *) (ctx)->sc_ebp) ++#define GET_STACK(ctx) ((void *) (ctx)->sc_esp) ++#define CALL_SIGHANDLER(handler, signo, ctx) \ ++ (handler)((signo), SIGCONTEXT_EXTRA_ARGS (ctx)) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/start_thread.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/start_thread.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/start_thread.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/start_thread.S 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,207 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* __start_thread (flags, stack, func, arg) ++ calls __rfork (flags), and in the child sets the stack pointer and then ++ calls _exit (func (arg)). ++ It cannot be done in portable C. */ ++ ++#include ++#include ++#define SIG_SETMASK 3 ++ ++ .text ++ENTRY (__start_thread) ++ /* End FDE now, because in the child the unwind info will be ++ wrong. */ ++ cfi_endproc ++ ++ /* There is a window of a few instructions, right after the rfork ++ system call, where the handling of a signal would write garbage ++ into the stack shared by the parent and the child (assuming ++ RFMEM is set in flags). To solve this: 1. We block all signals ++ around the rfork system call and unblock them afterwards in ++ the parent and in the child (but only after changing the stack ++ pointer). 2. The child accesses only values passed in registers ++ and on its own stack. This way, if the parent is scheduled to ++ run first, and handles a signal, it will not affect the child; ++ and if the child runs first, and handles a signal, it will use ++ the child's stack and not affect the parent. ++ We need to pass 7 words of info to the child: stack, func, arg, ++ and the signal mask to restore. Since we have only 4 call-saved ++ registers available (%ebx, %esi, %edi, %ebp), we pass only the ++ stack pointer in a register, and the rest through the child's ++ stack. */ ++ pushl %ebp ++ movl %esp, %ebp ++ subl $36, %esp ++ movl %ebx, 32(%esp) ++ ++ movl 8(%ebp), %eax /* flags */ ++ testl $32, %eax /* flags & RFMEM */ ++ jz L(simple) ++ ++ /* Block all signals. */ ++ movl $-1, %eax ++ movl %eax, 16(%esp) ++ movl %eax, 20(%esp) ++ movl %eax, 24(%esp) ++ movl %eax, 28(%esp) ++ leal 16(%esp), %eax ++ movl $SIG_SETMASK, 4(%esp) ++ movl %eax, 8(%esp) ++ movl %eax, 12(%esp) ++ DO_CALL (sigprocmask, 3) ++ jb L(error) ++ ++ /* Copy all info to the child's stack. */ ++ movl 12(%ebp), %ebx /* stack */ ++ subl $32, %ebx /* room for func, arg, sigset_t */ ++ andl $-16, %ebx /* make it 16-bytes aligned */ ++ movl 16(%ebp), %eax /* func */ ++ movl 20(%ebp), %edx /* arg */ ++ movl %eax, 4(%ebx) ++ movl %edx, (%ebx) ++ movl 16(%esp), %eax /* sigset_t word 0 */ ++ movl 20(%esp), %edx /* sigset_t word 1 */ ++ movl %eax, 16(%ebx) ++ movl %edx, 20(%ebx) ++ movl 24(%esp), %eax /* sigset_t word 2 */ ++ movl 28(%esp), %edx /* sigset_t word 3 */ ++ movl %eax, 24(%ebx) ++ movl %edx, 28(%ebx) ++ ++ /* Perform the rfork system call. */ ++ movl 8(%ebp), %eax /* flags */ ++ movl %eax, 4(%esp) ++ DO_CALL (rfork, 1) ++ jb L(error_unmask) ++ ++ /* %edx is now 0 for the parent and 1 for the child. */ ++ testl %edx, %edx ++ jnz L(child) ++ ++ /* Save the child pid, currently in %eax. */ ++ movl %eax, %ebx ++ ++ /* Restore the previous signal mask. */ ++ leal 16(%esp), %eax ++ movl $SIG_SETMASK, 4(%esp) ++ movl %eax, 8(%esp) ++ movl $0, 12(%esp) ++ DO_CALL (sigprocmask, 3) ++ ++ /* Return the child pid, currently in %ebx. */ ++ movl %ebx, %eax ++ addl $32, %esp ++ popl %ebx ++ popl %ebp ++ ret ++ ++L(child):/* Here we are in the child thread. */ ++ ++ /* Set the stack pointer. */ ++ movl %ebx, %esp ++ /* Terminate the stack frame. */ ++ subl %ebp, %ebp ++ ++ movl 4(%esp), %edi ++ ++ /* Restore the previous signal mask. */ ++ leal 16(%esp), %eax ++ movl $SIG_SETMASK, 4(%esp) ++ movl %eax, 8(%esp) ++ movl $0, 12(%esp) ++ DO_CALL (sigprocmask, 3) ++ ++L(child1): ++ /* Call func (arg). */ ++ call *%edi ++ ++ /* Call _exit. */ ++#ifdef PIC ++ call L(here) ++L(here): ++ popl %ebx ++ addl $_GLOBAL_OFFSET_TABLE_+[.-L(here)], %ebx ++#endif ++ pushl %eax ++ call JUMPTARGET (_exit) ++ ++L(simple):/* Simple case without signal mask handling. */ ++ ++ /* Copy all info to the child's stack. */ ++ movl 12(%ebp), %ebx /* stack */ ++ subl $8, %ebx /* room for func, arg */ ++ andl $-16, %ebx /* make it 16-bytes aligned */ ++ movl 16(%ebp), %eax /* func */ ++ movl 20(%ebp), %edx /* arg */ ++ movl %eax, 4(%ebx) ++ movl %edx, (%ebx) ++ ++ /* Perform the rfork system call. */ ++ movl 8(%ebp), %eax /* flags */ ++ movl %eax, 4(%esp) ++ DO_CALL (rfork, 1) ++ jb L(error) ++ ++ /* %edx is now 0 for the parent and 1 for the child. */ ++ testl %edx, %edx ++ jnz L(simple_child) ++ ++ /* Return the child pid, currently in %eax. */ ++ addl $32, %esp ++ popl %ebx ++ popl %ebp ++L(pseudo_end): ++ ret ++ ++L(simple_child):/* Here we are in the child thread. */ ++ ++ /* Set the stack pointer. */ ++ movl %ebx, %esp ++ /* Terminate the stack frame. */ ++ subl %ebp, %ebp ++ ++ movl 4(%esp), %edi ++ ++ jmp L(child1) ++ ++L(error_unmask): ++ ++ /* Save the error code, currently in %eax. */ ++ movl %eax, %ebx ++ ++ /* Restore the previous signal mask. */ ++ leal 16(%esp), %eax ++ movl $SIG_SETMASK, 4(%esp) ++ movl %eax, 8(%esp) ++ movl $0, 12(%esp) ++ DO_CALL (sigprocmask, 3) ++ ++ /* load saved error code */ ++ movl %ebx, %eax ++ ++L(error): ++ addl $32, %esp ++ popl %ebx ++ popl %ebp ++ jmp SYSCALL_ERROR_LABEL ++ cfi_startproc ++PSEUDO_END (__start_thread) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/swapcontext.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/swapcontext.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/swapcontext.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/swapcontext.S 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,32 @@ ++/* swap current context. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++.text ++ENTRY(__swapcontext) ++ clc ++ DO_CALL (swapcontext, 2) ++ jb SYSCALL_ERROR_LABEL ++L(pseudo_end): ++ ret ++ ++PSEUDO_END(__swapcontext) ++ ++weak_alias(__swapcontext, swapcontext) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/io.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/io.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/io.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/io.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,180 @@ ++/* Copyright (C) 1996, 2000, 2002, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_IO_H ++#define _SYS_IO_H 1 ++ ++#include ++ ++__BEGIN_DECLS ++ ++/* If TURN_ON is TRUE, request for permission to do direct i/o on the ++ port numbers in the range [FROM,FROM+NUM-1]. Otherwise, turn I/O ++ permission off for that range. This call requires root privileges. ++ ++ Portability note: not all kFreeBSD platforms support this call. Most ++ platforms based on the PC I/O architecture probably will, however. */ ++extern int ioperm (unsigned long int __from, unsigned long int __num, ++ int __turn_on) __THROW; ++ ++/* Set the I/O privilege level to LEVEL. If LEVEL>3, permission to ++ access any I/O port is granted. This call requires root ++ privileges. */ ++extern int iopl (int __level) __THROW; ++ ++#if defined __GNUC__ && __GNUC__ >= 2 ++ ++static __inline unsigned char ++inb (unsigned short int port) ++{ ++ unsigned char _v; ++ ++ __asm__ __volatile__ ("inb %w1,%0":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline unsigned char ++inb_p (unsigned short int port) ++{ ++ unsigned char _v; ++ ++ __asm__ __volatile__ ("inb %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline unsigned short int ++inw (unsigned short int port) ++{ ++ unsigned short _v; ++ ++ __asm__ __volatile__ ("inw %w1,%0":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline unsigned short int ++inw_p (unsigned short int port) ++{ ++ unsigned short int _v; ++ ++ __asm__ __volatile__ ("inw %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline unsigned int ++inl (unsigned short int port) ++{ ++ unsigned int _v; ++ ++ __asm__ __volatile__ ("inl %w1,%0":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline unsigned int ++inl_p (unsigned short int port) ++{ ++ unsigned int _v; ++ __asm__ __volatile__ ("inl %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline void ++outb (unsigned char value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outb %b0,%w1": :"a" (value), "Nd" (port)); ++} ++ ++static __inline void ++outb_p (unsigned char value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outb %b0,%w1\noutb %%al,$0x80": :"a" (value), ++ "Nd" (port)); ++} ++ ++static __inline void ++outw (unsigned short int value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outw %w0,%w1": :"a" (value), "Nd" (port)); ++ ++} ++ ++static __inline void ++outw_p (unsigned short int value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outw %w0,%w1\noutb %%al,$0x80": :"a" (value), ++ "Nd" (port)); ++} ++ ++static __inline void ++outl (unsigned int value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outl %0,%w1": :"a" (value), "Nd" (port)); ++} ++ ++static __inline void ++outl_p (unsigned int value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outl %0,%w1\noutb %%al,$0x80": :"a" (value), ++ "Nd" (port)); ++} ++ ++static __inline void ++insb (unsigned short int port, void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; insb":"=D" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++static __inline void ++insw (unsigned short int port, void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; insw":"=D" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++static __inline void ++insl (unsigned short int port, void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; insl":"=D" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++static __inline void ++outsb (unsigned short int port, const void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; outsb":"=S" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++static __inline void ++outsw (unsigned short int port, const void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; outsw":"=S" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++static __inline void ++outsl (unsigned short int port, const void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; outsl":"=S" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++#endif /* GNU C */ ++ ++__END_DECLS ++#endif /* _SYS_IO_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/perm.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/perm.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/perm.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/perm.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,43 @@ ++/* Copyright (C) 1996, 1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_PERM_H ++#define _SYS_PERM_H 1 ++ ++#include ++ ++__BEGIN_DECLS ++ ++/* Set port input/output permissions. */ ++extern int ioperm (unsigned long int __from, unsigned long int __num, ++ int __turn_on) __THROW; ++ ++ ++/* Change I/O privilege level. */ ++extern int iopl (int __level) __THROW; ++ ++extern int i386_set_ioperm (unsigned long int __from, unsigned long int __num, ++ int __turn_on) __THROW; ++ ++/* Retrieve a contiguous range of port input/output permissions. */ ++extern int i386_get_ioperm (unsigned long int __from, unsigned long int *__num, ++ int *__turned_on) __THROW; ++ ++__END_DECLS ++ ++#endif /* _SYS_PERM_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/vm86.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/vm86.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/vm86.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys/vm86.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,53 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_VM86_H ++#define _SYS_VM86_H 1 ++ ++#include ++ ++/* Possible values for the 'cmd' argument to i386_vm86. */ ++enum ++ { ++ VM86_INIT = 1, ++#define VM86_INIT VM86_INIT ++ VM86_GET_VME = 3 ++#define VM86_GET_VME VM86_GET_VME ++ }; ++ ++/* Argument structure for VM86_INIT. */ ++struct vm86_init_args ++ { ++ int debug; ++ int cpu_type; ++ unsigned char int_map[32]; ++ }; ++ ++/* Argument structure for VM86_GET_VME. */ ++struct vm86_vme_args ++ { ++ int state; ++ }; ++ ++__BEGIN_DECLS ++ ++extern int i386_vm86 (int __cmd, void *__arg); ++ ++__END_DECLS ++ ++#endif /* _SYS_VM86_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys_fork.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys_fork.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys_fork.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys_fork.S 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,33 @@ ++/* Copyright (C) 1991-1992, 1994-1995, 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++.text; ++ENTRY (__syscall_fork) ++ DO_CALL (fork, 0) ++ jb SYSCALL_ERROR_LABEL; ++ /* R1 is now 0 for the parent and 1 for the child. Decrement it to ++ make it -1 (all bits set) for the parent, and 0 (no bits set) ++ for the child. Then AND it with R0, so the parent gets ++ R0&-1==R0, and the child gets R0&0==0. */ ++ decl r1 ++ andl r1, r0 ++L(pseudo_end): ++ ret ++PSEUDO_END (__syscall_fork) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys_lseek.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys_lseek.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys_lseek.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sys_lseek.S 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,31 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++/* lseek returns a 64-bit result in %eax, %edx. This means that in the ++ error case we have to set both %eax and %edx to -1. */ ++ ++PSEUDO_NOERRNO(__syscall_lseek, lseek, 4) ++ jnb L(no_error) ++ call SYSCALL_ERROR_LABEL; ++ orl $-1, %edx; ++L(pseudo_end): ++L(no_error): ++ ret ++PSEUDO_END(__syscall_lseek) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysarch.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysarch.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysarch.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysarch.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,81 @@ ++/* Parameters for the architecture specific system call. i386 version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYSARCH_H ++#define _SYSARCH_H 1 ++ ++#include ++ ++/* Function that can be used as first argument to 'sysarch'. */ ++enum ++ { ++ I386_GET_LDT = 0, ++#define I386_GET_LDT I386_GET_LDT ++ I386_SET_LDT = 1, ++#define I386_SET_LDT I386_SET_LDT ++ I386_GET_IOPERM = 3, ++#define I386_GET_IOPERM I386_GET_IOPERM ++ I386_SET_IOPERM = 4, ++#define I386_SET_IOPERM I386_SET_IOPERM ++ I386_VM86 = 6, ++#define I386_VM86 I386_VM86 ++ I386_GET_FSBASE = 7, ++#define I386_GET_FSBASE I386_GET_FSBASE ++ I386_SET_FSBASE = 8, ++#define I386_SET_FSBASE I386_SET_FSBASE ++ I386_GET_GSBASE = 9, ++#define I386_GET_GSBASE I386_GET_GSBASE ++ I386_SET_GSBASE = 10 ++#define I386_SET_GSBASE I386_SET_GSBASE ++ }; ++ ++/* Argument struct for I386_GET_LDT and I386_SET_LDT. */ ++struct i386_ldt_args ++ { ++ int start; ++ union descriptor *descs; ++ int num; ++ }; ++ ++/* Argument struct for I386_GET_IOPERM and I386_SET_IOPERM. */ ++struct i386_ioperm_args ++ { ++ unsigned int start; ++ unsigned int length; ++ int enable; ++ }; ++ ++/* Argument struct for I386_VM86. */ ++struct i386_vm86_args ++ { ++ int sub_op; ++ void *sub_args; ++ }; ++ ++__BEGIN_DECLS ++ ++extern int sysarch (int __cmd, void *__arg); ++ ++#ifdef _LIBC ++extern int __sysarch (int __cmd, void *__arg); ++#endif ++ ++__END_DECLS ++ ++#endif /* _SYSARCH_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/syscall.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/syscall.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/syscall.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/syscall.S 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,33 @@ ++/* Copyright (C) 1993, 1995-1998, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++ .text; ++ENTRY (syscall) ++ popl %ecx /* Pop return address into %ecx. */ ++ cfi_adjust_cfa_offset (-4) ++ movl 0(%esp), %eax /* Load syscall number into %eax. */ ++ int $0x80 /* Do the system call. */ ++ pushl %ecx /* Push back return address. */ ++ cfi_adjust_cfa_offset (4) ++ jb SYSCALL_ERROR_LABEL; /* Jump to error handler if error. */ ++ ++L(pseudo_end): ++ ret /* Return to caller. */ ++PSEUDO_END (syscall) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysdep.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysdep.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysdep.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysdep.S 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,38 @@ ++/* Copyright (C) 1995-1998, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++/* The following code is only used in the shared library when we ++ compile the reentrant version. Otherwise each system call defines ++ its own version. */ ++ ++#ifndef PIC ++ ++/* The syscall stubs jump here when they detect an error. ++ The code for FreeBSD is identical to the canonical Unix/i386 code. */ ++ ++#undef CALL_MCOUNT ++#define CALL_MCOUNT /* Don't insert the profiling call, it clobbers %eax. */ ++ ++ .text ++ENTRY (__syscall_error) ++#define __syscall_error __syscall_error_1 ++#include ++ ++#endif /* !PIC */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysdep.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysdep.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysdep.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/sysdep.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,207 @@ ++/* Copyright (C) 1992,1993,1995-2000,2002,2003,2004 ++ Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Ulrich Drepper, , August 1995. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _FREEBSD_I386_SYSDEP_H ++#define _FREEBSD_I386_SYSDEP_H 1 ++ ++/* There is some commonality. */ ++#include ++#include ++#include ++/* Defines RTLD_PRIVATE_ERRNO and USE_DL_SYSINFO. */ ++#include ++#include ++ ++#ifdef __ASSEMBLER__ ++ ++/* We don't want the label for the error handle to be global when we define ++ it here. */ ++#ifdef PIC ++# define SYSCALL_ERROR_LABEL 0f ++#else ++# define SYSCALL_ERROR_LABEL syscall_error ++#endif ++ ++#undef PSEUDO ++#define PSEUDO(name, syscall_name, args) \ ++ .text; \ ++ ENTRY (name) \ ++ DO_CALL (syscall_name, args); \ ++ jb SYSCALL_ERROR_LABEL; \ ++ L(pseudo_end): ++ ++#undef PSEUDO_END ++#define PSEUDO_END(name) \ ++ SYSCALL_ERROR_HANDLER \ ++ END (name) ++ ++#undef PSEUDO_NOERRNO ++#define PSEUDO_NOERRNO(name, syscall_name, args) \ ++ .text; \ ++ ENTRY (name) \ ++ DO_CALL (syscall_name, args) ++ ++#undef PSEUDO_END_NOERRNO ++#define PSEUDO_END_NOERRNO(name) \ ++ END (name) ++ ++#define ret_NOERRNO ret ++ ++/* The function has to return the error code. */ ++#undef PSEUDO_ERRVAL ++#define PSEUDO_ERRVAL(name, syscall_name, args) \ ++ .text; \ ++ ENTRY (name) \ ++ DO_CALL (syscall_name, args); \ ++ ++#undef PSEUDO_END_ERRVAL ++#define PSEUDO_END_ERRVAL(name) \ ++ END (name) ++ ++#define ret_ERRVAL ret ++ ++#ifndef PIC ++# define SYSCALL_ERROR_HANDLER /* Nothing here; code in sysdep.S is used. */ ++#else ++ ++# if RTLD_PRIVATE_ERRNO ++# define SYSCALL_ERROR_HANDLER \ ++0:SETUP_PIC_REG(cx); \ ++ addl $_GLOBAL_OFFSET_TABLE_, %ecx; \ ++ movl %eax, rtld_errno@GOTOFF(%ecx); \ ++ orl $-1, %eax; \ ++ jmp L(pseudo_end); ++ ++# elif defined _LIBC_REENTRANT ++ ++# if USE___THREAD ++# ifndef NOT_IN_libc ++# define SYSCALL_ERROR_ERRNO __libc_errno ++# else ++# define SYSCALL_ERROR_ERRNO errno ++# endif ++# define SYSCALL_ERROR_HANDLER \ ++0:SETUP_PIC_REG (cx); \ ++ addl $_GLOBAL_OFFSET_TABLE_, %ecx; \ ++ movl SYSCALL_ERROR_ERRNO@GOTNTPOFF(%ecx), %ecx; \ ++ SYSCALL_ERROR_HANDLER_TLS_STORE (%eax, %ecx); \ ++ orl $-1, %eax; \ ++ jmp L(pseudo_end); ++# ifndef NO_TLS_DIRECT_SEG_REFS ++# define SYSCALL_ERROR_HANDLER_TLS_STORE(src, destoff) \ ++ movl src, %gs:(destoff) ++# else ++# define SYSCALL_ERROR_HANDLER_TLS_STORE(src, destoff) \ ++ addl %gs:0, destoff; \ ++ movl src, (destoff) ++# endif ++# else ++# define SYSCALL_ERROR_HANDLER \ ++0:pushl %ebx; \ ++ cfi_adjust_cfa_offset (4); \ ++ cfi_rel_offset (ebx, 0); \ ++ SETUP_PIC_REG (bx); \ ++ addl $_GLOBAL_OFFSET_TABLE_, %ebx; \ ++ pushl %eax; \ ++ cfi_adjust_cfa_offset (4); \ ++ PUSH_ERRNO_LOCATION_RETURN; \ ++ call BP_SYM (__errno_location)@PLT; \ ++ POP_ERRNO_LOCATION_RETURN; \ ++ popl %ecx; \ ++ cfi_adjust_cfa_offset (-4); \ ++ popl %ebx; \ ++ cfi_adjust_cfa_offset (-4); \ ++ cfi_restore (ebx); \ ++ movl %ecx, (%eax); \ ++ orl $-1, %eax; \ ++ jmp L(pseudo_end); ++/* A quick note: it is assumed that the call to `__errno_location' does ++ not modify the stack! */ ++# endif ++# else ++/* Store (%eax) into errno through the GOT. */ ++# define SYSCALL_ERROR_HANDLER \ ++0:SETUP_PIC_REG(cx); \ ++ addl $_GLOBAL_OFFSET_TABLE_, %ecx; \ ++ movl errno@GOT(%ecx), %ecx; \ ++ movl %eax, (%ecx); \ ++ orl $-1, %eax; \ ++ jmp L(pseudo_end); ++# endif /* _LIBC_REENTRANT */ ++#endif /* PIC */ ++ ++/* ++ FreeBSD expects the system call arguments on the stack, ++ syscall number is in %eax. ++ return value is in %eax + %edx ++ error is signaled via cflags. ++ all other data registers are preserved ++ ++ syscall number %eax call-clobbered ++ ++ The stack layout upon entering the function is: ++ ++ 20(%esp) Arg# 5 ++ 16(%esp) Arg# 4 ++ 12(%esp) Arg# 3 ++ 8(%esp) Arg# 2 ++ 4(%esp) Arg# 1 ++ (%esp) Return address ++ ++ (Of course a function with say 3 arguments does not have entries for ++ arguments 4 and 5.) ++ ++*/ ++ ++#undef DO_CALL ++#define DO_CALL(syscall_name, args) \ ++ movl $SYS_ify (syscall_name), %eax; \ ++ int $0x80 \ ++ ++#else /* !__ASSEMBLER__ */ ++ ++#include ++ ++/* Consistency check for position-independent code. */ ++#ifdef __PIC__ ++# define check_consistency() \ ++ ({ int __res; \ ++ __asm__ __volatile__ \ ++ ("call __i686.get_pc_thunk.cx;" \ ++ "addl $_GLOBAL_OFFSET_TABLE_, %%ecx;" \ ++ "subl %%ebx, %%ecx;" \ ++ "je 1f;" \ ++ "ud2;" \ ++ "1:\n" \ ++ ".section .gnu.linkonce.t.__i686.get_pc_thunk.cx,\"ax\",@progbits;" \ ++ ".globl __i686.get_pc_thunk.cx;" \ ++ ".hidden __i686.get_pc_thunk.cx;" \ ++ ".type __i686.get_pc_thunk.cx,@function;" \ ++ "__i686.get_pc_thunk.cx:" \ ++ "movl (%%esp), %%ecx;" \ ++ "ret;" \ ++ ".previous" \ ++ : "=c" (__res)); \ ++ __res; }) ++#endif ++ ++#endif /* __ASSEMBLER__ */ ++ ++#endif /* _FREEBSD_I386_SYSDEP_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/ucontext_i.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/ucontext_i.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/ucontext_i.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/ucontext_i.h 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,38 @@ ++/* Offsets and other constants needed in the *context() function ++ implementation. ++ Copyright (C) 2001 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* Offsets of the fields in the ucontext_t structure. */ ++#define oSIGMASK 0 ++#define oGS 20 ++#define oFS 24 ++#define oEDI 36 ++#define oESI 40 ++#define oEBP 44 ++#define oEBX 52 ++#define oEDX 56 ++#define oECX 60 ++#define oEAX 64 ++ ++#define oEIP 76 ++#define oESP 88 ++ ++#define oLINK 656 ++#define oSS_SP 660 ++#define oSS_SIZE 664 +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/vfork.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/vfork.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/vfork.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/i386/vfork.S 2006-10-18 09:59:56.000000000 +0200 +@@ -0,0 +1,58 @@ ++/* Copyright (C) 1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++/* Clone the calling process, but without copying the whole address space. ++ The calling process is suspended until the new process exits or is ++ replaced by a call to `execve'. Return -1 for errors, 0 to the new process, ++ and the process ID of the new process to the old process. */ ++ ++ENTRY (__vfork) ++ ++ /* Pop the return PC value into ECX. */ ++ popl %ecx ++ cfi_adjust_cfa_offset(-4) ++ ++ /* Perform the system call. */ ++ DO_CALL (vfork, 0) ++ jb L(error) /* Branch forward if it failed. */ ++ ++ /* In the parent process, %edx == 0, %eax == child pid. */ ++ /* In the child process, %edx == 1, %eax == parent pid. */ ++ ++ /* Change %eax to be 0 in the child process. */ ++ decl %edx ++ andl %edx, %eax ++ ++ /* Jump to the return PC. */ ++ jmp *%ecx ++ ++L(error): ++ /* Push back the return PC. */ ++ pushl %ecx ++ cfi_adjust_cfa_offset(4) ++ ++ /* Branch to the error handler, hidden in PSEUDO_END. */ ++ jmp SYSCALL_ERROR_LABEL ++L(pseudo_end): ++ ret ++PSEUDO_END (__vfork) ++libc_hidden_def (__vfork) ++ ++weak_alias (__vfork, vfork) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/if_index.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/if_index.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/if_index.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/if_index.c 2006-11-22 11:44:31.000000000 +0100 +@@ -0,0 +1,303 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++ ++typedef int (*if_fn) (void *private, unsigned int index, const char *name); ++ ++/* Iterate through all present interfaces. ++ Call FN once for every interface, returning immediately if FN returns ++ a nonzero value. */ ++static void ++if_iterate (if_fn fn, void *private) ++{ ++ int request[6] = { CTL_NET, PF_ROUTE, 0, 0, NET_RT_IFLIST, 0 }; ++ char *buf; ++ size_t bufsize = 512; ++ char *bufend; ++ char *p; ++ ++ /* Call the kernel function sysctl_iflist() in /usr/src/sys/net/rtsock.c. */ ++ for (;;) ++ { ++ buf = alloca (bufsize); ++ if (__sysctl (request, 6, buf, &bufsize, NULL, 0) >= 0) ++ break; ++ if (errno != ENOMEM) ++ return; ++ bufsize *= 2; ++ } ++ ++ bufend = buf + bufsize; ++ for (p = buf; p < bufend; ) ++ { ++ struct if_msghdr *msg = (struct if_msghdr *) p; ++ ++ if (msg->ifm_version != RTM_VERSION) ++ abort (); ++ ++ switch (msg->ifm_type) ++ { ++ case RTM_IFINFO: ++ if (msg->ifm_addrs & RTA_IFP) ++ { ++ unsigned int index; ++ struct sockaddr_dl *sdl; ++ char namebuf[IFNAMSIZ + 1]; ++ size_t namelen; ++ ++ index = msg->ifm_index; ++ if (index == 0) ++ abort (); ++ ++ sdl = (struct sockaddr_dl *) (msg + 1); ++ namelen = sdl->sdl_nlen; ++ /* Avoid overflowing namebuf[]. */ ++ if (namelen > IFNAMSIZ) ++ namelen = IFNAMSIZ; ++ memcpy (namebuf, sdl->sdl_data, namelen); ++ namebuf[namelen] = '\0'; ++ ++ /* Call FN now. */ ++ if (fn (private, index, namebuf)) ++ return; ++ } ++ break; ++ ++ case RTM_NEWADDR: ++ break; ++ ++ default: ++ abort (); ++ } ++ ++ p += msg->ifm_msglen; ++ } ++} ++ ++/* ------------------------------------------------------------------------- */ ++ ++struct nametoindex_locals ++ { ++ const char *name; ++ unsigned int index; ++ }; ++ ++static int ++nametoindex_aux (void *private, unsigned int index, const char *name) ++{ ++ struct nametoindex_locals *l = (struct nametoindex_locals *) private; ++ if (strcmp (name, l->name) == 0) ++ { ++ l->index = index; ++ return 1; ++ } ++ return 0; ++} ++ ++/* Return the index of an interface given by name. */ ++unsigned int ++if_nametoindex (const char *ifname) ++{ ++ struct nametoindex_locals l; ++ ++ l.name = ifname; ++ l.index = 0; ++ if_iterate (nametoindex_aux, &l); ++ ++ return l.index; ++} ++libc_hidden_def (if_nametoindex) ++ ++/* ------------------------------------------------------------------------- */ ++ ++struct indextoname_locals ++ { ++ unsigned int index; ++ char *name; ++ char *retval; ++ }; ++ ++static int ++indextoname_aux (void *private, unsigned int index, const char *name) ++{ ++ struct indextoname_locals *l = (struct indextoname_locals *) private; ++ if (index == l->index) ++ { ++ strncpy (l->name, name, IF_NAMESIZE); ++ l->retval = l->name; ++ return 1; ++ } ++ __set_errno (ENXIO); ++ return 0; ++} ++ ++/* Return the name of an interface given by name. */ ++char * ++if_indextoname (unsigned int ifindex, char *ifname) ++{ ++ struct indextoname_locals l; ++ ++ l.index = ifindex; ++ l.name = ifname; ++ l.retval = NULL; ++ if_iterate (indextoname_aux, &l); ++ return l.retval; ++} ++libc_hidden_def (if_indextoname) ++ ++/* ------------------------------------------------------------------------- */ ++ ++struct nameindex_locals ++ { ++ /* Resizable array of 'struct if_nameindex'. */ ++ struct if_nameindex *s_array; ++ size_t s_len; ++ size_t s_allocated; ++ /* Resizable array of char. */ ++ char *c_array; ++ size_t c_len; ++ size_t c_allocated; ++ /* Out-of-memory indicator. */ ++ int oom; ++ }; ++ ++static void ++add_s (struct nameindex_locals *l, unsigned int index, char *name) ++{ ++ if (l->s_len == l->s_allocated) ++ { ++ size_t new_allocated = 2 * l->s_allocated + 1; ++ struct if_nameindex *new_array = ++ (struct if_nameindex *) ++ realloc (l->s_array, new_allocated * sizeof (struct if_nameindex)); ++ if (new_array == NULL) ++ { ++ l->oom = 1; ++ return; ++ } ++ l->s_array = new_array; ++ l->s_allocated = new_allocated; ++ } ++ /* Now l->s_len < l->s_allocated. */ ++ l->s_array[l->s_len].if_index = index; ++ l->s_array[l->s_len].if_name = name; ++ l->s_len++; ++} ++ ++static __inline size_t ++add_c (struct nameindex_locals *l, const char *name) ++{ ++ size_t n = strlen (name) + 1; ++ size_t result_offset; ++ if (l->c_len + n > l->c_allocated) ++ { ++ size_t new_allocated = ++ (l->c_len + n < 2 * l->c_allocated + 1 ++ ? l->c_len + n ++ : 2 * l->c_allocated + 1); ++ char *new_array = (char *) realloc (l->c_array, new_allocated); ++ if (new_array == NULL) ++ { ++ l->oom = 1; ++ return 0; ++ } ++ l->c_array = new_array; ++ l->c_allocated = new_allocated; ++ } ++ /* Now l->c_len + n <= l->c_allocated. */ ++ result_offset = l->c_len; ++ memcpy (l->c_array + l->c_len, name, n); ++ l->c_len += n; ++ return result_offset; ++} ++ ++static int ++nameindex_aux (void *private, unsigned int index, const char *name) ++{ ++ struct nameindex_locals *l = (struct nameindex_locals *) private; ++ ++ size_t name_offset = add_c (l, name); ++ if (!l->oom) ++ { ++ add_s (l, index, (char *) NULL + name_offset); ++ if (!l->oom) ++ return 0; ++ } ++ return 1; ++} ++ ++/* Return an array of 'struct if_nameindex', one for each present ++ interface. */ ++struct if_nameindex * ++if_nameindex (void) ++{ ++ struct nameindex_locals l; ++ ++ l.s_array = NULL; l.s_len = 0; l.s_allocated = 0; ++ l.c_array = NULL; l.c_len = 0; l.c_allocated = 0; ++ l.oom = 0; ++ if_iterate (nameindex_aux, &l); ++ if (!l.oom) ++ { ++ /* Convert all offsets to real pointers. */ ++ struct if_nameindex *p; ++ struct if_nameindex *p_end; ++ ++ for (p = l.s_array, p_end = p + l.s_len; p < p_end; p++) ++ p->if_name = l.c_array + (p->if_name - (char *) NULL); ++ ++ /* Add a terminating entry. */ ++ add_s (&l, 0, NULL); ++ } ++ if (l.oom) ++ { ++ free (l.s_array); ++ free (l.c_array); ++ __set_errno (ENOMEM); ++ return NULL; ++ } ++ return l.s_array; ++} ++libc_hidden_def (if_nameindex) ++ ++/* ------------------------------------------------------------------------- */ ++ ++/* Free an array returned by if_nameindex(). */ ++void ++if_freenameindex (struct if_nameindex *ifn) ++{ ++ if (ifn != NULL) ++ { ++ /* Free c_array. */ ++ free (ifn[0].if_name); ++ /* Free s_array. */ ++ free (ifn); ++ } ++} ++libc_hidden_def (if_freenameindex) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ifaddrs.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ifaddrs.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ifaddrs.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ifaddrs.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,171 @@ ++/* getifaddrs -- get names and addresses of all network interfaces ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++ ++/* Create a linked list of `struct ifaddrs' structures, one for each ++ network interface on the host machine. If successful, store the ++ list in *IFAP and return 0. On errors, return -1 and set `errno'. */ ++int ++getifaddrs (struct ifaddrs **ifap) ++{ ++ /* This implementation handles only IPv4 interfaces. ++ The various ioctls below will only work on an AF_INET socket. ++ Some different mechanism entirely must be used for IPv6. */ ++ int fd = __socket (AF_INET, SOCK_DGRAM, 0); ++ struct ifreq *ifreqs; ++ int nifs; ++ ++ if (fd < 0) ++ return -1; ++ ++ __ifreq (&ifreqs, &nifs, fd); ++ if (ifreqs == NULL) /* XXX doesn't distinguish error vs none */ ++ { ++ __close (fd); ++ return -1; ++ } ++ ++ /* Now we have the list of interfaces and each one's address. ++ Put it into the expected format and fill in the remaining details. */ ++ if (nifs == 0) ++ *ifap = NULL; ++ else ++ { ++ struct ++ { ++ struct ifaddrs ia; ++ struct sockaddr addr, netmask, broadaddr; ++ char name[IF_NAMESIZE]; ++ } *storage; ++ struct ifreq *ifr; ++ int i, j; ++ ++ storage = malloc (nifs * sizeof storage[0]); ++ if (storage == NULL) ++ { ++ __close (fd); ++ __if_freereq (ifreqs, nifs); ++ return -1; ++ } ++ ++ i = 0; ++ j = 0; ++ ifr = ifreqs; ++ do ++ { ++ struct ifreq *next_ifr = __if_nextreq (ifr); ++ ++ /* Fill in all pointers to the storage we've already allocated. */ ++ storage[i].ia.ifa_next = &storage[i + 1].ia; ++ storage[i].ia.ifa_addr = &storage[i].addr; ++ storage[i].ia.ifa_netmask = &storage[i].netmask; ++ storage[i].ia.ifa_broadaddr = &storage[i].broadaddr; /* & dstaddr */ ++ ++ /* Now copy the information we already have from SIOCGIFCONF. */ ++ storage[i].ia.ifa_name = strncpy (storage[i].name, ifr->ifr_name, ++ sizeof storage[i].name); ++ storage[i].addr = ifr->ifr_addr; ++ ++ /* The SIOCGIFCONF call filled in only the name and address. ++ Now we must also ask for the other information we need. */ ++ ++ if (__ioctl (fd, SIOCGIFFLAGS, ifr) < 0) ++ break; ++ ++ /* Ignore interfaces that are down. */ ++ if (ifr->ifr_flags & IFF_UP) ++ { ++ storage[i].ia.ifa_flags = ifr->ifr_flags; ++ ++ /* Retrieve the value for storage[i].ia.ifa_netmask. */ ++ ifr->ifr_addr = storage[i].addr; ++ if (__ioctl (fd, SIOCGIFNETMASK, ifr) < 0) ++ break; ++ storage[i].netmask = ifr->ifr_netmask; ++ ++ /* Retrieve the value for storage[i].ia.ifa_broadaddr. */ ++ if (ifr->ifr_flags & IFF_BROADCAST) ++ { ++ ifr->ifr_addr = storage[i].addr; ++ if (__ioctl (fd, SIOCGIFBRDADDR, ifr) < 0) ++ break; ++ storage[i].broadaddr = ifr->ifr_broadaddr; ++ } ++ else if (ifr->ifr_flags & IFF_POINTOPOINT) ++ { ++ ifr->ifr_addr = storage[i].addr; ++ if (__ioctl (fd, SIOCGIFDSTADDR, ifr) < 0) ++ break; ++ storage[i].broadaddr = ifr->ifr_dstaddr; ++ } ++ else ++ /* Just 'cause. */ ++ memset (&storage[i].broadaddr, 0, sizeof storage[i].broadaddr); ++ ++ storage[i].ia.ifa_data = NULL; /* Nothing here for now. */ ++ ++ ++i; ++ } ++ ++ ++j; ++ ifr = next_ifr; ++ } while (j < nifs); ++ if (j < nifs) /* Broke out early on error. */ ++ { ++ __close (fd); ++ free (storage); ++ __if_freereq (ifreqs, nifs); ++ return -1; ++ } ++ ++ if (i == 0) ++ *ifap = NULL; ++ else ++ { ++ storage[i - 1].ia.ifa_next = NULL; ++ *ifap = &storage[0].ia; ++ } ++ ++ __close (fd); ++ __if_freereq (ifreqs, nifs); ++ } ++ ++ return 0; ++} ++#ifndef getifaddrs ++libc_hidden_def (getifaddrs) ++#endif ++ ++void ++freeifaddrs (struct ifaddrs *ifa) ++{ ++ free (ifa); ++} ++libc_hidden_def (freeifaddrs) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ifreq.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ifreq.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ifreq.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ifreq.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,93 @@ ++/* Copyright (C) 1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++ ++/* The FreeBSD ioctl SIOCGIFCONF returns the list if interfaces as a ++ concatenation of records of different size, each having at least ++ sizeof (struct ifreq) bytes. */ ++ ++ ++void ++__ifreq (struct ifreq **ifreqs, int *num_ifs, int sockfd) ++{ ++ int fd = sockfd; ++ struct ifconf ifc; ++ int rq_len; ++ int nifs; ++ char *ifstart; ++ char *ifend; ++ struct ifreq *ifr; ++ /* FreeBSD has many interfaces, many of them are usually down. */ ++# define RQ_IFS 16 ++ /* We have to assume all records are of limited size, so that we know ++ when we can stop enlarging the buffer. */ ++# define RQ_MAXSIZE 256 ++ ++ if (fd < 0) ++ fd = __opensock (); ++ if (fd < 0) ++ { ++ *num_ifs = 0; ++ *ifreqs = NULL; ++ return; ++ } ++ ++ ifc.ifc_buf = NULL; ++ rq_len = RQ_IFS * sizeof (struct ifreq) + RQ_MAXSIZE; ++ for (;;) ++ { ++ ifc.ifc_len = rq_len; ++ ifc.ifc_buf = realloc (ifc.ifc_buf, ifc.ifc_len); ++ if (ifc.ifc_buf == NULL || __ioctl (fd, SIOCGIFCONF, &ifc) < 0) ++ { ++ if (ifc.ifc_buf) ++ free (ifc.ifc_buf); ++ ++ if (fd != sockfd) ++ __close (fd); ++ *num_ifs = 0; ++ *ifreqs = NULL; ++ return; ++ } ++ if (ifc.ifc_len + RQ_MAXSIZE <= rq_len) ++ break; ++ rq_len *= 2; ++ } ++ ++ nifs = 0; ++ ifstart = (char *) ifc.ifc_buf; ++ ifend = ifstart + ifc.ifc_len; ++ for (ifr = (struct ifreq *) ifstart; ++ (char *) ifr < ifend; ++ ifr = __if_nextreq (ifr)) ++ nifs++; ++ ++ if (fd != sockfd) ++ __close (fd); ++ ++ *num_ifs = nifs; ++ *ifreqs = realloc (ifc.ifc_buf, ifc.ifc_len); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/init-first.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/init-first.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/init-first.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/init-first.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,128 @@ ++/* Initialization code run first thing by the ELF startup code. Linux version. ++ Copyright (C) 1995-1999,2000,01,02,03,2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++#include ++ ++/* The function is called from assembly stubs the compiler can't see. */ ++static void init (int, char **, char **) __attribute__ ((used)); ++ ++/* Set nonzero if we have to be prepared for more then one libc being ++ used in the process. Safe assumption if initializer never runs. */ ++int __libc_multiple_libcs attribute_hidden = 1; ++ ++/* Remember the command line argument and enviroment contents for ++ later calls of initializers for dynamic libraries. */ ++int __libc_argc attribute_hidden; ++char **__libc_argv attribute_hidden; ++ ++ ++static void ++init (int argc, char **argv, char **envp) ++{ ++#ifdef USE_NONOPTION_FLAGS ++ extern void __getopt_clean_environment (char **); ++#endif ++ ++ __libc_multiple_libcs = &_dl_starting_up && !_dl_starting_up; ++ ++ /* Make sure we don't initialize twice. */ ++ if (!__libc_multiple_libcs) ++ { ++ /* Set the FPU control word to the proper default value if the ++ kernel would use a different value. (In a static program we ++ don't have this information.) */ ++#if 0 ++ /* at least on kFreeBSD set it even if SHARED, ++ fixes "make check" failures like math/test-fpucw.out */ ++#ifdef SHARED ++ if (__fpu_control != GLRO(dl_fpu_control)) ++#endif ++#endif ++ __setfpucw (__fpu_control); ++ } ++ ++ /* Save the command-line arguments. */ ++ __libc_argc = argc; ++ __libc_argv = argv; ++ __environ = envp; ++ ++#ifndef SHARED ++ __libc_init_secure (); ++ ++ /* First the initialization which normally would be done by the ++ dynamic linker. */ ++ _dl_non_dynamic_init (); ++#endif ++ ++ __init_misc (argc, argv, envp); ++ ++#ifdef USE_NONOPTION_FLAGS ++ /* This is a hack to make the special getopt in GNU libc working. */ ++ __getopt_clean_environment (envp); ++#endif ++ ++#ifdef SHARED ++ __libc_global_ctors (); ++#endif ++} ++ ++#ifdef SHARED ++ ++strong_alias (init, _init); ++ ++extern void __libc_init_first (void); ++ ++void ++__libc_init_first (void) ++{ ++} ++ ++#else ++extern void __libc_init_first (int argc, char **argv, char **envp); ++ ++void ++__libc_init_first (int argc, char **argv, char **envp) ++{ ++ init (argc, argv, envp); ++} ++#endif ++ ++ ++/* This function is defined here so that if this file ever gets into ++ ld.so we will get a link error. Having this file silently included ++ in ld.so causes disaster, because the _init definition above will ++ cause ld.so to gain an init function, which is not a cool thing. */ ++ ++extern void _dl_start (void) __attribute__ ((noreturn)); ++ ++void ++_dl_start (void) ++{ ++ abort (); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/kernel-features.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/kernel-features.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/kernel-features.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/kernel-features.h 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,43 @@ ++/* Set flags signalling availability of kernel features based on given ++ kernel version number. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef __KFREEBSD_KERNEL_VERSION ++/* We assume the worst; all kernels should be supported. */ ++# define __KFREEBSD_KERNEL_VERSION 0 ++#endif ++ ++/* We assume for __KFREEBSD_KERNEL_VERSION the same encoding used in ++ osreldate.h. I.e., the major, minor, and subminor are all ++ concatenated, with two digits for each. This means we can do ++ numeric comparisons. ++ ++ In the following we will define certain symbols depending on ++ whether the describes kernel feature is available in the kernel ++ version given by __KFREEBSD_KERNEL_VERSION. We are not always exactly ++ recording the correct versions in which the features were ++ introduced. If somebody cares these values can afterwards be ++ corrected. */ ++ ++/* No real-time signals in FreeBSD 5.x or 6.x. */ ++#define __ASSUME_REALTIME_SIGNALS 0 ++ ++/* Use signals #32, #33, #34 for internal linuxthreads communication */ ++#define PTHREAD_SIGBASE 32 ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/kernel-posix-cpu-timers.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/kernel-posix-cpu-timers.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/kernel-posix-cpu-timers.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/kernel-posix-cpu-timers.h 2006-10-19 23:20:31.000000000 +0200 +@@ -0,0 +1,5 @@ ++/* Parameters for the FreeBSD kernel ABI for CPU clocks. */ ++ ++#define CPUCLOCK_WHICH(clock) ((clock) & (clockid_t) CPUCLOCK_CLOCK_MASK) ++#define CPUCLOCK_CLOCK_MASK 7 ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ldsodefs.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ldsodefs.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ldsodefs.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ldsodefs.h 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,39 @@ ++/* Run-time dynamic linker data structures for loaded ELF shared objects. ++ Copyright (C) 2001, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _LDSODEFS_H ++ ++/* Get the real definitions. */ ++#include_next ++ ++/* Now define our stuff. */ ++ ++/* FreeBSD puts some extra information into an auxiliary vector when it ++ execs ELF executables. Note that it uses AT_* values of 10 and 11 ++ to denote something different than AT_NOTELF and AT_UID, but this is ++ not a problem since elf/dl-support.c ignores these AT_* values. */ ++#define HAVE_AUX_VECTOR ++ ++/* Used by static binaries to check the auxiliary vector. */ ++extern void _dl_aux_init (ElfW(auxv_t) *av) internal_function; ++ ++/* Initialization which is normally done by the dynamic linker. */ ++extern void _dl_non_dynamic_init (void) internal_function; ++ ++#endif /* ldsodefs.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Implies ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Implies +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Implies 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Implies 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1 @@ ++pthread +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Makefile ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Makefile +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Makefile 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Makefile 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,3 @@ ++ifeq ($(subdir),linuxthreads) ++sysdep_routines += register-atfork unregister-atfork ++endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Versions ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Versions +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Versions 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/Versions 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,5 @@ ++libc { ++ GLIBC_2.3.2 { ++ __register_atfork; ++ } ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/allocrtsig.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/allocrtsig.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/allocrtsig.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/allocrtsig.c 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,4 @@ ++#include ++strong_alias (__libc_current_sigrtmin, __libc_current_sigrtmin_private); ++strong_alias (__libc_current_sigrtmax, __libc_current_sigrtmax_private); ++strong_alias (__libc_allocate_rtsig, __libc_allocate_rtsig_private); +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/local_lim.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/local_lim.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/local_lim.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/local_lim.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,48 @@ ++/* Minimum guaranteed maximum values for system limits. FreeBSD version. ++ Copyright (C) 1993-1998, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++/* The number of data keys per process. */ ++#define _POSIX_THREAD_KEYS_MAX 128 ++/* This is the value this implementation supports. */ ++#define PTHREAD_KEYS_MAX 1024 ++ ++/* Controlling the iterations of destructors for thread-specific data. */ ++#define _POSIX_THREAD_DESTRUCTOR_ITERATIONS 4 ++/* Number of iterations this implementation does. */ ++#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS ++ ++/* The number of threads per process. */ ++#define _POSIX_THREAD_THREADS_MAX 64 ++/* This is the value this implementation supports. */ ++#define PTHREAD_THREADS_MAX 1024 ++ ++/* Maximum amount by which a process can descrease its asynchronous I/O ++ priority level. */ ++#define AIO_PRIO_DELTA_MAX 20 ++ ++/* Minimum size for a thread. We are free to choose a reasonable value. */ ++#define PTHREAD_STACK_MIN 16384 ++ ++/* Maximum number of POSIX timers available. */ ++#define TIMER_MAX 256 ++ ++/* Maximum number of timer expiration overruns. */ ++#define DELAYTIMER_MAX 2147483647 +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/posix_opt.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/posix_opt.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/posix_opt.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/posix_opt.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,190 @@ ++/* Define POSIX options for FreeBSD. ++ Copyright (C) 1996-1997, 1999, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* ++ * Never include this file directly; use instead. ++ */ ++ ++#ifndef _BITS_POSIX_OPT_H ++#define _BITS_POSIX_OPT_H 1 ++ ++/* Job control is supported. */ ++#define _POSIX_JOB_CONTROL 1 ++ ++/* Processes have a saved set-user-ID and a saved set-group-ID. */ ++#define _POSIX_SAVED_IDS 1 ++ ++/* Priority scheduling is supported. */ ++#define _POSIX_PRIORITY_SCHEDULING 200112L ++ ++/* Synchronizing file data is supported. */ ++#define _POSIX_SYNCHRONIZED_IO 200112L ++ ++/* The fsync function is present. */ ++#define _POSIX_FSYNC 200112L ++ ++/* Mapping of files to memory is supported. */ ++#define _POSIX_MAPPED_FILES 200112L ++ ++/* Locking of all memory is supported. */ ++#define _POSIX_MEMLOCK 200112L ++ ++/* Locking of ranges of memory is supported. */ ++#define _POSIX_MEMLOCK_RANGE 200112L ++ ++/* Setting of memory protections is supported. */ ++#define _POSIX_MEMORY_PROTECTION 200112L ++ ++/* Only root can change owner of file. */ ++#define _POSIX_CHOWN_RESTRICTED 1 ++ ++/* `c_cc' member of 'struct termios' structure can be disabled by ++ using the value _POSIX_VDISABLE. */ ++#define _POSIX_VDISABLE ((unsigned char)'\377') ++ ++/* Filenames are not silently truncated. */ ++#define _POSIX_NO_TRUNC 1 ++/* X/Open realtime support is only partially available. */ ++#define _XOPEN_REALTIME -1 ++ ++/* X/Open realtime thread support is only partially available. */ ++#define _XOPEN_REALTIME_THREADS -1 ++ ++/* Implementation supports `poll' function. */ ++#define _POSIX_POLL 1 ++ ++/* Implementation supports `select' and `pselect' functions. */ ++#define _POSIX_SELECT 1 ++ ++/* XPG4.2 shared memory is supported. */ ++#define _XOPEN_SHM 1 ++ ++/* Tell we have POSIX threads. */ ++#define _POSIX_THREADS 200112L ++ ++/* We have the reentrant functions described in POSIX. */ ++#define _POSIX_REENTRANT_FUNCTIONS 1 ++#define _POSIX_THREAD_SAFE_FUNCTIONS 200112L ++ ++/* We provide priority scheduling for threads. */ ++#define _POSIX_THREAD_PRIORITY_SCHEDULING 200112L ++ ++/* We support user-defined stack sizes. */ ++#define _POSIX_THREAD_ATTR_STACKSIZE 200112L ++ ++/* We support user-defined stacks. */ ++#define _POSIX_THREAD_ATTR_STACKADDR 200112L ++ ++/* We support POSIX.1b semaphores, but only the non-shared form for now. */ ++#define _POSIX_SEMAPHORES 200112L ++ ++/* Real-time signals are not available. */ ++#define _POSIX_REALTIME_SIGNALS -1 ++ ++/* We support asynchronous I/O. */ ++#define _POSIX_ASYNCHRONOUS_IO 200112L ++#define _POSIX_ASYNC_IO 1 ++/* Alternative name for Unix98. */ ++#define _LFS_ASYNCHRONOUS_IO 1 ++/* Support for prioritization is not available. */ ++#define _POSIX_PRIORITIZED_IO -1 ++ ++/* The LFS support in asynchronous I/O is also available. */ ++#define _LFS64_ASYNCHRONOUS_IO 1 ++ ++/* The rest of the LFS is also available. */ ++#define _LFS_LARGEFILE 1 ++#define _LFS64_LARGEFILE 1 ++#define _LFS64_STDIO 1 ++ ++/* POSIX shared memory objects are implemented. */ ++#define _POSIX_SHARED_MEMORY_OBJECTS 200112L ++ ++/* CPU-time clocks somewhere supported. */ ++#define _POSIX_CPUTIME 0 ++ ++/* We support somewhere the clock also in threads. */ ++#define _POSIX_THREAD_CPUTIME 0 ++ ++/* GNU libc provides regular expression handling. */ ++#define _POSIX_REGEXP 1 ++ ++/* Reader/Writer locks are available. */ ++#define _POSIX_READER_WRITER_LOCKS 200112L ++ ++/* We have a POSIX shell. */ ++#define _POSIX_SHELL 1 ++ ++/* We support the Timeouts option. */ ++#define _POSIX_TIMEOUTS 200112L ++ ++/* We support spinlocks. */ ++#define _POSIX_SPIN_LOCKS 200112L ++ ++/* The `spawn' function family is supported. */ ++#define _POSIX_SPAWN 200112L ++ ++/* We have POSIX timers. */ ++#define _POSIX_TIMERS 200112L ++ ++/* The barrier functions are available. */ ++#define _POSIX_BARRIERS 200112L ++ ++/* POSIX message queues are not available. */ ++#define _POSIX_MESSAGE_PASSING -1 ++ ++/* Thread process-shared synchronization is not supported. */ ++#define _POSIX_THREAD_PROCESS_SHARED -1 ++ ++/* The monotonic clock is available. */ ++#define _POSIX_MONOTONIC_CLOCK 200112L ++ ++/* The clock selection interfaces are not available. */ ++#define _POSIX_CLOCK_SELECTION -1 ++ ++/* Advisory information interfaces are not available. */ ++#define _POSIX_ADVISORY_INFO -1 ++ ++/* IPv6 support is available. */ ++#define _POSIX_IPV6 200112L ++ ++/* Raw socket support is available. */ ++#define _POSIX_RAW_SOCKETS 200112L ++ ++/* We have at least one terminal. */ ++#define _POSIX2_CHAR_TERM 200112L ++ ++/* Neither process nor thread sporadic server interfaces is available. */ ++#define _POSIX_SPORADIC_SERVER -1 ++#define _POSIX_THREAD_SPORADIC_SERVER -1 ++ ++/* trace.h is not available. */ ++#define _POSIX_TRACE -1 ++#define _POSIX_TRACE_EVENT_FILTER -1 ++#define _POSIX_TRACE_INHERIT -1 ++#define _POSIX_TRACE_LOG -1 ++ ++/* Typed memory objects are not available. */ ++#define _POSIX_TYPED_MEMORY_OBJECTS -1 ++ ++/* No support for priority inheritance or protection. */ ++#define _POSIX_THREAD_PRIO_INHERIT -1 ++#define _POSIX_THREAD_PRIO_PROTECT -1 ++ ++#endif /* bits/posix_opt.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/sigthread.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/sigthread.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/sigthread.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/sigthread.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,38 @@ ++/* Signal handling function for threaded programs. ++ Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _BITS_SIGTHREAD_H ++#define _BITS_SIGTHREAD_H 1 ++ ++#if !defined _SIGNAL_H && !defined _PTHREAD_H ++# error "Never include this file directly. Use instead" ++#endif ++ ++/* Functions for handling signals. */ ++ ++/* Modify the signal mask for the calling thread. The arguments have ++ the same meaning as for sigprocmask(2). */ ++extern int pthread_sigmask (int __how, ++ __const __sigset_t *__restrict __newmask, ++ __sigset_t *__restrict __oldmask) __THROW; ++ ++/* Send signal SIGNO to the given thread. */ ++extern int pthread_kill (pthread_t __threadid, int __signo) __THROW; ++ ++#endif /* bits/sigthread.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/typesizes.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/typesizes.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/typesizes.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/bits/typesizes.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,66 @@ ++/* bits/typesizes.h -- underlying types for *_t. kFreeBSD version. ++ Copyright (C) 2002, 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _BITS_TYPES_H ++# error "Never include directly; use instead." ++#endif ++ ++#ifndef _BITS_TYPESIZES_H ++#define _BITS_TYPESIZES_H 1 ++ ++/* See for the meaning of these macros. This file exists so ++ that need not vary across different GNU platforms. */ ++ ++#define __DEV_T_TYPE __U32_TYPE ++#define __UID_T_TYPE __U32_TYPE ++#define __GID_T_TYPE __U32_TYPE ++#define __INO_T_TYPE __U32_TYPE ++#define __INO64_T_TYPE __UQUAD_TYPE ++#define __MODE_T_TYPE __U16_TYPE ++#define __NLINK_T_TYPE __U16_TYPE ++#define __OFF_T_TYPE __SQUAD_TYPE ++#define __OFF64_T_TYPE __SQUAD_TYPE ++#define __PID_T_TYPE __S32_TYPE ++#define __RLIM_T_TYPE __SQUAD_TYPE ++#define __RLIM64_T_TYPE __SQUAD_TYPE ++#define __BLKCNT_T_TYPE __SQUAD_TYPE ++#define __BLKCNT64_T_TYPE __SQUAD_TYPE ++#define __FSBLKCNT_T_TYPE __ULONGWORD_TYPE ++#define __FSBLKCNT64_T_TYPE __UQUAD_TYPE ++#define __FSFILCNT_T_TYPE __ULONGWORD_TYPE ++#define __FSFILCNT64_T_TYPE __UQUAD_TYPE ++#define __ID_T_TYPE __U32_TYPE ++#define __CLOCK_T_TYPE __S32_TYPE ++#define __TIME_T_TYPE __SLONGWORD_TYPE ++#define __USECONDS_T_TYPE __U32_TYPE ++#define __SUSECONDS_T_TYPE __SLONGWORD_TYPE ++#define __DADDR_T_TYPE __S32_TYPE ++#define __SWBLK_T_TYPE __S32_TYPE ++#define __KEY_T_TYPE __SLONGWORD_TYPE ++#define __CLOCKID_T_TYPE __S32_TYPE ++#define __TIMER_T_TYPE __S32_TYPE ++#define __BLKSIZE_T_TYPE __U32_TYPE ++#define __FSID_T_TYPE struct { int __val[2]; } ++#define __SSIZE_T_TYPE __SWORD_TYPE ++ ++/* Number of descriptors that can fit in an `fd_set'. */ ++#define __FD_SETSIZE 1024 ++ ++ ++#endif /* bits/typesizes.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/execve.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/execve.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/execve.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/execve.c 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/fork.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/fork.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/fork.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/fork.c 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/fork.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/fork.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/fork.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/fork.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/jmp-unwind.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/jmp-unwind.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/jmp-unwind.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/jmp-unwind.c 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/pt-sigsuspend.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/pt-sigsuspend.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/pt-sigsuspend.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/pt-sigsuspend.S 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,29 @@ ++/* Internal sigsuspend system call for LinuxThreads. FreeBSD version. ++ Copyright (C) 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++#include ++ ++PSEUDO_NOERRNO(__pthread_sigsuspend, sigsuspend, 1) ++ ret_NOERRNO ++PSEUDO_END_NOERRNO(__pthread_sigsuspend) ++ ++PSEUDO(__syscall_sigsuspend, sigsuspend, 1) ++ ret ++PSEUDO_END(__syscall_sigsuspend) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/raise.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/raise.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/raise.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/raise.c 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/register-atfork.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/register-atfork.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/register-atfork.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/register-atfork.c 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/smp.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/smp.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/smp.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/smp.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,36 @@ ++/* Determine whether the host has multiple processors. FreeBSD version. ++ Copyright (C) 1996, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++ ++/* Test whether the machine has more than one processor. */ ++static inline int ++is_smp_system (void) ++{ ++ /* Fetch sysctl value of "hw.ncpu". */ ++ int request[] = { CTL_HW, HW_NCPU }; ++ int result; ++ size_t result_len = sizeof (result); ++ ++ if (__sysctl (request, 2, &result, &result_len, NULL, 0) < 0) ++ /* Dummy result. */ ++ return 0; ++ ++ return (result > 1); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/unregister-atfork.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/unregister-atfork.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/unregister-atfork.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/linuxthreads/unregister-atfork.c 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/llseek.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/llseek.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/llseek.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/llseek.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,6 @@ ++/* We don't need a definition since the lseek64 function is what we need. */ ++/* llseek doesn't have a prototype. Since the second parameter is a ++ 64bit type, this results in wrong behaviour if no prototype is ++ provided. */ ++link_warning (llseek, "\ ++the `llseek' function may be dangerous; use `lseek64' instead.") +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/lseek.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/lseek.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/lseek.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/lseek.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,85 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++/* The real system call has a word of padding before the 64-bit off_t ++ argument. */ ++extern __off_t __syscall_lseek (int __fd, int __unused1, __off_t __offset, ++ int __whence) __THROW; ++ ++__off_t ++__libc_lseek (int fd, __off_t offset, int whence) ++{ ++#if 0 /* If the kernel would work right... */ ++ /* We pass 3 arguments in 5 words. */ ++ return INLINE_SYSCALL (lseek, 3, fd, 0, offset, whence); ++#else ++ /* According to POSIX:2001, if the resulting file offset would become ++ negative, this function has to return an EINVAL error and leave the ++ file offset unchanged. But the FreeBSD 4.0 kernel doesn't do this, ++ so we emulate it. */ ++ if (offset >= 0) ++ /* No risk that the file offset could become negative. */ ++ return INLINE_SYSCALL (lseek, 3, fd, 0, offset, whence); ++ else ++ { ++ /* Test whether the file offset becomes negative. */ ++ __off_t old_position; ++ __off_t new_position; ++ int saved_errno; ++ ++ saved_errno = errno; ++ old_position = INLINE_SYSCALL (lseek, 3, fd, 0, 0, SEEK_CUR); ++ errno = 0; ++ new_position = INLINE_SYSCALL (lseek, 3, fd, 0, offset, whence); ++ if (new_position < 0) ++ { ++ if (errno == 0) ++ { ++ /* The file offset became negative, and the kernel didn't ++ notice it. */ ++ if (old_position >= 0) ++ INLINE_SYSCALL (lseek, 3, fd, 0, old_position, SEEK_SET); ++ new_position = -1; ++ errno = EINVAL; ++ } ++ } ++ else ++ errno = saved_errno; ++ return new_position; ++ } ++#endif ++} ++ ++weak_alias (__libc_lseek, __lseek) ++libc_hidden_def (__lseek) ++weak_alias (__libc_lseek, lseek) ++ ++/* 'lseek64' is the same as 'lseek', because __off64_t == __off_t. */ ++strong_alias (__libc_lseek, __libc_lseek64) ++weak_alias (__libc_lseek64, __lseek64) ++weak_alias (__lseek64, lseek64) ++ ++/* 'llseek' is the same as 'lseek', because __off64_t == __off_t. */ ++strong_alias (__libc_lseek, __llseek) ++weak_alias (__llseek, llseek) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/lseek64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/lseek64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/lseek64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/lseek64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++/* 'lseek64' is the same as 'lseek', because __off64_t == __off_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/lxstat.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/lxstat.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/lxstat.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/lxstat.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,49 @@ ++/* lxstat using FreeBSD lstat, nlstat system calls. ++ Copyright (C) 1991,1995-1997,2000,2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#include "stat16conv.c" ++ ++int ++__lxstat (int vers, const char *file, struct stat *buf) ++{ ++ if (__builtin_expect (vers == _STAT_VER, 1)) ++ { ++ struct stat16 buf16; ++ int result = __syscall_lstat (CHECK_STRING (file), __ptrvalue (&buf16)); ++ if (result == 0) ++ stat16_to_stat (&buf16, buf); ++ return result; ++ } ++ else if (__builtin_expect (vers == _STAT_VER_stat, 1)) ++ return __syscall_lstat (CHECK_STRING (file), ++ CHECK_1 ((struct stat16 *) buf)); ++ else ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++} ++hidden_def (__lxstat) ++ ++weak_alias (__lxstat, _lxstat) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/lxstat64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/lxstat64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/lxstat64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/lxstat64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,44 @@ ++/* lxstat using FreeBSD lstat, nlstat system calls. ++ Copyright (C) 1991,1995-1997,2000,2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#include "stat16conv.c" ++ ++int ++__lxstat64 (int vers, const char *file, struct stat64 *buf) ++{ ++ if (__builtin_expect (vers == _STAT_VER, 1)) ++ { ++ struct stat16 buf16; ++ int result = __syscall_lstat (CHECK_STRING (file), __ptrvalue (&buf16)); ++ if (result == 0) ++ stat16_to_stat64 (&buf16, buf); ++ return result; ++ } ++ else ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++} ++hidden_def (__lxstat64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/mmap.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/mmap.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/mmap.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/mmap.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,81 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++/* The real system call has a word of padding before the 64-bit off_t ++ argument. */ ++extern void *__syscall_mmap (void *__addr, size_t __len, int __prot, ++ int __flags, int __fd, int __unused1, ++ __off_t __offset) __THROW; ++extern ssize_t __syscall_pread (int __fd, void *__buf, size_t __nbytes, ++ int __unused1, __off_t __offset) __THROW; ++ ++void * ++__mmap (void *addr, size_t len, int prot, int flags, int fd, __off_t offset) ++{ ++ void *result; ++ ++ /* Validity checks not done by the kernel. */ ++ if ((flags & MAP_FIXED) || (offset != 0)) ++ { ++ int pagesize = __getpagesize (); ++ ++ if (((flags & MAP_FIXED) ++ && (__builtin_expect (pagesize & (pagesize - 1), 0) ++ ? (unsigned long) addr % pagesize ++ : (unsigned long) addr & (pagesize - 1))) ++ || (__builtin_expect (pagesize & (pagesize - 1), 0) ++ ? offset % pagesize ++ : offset & (pagesize - 1))) ++ { ++ __set_errno (EINVAL); ++ return (void *) (-1); ++ } ++ } ++ ++ /* We pass 7 arguments in 8 words. */ ++ /* for ANON mapping we must pass -1 in place of fd */ ++ if (flags & MAP_ANON) ++ return INLINE_SYSCALL (mmap, 7, addr, len, prot, flags, -1, 0, offset); ++ result = INLINE_SYSCALL (mmap, 7, addr, len, prot, flags, fd, 0, offset); ++ ++ if (result != (void *) (-1) && fd >= 0 && len > 0) ++ { ++ /* Force an update of the atime. POSIX:2001 mandates that this happens ++ at some time between the mmap() call and the first page-in. Since ++ the FreeBSD 4.0 kernel doesn't update the atime upon a page-in, we ++ do it here. */ ++ char dummy; ++ ++ INLINE_SYSCALL (pread, 5, fd, &dummy, 1, 0, offset); ++ } ++ ++ return result; ++} ++ ++weak_alias (__mmap, mmap) ++ ++/* 'mmap64' is the same as 'mmap', because __off64_t == __off_t. */ ++strong_alias (__mmap, __mmap64) ++weak_alias (__mmap64, mmap64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/mmap64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/mmap64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/mmap64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/mmap64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++/* 'mmap64' is the same as 'mmap', because __off64_t == __off_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/munmap.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/munmap.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/munmap.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/munmap.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,40 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++extern int __syscall_munmap (void *__addr, size_t __len) __THROW; ++ ++int ++__munmap (void *addr, size_t len) ++{ ++ int pagesize = __getpagesize (); ++ if ((unsigned long) addr & (pagesize - 1)) ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++ return INLINE_SYSCALL (munmap, 2, addr, len); ++} ++ ++weak_alias (__munmap, munmap) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/ethernet.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/ethernet.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/ethernet.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/ethernet.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,76 @@ ++/* Copyright (C) 1997, 1999, 2001, 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* Based on the FreeBSD version of this file. Curiously, that file ++ lacks a copyright in the header. */ ++ ++#ifndef __NET_ETHERNET_H ++#define __NET_ETHERNET_H 1 ++ ++#include ++#include ++#include /* IEEE 802.3 Ethernet constants */ ++ ++__BEGIN_DECLS ++ ++/* This is a name for the 48 bit ethernet address available on many ++ systems. */ ++struct ether_addr ++{ ++ u_int8_t ether_addr_octet[ETH_ALEN]; ++} __attribute__ ((__packed__)); ++ ++/* 10Mb/s ethernet header */ ++struct ether_header ++{ ++ u_int8_t ether_dhost[ETH_ALEN]; /* destination eth addr */ ++ u_int8_t ether_shost[ETH_ALEN]; /* source ether addr */ ++ u_int16_t ether_type; /* packet type ID field */ ++} __attribute__ ((__packed__)); ++ ++/* Ethernet protocol ID's */ ++#define ETHERTYPE_PUP 0x0200 /* Xerox PUP */ ++#define ETHERTYPE_IP 0x0800 /* IP */ ++#define ETHERTYPE_ARP 0x0806 /* Address resolution */ ++#define ETHERTYPE_REVARP 0x8035 /* Reverse ARP */ ++ ++#define ETHER_ADDR_LEN ETH_ALEN /* size of ethernet addr */ ++#define ETHER_TYPE_LEN 2 /* bytes in type field */ ++#define ETHER_CRC_LEN 4 /* bytes in CRC field */ ++#define ETHER_HDR_LEN ETH_HLEN /* total octets in header */ ++#define ETHER_MIN_LEN (ETH_ZLEN + ETHER_CRC_LEN) /* min packet length */ ++#define ETHER_MAX_LEN (ETH_FRAME_LEN + ETHER_CRC_LEN) /* max packet length */ ++ ++/* make sure ethenet length is valid */ ++#define ETHER_IS_VALID_LEN(foo) \ ++ ((foo) >= ETHER_MIN_LEN && (foo) <= ETHER_MAX_LEN) ++ ++/* ++ * The ETHERTYPE_NTRAILER packet types starting at ETHERTYPE_TRAIL have ++ * (type-ETHERTYPE_TRAIL)*512 bytes of data followed ++ * by an ETHER type (as given above) and then the (variable-length) header. ++ */ ++#define ETHERTYPE_TRAIL 0x1000 /* Trailer packet */ ++#define ETHERTYPE_NTRAILER 16 ++ ++#define ETHERMTU ETH_DATA_LEN ++#define ETHERMIN (ETHER_MIN_LEN - ETHER_HDR_LEN - ETHER_CRC_LEN) ++ ++__END_DECLS ++ ++#endif /* net/ethernet.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/if.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/if.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/if.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/if.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,328 @@ ++/* ++ * Copyright (c) 1982, 1986, 1989, 1993 ++ * The Regents of the University of California. All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * 4. Neither the name of the University nor the names of its contributors ++ * may be used to endorse or promote products derived from this software ++ * without specific prior written permission. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ * ++ * @(#)if.h 8.1 (Berkeley) 6/10/93 ++ * $FreeBSD: src/sys/net/if.h,v 1.88.2.2 2004/09/13 05:11:40 brooks Exp $ ++ */ ++ ++#ifndef _NET_IF_H_ ++#define _NET_IF_H_ ++ ++#include ++ ++#include ++ ++#include ++#include ++ ++struct ifnet; ++ ++/* ++ * Length of interface external name, including terminating '\0'. ++ * Note: this is the same size as a generic device's external name. ++ */ ++#define IF_NAMESIZE 16 ++#define IFNAMSIZ IF_NAMESIZE ++#define IF_MAXUNIT 0x7fff /* historical value */ ++ ++/* ++ * Structure used to query names of interface cloners. ++ */ ++ ++struct if_clonereq { ++ int ifcr_total; /* total cloners (out) */ ++ int ifcr_count; /* room for this many in user buffer */ ++ char *ifcr_buffer; /* buffer for cloner names */ ++}; ++ ++/* ++ * Structure describing information about an interface ++ * which may be of interest to management entities. ++ */ ++struct if_data { ++ /* generic interface information */ ++ unsigned char ifi_type; /* ethernet, tokenring, etc */ ++ unsigned char ifi_physical; /* e.g., AUI, Thinnet, 10base-T, etc */ ++ unsigned char ifi_addrlen; /* media address length */ ++ unsigned char ifi_hdrlen; /* media header length */ ++ unsigned char ifi_link_state; /* current link state */ ++ unsigned char ifi_recvquota; /* polling quota for receive intrs */ ++ unsigned char ifi_xmitquota; /* polling quota for xmit intrs */ ++ unsigned char ifi_datalen; /* length of this data struct */ ++ unsigned long ifi_mtu; /* maximum transmission unit */ ++ unsigned long ifi_metric; /* routing metric (external only) */ ++ unsigned long ifi_baudrate; /* linespeed */ ++ /* volatile statistics */ ++ unsigned long ifi_ipackets; /* packets received on interface */ ++ unsigned long ifi_ierrors; /* input errors on interface */ ++ unsigned long ifi_opackets; /* packets sent on interface */ ++ unsigned long ifi_oerrors; /* output errors on interface */ ++ unsigned long ifi_collisions; /* collisions on csma interfaces */ ++ unsigned long ifi_ibytes; /* total number of octets received */ ++ unsigned long ifi_obytes; /* total number of octets sent */ ++ unsigned long ifi_imcasts; /* packets received via multicast */ ++ unsigned long ifi_omcasts; /* packets sent via multicast */ ++ unsigned long ifi_iqdrops; /* dropped on input, this interface */ ++ unsigned long ifi_noproto; /* destined for unsupported protocol */ ++ unsigned long ifi_hwassist; /* HW offload capabilities */ ++ time_t ifi_epoch; /* time of attach or stat reset */ ++#ifdef __alpha__ ++ u_int ifi_timepad; /* time_t is int, not long on alpha */ ++#endif ++ struct timeval ifi_lastchange; /* time of last administrative change */ ++}; ++ ++#define IFF_UP 0x1 /* interface is up */ ++#define IFF_BROADCAST 0x2 /* broadcast address valid */ ++#define IFF_DEBUG 0x4 /* turn on debugging */ ++#define IFF_LOOPBACK 0x8 /* is a loopback net */ ++#define IFF_POINTOPOINT 0x10 /* interface is point-to-point link */ ++#define IFF_SMART 0x20 /* interface manages own routes */ ++#define IFF_RUNNING 0x40 /* resources allocated */ ++#define IFF_NOARP 0x80 /* no address resolution protocol */ ++#define IFF_PROMISC 0x100 /* receive all packets */ ++#define IFF_ALLMULTI 0x200 /* receive all multicast packets */ ++#define IFF_OACTIVE 0x400 /* transmission in progress */ ++#define IFF_SIMPLEX 0x800 /* can't hear own transmissions */ ++#define IFF_LINK0 0x1000 /* per link layer defined bit */ ++#define IFF_LINK1 0x2000 /* per link layer defined bit */ ++#define IFF_LINK2 0x4000 /* per link layer defined bit */ ++#define IFF_ALTPHYS IFF_LINK2 /* use alternate physical connection */ ++#define IFF_MULTICAST 0x8000 /* supports multicast */ ++#define IFF_POLLING 0x10000 /* Interface is in polling mode. */ ++#define IFF_PPROMISC 0x20000 /* user-requested promisc mode */ ++#define IFF_MONITOR 0x40000 /* user-requested monitor mode */ ++#define IFF_STATICARP 0x80000 /* static ARP */ ++#define IFF_NEEDSGIANT 0x100000 /* hold Giant over if_start calls */ ++ ++/* flags set internally only: */ ++#define IFF_CANTCHANGE \ ++ (IFF_BROADCAST|IFF_POINTOPOINT|IFF_RUNNING|IFF_OACTIVE|\ ++ IFF_SIMPLEX|IFF_MULTICAST|IFF_ALLMULTI|IFF_SMART|IFF_PROMISC|\ ++ IFF_POLLING) ++ ++/* ++ * Values for if_link_state. ++ */ ++#define LINK_STATE_UNKNOWN 0 /* link invalid/unknown */ ++#define LINK_STATE_DOWN 1 /* link is down */ ++#define LINK_STATE_UP 2 /* link is up */ ++ ++/* ++ * Some convenience macros used for setting ifi_baudrate. ++ * XXX 1000 vs. 1024? --thorpej@netbsd.org ++ */ ++#define IF_Kbps(x) ((x) * 1000) /* kilobits/sec. */ ++#define IF_Mbps(x) (IF_Kbps((x) * 1000)) /* megabits/sec. */ ++#define IF_Gbps(x) (IF_Mbps((x) * 1000)) /* gigabits/sec. */ ++ ++/* Capabilities that interfaces can advertise. */ ++#define IFCAP_RXCSUM 0x0001 /* can offload checksum on RX */ ++#define IFCAP_TXCSUM 0x0002 /* can offload checksum on TX */ ++#define IFCAP_NETCONS 0x0004 /* can be a network console */ ++#define IFCAP_VLAN_MTU 0x0008 /* VLAN-compatible MTU */ ++#define IFCAP_VLAN_HWTAGGING 0x0010 /* hardware VLAN tag support */ ++#define IFCAP_JUMBO_MTU 0x0020 /* 9000 byte MTU supported */ ++#define IFCAP_POLLING 0x0040 /* driver supports polling */ ++ ++#define IFCAP_HWCSUM (IFCAP_RXCSUM | IFCAP_TXCSUM) ++ ++#define IFQ_MAXLEN 50 ++#define IFNET_SLOWHZ 1 /* granularity is 1 second */ ++ ++/* ++ * Message format for use in obtaining information about interfaces ++ * from getkerninfo and the routing socket ++ */ ++struct if_msghdr { ++ unsigned short ifm_msglen; /* to skip over non-understood messages */ ++ unsigned char ifm_version; /* future binary compatibility */ ++ unsigned char ifm_type; /* message type */ ++ int ifm_addrs; /* like rtm_addrs */ ++ int ifm_flags; /* value of if_flags */ ++ unsigned short ifm_index; /* index for associated ifp */ ++ struct if_data ifm_data;/* statistics and other data about if */ ++}; ++ ++/* ++ * Message format for use in obtaining information about interface addresses ++ * from getkerninfo and the routing socket ++ */ ++struct ifa_msghdr { ++ unsigned short ifam_msglen; /* to skip over non-understood messages */ ++ unsigned char ifam_version; /* future binary compatibility */ ++ unsigned char ifam_type; /* message type */ ++ int ifam_addrs; /* like rtm_addrs */ ++ int ifam_flags; /* value of ifa_flags */ ++ unsigned short ifam_index; /* index for associated ifp */ ++ int ifam_metric; /* value of ifa_metric */ ++}; ++ ++/* ++ * Message format for use in obtaining information about multicast addresses ++ * from the routing socket ++ */ ++struct ifma_msghdr { ++ unsigned short ifmam_msglen; /* to skip over non-understood messages */ ++ unsigned char ifmam_version; /* future binary compatibility */ ++ unsigned char ifmam_type; /* message type */ ++ int ifmam_addrs; /* like rtm_addrs */ ++ int ifmam_flags; /* value of ifa_flags */ ++ unsigned short ifmam_index; /* index for associated ifp */ ++}; ++ ++/* ++ * Message format announcing the arrival or departure of a network interface. ++ */ ++struct if_announcemsghdr { ++ unsigned short ifan_msglen; /* to skip over non-understood messages */ ++ unsigned char ifan_version; /* future binary compatibility */ ++ unsigned char ifan_type; /* message type */ ++ unsigned short ifan_index; /* index for associated ifp */ ++ char ifan_name[IFNAMSIZ]; /* if name, e.g. "en0" */ ++ unsigned short ifan_what; /* what type of announcement */ ++}; ++ ++#define IFAN_ARRIVAL 0 /* interface arrival */ ++#define IFAN_DEPARTURE 1 /* interface departure */ ++ ++/* ++ * Interface request structure used for socket ++ * ioctl's. All interface ioctl's must have parameter ++ * definitions which begin with ifr_name. The ++ * remainder may be interface specific. ++ */ ++struct ifreq { ++ char ifr_name[IFNAMSIZ]; /* if name, e.g. "en0" */ ++ union { ++ struct sockaddr ifru_addr; ++ struct sockaddr ifru_dstaddr; ++ struct sockaddr ifru_broadaddr; ++ struct sockaddr ifru_netmask; ++ short ifru_flags[2]; ++ short ifru_index; ++ int ifru_metric; ++ int ifru_mtu; ++ int ifru_phys; ++ int ifru_media; ++ char *ifru_data; ++ int ifru_cap[2]; ++ } ifr_ifru; ++#define ifr_addr ifr_ifru.ifru_addr /* address */ ++#define ifr_dstaddr ifr_ifru.ifru_dstaddr /* other end of p-to-p link */ ++#define ifr_broadaddr ifr_ifru.ifru_broadaddr /* broadcast address */ ++#define ifr_netmask ifr_ifru.ifru_netmask /* interface net mask */ ++#define ifr_flags ifr_ifru.ifru_flags[0] /* flags (low 16 bits) */ ++#define ifr_flagshigh ifr_ifru.ifru_flags[1] /* flags (high 16 bits) */ ++#define ifr_metric ifr_ifru.ifru_metric /* metric */ ++#define ifr_mtu ifr_ifru.ifru_mtu /* mtu */ ++#define ifr_phys ifr_ifru.ifru_phys /* physical wire */ ++#define ifr_media ifr_ifru.ifru_media /* physical media */ ++#define ifr_data ifr_ifru.ifru_data /* for use by interface */ ++#define ifr_reqcap ifr_ifru.ifru_cap[0] /* requested capabilities */ ++#define ifr_curcap ifr_ifru.ifru_cap[1] /* current capabilities */ ++#define ifr_index ifr_ifru.ifru_index /* interface index */ ++}; ++ ++#define _SIZEOF_ADDR_IFREQ(ifr) \ ++ ((ifr).ifr_addr.sa_len > sizeof(struct sockaddr) ? \ ++ (sizeof(struct ifreq) - sizeof(struct sockaddr) + \ ++ (ifr).ifr_addr.sa_len) : sizeof(struct ifreq)) ++ ++struct ifaliasreq { ++ char ifra_name[IFNAMSIZ]; /* if name, e.g. "en0" */ ++ struct sockaddr ifra_addr; ++ struct sockaddr ifra_broadaddr; ++ struct sockaddr ifra_mask; ++}; ++ ++struct ifmediareq { ++ char ifm_name[IFNAMSIZ]; /* if name, e.g. "en0" */ ++ int ifm_current; /* current media options */ ++ int ifm_mask; /* don't care mask */ ++ int ifm_status; /* media status */ ++ int ifm_active; /* active options */ ++ int ifm_count; /* # entries in ifm_ulist array */ ++ int *ifm_ulist; /* media words */ ++}; ++ ++/* ++ * Structure used to retrieve aux status data from interfaces. ++ * Kernel suppliers to this interface should respect the formatting ++ * needed by ifconfig(8): each line starts with a TAB and ends with ++ * a newline. The canonical example to copy and paste is in if_tun.c. ++ */ ++ ++#define IFSTATMAX 800 /* 10 lines of text */ ++struct ifstat { ++ char ifs_name[IFNAMSIZ]; /* if name, e.g. "en0" */ ++ char ascii[IFSTATMAX + 1]; ++}; ++ ++/* ++ * Structure used in SIOCGIFCONF request. ++ * Used to retrieve interface configuration ++ * for machine (useful for programs which ++ * must know all networks accessible). ++ */ ++struct ifconf { ++ int ifc_len; /* size of associated buffer */ ++ union { ++ char *ifcu_buf; ++ struct ifreq *ifcu_req; ++ } ifc_ifcu; ++#define ifc_buf ifc_ifcu.ifcu_buf /* buffer address */ ++#define ifc_req ifc_ifcu.ifcu_req /* array of structures returned */ ++}; ++ ++ ++/* ++ * Structure for SIOC[AGD]LIFADDR ++ */ ++struct if_laddrreq { ++ char iflr_name[IFNAMSIZ]; ++ unsigned int flags; ++#define IFLR_PREFIX 0x8000 /* in: prefix given out: kernel fills id */ ++ unsigned int prefixlen; /* in/out */ ++ struct sockaddr_storage addr; /* in/out */ ++ struct sockaddr_storage dstaddr; /* out */ ++}; ++ ++struct if_nameindex { ++ unsigned int if_index; /* 1, 2, ... */ ++ char *if_name; /* null terminated name: "le0", ... */ ++}; ++ ++__BEGIN_DECLS ++void if_freenameindex(struct if_nameindex *); ++char *if_indextoname(unsigned int, char *); ++struct if_nameindex *if_nameindex(void); ++unsigned int if_nametoindex(const char *); ++__END_DECLS ++ ++#endif /* !_NET_IF_H_ */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/if_ether.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/if_ether.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/if_ether.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/net/if_ether.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,104 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _NET_IF_ETHER_H ++#define _NET_IF_ETHER_H 1 ++ ++/* ++ * IEEE 802.3 Ethernet magic constants. The frame sizes omit the preamble ++ * and FCS/CRC (frame check sequence). ++ */ ++ ++#define ETH_ALEN 6 /* Octets in one ethernet addr */ ++#define ETH_HLEN 14 /* Total octets in header. */ ++#define ETH_ZLEN 60 /* Min. octets in frame sans FCS */ ++#define ETH_DATA_LEN 1500 /* Max. octets in payload */ ++#define ETH_FRAME_LEN 1514 /* Max. octets in frame sans FCS */ ++ ++/* ++ * These are the defined Ethernet Protocol ID's. ++ */ ++ ++#define ETH_P_LOOP 0x0060 /* Ethernet Loopback packet */ ++#define ETH_P_PUP 0x0200 /* Xerox PUP packet */ ++#define ETH_P_PUPAT 0x0201 /* Xerox PUP Addr Trans packet */ ++#define ETH_P_IP 0x0800 /* Internet Protocol packet */ ++#define ETH_P_X25 0x0805 /* CCITT X.25 */ ++#define ETH_P_ARP 0x0806 /* Address Resolution packet */ ++#define ETH_P_BPQ 0x08FF /* G8BPQ AX.25 Ethernet Packet [ NOT AN OFFICIALLY REGISTERED ID ] */ ++#define ETH_P_IEEEPUP 0x0a00 /* Xerox IEEE802.3 PUP packet */ ++#define ETH_P_IEEEPUPAT 0x0a01 /* Xerox IEEE802.3 PUP Addr Trans packet */ ++#define ETH_P_DEC 0x6000 /* DEC Assigned proto */ ++#define ETH_P_DNA_DL 0x6001 /* DEC DNA Dump/Load */ ++#define ETH_P_DNA_RC 0x6002 /* DEC DNA Remote Console */ ++#define ETH_P_DNA_RT 0x6003 /* DEC DNA Routing */ ++#define ETH_P_LAT 0x6004 /* DEC LAT */ ++#define ETH_P_DIAG 0x6005 /* DEC Diagnostics */ ++#define ETH_P_CUST 0x6006 /* DEC Customer use */ ++#define ETH_P_SCA 0x6007 /* DEC Systems Comms Arch */ ++#define ETH_P_RARP 0x8035 /* Reverse Addr Res packet */ ++#define ETH_P_ATALK 0x809B /* Appletalk DDP */ ++#define ETH_P_AARP 0x80F3 /* Appletalk AARP */ ++#define ETH_P_8021Q 0x8100 /* 802.1Q VLAN Extended Header */ ++#define ETH_P_IPX 0x8137 /* IPX over DIX */ ++#define ETH_P_IPV6 0x86DD /* IPv6 over bluebook */ ++#define ETH_P_WCCP 0x883E /* Web-cache coordination protocol ++ * defined in draft-wilson-wrec-wccp-v2-00.txt */ ++#define ETH_P_PPP_DISC 0x8863 /* PPPoE discovery messages */ ++#define ETH_P_PPP_SES 0x8864 /* PPPoE session messages */ ++#define ETH_P_MPLS_UC 0x8847 /* MPLS Unicast traffic */ ++#define ETH_P_MPLS_MC 0x8848 /* MPLS Multicast traffic */ ++#define ETH_P_ATMMPOA 0x884c /* MultiProtocol Over ATM */ ++#define ETH_P_ATMFATE 0x8884 /* Frame-based ATM Transport ++ * over Ethernet ++ */ ++#define ETH_P_AOE 0x88A2 /* ATA over Ethernet */ ++ ++/* ++ * Non DIX types. Won't clash for 1500 types. ++ */ ++ ++#define ETH_P_802_3 0x0001 /* Dummy type for 802.3 frames */ ++#define ETH_P_AX25 0x0002 /* Dummy protocol id for AX.25 */ ++#define ETH_P_ALL 0x0003 /* Every packet (be careful!!!) */ ++#define ETH_P_802_2 0x0004 /* 802.2 frames */ ++#define ETH_P_SNAP 0x0005 /* Internal only */ ++#define ETH_P_DDCMP 0x0006 /* DEC DDCMP: Internal only */ ++#define ETH_P_WAN_PPP 0x0007 /* Dummy type for WAN PPP frames*/ ++#define ETH_P_PPP_MP 0x0008 /* Dummy type for PPP MP frames */ ++#define ETH_P_LOCALTALK 0x0009 /* Localtalk pseudo type */ ++#define ETH_P_PPPTALK 0x0010 /* Dummy type for Atalk over PPP*/ ++#define ETH_P_TR_802_2 0x0011 /* 802.2 frames */ ++#define ETH_P_MOBITEX 0x0015 /* Mobitex (kaz@cafe.net) */ ++#define ETH_P_CONTROL 0x0016 /* Card specific control frames */ ++#define ETH_P_IRDA 0x0017 /* Linux-IrDA */ ++#define ETH_P_ECONET 0x0018 /* Acorn Econet */ ++#define ETH_P_HDLC 0x0019 /* HDLC frames */ ++#define ETH_P_ARCNET 0x001A /* 1A for ArcNet :-) */ ++ ++/* ++ * This is an Ethernet frame header. ++ */ ++ ++struct ethhdr { ++ unsigned char h_dest[ETH_ALEN]; /* destination eth addr */ ++ unsigned char h_source[ETH_ALEN]; /* source ether addr */ ++ unsigned short h_proto; /* packet type ID field */ ++} __attribute__((packed)); ++ ++#endif /* net/if_ether.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/if_ether.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/if_ether.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/if_ether.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/if_ether.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,138 @@ ++/* Copyright (C) 1996, 1997, 1999, 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef __NETINET_IF_ETHER_H ++ ++#define __NETINET_IF_ETHER_H 1 ++#include ++#include ++ ++#include ++ ++#ifdef __USE_BSD ++/* ++ * Copyright (c) 1982, 1986, 1993 ++ * The Regents of the University of California. All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * 4. Neither the name of the University nor the names of its contributors ++ * may be used to endorse or promote products derived from this software ++ * without specific prior written permission. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ * ++ * @(#)if_ether.h 8.3 (Berkeley) 5/2/95 ++ * $FreeBSD$ ++ */ ++ ++#include ++#include ++#include ++ ++__BEGIN_DECLS ++/* ++ * Ethernet Address Resolution Protocol. ++ * ++ * See RFC 826 for protocol description. Structure below is adapted ++ * to resolving internet addresses. Field names used correspond to ++ * RFC 826. ++ */ ++struct ether_arp { ++ struct arphdr ea_hdr; /* fixed-size header */ ++ u_int8_t arp_sha[ETH_ALEN]; /* sender hardware address */ ++ u_int8_t arp_spa[4]; /* sender protocol address */ ++ u_int8_t arp_tha[ETH_ALEN]; /* target hardware address */ ++ u_int8_t arp_tpa[4]; /* target protocol address */ ++}; ++#define arp_hrd ea_hdr.ar_hrd ++#define arp_pro ea_hdr.ar_pro ++#define arp_hln ea_hdr.ar_hln ++#define arp_pln ea_hdr.ar_pln ++#define arp_op ea_hdr.ar_op ++ ++struct sockaddr_inarp { ++ __SOCKADDR_COMMON (sin_); ++ in_port_t sin_port; /* Port number. */ ++ struct in_addr sin_addr; /* Internet address. */ ++ struct in_addr sin_srcaddr; ++ unsigned short sin_tos; ++ unsigned short sin_other; ++#define SIN_PROXY 1 ++}; ++ ++/* ++ * IP and ethernet specific routing flags ++ */ ++#define RTF_USETRAILERS RTF_PROTO1 /* use trailers */ ++#define RTF_ANNOUNCE RTF_PROTO2 /* announce new arp entry */ ++ ++/* ++ * Macro to map an IP multicast address to an Ethernet multicast address. ++ * The high-order 25 bits of the Ethernet address are statically assigned, ++ * and the low-order 23 bits are taken from the low end of the IP address. ++ */ ++#define ETHER_MAP_IP_MULTICAST(ipaddr, enaddr) \ ++ /* struct in_addr *ipaddr; */ \ ++ /* u_char enaddr[ETH_ALEN]; */ \ ++{ \ ++ (enaddr)[0] = 0x01; \ ++ (enaddr)[1] = 0x00; \ ++ (enaddr)[2] = 0x5e; \ ++ (enaddr)[3] = ((u_int8_t *)ipaddr)[1] & 0x7f; \ ++ (enaddr)[4] = ((u_int8_t *)ipaddr)[2]; \ ++ (enaddr)[5] = ((u_int8_t *)ipaddr)[3]; \ ++} ++ ++/* ++ * Macro to map an IP6 multicast address to an Ethernet multicast address. ++ * The high-order 16 bits of the Ethernet address are statically assigned, ++ * and the low-order 32 bits are taken from the low end of the IP6 address. ++ */ ++#define ETHER_MAP_IPV6_MULTICAST(ip6addr, enaddr) \ ++/* struct in6_addr *ip6addr; */ \ ++/* u_char enaddr[ETH_ALEN]; */ \ ++{ \ ++ (enaddr)[0] = 0x33; \ ++ (enaddr)[1] = 0x33; \ ++ (enaddr)[2] = ((u_int8_t *)ip6addr)[12]; \ ++ (enaddr)[3] = ((u_int8_t *)ip6addr)[13]; \ ++ (enaddr)[4] = ((u_int8_t *)ip6addr)[14]; \ ++ (enaddr)[5] = ((u_int8_t *)ip6addr)[15]; \ ++} ++ ++__END_DECLS ++#endif /* __USE_BSD */ ++ ++#endif /* netinet/if_ether.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/ip_icmp.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/ip_icmp.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/ip_icmp.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/ip_icmp.h 2007-01-10 11:18:12.000000000 +0100 +@@ -0,0 +1,296 @@ ++/* Copyright (C) 1991-1993, 1995-1997, 1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef __NETINET_IP_ICMP_H ++#define __NETINET_IP_ICMP_H 1 ++ ++#include ++#include ++ ++__BEGIN_DECLS ++ ++struct icmphdr ++{ ++ u_int8_t type; /* message type */ ++ u_int8_t code; /* type sub-code */ ++ u_int16_t checksum; ++ union ++ { ++ struct ++ { ++ u_int16_t id; ++ u_int16_t sequence; ++ } echo; /* echo datagram */ ++ u_int32_t gateway; /* gateway address */ ++ struct ++ { ++ u_int16_t __unused; ++ u_int16_t mtu; ++ } frag; /* path mtu discovery */ ++ } un; ++}; ++ ++#define ICMP_ECHOREPLY 0 /* Echo Reply */ ++#define ICMP_DEST_UNREACH 3 /* Destination Unreachable */ ++#define ICMP_SOURCE_QUENCH 4 /* Source Quench */ ++#define ICMP_REDIRECT 5 /* Redirect (change route) */ ++#define ICMP_ECHO 8 /* Echo Request */ ++#define ICMP_TIME_EXCEEDED 11 /* Time Exceeded */ ++#define ICMP_PARAMETERPROB 12 /* Parameter Problem */ ++#define ICMP_TIMESTAMP 13 /* Timestamp Request */ ++#define ICMP_TIMESTAMPREPLY 14 /* Timestamp Reply */ ++#define ICMP_INFO_REQUEST 15 /* Information Request */ ++#define ICMP_INFO_REPLY 16 /* Information Reply */ ++#define ICMP_ADDRESS 17 /* Address Mask Request */ ++#define ICMP_ADDRESSREPLY 18 /* Address Mask Reply */ ++#define NR_ICMP_TYPES 18 ++ ++ ++/* Codes for UNREACH. */ ++#define ICMP_NET_UNREACH 0 /* Network Unreachable */ ++#define ICMP_HOST_UNREACH 1 /* Host Unreachable */ ++#define ICMP_PROT_UNREACH 2 /* Protocol Unreachable */ ++#define ICMP_PORT_UNREACH 3 /* Port Unreachable */ ++#define ICMP_FRAG_NEEDED 4 /* Fragmentation Needed/DF set */ ++#define ICMP_SR_FAILED 5 /* Source Route failed */ ++#define ICMP_NET_UNKNOWN 6 ++#define ICMP_HOST_UNKNOWN 7 ++#define ICMP_HOST_ISOLATED 8 ++#define ICMP_NET_ANO 9 ++#define ICMP_HOST_ANO 10 ++#define ICMP_NET_UNR_TOS 11 ++#define ICMP_HOST_UNR_TOS 12 ++#define ICMP_PKT_FILTERED 13 /* Packet filtered */ ++#define ICMP_PREC_VIOLATION 14 /* Precedence violation */ ++#define ICMP_PREC_CUTOFF 15 /* Precedence cut off */ ++#define NR_ICMP_UNREACH 15 /* instead of hardcoding immediate value */ ++ ++/* Codes for REDIRECT. */ ++#define ICMP_REDIR_NET 0 /* Redirect Net */ ++#define ICMP_REDIR_HOST 1 /* Redirect Host */ ++#define ICMP_REDIR_NETTOS 2 /* Redirect Net for TOS */ ++#define ICMP_REDIR_HOSTTOS 3 /* Redirect Host for TOS */ ++ ++/* Codes for TIME_EXCEEDED. */ ++#define ICMP_EXC_TTL 0 /* TTL count exceeded */ ++#define ICMP_EXC_FRAGTIME 1 /* Fragment Reass time exceeded */ ++ ++ ++#ifdef __USE_BSD ++/* ++ * Copyright (c) 1982, 1986, 1993 ++ * The Regents of the University of California. All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * 4. Neither the name of the University nor the names of its contributors ++ * may be used to endorse or promote products derived from this software ++ * without specific prior written permission. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ * ++ * @(#)ip_icmp.h 8.1 (Berkeley) 6/10/93 ++ */ ++ ++#include ++#include ++ ++/* ++ * Internal of an ICMP Router Advertisement ++ */ ++struct icmp_ra_addr ++{ ++ u_int32_t ira_addr; ++ u_int32_t ira_preference; ++}; ++ ++struct icmp ++{ ++ u_int8_t icmp_type; /* type of message, see below */ ++ u_int8_t icmp_code; /* type sub code */ ++ u_int16_t icmp_cksum; /* ones complement checksum of struct */ ++ union ++ { ++ u_char ih_pptr; /* ICMP_PARAMPROB */ ++ struct in_addr ih_gwaddr; /* gateway address */ ++ struct ih_idseq /* echo datagram */ ++ { ++ u_int16_t icd_id; ++ u_int16_t icd_seq; ++ } ih_idseq; ++ u_int32_t ih_void; ++ ++ /* ICMP_UNREACH_NEEDFRAG -- Path MTU Discovery (RFC1191) */ ++ struct ih_pmtu ++ { ++ u_int16_t ipm_void; ++ u_int16_t ipm_nextmtu; ++ } ih_pmtu; ++ ++ struct ih_rtradv ++ { ++ u_int8_t irt_num_addrs; ++ u_int8_t irt_wpa; ++ u_int16_t irt_lifetime; ++ } ih_rtradv; ++ } icmp_hun; ++#define icmp_pptr icmp_hun.ih_pptr ++#define icmp_gwaddr icmp_hun.ih_gwaddr ++#define icmp_id icmp_hun.ih_idseq.icd_id ++#define icmp_seq icmp_hun.ih_idseq.icd_seq ++#define icmp_void icmp_hun.ih_void ++#define icmp_pmvoid icmp_hun.ih_pmtu.ipm_void ++#define icmp_nextmtu icmp_hun.ih_pmtu.ipm_nextmtu ++#define icmp_num_addrs icmp_hun.ih_rtradv.irt_num_addrs ++#define icmp_wpa icmp_hun.ih_rtradv.irt_wpa ++#define icmp_lifetime icmp_hun.ih_rtradv.irt_lifetime ++ union ++ { ++ struct ++ { ++ u_int32_t its_otime; ++ u_int32_t its_rtime; ++ u_int32_t its_ttime; ++ } id_ts; ++ struct ++ { ++ struct ip idi_ip; ++ /* options and then 64 bits of data */ ++ } id_ip; ++ struct icmp_ra_addr id_radv; ++ u_int32_t id_mask; ++ u_int8_t id_data[1]; ++ } icmp_dun; ++#define icmp_otime icmp_dun.id_ts.its_otime ++#define icmp_rtime icmp_dun.id_ts.its_rtime ++#define icmp_ttime icmp_dun.id_ts.its_ttime ++#define icmp_ip icmp_dun.id_ip.idi_ip ++#define icmp_radv icmp_dun.id_radv ++#define icmp_mask icmp_dun.id_mask ++#define icmp_data icmp_dun.id_data ++}; ++ ++/* ++ * Lower bounds on packet lengths for various types. ++ * For the error advice packets must first insure that the ++ * packet is large enough to contain the returned ip header. ++ * Only then can we do the check to see if 64 bits of packet ++ * data have been returned, since we need to check the returned ++ * ip header length. ++ */ ++#define ICMP_MINLEN 8 /* abs minimum */ ++#define ICMP_TSLEN (8 + 3 * sizeof (n_time)) /* timestamp */ ++#define ICMP_MASKLEN 12 /* address mask */ ++#define ICMP_ADVLENMIN (8 + sizeof (struct ip) + 8) /* min */ ++#ifndef _IP_VHL ++#define ICMP_ADVLEN(p) (8 + ((p)->icmp_ip.ip_hl << 2) + 8) ++ /* N.B.: must separately check that ip_hl >= 5 */ ++#else ++#define ICMP_ADVLEN(p) (8 + (IP_VHL_HL((p)->icmp_ip.ip_vhl) << 2) + 8) ++ /* N.B.: must separately check that header length >= 5 */ ++#endif ++ ++/* ++ * Definition of type and code field values. ++ */ ++#define ICMP_ECHOREPLY 0 /* echo reply */ ++#define ICMP_UNREACH 3 /* dest unreachable, codes: */ ++#define ICMP_UNREACH_NET 0 /* bad net */ ++#define ICMP_UNREACH_HOST 1 /* bad host */ ++#define ICMP_UNREACH_PROTOCOL 2 /* bad protocol */ ++#define ICMP_UNREACH_PORT 3 /* bad port */ ++#define ICMP_UNREACH_NEEDFRAG 4 /* IP_DF caused drop */ ++#define ICMP_UNREACH_SRCFAIL 5 /* src route failed */ ++#define ICMP_UNREACH_NET_UNKNOWN 6 /* unknown net */ ++#define ICMP_UNREACH_HOST_UNKNOWN 7 /* unknown host */ ++#define ICMP_UNREACH_ISOLATED 8 /* src host isolated */ ++#define ICMP_UNREACH_NET_PROHIB 9 /* prohibited access */ ++#define ICMP_UNREACH_HOST_PROHIB 10 /* ditto */ ++#define ICMP_UNREACH_TOSNET 11 /* bad tos for net */ ++#define ICMP_UNREACH_TOSHOST 12 /* bad tos for host */ ++#define ICMP_UNREACH_FILTER_PROHIB 13 /* admin prohib */ ++#define ICMP_UNREACH_HOST_PRECEDENCE 14 /* host prec vio. */ ++#define ICMP_UNREACH_PRECEDENCE_CUTOFF 15 /* prec cutoff */ ++#define ICMP_SOURCEQUENCH 4 /* packet lost, slow down */ ++#define ICMP_REDIRECT 5 /* shorter route, codes: */ ++#define ICMP_REDIRECT_NET 0 /* for network */ ++#define ICMP_REDIRECT_HOST 1 /* for host */ ++#define ICMP_REDIRECT_TOSNET 2 /* for tos and net */ ++#define ICMP_REDIRECT_TOSHOST 3 /* for tos and host */ ++#define ICMP_ALTHOSTADDR 6 /* alternate host address */ ++#define ICMP_ECHO 8 /* echo service */ ++#define ICMP_ROUTERADVERT 9 /* router advertisement */ ++#define ICMP_ROUTERADVERT_NORMAL 0 /* normal advertisement */ ++#define ICMP_ROUTERADVERT_NOROUTE_COMMON 16 /* selective routing */ ++#define ICMP_ROUTERSOLICIT 10 /* router solicitation */ ++#define ICMP_TIMXCEED 11 /* time exceeded, code: */ ++#define ICMP_TIMXCEED_INTRANS 0 /* ttl==0 in transit */ ++#define ICMP_TIMXCEED_REASS 1 /* ttl==0 in reass */ ++#define ICMP_PARAMPROB 12 /* ip header bad */ ++#define ICMP_PARAMPROB_ERRATPTR 0 /* error at param ptr */ ++#define ICMP_PARAMPROB_OPTABSENT 1 /* req. opt. absent */ ++#define ICMP_PARAMPROB_LENGTH 2 /* bad length */ ++#define ICMP_TSTAMP 13 /* timestamp request */ ++#define ICMP_TSTAMPREPLY 14 /* timestamp reply */ ++#define ICMP_IREQ 15 /* information request */ ++#define ICMP_IREQREPLY 16 /* information reply */ ++#define ICMP_MASKREQ 17 /* address mask request */ ++#define ICMP_MASKREPLY 18 /* address mask reply */ ++#define ICMP_TRACEROUTE 30 /* traceroute */ ++#define ICMP_DATACONVERR 31 /* data conversion error */ ++#define ICMP_MOBILE_REDIRECT 32 /* mobile host redirect */ ++#define ICMP_IPV6_WHEREAREYOU 33 /* IPv6 where-are-you */ ++#define ICMP_IPV6_IAMHERE 34 /* IPv6 i-am-here */ ++#define ICMP_MOBILE_REGREQUEST 35 /* mobile registration req */ ++#define ICMP_MOBILE_REGREPLY 36 /* mobile registration reply */ ++#define ICMP_SKIP 39 /* SKIP */ ++#define ICMP_PHOTURIS 40 /* Photuris */ ++#define ICMP_PHOTURIS_UNKNOWN_INDEX 1 /* unknown sec index */ ++#define ICMP_PHOTURIS_AUTH_FAILED 2 /* auth failed */ ++#define ICMP_PHOTURIS_DECRYPT_FAILED 3 /* decrypt failed */ ++ ++#define ICMP_MAXTYPE 40 ++ ++#define ICMP_INFOTYPE(type) \ ++ ((type) == ICMP_ECHOREPLY || (type) == ICMP_ECHO || \ ++ (type) == ICMP_ROUTERADVERT || (type) == ICMP_ROUTERSOLICIT || \ ++ (type) == ICMP_TSTAMP || (type) == ICMP_TSTAMPREPLY || \ ++ (type) == ICMP_IREQ || (type) == ICMP_IREQREPLY || \ ++ (type) == ICMP_MASKREQ || (type) == ICMP_MASKREPLY) ++ ++#endif /* __USE_BSD */ ++ ++__END_DECLS ++ ++#endif /* netinet/ip_icmp.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/tcp.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/tcp.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/tcp.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/netinet/tcp.h 2006-10-18 09:59:55.000000000 +0200 +@@ -0,0 +1,258 @@ ++/* netinet/tcp.h ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* ++ * Copyright (c) 1982, 1986, 1993 ++ * The Regents of the University of California. All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * 4. Neither the name of the University nor the names of its contributors ++ * may be used to endorse or promote products derived from this software ++ * without specific prior written permission. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ * ++ * @(#)tcp.h 8.1 (Berkeley) 6/10/93 ++ */ ++ ++#ifndef _NETINET_TCP_H ++#define _NETINET_TCP_H 1 ++ ++#include ++ ++/* ++ * User-settable options (used with setsockopt). ++ */ ++#define TCP_NODELAY 1 /* Don't delay send to coalesce packets */ ++#define TCP_MAXSEG 2 /* Set maximum segment size */ ++#define TCP_NOPUSH 4 /* Don't push last block of write */ ++#define TCP_NOOPT 8 /* Don't use TCP options */ ++ ++#ifdef __USE_MISC ++# include ++ ++# ifdef __FAVOR_BSD ++typedef u_int32_t tcp_seq; ++typedef u_int32_t tcp_cc; /* connection count, per RFC 1644 */ ++/* ++ * TCP header. ++ * Per RFC 793, September, 1981. ++ */ ++struct tcphdr ++ { ++ u_int16_t th_sport; /* source port */ ++ u_int16_t th_dport; /* destination port */ ++ tcp_seq th_seq; /* sequence number */ ++ tcp_seq th_ack; /* acknowledgement number */ ++# if __BYTE_ORDER == __LITTLE_ENDIAN ++ u_int8_t th_x2:4; /* (unused) */ ++ u_int8_t th_off:4; /* data offset */ ++# endif ++# if __BYTE_ORDER == __BIG_ENDIAN ++ u_int8_t th_off:4; /* data offset */ ++ u_int8_t th_x2:4; /* (unused) */ ++# endif ++ u_int8_t th_flags; ++# define TH_FIN 0x01 ++# define TH_SYN 0x02 ++# define TH_RST 0x04 ++# define TH_PUSH 0x08 ++# define TH_ACK 0x10 ++# define TH_URG 0x20 ++ u_int16_t th_win; /* window */ ++ u_int16_t th_sum; /* checksum */ ++ u_int16_t th_urp; /* urgent pointer */ ++}; ++ ++# else /* !__FAVOR_BSD */ ++struct tcphdr ++ { ++ u_int16_t source; ++ u_int16_t dest; ++ u_int32_t seq; ++ u_int32_t ack_seq; ++# if __BYTE_ORDER == __LITTLE_ENDIAN ++ u_int16_t res1:4; ++ u_int16_t doff:4; ++ u_int16_t fin:1; ++ u_int16_t syn:1; ++ u_int16_t rst:1; ++ u_int16_t psh:1; ++ u_int16_t ack:1; ++ u_int16_t urg:1; ++ u_int16_t res2:2; ++# elif __BYTE_ORDER == __BIG_ENDIAN ++ u_int16_t doff:4; ++ u_int16_t res1:4; ++ u_int16_t res2:2; ++ u_int16_t urg:1; ++ u_int16_t ack:1; ++ u_int16_t psh:1; ++ u_int16_t rst:1; ++ u_int16_t syn:1; ++ u_int16_t fin:1; ++# else ++# error "Adjust your defines" ++# endif ++ u_int16_t window; ++ u_int16_t check; ++ u_int16_t urg_ptr; ++}; ++# endif /* __FAVOR_BSD */ ++ ++enum ++{ ++ TCP_ESTABLISHED = 1, ++ TCP_SYN_SENT, ++ TCP_SYN_RECV, ++ TCP_FIN_WAIT1, ++ TCP_FIN_WAIT2, ++ TCP_TIME_WAIT, ++ TCP_CLOSE, ++ TCP_CLOSE_WAIT, ++ TCP_LAST_ACK, ++ TCP_LISTEN, ++ TCP_CLOSING /* now a valid state */ ++}; ++ ++# define TCPOPT_EOL 0 ++# define TCPOPT_NOP 1 ++# define TCPOPT_MAXSEG 2 ++# define TCPOLEN_MAXSEG 4 ++# define TCPOPT_WINDOW 3 ++# define TCPOLEN_WINDOW 3 ++# define TCPOPT_SACK_PERMITTED 4 /* Experimental */ ++# define TCPOLEN_SACK_PERMITTED 2 ++# define TCPOPT_SACK 5 /* Experimental */ ++# define TCPOPT_TIMESTAMP 8 ++# define TCPOLEN_TIMESTAMP 10 ++# define TCPOLEN_TSTAMP_APPA (TCPOLEN_TIMESTAMP+2) /* appendix A */ ++# define TCPOPT_TSTAMP_HDR \ ++ (TCPOPT_NOP<<24|TCPOPT_NOP<<16|TCPOPT_TIMESTAMP<<8|TCPOLEN_TIMESTAMP) ++#define TCPOPT_CC 11 /* CC options: RFC-1644 */ ++#define TCPOPT_CCNEW 12 ++#define TCPOPT_CCECHO 13 ++#define TCPOLEN_CC 6 ++#define TCPOLEN_CC_APPA (TCPOLEN_CC+2) ++#define TCPOPT_CC_HDR(ccopt) \ ++ (TCPOPT_NOP<<24|TCPOPT_NOP<<16|(ccopt)<<8|TCPOLEN_CC) ++ ++/* ++ * Default maximum segment size for TCP. ++ * With an IP MSS of 576, this is 536, ++ * but 512 is probably more convenient. ++ * This should be defined as MIN(512, IP_MSS - sizeof (struct tcpiphdr)). ++ */ ++# define TCP_MSS 512 ++ ++/* ++ * Default maximum segment size for TCP6. ++ * With an IP MSS of 1280, this is 1220, ++ * but 1024 is probably more convenient. ++ * This should be defined as MIN(1024, IP6_MSS - sizeof (struct tcpip6hdr)). ++ */ ++# define TCP6_MSS 1024 ++ ++# define TCP_MAXWIN 65535 /* largest value for (unscaled) window */ ++# define TTCP_CLIENT_SND_WND 4096 /* default send window for T/TCP client */ ++ ++# define TCP_MAX_WINSHIFT 14 /* maximum window shift */ ++ ++#define TCP_MAXBURST 4 /* maximum segments in a burst */ ++ ++#define TCP_MAXHLEN (0xf<<2) /* max length of header in bytes */ ++#define TCP_MAXOLEN (TCP_MAXHLEN - sizeof (struct tcphdr)) ++ /* max space left for options */ ++ ++# define SOL_TCP 6 /* TCP level */ ++ ++ ++# define TCPI_OPT_TIMESTAMPS 1 ++# define TCPI_OPT_SACK 2 ++# define TCPI_OPT_WSCALE 4 ++# define TCPI_OPT_ECN 8 ++ ++/* Values for tcpi_state. */ ++enum tcp_ca_state ++{ ++ TCP_CA_Open = 0, ++ TCP_CA_Disorder = 1, ++ TCP_CA_CWR = 2, ++ TCP_CA_Recovery = 3, ++ TCP_CA_Loss = 4 ++}; ++ ++struct tcp_info ++{ ++ u_int8_t tcpi_state; ++ u_int8_t tcpi_ca_state; ++ u_int8_t tcpi_retransmits; ++ u_int8_t tcpi_probes; ++ u_int8_t tcpi_backoff; ++ u_int8_t tcpi_options; ++ u_int8_t tcpi_snd_wscale : 4, tcpi_rcv_wscale : 4; ++ ++ u_int32_t tcpi_rto; ++ u_int32_t tcpi_ato; ++ u_int32_t tcpi_snd_mss; ++ u_int32_t tcpi_rcv_mss; ++ ++ u_int32_t tcpi_unacked; ++ u_int32_t tcpi_sacked; ++ u_int32_t tcpi_lost; ++ u_int32_t tcpi_retrans; ++ u_int32_t tcpi_fackets; ++ ++ /* Times. */ ++ u_int32_t tcpi_last_data_sent; ++ u_int32_t tcpi_last_ack_sent; /* Not remembered, sorry. */ ++ u_int32_t tcpi_last_data_recv; ++ u_int32_t tcpi_last_ack_recv; ++ ++ /* Metrics. */ ++ u_int32_t tcpi_pmtu; ++ u_int32_t tcpi_rcv_ssthresh; ++ u_int32_t tcpi_rtt; ++ u_int32_t tcpi_rttvar; ++ u_int32_t tcpi_snd_ssthresh; ++ u_int32_t tcpi_snd_cwnd; ++ u_int32_t tcpi_advmss; ++ u_int32_t tcpi_reordering; ++}; ++ ++#endif /* Misc. */ ++ ++#endif /* netinet/tcp.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/nfs/nfs.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/nfs/nfs.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/nfs/nfs.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/nfs/nfs.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,3 @@ ++#include ++#include ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/not-cancel.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/not-cancel.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/not-cancel.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/not-cancel.h 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,88 @@ ++/* Uncancelable versions of cancelable interfaces. kFreeBSD version. ++ Copyright (C) 2003, 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Ulrich Drepper , 2003. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++/* Uncancelable open. */ ++#define open_not_cancel(name, flags, mode) \ ++ INLINE_SYSCALL (open, 3, (const char *) (name), (flags), (mode)) ++#define open_not_cancel_2(name, flags) \ ++ INLINE_SYSCALL (open, 2, (const char *) (name), (flags)) ++ ++/* Uncancelable openat. */ ++#if !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt ++extern int __openat_nocancel (int fd, const char *fname, int oflag, ++ mode_t mode) attribute_hidden; ++extern int __openat64_nocancel (int fd, const char *fname, int oflag, ++ mode_t mode) attribute_hidden; ++#else ++# define __openat_nocancel(fd, fname, oflag, mode) \ ++ openat (fd, fname, oflag, mode) ++# define __openat64_nocancel(fd, fname, oflag, mode) \ ++ openat64 (fd, fname, oflag, mode) ++#endif ++ ++#define openat_not_cancel(fd, fname, oflag, mode) \ ++ __openat_nocancel (fd, fname, oflag, mode) ++#define openat_not_cancel_3(fd, fname, oflag) \ ++ __openat_nocancel (fd, fname, oflag, 0) ++#define openat64_not_cancel(fd, fname, oflag, mode) \ ++ __openat64_nocancel (fd, fname, oflag, mode) ++#define openat64_not_cancel_3(fd, fname, oflag) \ ++ __openat64_nocancel (fd, fname, oflag, 0) ++ ++/* Uncancelable close. */ ++#define close_not_cancel(fd) \ ++ INLINE_SYSCALL (close, 1, fd) ++#define close_not_cancel_no_status(fd) \ ++ INLINE_SYSCALL (close, 1, fd) ++ ++/* Uncancelable read. */ ++#define read_not_cancel(fd, buf, n) \ ++ INLINE_SYSCALL (read, 3, (fd), (buf), (n)) ++ ++/* Uncancelable write. */ ++#define write_not_cancel(fd, buf, n) \ ++ INLINE_SYSCALL (write, 3, (fd), (buf), (n)) ++ ++/* Uncancelable writev. */ ++#define writev_not_cancel_no_status(fd, iov, n) \ ++ INLINE_SYSCALL (writev, 3, (fd), (iov), (n)) ++ ++/* Uncancelable fcntl. */ ++#define fcntl_not_cancel(fd, cmd, val) \ ++ __fcntl_nocancel (fd, cmd, val) ++ ++/* Uncancelable waitpid. */ ++# define waitpid_not_cancel(pid, stat_loc, options) \ ++ INLINE_SYSCALL (wait4, 4, pid, stat_loc, options, NULL) ++ ++/* Uncancelable pause. */ ++# define pause_not_cancel() \ ++ __pause_nocancel () ++ ++/* Uncancelable nanosleep. */ ++# define nanosleep_not_cancel(requested_time, remaining) \ ++ INLINE_SYSCALL (nanosleep, 2, requested_time, remaining) ++ ++/* Uncancelable sigsuspend. */ ++#define sigsuspend_not_cancel(set) \ ++ INLINE_SYSCALL (sigsuspend, 1, set) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ntp_gettime.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ntp_gettime.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ntp_gettime.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ntp_gettime.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,62 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++#ifndef ntptimeval ++#define ntptimeval ntptimeval4 ++#endif ++ ++int ++ntp_gettime (struct ntptimeval *ntv) ++{ ++ /* Fetch sysctl value of "kern.ntp_pll.gettime". */ ++ /* The 'struct ntptimeval' has grown in size. */ ++ union ++ { ++ struct ntptimeval3 tv3; ++ struct ntptimeval4 tv4; ++ } tv; ++ size_t size = sizeof (tv); ++ int request[2] = { CTL_KERN, KERN_NTP_PLL }; ++ ++ if (__sysctl (request, 2, &tv, &size, NULL, 0) >= 0) ++ { ++ if (size == sizeof (struct ntptimeval3)) ++ { ++ if (ntv) ++ { ++ ntv->time = tv.tv3.time; ++ ntv->maxerror = tv.tv3.maxerror; ++ ntv->esterror = tv.tv3.esterror; ++ ntv->tai = 0; ++ ntv->time_state = tv.tv3.time_state; ++ } ++ return tv.tv3.time_state; ++ } ++ if (size == sizeof (struct ntptimeval4)) ++ { ++ if (ntv) ++ *ntv = tv.tv4; ++ return tv.tv4.time_state; ++ } ++ } ++ return TIME_ERROR; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/open.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/open.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/open.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/open.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,87 @@ ++/* Copyright (C) 1999, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++extern int futimes (int fd, const struct timeval tvp[2]); ++ ++int ++__libc_open (const char *file, int oflag, ...) ++{ ++ int mode = 0; ++ int fd; ++ ++ if (oflag & O_CREAT) ++ { ++ va_list arg; ++ va_start (arg, oflag); ++ mode = va_arg (arg, int); ++ va_end (arg); ++ } ++ ++ if (SINGLE_THREAD_P) ++ { ++ fd = INLINE_SYSCALL (open, 3, file, oflag, mode); ++ } ++ else ++ { ++ int oldtype = LIBC_CANCEL_ASYNC (); ++ fd = INLINE_SYSCALL (open, 3, file, oflag, mode); ++ LIBC_CANCEL_RESET (oldtype); ++ } ++ ++ if (fd >= 0 && (oflag & O_TRUNC)) ++ { ++ /* Set the modification time. The kernel ought to do this. */ ++ int saved_errno = errno; ++ struct timeval tv[2]; ++ ++ if (__gettimeofday (&tv[1], NULL) >= 0) ++ { ++ struct stat statbuf; ++ ++ if (__fxstat (_STAT_VER, fd, &statbuf) >= 0) ++ { ++ tv[0].tv_sec = statbuf.st_atime; ++ tv[0].tv_usec = 0; ++ ++ futimes (fd, tv); ++ } ++ } ++ __set_errno (saved_errno); ++ } ++ ++ return fd; ++} ++libc_hidden_def (__libc_open) ++ ++weak_alias (__libc_open, __open) ++libc_hidden_weak (__open) ++ ++weak_alias (__libc_open, open) ++ ++strong_alias (__libc_open, __libc_open64) ++weak_alias (__libc_open64, __open64) ++weak_alias (__libc_open64, open64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/open64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/open64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/open64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/open64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,2 @@ ++/* 'open64' is the same as 'open', because __off64_t == __off_t and ++ O_LARGEFILE == 0. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/openat.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/openat.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/openat.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/openat.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,91 @@ ++/* Copyright (C) 2005, 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++int ++__openat_nocancel (fd, file, oflag, mode) ++ int fd; ++ const char *file; ++ int oflag; ++ mode_t mode; ++{ ++ if (fd != AT_FDCWD && file[0] != '/') ++ { ++ /* Check FD is associated with a directory. */ ++ struct stat64 st; ++ if (__fxstat64 (_STAT_VER, fd, &st) != 0) ++ /* errno is already set correctly. */ ++ return -1; ++ ++ if (!S_ISDIR (st.st_mode)) ++ __set_errno (ENOTDIR); ++ else ++ __set_errno (ENOSYS); ++ return -1; ++ } ++ return INLINE_SYSCALL (open, 3, file, oflag, mode); ++} ++ ++ ++/* Open FILE with access OFLAG. Interpret relative paths relative to ++ the directory associated with FD. If OFLAG includes O_CREAT, a ++ third argument is the file protection. */ ++int ++__openat (fd, file, oflag) ++ int fd; ++ const char *file; ++ int oflag; ++{ ++ mode_t mode = 0; ++ if (oflag & O_CREAT) ++ { ++ va_list arg; ++ va_start (arg, oflag); ++ mode = va_arg (arg, int); ++ va_end (arg); ++ } ++ ++ if (SINGLE_THREAD_P) ++ return __openat_nocancel (fd, file, oflag, mode); ++ ++ int oldtype = LIBC_CANCEL_ASYNC (); ++ ++ int res = __openat_nocancel (fd, file, oflag, mode); ++ ++ LIBC_CANCEL_RESET (oldtype); ++ ++ return res; ++} ++libc_hidden_def (__openat) ++weak_alias (__openat, openat) ++ ++/* openat64 is just the same as openat for us. */ ++strong_alias (__openat, __openat64) ++strong_alias (__openat_nocancel, __openat64_nocancel) ++libc_hidden_weak (__openat64) ++weak_alias (__openat64, openat64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/openat64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/openat64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/openat64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/openat64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,2 @@ ++/* 'openat64' is the same as 'open', because __off64_t == __off_t and ++ O_LARGEFILE == 0. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/paths.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/paths.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/paths.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/paths.h 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,74 @@ ++/* ++ * Copyright (c) 1989, 1993 ++ * The Regents of the University of California. All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * 4. Neither the name of the University nor the names of its contributors ++ * may be used to endorse or promote products derived from this software ++ * without specific prior written permission. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ * ++ * @(#)paths.h 8.1 (Berkeley) 6/2/93 ++ */ ++ ++#ifndef _PATHS_H_ ++#define _PATHS_H_ ++ ++/* Default search path. */ ++#define _PATH_DEFPATH "/usr/bin:/bin" ++/* All standard utilities path. */ ++#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin" ++ ++#define _PATH_BSHELL "/bin/sh" ++#define _PATH_CONSOLE "/dev/console" ++#define _PATH_CSHELL "/bin/csh" ++#define _PATH_DEVDB "/var/run/dev.db" ++#define _PATH_DEVNULL "/dev/null" ++#define _PATH_DRUM "/dev/drum" ++#define _PATH_KLOG "/dev/klog" ++#define _PATH_KMEM "/dev/kmem" ++#define _PATH_LASTLOG "/var/log/lastlog" ++/* FIFOs are not permitted in /dev, so we use /var/run/log instead of /dev/log */ ++#define _PATH_MAILDIR "/var/mail" ++#define _PATH_MAN "/usr/share/man" ++#define _PATH_MEM "/dev/mem" ++#define _PATH_MNTTAB "/etc/fstab" ++#define _PATH_MOUNTED "/etc/mtab" ++#define _PATH_NOLOGIN "/etc/nologin" ++#define _PATH_PRESERVE "/var/preserve" ++#define _PATH_RWHODIR "/var/rwho" ++#define _PATH_SENDMAIL "/usr/sbin/sendmail" ++#define _PATH_SHADOW "/etc/shadow" ++#define _PATH_SHELLS "/etc/shells" ++#define _PATH_TTY "/dev/tty" ++#define _PATH_UNIX "/kernel" ++#define _PATH_UTMP "/var/run/utmp" ++#define _PATH_VI "/usr/bin/vi" ++#define _PATH_WTMP "/var/log/wtmp" ++ ++/* Provide trailing slash, since mostly used for building pathnames. */ ++#define _PATH_DEV "/dev/" ++#define _PATH_TMP "/tmp/" ++#define _PATH_VARDB "/var/db/" ++#define _PATH_VARRUN "/var/run/" ++#define _PATH_VARTMP "/var/tmp/" ++ ++#endif /* !_PATHS_H_ */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/pread.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/pread.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/pread.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/pread.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,49 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++/* The real system call has a word of padding before the 64-bit off_t ++ argument. */ ++extern ssize_t __syscall_pread (int __fd, void *__buf, size_t __nbytes, ++ int __unused1, __off_t __offset) __THROW; ++ ++ssize_t ++__libc_pread (int fd, void *buf, size_t nbytes, __off_t offset) ++{ ++ /* We pass 5 arguments in 6 words. */ ++ if (SINGLE_THREAD_P) ++ return INLINE_SYSCALL (pread, 5, fd, buf, nbytes, 0, offset); ++ ++ int oldtype = LIBC_CANCEL_ASYNC (); ++ ssize_t result = INLINE_SYSCALL (pread, 5, fd, buf, nbytes, 0, offset); ++ LIBC_CANCEL_RESET (oldtype); ++ return result; ++} ++ ++strong_alias (__libc_pread, __pread) ++weak_alias (__pread, pread) ++ ++/* 'pread64' is the same as 'pread', because __off64_t == __off_t. */ ++strong_alias (__libc_pread, __libc_pread64) ++weak_alias (__libc_pread64, __pread64) ++weak_alias (__libc_pread64, pread64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/pread64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/pread64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/pread64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/pread64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++/* 'pread64' is the same as 'pread', because __off64_t == __off_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/prof-freq.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/prof-freq.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/prof-freq.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/prof-freq.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,47 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++struct clockinfo ++{ ++ int hz; /* Clock frequency. */ ++ int tick; /* Microseconds per hz tick, = 1000000 / hz. */ ++ int tickadj; /* Clock skew rate for adjtime(). */ ++ int stathz; /* Statistics clock frequency. */ ++ int profhz; /* Profiling clock frequency. */ ++}; ++ ++int ++__profile_frequency (void) ++{ ++ /* Fetch the "kern.clockrate" sysctl value. */ ++ int request[2] = { CTL_KERN, KERN_CLOCKRATE }; ++ struct clockinfo result; ++ size_t result_len = sizeof (result); ++ ++ if (__sysctl (request, 2, &result, &result_len, NULL, 0) < 0) ++ /* Dummy result. */ ++ return 1; ++ ++ /* Yes, hz, not profhz. On i386, the value is 100, not 1024. */ ++ return result.hz; ++} ++libc_hidden_def (__profile_frequency) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ptrace.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ptrace.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ptrace.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ptrace.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,68 @@ ++/* Copyright (C) 1995-1998, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++ ++extern int __syscall_ptrace (enum __ptrace_request request, pid_t pid, ++ void *addr, void *data); ++ ++int ++ptrace (enum __ptrace_request request, ...) ++{ ++ int res, ret; ++ va_list ap; ++ pid_t pid; ++ void *addr, *data; ++ ++ /* Usually 4 arguments are given, except when request == PTRACE_TRACEME. ++ But it doesn't harm to peek at the stack in this case as well. */ ++ va_start (ap, request); ++ pid = va_arg (ap, pid_t); ++ addr = va_arg (ap, void *); ++ data = va_arg (ap, void *); ++ va_end (ap); ++ ++ switch (request) ++ { ++ case PTRACE_PEEKTEXT: ++ case PTRACE_PEEKDATA: ++#ifdef PTRACE_PEEKUSER ++ case PTRACE_PEEKUSER: ++#endif ++ res = INLINE_SYSCALL (ptrace, 4, request, pid, addr, &ret); ++ if (res >= 0) ++ { ++ /* ret can be -1 even for successful operation. */ ++ __set_errno (0); ++ return ret; ++ } ++ break; ++ ++ default: ++ res = INLINE_SYSCALL (ptrace, 4, request, pid, addr, data); ++ break; ++ } ++ ++ return res; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ptsname.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ptsname.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ptsname.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ptsname.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,104 @@ ++/* Copyright (C) 1998, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++ ++/* Static buffer for `ptsname'. */ ++static char buffer[sizeof (_PATH_TTY) + 2]; ++ ++ ++/* Return the pathname of the pseudo terminal slave associated with ++ the master FD is open on, or NULL on errors. ++ The returned storage is good until the next call to this function. */ ++char * ++ptsname (int fd) ++{ ++ return __ptsname_r (fd, buffer, sizeof (buffer)) != 0 ? NULL : buffer; ++} ++ ++/* The are declared in getpt.c. */ ++extern const char __libc_ptyname1[] attribute_hidden; ++extern const char __libc_ptyname2[] attribute_hidden; ++ ++ ++/* Store at most BUFLEN characters of the pathname of the slave pseudo ++ terminal associated with the master FD is open on in BUF. ++ Return 0 on success, otherwise an error number. */ ++int ++__ptsname_r (int fd, char *buf, size_t buflen) ++{ ++ int saved_errno = errno; ++ struct stat64 st; ++ char *p; ++ ++ if (buf == NULL) ++ { ++ __set_errno (EINVAL); ++ return EINVAL; ++ } ++ ++ /* Don't call isatty (fd) - it usually fails with errno = EAGAIN. */ ++ ++ if (__fxstat64 (_STAT_VER, fd, &st) < 0) ++ return errno; ++ ++ /* Check if FD really is a master pseudo terminal. */ ++ if (!(S_ISCHR (st.st_mode))) ++ { ++ __set_errno (ENOTTY); ++ return ENOTTY; ++ } ++ ++ if (buflen < sizeof (_PATH_TTY) + 2) ++ { ++ __set_errno (ERANGE); ++ return ERANGE; ++ } ++ ++ /* Construct the slave's pathname. */ ++ /* instead of strlen(_PATH_DEV) we use (sizeof (_PATH_DEV) - 1) */ ++ p = __mempcpy (buf, _PATH_DEV, sizeof (_PATH_DEV) - 1); ++ buflen -= (sizeof (_PATH_DEV) - 1); ++ if(__sysctlbyname("kern.devname", p, &buflen, &st.st_rdev, sizeof (st.st_rdev)) < 0) ++ return errno; ++ p[0] = 't'; ++ ++ if (__xstat64 (_STAT_VER, buf, &st) < 0) ++ return errno; ++ ++ /* Check if the pathname we're about to return might be ++ slave pseudo terminal of the given master pseudo terminal. */ ++ if (!(S_ISCHR (st.st_mode))) ++ { ++ /* This really is a configuration problem. */ ++ __set_errno (ENOTTY); ++ return ENOTTY; ++ } ++ ++ __set_errno (saved_errno); ++ return 0; ++} ++weak_alias (__ptsname_r, ptsname_r) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/pwrite.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/pwrite.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/pwrite.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/pwrite.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,49 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++/* The real system call has a word of padding before the 64-bit off_t ++ argument. */ ++extern ssize_t __syscall_pwrite (int __fd, const void *__buf, size_t __nbytes, ++ int __unused1, __off_t __offset) __THROW; ++ ++ssize_t ++__libc_pwrite (int fd, const void *buf, size_t nbytes, __off_t offset) ++{ ++ /* We pass 5 arguments in 6 words. */ ++ if (SINGLE_THREAD_P) ++ return INLINE_SYSCALL (pwrite, 5, fd, buf, nbytes, 0, offset); ++ ++ int oldtype = LIBC_CANCEL_ASYNC (); ++ ssize_t result = INLINE_SYSCALL (pwrite, 5, fd, buf, nbytes, 0, offset); ++ LIBC_CANCEL_RESET (oldtype); ++ return result; ++} ++ ++strong_alias (__libc_pwrite, __pwrite) ++weak_alias (__pwrite, pwrite) ++ ++/* 'pwrite64' is the same as 'pwrite', because __off64_t == __off_t. */ ++strong_alias (__libc_pwrite, __libc_pwrite64) ++weak_alias (__libc_pwrite64, __pwrite64) ++weak_alias (__libc_pwrite64, pwrite64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/pwrite64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/pwrite64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/pwrite64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/pwrite64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++/* 'pwrite64' is the same as 'pwrite', because __off64_t == __off_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,11 @@ ++/* 'readdir64' is the same as 'readdir', because ++ struct dirent64 == struct dirent. */ ++ ++#define readdir64 __no_readdir64_decl ++#define __readdir64 __no___readdir64_decl ++#include ++#undef __readdir64 ++#undef readdir64 ++ ++strong_alias (__readdir, __readdir64) ++weak_alias (__readdir64, readdir64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,2 @@ ++/* 'readdir64' is the same as 'readdir', because ++ struct dirent64 == struct dirent. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir64_r.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir64_r.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir64_r.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir64_r.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,2 @@ ++/* 'readdir64_r' is the same as 'readdir_r', because ++ struct dirent64 == struct dirent. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir_r.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir_r.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir_r.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/readdir_r.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,11 @@ ++/* 'readdir64_r' is the same as 'readdir_r', because ++ struct dirent64 == struct dirent. */ ++ ++#define readdir64_r __no_readdir64_r_decl ++#define __readdir64_r __no___readdir64_r_decl ++#include ++#undef __readdir64_r ++#undef readdir64_r ++ ++strong_alias (__readdir_r, __readdir64_r) ++weak_alias (__readdir64_r, readdir64_r) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/readv.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/readv.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/readv.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/readv.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,56 @@ ++/* readv for FreeBSD. ++ Copyright (C) 1997-1998, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++extern ssize_t __syscall_readv (int, __const struct iovec *__unbounded, int); ++ ++static ssize_t __atomic_readv_replacement (int, __const struct iovec *, ++ int) internal_function; ++ ++ssize_t ++__libc_readv (int fd, const struct iovec *vector, int count) ++{ ++ if (count <= UIO_MAXIOV) ++ { ++ if (SINGLE_THREAD_P) ++ return INLINE_SYSCALL (readv, 3, fd, CHECK_N (vector, count), count); ++ ++ int oldtype = LIBC_CANCEL_ASYNC (); ++ ssize_t result = INLINE_SYSCALL (readv, 3, fd, CHECK_N (vector, count), count); ++ LIBC_CANCEL_RESET (oldtype); ++ return result; ++ ++ } ++ else ++ return __atomic_readv_replacement (fd, vector, count); ++} ++strong_alias (__libc_readv, __readv) ++weak_alias (__libc_readv, readv) ++ ++#define __libc_readv static internal_function __atomic_readv_replacement ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/recv.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/recv.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/recv.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/recv.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,38 @@ ++/* Copyright (C) 2001-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++/* The real syscall's name. See sysdeps/unix/inet/syscalls.list. */ ++#define __syscall_recvfrom __libc_recvfrom ++ ++/* Read N bytes into BUF from socket FD. ++ Return the number of bytes read or -1 for error. */ ++ ++ssize_t ++__libc_recv (int fd, void *buf, size_t n, int flags) ++{ ++ return INLINE_SYSCALL (recvfrom, 6, fd, buf, n, flags, NULL, NULL); ++} ++ ++weak_alias (__libc_recv, __recv) ++weak_alias (__libc_recv, recv) ++ ++LIBC_CANCEL_HANDLED (); /* in __libc_recvfrom */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sa_len.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sa_len.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sa_len.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sa_len.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,44 @@ ++/* Copyright (C) 1998, 1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++#include ++#include ++#include ++#include ++ ++int ++__libc_sa_len (sa_family_t af) ++{ ++ switch (af) ++ { ++ case AF_APPLETALK: ++ return sizeof (struct sockaddr_at); ++ case AF_INET: ++ return sizeof (struct sockaddr_in); ++ case AF_INET6: ++ return sizeof (struct sockaddr_in6); ++ case AF_IPX: ++ return sizeof (struct sockaddr_ipx); ++ case AF_LOCAL: ++ return sizeof (struct sockaddr_un); ++ } ++ return 0; ++} ++INTDEF(__libc_sa_len) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sbrk.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sbrk.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sbrk.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sbrk.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sched_getp.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sched_getp.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sched_getp.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sched_getp.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,45 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++/* Retrieve scheduling parameters for a particular process. */ ++int ++__sched_getparam (pid_t pid, struct sched_param *param) ++{ ++ /* kFreeBSD return bogus values for SYS_sched_param (see PR kern/76485); ++ fortunately the same information can be retrieved through the rtprio() ++ system call. */ ++ struct rtprio rtp; ++ ++ if (__rtprio (RTP_LOOKUP, pid, &rtp) >= 0) ++ { ++ if (RTP_PRIO_IS_REALTIME (rtp.type)) ++ param->sched_priority = RTP_PRIO_MAX - rtp.prio; ++ else ++ param->sched_priority = 0; ++ } ++ ++ return 0; ++} ++ ++weak_alias (__sched_getparam, sched_getparam) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/seekdir.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/seekdir.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/seekdir.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/seekdir.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,2 @@ ++/* Avoid , which doesn't pass the testsuite. */ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/semctl.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/semctl.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/semctl.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/semctl.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,86 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Robert Millan ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/*- ++ * Copyright (c) 2002 Doug Rabson ++ * All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ * ++ */ ++ ++#include ++#include ++#include /* va_list */ ++#include /* NULL */ ++#include ++ ++/* union semun from FreeBSD */ ++/* ++ * semctl's arg parameter structure ++ */ ++union semun ++{ ++ int val; /* value for SETVAL */ ++ struct semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */ ++ unsigned short *array; /* array for GETALL & SETALL */ ++}; ++ ++ ++int ++semctl (int semid, int semnum, int cmd, ...) ++{ ++ va_list ap; ++ union semun semun; ++ union semun *semun_ptr; ++ ++ va_start (ap, cmd); ++ if (cmd == IPC_SET || cmd == IPC_STAT || cmd == GETALL ++ || cmd == SETVAL || cmd == SETALL) ++ { ++ semun = va_arg (ap, union semun); ++ semun_ptr = &semun; ++ } ++ else ++ { ++ semun_ptr = NULL; ++ } ++ va_end (ap); ++ ++ return syscall (SYS_semctl, semid, semnum, cmd, semun_ptr); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/send.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/send.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/send.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/send.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,46 @@ ++/* Copyright (C) 2001-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern ssize_t __syscall_sendto (int fd, __const __ptr_t buf, ++ size_t n, int flags, ++ __CONST_SOCKADDR_ARG addr, ++ socklen_t addrlen); ++ ++/* Send N bytes of BUF to socket FD. ++ Return the number of bytes sent or -1. */ ++ ++ssize_t ++__libc_send (int fd, const void *buf, size_t n, int flags) ++{ ++ if (SINGLE_THREAD_P) ++ return INLINE_SYSCALL (sendto, 6, fd, buf, n, flags, NULL, 0); ++ ++ int oldtype = LIBC_CANCEL_ASYNC (); ++ int result = INLINE_SYSCALL (sendto, 6, fd, buf, n, flags, NULL, 0); ++ LIBC_CANCEL_RESET (oldtype); ++ return result; ++} ++ ++weak_alias (__libc_send, __send) ++libc_hidden_weak (__send) ++ ++weak_alias (__send, send) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sendto.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sendto.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sendto.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sendto.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,69 @@ ++/* Copyright (C) 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Aurelien Jarno , 2005. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++/* According to POSIX.1-2004 the len argument specifies the length of ++ the sockaddr structure pointed to by the addrarg argument. However ++ the FreeBSD kernel waits the actual length of the address stored ++ there. The code below emulate this behaviour. */ ++ ++extern int __libc_sa_len (sa_family_t __af); ++extern int __libc_sa_len_internal (sa_family_t __af); ++ ++extern ssize_t __syscall_sendto (int fd, __const void * buf, ++ size_t n, int flags, ++ __CONST_SOCKADDR_ARG addr, ++ socklen_t addrlen); ++ ++/* Send N bytes of BUF on socket FD to peer at address ADDR (which is ++ * ADDR_LEN bytes long). Returns the number sent, or -1 for errors. */ ++ ++ ++ssize_t ++__libc_sendto (int fd, __const void * buf, size_t n, int flags, ++ __CONST_SOCKADDR_ARG addr, socklen_t addrlen) ++{ ++ socklen_t new_addrlen; ++ ++#ifndef NOT_IN_libc ++ new_addrlen = INTUSE(__libc_sa_len) ((addr.__sockaddr__)->sa_family); ++#else ++ new_addrlen = __libc_sa_len ((addr.__sockaddr__)->sa_family); ++#endif ++ ++ /* Only allow a smaller size, otherwise it could lead to ++ stack corruption */ ++ if (new_addrlen < addrlen) ++ addrlen = new_addrlen; ++ ++ /* We pass 6 arguments. */ ++ if (SINGLE_THREAD_P) ++ return INLINE_SYSCALL (sendto, 6, fd, buf, n, flags, addr, addrlen); ++ ++ int oldtype = LIBC_CANCEL_ASYNC (); ++ int result = INLINE_SYSCALL (sendto, 6, fd, buf, n, flags, addr, addrlen); ++ LIBC_CANCEL_RESET (oldtype); ++ return result; ++} ++ ++weak_alias (__libc_sendto, __sendto) ++weak_alias (__libc_sendto, sendto) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sethostid.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sethostid.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sethostid.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sethostid.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,37 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++/* Set the current machine's Internet number to ID. ++ This call is restricted to the super-user. */ ++ ++int ++sethostid (long int id) ++{ ++ /* Set the "kern.hostid" sysctl value. */ ++ int value = id; ++ int request[2] = { CTL_KERN, KERN_HOSTID }; ++ ++ if (__sysctl (request, 2, NULL, NULL, &value, sizeof (value)) < 0) ++ return -1; ++ ++ return 0; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sethostname.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sethostname.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sethostname.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sethostname.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,37 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++/* Set the name of the current host to NAME, which is LEN bytes long ++ (excluding a possible trailing NUL byte). This call is restricted to ++ the super-user. */ ++ ++int ++sethostname (const char *name, size_t len) ++{ ++ /* Set the "kern.hostname" sysctl value. */ ++ int request[2] = { CTL_KERN, KERN_HOSTNAME }; ++ ++ if (__sysctl (request, 2, NULL, NULL, (void *) name, len) < 0) ++ return -1; ++ ++ return 0; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/setlogin.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/setlogin.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/setlogin.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/setlogin.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,34 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++/* Defined in getlogin_r.c. */ ++extern char *__getlogin_cache; ++ ++extern int __syscall_setlogin (const char *__name); ++ ++int ++setlogin (const char *name) ++{ ++ /* FIXME: Not multithread-safe. */ ++ __getlogin_cache = NULL; ++ return INLINE_SYSCALL (setlogin, 1, name); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/setrlimit64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/setrlimit64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/setrlimit64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/setrlimit64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++/* 'setrlimit64' is the same as 'setrlimit', because __rlim64_t == __rlim_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigaction.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigaction.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigaction.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigaction.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,46 @@ ++/* Copyright (C) 1991,1995,1996,1997,2002,2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++extern int __syscall_sigaction (int __sig, const struct sigaction *__act, struct sigaction *__oact) __THROW; ++ ++int ++__libc_sigaction (sig, act, oact) ++ int sig; ++ const struct sigaction *act; ++ struct sigaction *oact; ++{ ++ if (sig <= 0 || sig >= NSIG) ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++ ++ return INLINE_SYSCALL (sigaction, 3, sig, act, oact); ++} ++libc_hidden_def (__libc_sigaction) ++ ++#ifndef LIBC_SIGACTION ++weak_alias (__libc_sigaction, __sigaction) ++libc_hidden_weak (__sigaction) ++weak_alias (__libc_sigaction, sigaction) ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigreturn.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigreturn.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigreturn.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigreturn.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,3 @@ ++/* The sigreturn syscall cannot be explicitly called on FreeBSD, only ++ implicitly by returning from a signal handler. */ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigset-cvt-mask.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigset-cvt-mask.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigset-cvt-mask.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigset-cvt-mask.h 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,36 @@ ++/* Convert between lowlevel sigmask and libc representation of sigset_t. ++ FreeBSD version. ++ Copyright (C) 1998, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++static inline int __attribute__ ((unused)) ++sigset_set_old_mask (sigset_t *set, int mask) ++{ ++ set->__sigbits[0] = (unsigned int) mask; ++ set->__sigbits[1] = 0; ++ set->__sigbits[2] = 0; ++ set->__sigbits[3] = 0; ++ ++ return 0; ++} ++ ++static inline int __attribute__ ((unused)) ++sigset_get_old_mask (const sigset_t *set) ++{ ++ return (unsigned int) set->__sigbits[0]; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigstack.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigstack.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigstack.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sigstack.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,3 @@ ++/* We can reuse the Linux implementation with some tricks. */ ++#define __NR_sigaltstack 1 ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sleep.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sleep.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sleep.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sleep.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,44 @@ ++/* Implementation of the POSIX sleep function using nanosleep. ++ Copyright (C) 1996-1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++/* The default implementation of sleep() in sysdeps/posix/sleep.c, based on ++ SIGALRM, does not mix well with threads. Therefore we use the nanosleep() ++ system call. */ ++unsigned int ++__sleep (unsigned int seconds) ++{ ++ struct timespec ts = { tv_sec: seconds, tv_nsec: 0 }; ++ int ret; ++ ++ /* This is not necessary but some buggy programs depend on this. */ ++ if (seconds == 0) ++ return 0; ++ ++ ret = __nanosleep (&ts, &ts); ++ ++ if (ret == 0) ++ return 0; ++ ++ /* Round remaining time. */ ++ return (unsigned int) ts.tv_sec + (ts.tv_nsec >= 500000000L); ++} ++ ++weak_alias (__sleep, sleep) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/stat16conv.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/stat16conv.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/stat16conv.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/stat16conv.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,77 @@ ++/* Convert between different 'struct stat' formats. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern int __syscall_fhstat (const fhandle_t *fhp, struct stat16 *buf); ++extern int __syscall_fstat (int, struct stat16 *__unbounded); ++extern int __syscall_lstat (const char *__unbounded, struct stat16 *__unbounded); ++extern int __syscall_stat (const char *__unbounded, struct stat16 *__unbounded); ++ ++ ++/* Convert a 'struct stat16' to 'struct stat'. */ ++static inline void ++stat16_to_stat (const struct stat16 *p16, struct stat *q) ++{ ++ q->st_dev = p16->st_dev; ++ q->st_ino = p16->st_ino; ++ q->st_mode = p16->st_mode; ++ q->st_nlink = p16->st_nlink; ++ q->st_uid = p16->st_uid; ++ q->st_gid = p16->st_gid; ++ q->st_rdev = p16->st_rdev; ++ q->st_atim = p16->st_atimespec; ++ q->st_mtim = p16->st_mtimespec; ++ q->st_ctim = p16->st_ctimespec; ++ q->st_size = p16->st_size; ++ q->st_blocks = p16->st_blocks; ++ q->st_blksize = p16->st_blksize; ++ q->st_flags = p16->st_flags; ++ q->st_gen = p16->st_gen; ++#if 0 ++ memcpy (q->__unused1, p16->__unused2, sizeof (p16->__unused2)); ++#endif ++} ++ ++/* Convert a 'struct stat16' to 'struct stat64'. */ ++static inline void ++stat16_to_stat64 (const struct stat16 *p16, struct stat64 *q) ++{ ++ q->st_dev = p16->st_dev; ++ q->st_ino = p16->st_ino; ++ q->st_mode = p16->st_mode; ++ q->st_nlink = p16->st_nlink; ++ q->st_uid = p16->st_uid; ++ q->st_gid = p16->st_gid; ++ q->st_rdev = p16->st_rdev; ++ q->st_atim = p16->st_atimespec; ++ q->st_mtim = p16->st_mtimespec; ++ q->st_ctim = p16->st_ctimespec; ++ q->st_size = p16->st_size; ++ q->st_blocks = p16->st_blocks; ++ q->st_blksize = p16->st_blksize; ++ q->st_flags = p16->st_flags; ++ q->st_gen = p16->st_gen; ++#if 0 ++ memcpy (q->__unused1, p16->__unused2, sizeof (p16->__unused2)); ++#endif ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statconv.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statconv.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statconv.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statconv.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,46 @@ ++/* Convert between different 'struct stat' formats. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++/* Convert a 'struct stat' to 'struct stat64'. */ ++static inline void ++stat_to_stat64 (const struct stat *p32, struct stat64 *p64) ++{ ++ p64->st_dev = p32->st_dev; ++ p64->st_ino = p32->st_ino; ++ p64->st_mode = p32->st_mode; ++ p64->st_nlink = p32->st_nlink; ++ p64->st_uid = p32->st_uid; ++ p64->st_gid = p32->st_gid; ++ p64->st_rdev = p32->st_rdev; ++ p64->st_atime = p32->st_atime; ++ p64->st_atimensec = p32->st_atimensec; ++ p64->st_mtime = p32->st_mtime; ++ p64->st_mtimensec = p32->st_mtimensec; ++ p64->st_ctime = p32->st_ctime; ++ p64->st_ctimensec = p32->st_ctimensec; ++ p64->st_size = p32->st_size; ++ p64->st_blocks = p32->st_blocks; ++ p64->st_blksize = p32->st_blksize; ++ p64->st_flags = p32->st_flags; ++ p64->st_gen = p32->st_gen; ++ memcpy (p64->__unused1, p32->__unused1, sizeof (p32->__unused1)); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfs.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfs.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfs.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfs.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,40 @@ ++/* Return information about the filesystem on which FILE resides. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++#include "statfsconv.c" ++ ++/* Return information about the filesystem on which FILE resides. */ ++int ++__statfs (const char *file, struct statfs *buf) ++{ ++ struct statfs_fbsd5 kbuf; ++ ++ if (__syscall_statfs (file, &kbuf) < 0) ++ return -1; ++ ++ /* Convert a 'struct statfs' to 'struct statvfs'. */ ++ statfs5_to_statfs (&kbuf, buf); ++ ++ return 0; ++} ++libc_hidden_def (__statfs) ++weak_alias (__statfs, statfs) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfs64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfs64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfs64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfs64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,37 @@ ++/* Return information about the filesystem on which FILE resides. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++#include "statfsconv.c" ++ ++/* Return information about the filesystem on which FILE resides. */ ++int ++statfs64 (const char *file, struct statfs64 *buf) ++{ ++ struct statfs_fbsd5 kbuf; ++ ++ if (__syscall_statfs (file, &kbuf) < 0) ++ return -1; ++ ++ statfs5_to_statfs64 (&kbuf, buf); ++ ++ return 0; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfsconv.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfsconv.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfsconv.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statfsconv.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,203 @@ ++/* Convert between different 'struct statfs' and 'struct statvfs' formats. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ Contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++/* ++ * filesystem statistics ++ */ ++ ++#define MFSNAMELEN 16 /* length of type name including null */ ++#define MNAMELEN 88 /* size of on/from name bufs */ ++ ++struct statfs_fbsd5 { ++ uint32_t f_version; /* structure version number */ ++ uint32_t f_type; /* type of filesystem */ ++ uint64_t f_flags; /* copy of mount exported flags */ ++ uint64_t f_bsize; /* filesystem fragment size */ ++ uint64_t f_iosize; /* optimal transfer block size */ ++ uint64_t f_blocks; /* total data blocks in filesystem */ ++ uint64_t f_bfree; /* free blocks in filesystem */ ++ int64_t f_bavail; /* free blocks avail to non-superuser */ ++ uint64_t f_files; /* total file nodes in filesystem */ ++ int64_t f_ffree; /* free nodes avail to non-superuser */ ++ uint64_t f_syncwrites; /* count of sync writes since mount */ ++ uint64_t f_asyncwrites; /* count of async writes since mount */ ++ uint64_t f_syncreads; /* count of sync reads since mount */ ++ uint64_t f_asyncreads; /* count of async reads since mount */ ++ uint64_t f_spare[10]; /* unused spare */ ++ uint32_t f_namemax; /* maximum filename length */ ++ __uid_t f_owner; /* user that mounted the filesystem */ ++ __fsid_t f_fsid; /* filesystem id */ ++ char f_charspare[80]; /* spare string space */ ++ char f_fstypename[MFSNAMELEN]; /* filesystem type name */ ++ char f_mntfromname[MNAMELEN]; /* mounted filesystem */ ++ char f_mntonname[MNAMELEN]; /* directory on which mounted */ ++}; ++ ++extern int __syscall_getfsstat(struct statfs_fbsd5 *buf, long bufsize, int flags); ++extern int __syscall_statfs(const char *path, struct statfs_fbsd5 *buf); ++extern int __syscall_fstatfs(int fd, struct statfs_fbsd5 *buf); ++extern int __syscall_fhstatfs(const struct fhandle *u_fhp, struct statfs_fbsd5 *buf); ++ ++ ++/* ++ * Convert a FreeBSD 5.x format statfs structure to an glibc format statfs structure. ++ */ ++ ++static inline void ++statfs5_to_statfs(const struct statfs_fbsd5 *pk, struct statfs *p32) ++{ ++ memset(p32, 0, sizeof(*p32)); ++ ++ p32->f_version = pk->f_version; ++ p32->f_bsize = MIN(pk->f_bsize, ULONG_MAX); ++ p32->f_iosize = MIN(pk->f_iosize, ULONG_MAX); ++ ++ p32->f_blocks = MIN(pk->f_blocks, ULONG_MAX); ++ p32->f_bfree = MIN(pk->f_bfree, ULONG_MAX); ++ p32->f_bavail = MIN(pk->f_bavail, ULONG_MAX); ++ p32->f_files = MIN(pk->f_files, ULONG_MAX); ++ p32->f_ffree = MIN(pk->f_ffree, ULONG_MAX); ++ ++ p32->f_fsid = pk->f_fsid; ++ p32->f_owner = pk->f_owner; ++ p32->f_type = pk->f_type; ++ p32->f_flags = pk->f_flags; ++ ++ p32->f_syncwrites = MIN(pk->f_syncwrites, ULONG_MAX); ++ p32->f_asyncwrites = MIN(pk->f_asyncwrites, ULONG_MAX); ++ p32->f_syncreads = MIN(pk->f_syncreads, ULONG_MAX); ++ p32->f_asyncreads = MIN(pk->f_asyncreads, ULONG_MAX); ++ ++ p32->f_namemax = MIN(pk->f_namemax, USHRT_MAX); ++ ++ memcpy(p32->f_fstypename, pk->f_fstypename, sizeof (p32->f_fstypename)); ++ memcpy(p32->f_mntonname, pk->f_mntonname, sizeof (p32->f_mntonname)); ++ memcpy(p32->f_mntfromname,pk->f_mntfromname,sizeof (p32->f_mntfromname)); ++} ++ ++ ++/* ++ * Convert a FreeBSD 5.x format statfs structure to an glibc format statfs64 structure. ++ */ ++ ++static inline void ++statfs5_to_statfs64(const struct statfs_fbsd5 *pk, struct statfs64 *p64) ++{ ++ memset(p64, 0, sizeof(*p64)); ++ ++ p64->f_version = pk->f_version; ++ p64->f_bsize = MIN(pk->f_bsize, ULONG_MAX); ++ p64->f_iosize = MIN(pk->f_iosize, ULONG_MAX); ++ ++ p64->f_blocks = pk->f_blocks; ++ p64->f_bfree = pk->f_bfree; ++ p64->f_bavail = pk->f_bavail; ++ p64->f_files = pk->f_files; ++ p64->f_ffree = pk->f_ffree; ++ ++ p64->f_fsid = pk->f_fsid; ++ p64->f_owner = pk->f_owner; ++ p64->f_type = pk->f_type; ++ p64->f_flags = pk->f_flags; ++ ++ p64->f_syncwrites = MIN(pk->f_syncwrites, ULONG_MAX); ++ p64->f_asyncwrites = MIN(pk->f_asyncwrites, ULONG_MAX); ++ p64->f_syncreads = MIN(pk->f_syncreads, ULONG_MAX); ++ p64->f_asyncreads = MIN(pk->f_asyncreads, ULONG_MAX); ++ ++ p64->f_namemax = MIN(pk->f_namemax, USHRT_MAX); ++ ++ memcpy(p64->f_fstypename, pk->f_fstypename, sizeof (p64->f_fstypename)); ++ memcpy(p64->f_mntonname, pk->f_mntonname, sizeof (p64->f_mntonname)); ++ memcpy(p64->f_mntfromname,pk->f_mntfromname,sizeof (p64->f_mntfromname)); ++} ++ ++ ++/* ++ * Convert a FreeBSD 5.x format statfs structure to an glibc format statvfs structure. ++ */ ++ ++static inline void ++statfs5_to_statvfs (const struct statfs_fbsd5 *pk, struct statvfs *p32) ++{ ++ /* FIXME: What is the difference between f_bsize and f_frsize ? */ ++ p32->f_bsize = MIN(pk->f_bsize, ULONG_MAX); ++ p32->f_frsize = MIN(pk->f_bsize, ULONG_MAX); ++ ++ p32->f_blocks = MIN(pk->f_blocks, ULONG_MAX); ++ p32->f_bfree = MIN(pk->f_bfree, ULONG_MAX); ++ p32->f_bavail = MIN(pk->f_bavail, ULONG_MAX); ++ p32->f_files = MIN(pk->f_files, ULONG_MAX); ++ p32->f_ffree = MIN(pk->f_ffree, ULONG_MAX); ++ p32->f_favail = MIN(pk->f_ffree, ULONG_MAX); /* Hmm. May be filesystem dependent. */ ++ ++ memcpy(&(p32->f_fsid), &(pk->f_fsid), sizeof(__fsid_t)); ++ ++ p32->f_flag = ++ (pk->f_flags & MNT_RDONLY ? ST_RDONLY : 0) ++ | (pk->f_flags & MNT_NOSUID ? ST_NOSUID : 0) ++ | (pk->f_flags & MNT_NODEV ? ST_NODEV : 0) ++ | (pk->f_flags & MNT_NOEXEC ? ST_NOEXEC : 0) ++ | (pk->f_flags & MNT_SYNCHRONOUS ? ST_SYNCHRONOUS : 0); ++ p32->f_namemax = pk->f_namemax; ++ ++ memset (p32->f_spare, '\0', sizeof (p32->f_spare)); ++} ++ ++ ++/* ++ * Convert a FreeBSD 5.x format statfs structure to an glibc format statvfs64 structure. ++ */ ++ ++static inline void ++statfs5_to_statvfs64 (const struct statfs_fbsd5 *pk, struct statvfs64 *p64) ++{ ++ /* FIXME: What is the difference between f_bsize and f_frsize ? */ ++ p64->f_bsize = MIN(pk->f_bsize, ULONG_MAX); ++ p64->f_frsize = MIN(pk->f_bsize, ULONG_MAX); ++ ++ p64->f_blocks = pk->f_blocks; ++ p64->f_bfree = pk->f_bfree; ++ p64->f_bavail = pk->f_bavail; ++ p64->f_files = pk->f_files; ++ p64->f_ffree = pk->f_ffree; ++ p64->f_favail = pk->f_ffree; /* Hmm. May be filesystem dependent. */ ++ ++ memcpy(&(p64->f_fsid), &(pk->f_fsid), sizeof(__fsid_t)); ++ ++ p64->f_flag = ++ (pk->f_flags & MNT_RDONLY ? ST_RDONLY : 0) ++ | (pk->f_flags & MNT_NOSUID ? ST_NOSUID : 0) ++ | (pk->f_flags & MNT_NODEV ? ST_NODEV : 0) ++ | (pk->f_flags & MNT_NOEXEC ? ST_NOEXEC : 0) ++ | (pk->f_flags & MNT_SYNCHRONOUS ? ST_SYNCHRONOUS : 0); ++ p64->f_namemax = pk->f_namemax; ++ ++ memset (p64->f_spare, '\0', sizeof (p64->f_spare)); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statvfs.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statvfs.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statvfs.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statvfs.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,40 @@ ++/* Return information about the filesystem on which FILE resides. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++#include "statfsconv.c" ++ ++/* Return information about the filesystem on which FILE resides. */ ++int ++statvfs (const char *file, struct statvfs *buf) ++{ ++ struct statfs_fbsd5 kbuf; ++ ++ if (__syscall_statfs (file, &kbuf) < 0) ++ return -1; ++ ++ /* Convert a 'struct statfs' to 'struct statvfs'. */ ++ statfs5_to_statvfs (&kbuf, buf); ++ ++ return 0; ++} ++libc_hidden_weak (statvfs) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statvfs64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statvfs64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/statvfs64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/statvfs64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,41 @@ ++/* Return information about the filesystem on which FILE resides. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++#include "statfsconv.c" ++ ++/* Return information about the filesystem on which FILE resides. */ ++int ++__statvfs64 (const char *file, struct statvfs64 *buf) ++{ ++ struct statfs_fbsd5 kbuf; ++ ++ if (__syscall_statfs (file, &kbuf) < 0) ++ return -1; ++ ++ /* Convert a 'struct statfs' to 'struct statvfs64'. */ ++ statfs5_to_statvfs64 (&kbuf, buf); ++ ++ return 0; ++} ++ ++weak_alias (__statvfs64, statvfs64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/kd.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/kd.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/kd.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/kd.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,25 @@ ++/* Copyright (C) 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_KD_H ++#define _SYS_KD_H 1 ++ ++#include ++#include ++ ++#endif /* sys/kd.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/mount.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/mount.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/mount.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/mount.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,438 @@ ++/* Header file for handling mounted filesystems. FreeBSD version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_MOUNT_H ++#define _SYS_MOUNT_H 1 ++ ++#include ++ ++/* Retrieving the list of mounted filesystems. */ ++ ++#include ++#include ++#include ++#include ++ ++/* ++ * File identifier. ++ * These are unique per filesystem on a single machine. ++ */ ++#define MAXFIDSZ 16 ++ ++struct fid { ++ u_short fid_len; /* length of data in bytes */ ++ u_short fid_reserved; /* force longword alignment */ ++ char fid_data[MAXFIDSZ]; /* data (variable length) */ ++}; ++ ++/* ++ * filesystem statistics ++ */ ++#define MFSNAMELEN 16 /* length of type name including null */ ++#define MNAMELEN 88 /* size of on/from name bufs */ ++#define STATFS_VERSION 0x20030518 /* current version number */ ++ ++ ++/* ++ * User specifiable flags. ++ */ ++#define MNT_RDONLY 0x00000001 /* read only filesystem */ ++#define MNT_SYNCHRONOUS 0x00000002 /* filesystem written synchronously */ ++#define MNT_NOEXEC 0x00000004 /* can't exec from filesystem */ ++#define MNT_NOSUID 0x00000008 /* don't honor setuid bits on fs */ ++#define MNT_NODEV 0x00000010 /* don't interpret special files */ ++#define MNT_UNION 0x00000020 /* union with underlying filesystem */ ++#define MNT_ASYNC 0x00000040 /* filesystem written asynchronously */ ++#define MNT_SUIDDIR 0x00100000 /* special handling of SUID on dirs */ ++#define MNT_SOFTDEP 0x00200000 /* soft updates being done */ ++#define MNT_NOSYMFOLLOW 0x00400000 /* do not follow symlinks */ ++#define MNT_JAILDEVFS 0x02000000 /* jail-friendly DEVFS behaviour */ ++#define MNT_MULTILABEL 0x04000000 /* MAC support for individual objects */ ++#define MNT_ACLS 0x08000000 /* ACL support enabled */ ++#define MNT_NOATIME 0x10000000 /* disable update of file access time */ ++#define MNT_NOCLUSTERR 0x40000000 /* disable cluster read */ ++#define MNT_NOCLUSTERW 0x80000000 /* disable cluster write */ ++ ++/* ++ * NFS export related mount flags. ++ */ ++#define MNT_EXRDONLY 0x00000080 /* exported read only */ ++#define MNT_EXPORTED 0x00000100 /* filesystem is exported */ ++#define MNT_DEFEXPORTED 0x00000200 /* exported to the world */ ++#define MNT_EXPORTANON 0x00000400 /* use anon uid mapping for everyone */ ++#define MNT_EXKERB 0x00000800 /* exported with Kerberos uid mapping */ ++#define MNT_EXPUBLIC 0x20000000 /* public export (WebNFS) */ ++ ++/* ++ * Flags set by internal operations, ++ * but visible to the user. ++ * XXX some of these are not quite right.. (I've never seen the root flag set) ++ */ ++#define MNT_LOCAL 0x00001000 /* filesystem is stored locally */ ++#define MNT_QUOTA 0x00002000 /* quotas are enabled on filesystem */ ++#define MNT_ROOTFS 0x00004000 /* identifies the root filesystem */ ++#define MNT_USER 0x00008000 /* mounted by a user */ ++#define MNT_IGNORE 0x00800000 /* do not show entry in df */ ++ ++/* ++ * Mask of flags that are visible to statfs(). ++ * XXX I think that this could now become (~(MNT_CMDFLAGS)) ++ * but the 'mount' program may need changing to handle this. ++ */ ++#define MNT_VISFLAGMASK (MNT_RDONLY | MNT_SYNCHRONOUS | MNT_NOEXEC | \ ++ MNT_NOSUID | MNT_NODEV | MNT_UNION | \ ++ MNT_ASYNC | MNT_EXRDONLY | MNT_EXPORTED | \ ++ MNT_DEFEXPORTED | MNT_EXPORTANON| MNT_EXKERB | \ ++ MNT_LOCAL | MNT_USER | MNT_QUOTA | \ ++ MNT_ROOTFS | MNT_NOATIME | MNT_NOCLUSTERR| \ ++ MNT_NOCLUSTERW | MNT_SUIDDIR | MNT_SOFTDEP | \ ++ MNT_IGNORE | MNT_EXPUBLIC | MNT_NOSYMFOLLOW | \ ++ MNT_JAILDEVFS | MNT_MULTILABEL | MNT_ACLS) ++ ++/* Mask of flags that can be updated. */ ++#define MNT_UPDATEMASK (MNT_NOSUID | MNT_NOEXEC | MNT_NODEV | \ ++ MNT_SYNCHRONOUS | MNT_UNION | MNT_ASYNC | \ ++ MNT_NOATIME | \ ++ MNT_NOSYMFOLLOW | MNT_IGNORE | MNT_JAILDEVFS | \ ++ MNT_NOCLUSTERR | MNT_NOCLUSTERW | MNT_SUIDDIR | \ ++ MNT_ACLS | MNT_USER) ++ ++/* ++ * External filesystem command modifier flags. ++ * Unmount can use the MNT_FORCE flag. ++ * XXX These are not STATES and really should be somewhere else. ++ */ ++#define MNT_UPDATE 0x00010000 /* not a real mount, just an update */ ++#define MNT_DELEXPORT 0x00020000 /* delete export host lists */ ++#define MNT_RELOAD 0x00040000 /* reload filesystem data */ ++#define MNT_FORCE 0x00080000 /* force unmount or readonly change */ ++#define MNT_SNAPSHOT 0x01000000 /* snapshot the filesystem */ ++#define MNT_BYFSID 0x08000000 /* specify filesystem by ID. */ ++#define MNT_CMDFLAGS (MNT_UPDATE | MNT_DELEXPORT | MNT_RELOAD | \ ++ MNT_FORCE | MNT_SNAPSHOT | MNT_BYFSID) ++/* ++ * Internal filesystem control flags stored in mnt_kern_flag. ++ * ++ * MNTK_UNMOUNT locks the mount entry so that name lookup cannot proceed ++ * past the mount point. This keeps the subtree stable during mounts ++ * and unmounts. ++ * ++ * MNTK_UNMOUNTF permits filesystems to detect a forced unmount while ++ * dounmount() is still waiting to lock the mountpoint. This allows ++ * the filesystem to cancel operations that might otherwise deadlock ++ * with the unmount attempt (used by NFS). ++ */ ++#define MNTK_UNMOUNTF 0x00000001 /* forced unmount in progress */ ++#define MNTK_UNMOUNT 0x01000000 /* unmount in progress */ ++#define MNTK_MWAIT 0x02000000 /* waiting for unmount to finish */ ++#define MNTK_WANTRDWR 0x04000000 /* upgrade to read/write requested */ ++#define MNTK_SUSPEND 0x08000000 /* request write suspension */ ++#define MNTK_SUSPENDED 0x10000000 /* write operations are suspended */ ++ ++/* ++ * Sysctl CTL_VFS definitions. ++ * ++ * Second level identifier specifies which filesystem. Second level ++ * identifier VFS_VFSCONF returns information about all filesystems. ++ * Second level identifier VFS_GENERIC is non-terminal. ++ */ ++#define VFS_VFSCONF 0 /* get configured filesystems */ ++#define VFS_GENERIC 0 /* generic filesystem information */ ++/* ++ * Third level identifiers for VFS_GENERIC are given below; third ++ * level identifiers for specific filesystems are given in their ++ * mount specific header files. ++ */ ++#define VFS_MAXTYPENUM 1 /* int: highest defined filesystem type */ ++#define VFS_CONF 2 /* struct: vfsconf for filesystem given ++ as next argument */ ++ ++/* ++ * Flags for various system call interfaces. ++ * ++ * waitfor flags to vfs_sync() and getfsstat() ++ */ ++#define MNT_WAIT 1 /* synchronously wait for I/O to complete */ ++#define MNT_NOWAIT 2 /* start all I/O, but do not wait for it */ ++#define MNT_LAZY 3 /* push data not written by filesystem syncer */ ++ ++/* ++ * Generic file handle ++ */ ++struct fhandle { ++ fsid_t fh_fsid; /* Filesystem id of mount point */ ++ struct fid fh_fid; /* Filesys specific id */ ++}; ++typedef struct fhandle fhandle_t; ++ ++/* ++ * Export arguments for local filesystem mount calls. ++ */ ++struct export_args { ++ int ex_flags; /* export related flags */ ++ uid_t ex_root; /* mapping for root uid */ ++ struct xucred ex_anon; /* mapping for anonymous user */ ++ struct sockaddr *ex_addr; /* net address to which exported */ ++ u_char ex_addrlen; /* and the net address length */ ++ struct sockaddr *ex_mask; /* mask of valid bits in saddr */ ++ u_char ex_masklen; /* and the smask length */ ++ char *ex_indexfile; /* index file for WebNFS URLs */ ++}; ++ ++/* ++ * Structure holding information for a publicly exported filesystem ++ * (WebNFS). Currently the specs allow just for one such filesystem. ++ */ ++struct nfs_public { ++ int np_valid; /* Do we hold valid information */ ++ fhandle_t np_handle; /* Filehandle for pub fs (internal) */ ++ struct mount *np_mount; /* Mountpoint of exported fs */ ++ char *np_index; /* Index file */ ++}; ++ ++/* ++ * Filesystem configuration information. One of these exists for each ++ * type of filesystem supported by the kernel. These are searched at ++ * mount time to identify the requested filesystem. ++ * ++ * XXX: Never change the first two arguments! ++ */ ++struct vfsconf { ++ u_int vfc_version; /* ABI version number */ ++ char vfc_name[MFSNAMELEN]; /* filesystem type name */ ++ struct vfsops *vfc_vfsops; /* filesystem operations vector */ ++ int vfc_typenum; /* historic filesystem type number */ ++ int vfc_refcount; /* number mounted of this type */ ++ int vfc_flags; /* permanent flags */ ++ struct vfsoptdecl *vfc_opts; /* mount options */ ++ TAILQ_ENTRY(vfsconf) vfc_list; /* list of vfscons */ ++}; ++ ++/* Userland version of the struct vfsconf. */ ++struct xvfsconf { ++ struct vfsops *vfc_vfsops; /* filesystem operations vector */ ++ char vfc_name[MFSNAMELEN]; /* filesystem type name */ ++ int vfc_typenum; /* historic filesystem type number */ ++ int vfc_refcount; /* number mounted of this type */ ++ int vfc_flags; /* permanent flags */ ++ struct vfsconf *vfc_next; /* next in list */ ++}; ++ ++#ifndef BURN_BRIDGES ++struct ovfsconf { ++ void *vfc_vfsops; ++ char vfc_name[32]; ++ int vfc_index; ++ int vfc_refcount; ++ int vfc_flags; ++}; ++#endif ++ ++/* ++ * NB: these flags refer to IMPLEMENTATION properties, not properties of ++ * any actual mounts; i.e., it does not make sense to change the flags. ++ */ ++#define VFCF_STATIC 0x00010000 /* statically compiled into kernel */ ++#define VFCF_NETWORK 0x00020000 /* may get data over the network */ ++#define VFCF_READONLY 0x00040000 /* writes are not implemented */ ++#define VFCF_SYNTHETIC 0x00080000 /* data does not represent real files */ ++#define VFCF_LOOPBACK 0x00100000 /* aliases some other mounted FS */ ++#define VFCF_UNICODE 0x00200000 /* stores file names as Unicode*/ ++ ++typedef u_int32_t fsctlop_t; ++ ++struct vfsidctl { ++ int vc_vers; /* should be VFSIDCTL_VERS1 (below) */ ++ fsid_t vc_fsid; /* fsid to operate on. */ ++ char vc_fstypename[MFSNAMELEN]; ++ /* type of fs 'nfs' or '*' */ ++ fsctlop_t vc_op; /* operation VFS_CTL_* (below) */ ++ void *vc_ptr; /* pointer to data structure. */ ++ size_t vc_len; /* sizeof said structure. */ ++ u_int32_t vc_spare[12]; /* spare (must be zero). */ ++}; ++ ++/* vfsidctl API version. */ ++#define VFS_CTL_VERS1 0x01 ++ ++/* ++ * New style VFS sysctls, do not reuse/conflict with the namespace for ++ * private sysctls. ++ * All "global" sysctl ops have the 33rd bit set: ++ * 0x...1.... ++ * Private sysctl ops should have the 33rd bit unset. ++ */ ++#define VFS_CTL_QUERY 0x00010001 /* anything wrong? (vfsquery) */ ++#define VFS_CTL_TIMEO 0x00010002 /* set timeout for vfs notification */ ++#define VFS_CTL_NOLOCKS 0x00010003 /* disable file locking */ ++ ++struct vfsquery { ++ u_int32_t vq_flags; ++ u_int32_t vq_spare[31]; ++}; ++ ++/* vfsquery flags */ ++#define VQ_NOTRESP 0x0001 /* server down */ ++#define VQ_NEEDAUTH 0x0002 /* server bad auth */ ++#define VQ_LOWDISK 0x0004 /* we're low on space */ ++#define VQ_MOUNT 0x0008 /* new filesystem arrived */ ++#define VQ_UNMOUNT 0x0010 /* filesystem has left */ ++#define VQ_DEAD 0x0020 /* filesystem is dead, needs force unmount */ ++#define VQ_ASSIST 0x0040 /* filesystem needs assistance from external ++ program */ ++#define VQ_NOTRESPLOCK 0x0080 /* server lockd down */ ++#define VQ_FLAG0100 0x0100 /* placeholder */ ++#define VQ_FLAG0200 0x0200 /* placeholder */ ++#define VQ_FLAG0400 0x0400 /* placeholder */ ++#define VQ_FLAG0800 0x0800 /* placeholder */ ++#define VQ_FLAG1000 0x1000 /* placeholder */ ++#define VQ_FLAG2000 0x2000 /* placeholder */ ++#define VQ_FLAG4000 0x4000 /* placeholder */ ++#define VQ_FLAG8000 0x8000 /* placeholder */ ++ ++ ++struct iovec; ++struct uio; ++ ++ ++#include ++ ++struct stat; ++ ++__BEGIN_DECLS ++ ++/* Mounting and unmounting filesystems. */ ++int fhopen(const struct fhandle *, int); ++int fhstat(const struct fhandle *, struct stat *); ++int fhstatfs(const struct fhandle *, struct statfs *); ++int fstatfs(int, struct statfs *); ++int getfh(const char *, fhandle_t *); ++int getfsstat(struct statfs *, long, int); ++int getmntinfo(struct statfs **, int); ++int lgetfh(const char *, fhandle_t *); ++int mount(const char *, const char *, int, void *); ++int nmount(struct iovec *, unsigned int, int); ++int statfs(const char *, struct statfs *); ++int unmount(const char *, int); ++ ++/* C library stuff */ ++int getvfsbyname(const char *, struct xvfsconf *); ++ ++/* getfsstat() appears in BSD 4.4. A variant of this API is found on OSF/1, ++ but on that system the user also needs to include . */ ++ ++#ifndef __USE_FILE_OFFSET64 ++extern int getfsstat (struct statfs *__buf, long __bufsize, ++ int __flags) __THROW; ++#else ++# ifdef __REDIRECT ++extern int __REDIRECT (getfsstat, ++ (struct statfs *__buf, long __bufsize, int __flags), ++ getfsstat64); ++# else ++# define getfsstat getfsstat64 ++# endif ++#endif ++#ifdef __USE_LARGEFILE64 ++extern int getfsstat64 (struct statfs64 *__buf, long __bufsize, ++ int __flags) __THROW; ++#endif ++ ++#ifdef _LIBC ++extern int __getfsstat (struct statfs *__buf, long __bufsize, int __flags); ++extern int __getfsstat64 (struct statfs64 *__buf, long __bufsize, int __flags); ++#endif ++ ++/* getmntinfo() appears in BSD 4.4. */ ++ ++#ifndef __USE_FILE_OFFSET64 ++extern int getmntinfo (struct statfs **__mntbufp, int __flags) __THROW; ++#else ++# ifdef __REDIRECT ++extern int __REDIRECT (getmntinfo, ++ (struct statfs **__mntbufp, int __flags), ++ getmntinfo64); ++# else ++# define getmntinfo getmntinfo64 ++# endif ++#endif ++#ifdef __USE_LARGEFILE64 ++extern int getmntinfo64 (struct statfs64 **__mntbufp, int __flags) __THROW; ++#endif ++ ++#ifdef _LIBC ++extern int __getmntinfo (struct statfs **__mntbufp, int __flags); ++#endif ++ ++__END_DECLS ++ ++ ++/* Opening files on specified mounted filesystems. ++ These system calls are reserved to the superuser, for security reasons. */ ++ ++#include ++ ++__BEGIN_DECLS ++ ++/* Return in *FHP the file handle corresponding to the file or directory ++ PATH. */ ++extern int getfh (__const char *__path, fhandle_t *__fhp) __THROW; ++ ++/* Open a file handle *FHP, using the open() like FLAGS. Return the ++ new file descriptor. */ ++extern int fhopen (__const fhandle_t *__fhp, int __flags) __THROW; ++ ++/* Get file attributes for the file whose handle is *FHP, and return them ++ in *BUF. Like fhopen + fstat + close. */ ++#ifndef __USE_FILE_OFFSET64 ++extern int fhstat (__const fhandle_t *__fhp, struct stat *__buf) __THROW; ++#else ++# ifdef __REDIRECT ++extern int __REDIRECT (fhstat, ++ (__const fhandle_t *__fhp, struct stat *__buf), ++ fhstat64); ++# else ++# define fhstat fhstat64 ++# endif ++#endif ++#ifdef __USE_LARGEFILE64 ++extern int fhstat64 (__const fhandle_t *__fhp, struct stat64 *__buf) __THROW; ++#endif ++ ++/* Return information about the filesystem on which the file resides whose ++ handle is *FHP. Like fhopen + fstatfs + close. */ ++#ifndef __USE_FILE_OFFSET64 ++extern int fhstatfs (__const fhandle_t *__fhp, struct statfs *__buf) __THROW; ++#else ++# ifdef __REDIRECT ++extern int __REDIRECT (fhstatfs, ++ (__const fhandle_t *__fhp, struct statfs *__buf), ++ fhstatfs64); ++# else ++# define fhstatfs fhstatfs64 ++# endif ++#endif ++#ifdef __USE_LARGEFILE64 ++extern int fhstatfs64 (__const fhandle_t *__fhp, ++ struct statfs64 *__buf) __THROW; ++#endif ++ ++__END_DECLS ++ ++#endif /* _SYS_MOUNT_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/param.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/param.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/param.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/param.h 2007-02-12 17:35:20.000000000 +0100 +@@ -0,0 +1,237 @@ ++/* Copyright (C) 1995,1996,1997,2000,2001,2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_PARAM_H ++#define _SYS_PARAM_H 1 ++ ++#include ++#include ++ ++#ifndef NULL ++#define NULL 0 ++#endif ++ ++/* ++ * __FreeBSD_version numbers are documented in the Porter's Handbook. ++ * If you bump the version for any reason, you should update the documentation ++ * there. ++ * Currently this lives here: ++ * ++ * doc/en_US.ISO8859-1/books/porters-handbook/book.sgml ++ * ++ * scheme is: <0 if release branch, otherwise 1>xx ++ */ ++#include ++ ++/* Some inet code expects that this file defines the 'u_int32_t' type. */ ++#include ++ ++/* ++ * Machine-independent constants (some used in following include files). ++ * Redefined constants are from POSIX 1003.1 limits file. ++ * ++ * MAXCOMLEN should be >= sizeof(ac_comm) (see ) ++ * MAXLOGNAME should be == UT_NAMESIZE+1 (see ) ++ */ ++ ++#define MAXCOMLEN 19 /* max command name remembered */ ++#define MAXINTERP 32 /* max interpreter file name length */ ++#define MAXLOGNAME 17 /* max login name length (incl. NUL) */ ++#define MAXUPRC CHILD_MAX /* max simultaneous processes */ ++#define NCARGS ARG_MAX /* max bytes for an exec function */ ++#define NGROUPS NGROUPS_MAX /* max number groups */ ++#define NOGROUP 65535 /* marker for empty group set member */ ++#define MAXHOSTNAMELEN 256 /* max hostname size */ ++#define SPECNAMELEN 63 /* max length of devicename */ ++#define TTY_NAME_MAX SPECNAMELEN ++ ++/* BSD names for some values. */ ++ ++#define NBBY CHAR_BIT ++#ifndef NGROUPS ++# define NGROUPS NGROUPS_MAX ++#endif ++#define MAXSYMLINKS 32 ++#define CANBSIZ MAX_CANON ++#define NCARGS ARG_MAX ++#define MAXPATHLEN PATH_MAX ++ ++/* The following is not really correct but it is a value we used for a ++ long time and which seems to be usable. People should not use NOFILE ++ anyway. */ ++#define NOFILE OPEN_MAX ++ ++/* Bit map related macros. */ ++#define setbit(a,i) ((a)[(i)/NBBY] |= 1<<((i)%NBBY)) ++#define clrbit(a,i) ((a)[(i)/NBBY] &= ~(1<<((i)%NBBY))) ++#define isset(a,i) ((a)[(i)/NBBY] & (1<<((i)%NBBY))) ++#define isclr(a,i) (((a)[(i)/NBBY] & (1<<((i)%NBBY))) == 0) ++ ++/* Macros for counting and rounding. */ ++#ifndef howmany ++# define howmany(x, y) (((x) + ((y) - 1)) / (y)) ++#endif ++#ifdef __GNUC__ ++# define roundup(x, y) (__builtin_constant_p (y) && powerof2 (y) \ ++ ? (((x) + (y) - 1) & ~((y) - 1)) \ ++ : ((((x) + ((y) - 1)) / (y)) * (y))) ++#else ++# define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) ++#endif ++#define powerof2(x) ((((x) - 1) & (x)) == 0) ++ ++/* Macros for min/max. */ ++#define MIN(a,b) (((a)<(b))?(a):(b)) ++#define MAX(a,b) (((a)>(b))?(a):(b)) ++ ++/* Machine type dependent parameters. */ ++#include ++ ++#ifndef DEV_BSHIFT ++#define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */ ++#endif ++#define DEV_BSIZE (1<>PAGE_SHIFT) ++#endif ++ ++/* ++ * btodb() is messy and perhaps slow because `bytes' may be an off_t. We ++ * want to shift an unsigned type to avoid sign extension and we don't ++ * want to widen `bytes' unnecessarily. Assume that the result fits in ++ * a daddr_t. ++ */ ++#ifndef btodb ++#define btodb(bytes) /* calculates (bytes / DEV_BSIZE) */ \ ++ (sizeof (bytes) > sizeof(long) \ ++ ? (daddr_t)((unsigned long long)(bytes) >> DEV_BSHIFT) \ ++ : (daddr_t)((unsigned long)(bytes) >> DEV_BSHIFT)) ++#endif ++ ++#ifndef dbtob ++#define dbtob(db) /* calculates (db * DEV_BSIZE) */ \ ++ ((off_t)(db) << DEV_BSHIFT) ++#endif ++ ++#endif /* _NO_NAMESPACE_POLLUTION */ ++ ++#define PRIMASK 0x0ff ++#define PCATCH 0x100 /* OR'd with pri for tsleep to check signals */ ++#define PDROP 0x200 /* OR'd with pri to stop re-entry of interlock mutex */ ++ ++#define NBPW sizeof(int) /* number of bytes per word (integer) */ ++ ++#define CMASK 022 /* default file mask: S_IWGRP|S_IWOTH */ ++ ++#define NODEV (dev_t)(-1) /* non-existent device */ ++ ++#define CBLOCK 128 /* Clist block size, must be a power of 2. */ ++#define CBQSIZE (CBLOCK/NBBY) /* Quote bytes/cblock - can do better. */ ++ /* Data chars/clist. */ ++#define CBSIZE (CBLOCK - sizeof(struct cblock *) - CBQSIZE) ++#define CROUND (CBLOCK - 1) /* Clist rounding. */ ++ ++/* ++ * File system parameters and macros. ++ * ++ * MAXBSIZE - Filesystems are made out of blocks of at most MAXBSIZE bytes ++ * per block. MAXBSIZE may be made larger without effecting ++ * any existing filesystems as long as it does not exceed MAXPHYS, ++ * and may be made smaller at the risk of not being able to use ++ * filesystems which require a block size exceeding MAXBSIZE. ++ * ++ * BKVASIZE - Nominal buffer space per buffer, in bytes. BKVASIZE is the ++ * minimum KVM memory reservation the kernel is willing to make. ++ * Filesystems can of course request smaller chunks. Actual ++ * backing memory uses a chunk size of a page (PAGE_SIZE). ++ * ++ * If you make BKVASIZE too small you risk seriously fragmenting ++ * the buffer KVM map which may slow things down a bit. If you ++ * make it too big the kernel will not be able to optimally use ++ * the KVM memory reserved for the buffer cache and will wind ++ * up with too-few buffers. ++ * ++ * The default is 16384, roughly 2x the block size used by a ++ * normal UFS filesystem. ++ */ ++#define MAXBSIZE 65536 /* must be power of 2 */ ++#define BKVASIZE 16384 /* must be power of 2 */ ++#define BKVAMASK (BKVASIZE-1) ++ ++/* ++ * Scale factor for scaled integers used to count %cpu time and load avgs. ++ * ++ * The number of CPU `tick's that map to a unique `%age' can be expressed ++ * by the formula (1 / (2 ^ (FSHIFT - 11))). The maximum load average that ++ * can be calculated (assuming 32 bits) can be closely approximated using ++ * the formula (2 ^ (2 * (16 - FSHIFT))) for (FSHIFT < 15). ++ * ++ * For the scheduler to maintain a 1:1 mapping of CPU `tick' to `%age', ++ * FSHIFT must be at least 11; this gives us a maximum load avg of ~1024. ++ */ ++#define FSHIFT 11 /* bits to right of fixed binary point */ ++#define FSCALE (1<> (PAGE_SHIFT - DEV_BSHIFT)) ++ ++#define ctodb(db) /* calculates pages to devblks */ \ ++ ((db) << (PAGE_SHIFT - DEV_BSHIFT)) ++ ++#endif /* _SYS_PARAM_H_ */ ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ptrace.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ptrace.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ptrace.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ptrace.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,132 @@ ++/* `ptrace' debugger support interface. FreeBSD version. ++ Copyright (C) 1996-1999, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_PTRACE_H ++#define _SYS_PTRACE_H 1 ++ ++#include ++ ++__BEGIN_DECLS ++ ++/* Type of the REQUEST argument to `ptrace.' */ ++enum __ptrace_request ++{ ++ /* Indicate that the process making this request should be traced. ++ All signals received by this process can be intercepted by its ++ parent, and its parent can use the other `ptrace' requests. */ ++ PTRACE_TRACEME = 0, ++#define PT_TRACE_ME PTRACE_TRACEME ++ ++ /* Return the word in the process's text space at address ADDR. */ ++ PTRACE_PEEKTEXT = 1, ++#define PT_READ_I PTRACE_PEEKTEXT ++ ++ /* Return the word in the process's data space at address ADDR. */ ++ PTRACE_PEEKDATA = 2, ++#define PT_READ_D PTRACE_PEEKDATA ++ ++#if 1 /* NB: removed in FreeBSD 4.6 */ ++ /* Return the word in the process's user area at offset ADDR. */ ++ PTRACE_PEEKUSER = 3, ++#define PT_READ_U PTRACE_PEEKUSER ++#endif ++ ++ /* Write the word DATA into the process's text space at address ADDR. */ ++ PTRACE_POKETEXT = 4, ++#define PT_WRITE_I PTRACE_POKETEXT ++ ++ /* Write the word DATA into the process's data space at address ADDR. */ ++ PTRACE_POKEDATA = 5, ++#define PT_WRITE_D PTRACE_POKEDATA ++ ++#if 1 /* NB: removed in FreeBSD 4.6 */ ++ /* Write the word DATA into the process's user area at offset ADDR. */ ++ PTRACE_POKEUSER = 6, ++#define PT_WRITE_U PTRACE_POKEUSER ++#endif ++ ++ /* Continue the process. */ ++ PTRACE_CONT = 7, ++#define PT_CONTINUE PTRACE_CONT ++ ++ /* Kill the process. */ ++ PTRACE_KILL = 8, ++#define PT_KILL PTRACE_KILL ++ ++ /* Single step the process. ++ This is not supported on all machines. */ ++ PTRACE_SINGLESTEP = 9, ++#define PT_STEP PTRACE_SINGLESTEP ++ ++ /* Attach to a process that is already running. */ ++ PTRACE_ATTACH = 10, ++#define PT_ATTACH PTRACE_ATTACH ++ ++ /* Detach from a process attached to with PTRACE_ATTACH. */ ++ PTRACE_DETACH = 11, ++#define PT_DETACH PTRACE_DETACH ++ ++ /* CPU specific requests start here. */ ++ __PTRACE_FIRSTMACH = 32, ++ ++ /* Get all general purpose registers used by a processes. ++ This is not supported on all machines. */ ++ PTRACE_GETREGS, ++#define PT_GETREGS PTRACE_GETREGS ++ ++ /* Set all general purpose registers used by a processes. ++ This is not supported on all machines. */ ++ PTRACE_SETREGS, ++#define PT_SETREGS PTRACE_SETREGS ++ ++ /* Get all floating point registers used by a processes. ++ This is not supported on all machines. */ ++ PTRACE_GETFPREGS, ++#define PT_GETFPREGS PTRACE_GETFPREGS ++ ++ /* Set all floating point registers used by a processes. ++ This is not supported on all machines. */ ++ PTRACE_SETFPREGS, ++#define PT_SETFPREGS PTRACE_SETFPREGS ++ ++ /* Get all debug registers used by a processes. ++ This is not supported on all machines. */ ++ PTRACE_GETDBREGS, ++#define PT_GETDBREGS PTRACE_GETDBREGS ++ ++ /* Set all debug registers used by a processes. ++ This is not supported on all machines. */ ++ PTRACE_SETDBREGS ++#define PT_SETDBREGS PTRACE_SETDBREGS ++}; ++ ++/* Perform process tracing functions. REQUEST is one of the values ++ above, and determines the action to be taken. ++ For all requests except PTRACE_TRACEME, PID specifies the process to be ++ traced. ++ ++ PID and the other arguments described above for the various requests should ++ appear (those that are used for the particular request) as: ++ pid_t PID, void *ADDR, int DATA, void *ADDR2 ++ after REQUEST. */ ++extern int ptrace (enum __ptrace_request __request, ...) __THROW; ++ ++__END_DECLS ++ ++#endif /* _SYS_PTRACE_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/rfork.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/rfork.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/rfork.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/rfork.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,91 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* ++ * Copyright (c) 1989, 1993 ++ * The Regents of the University of California. All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * 4. Neither the name of the University nor the names of its contributors ++ * may be used to endorse or promote products derived from this software ++ * without specific prior written permission. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ * ++ * @(#)unistd.h 8.2 (Berkeley) 1/7/94 ++ * $FreeBSD: src/sys/sys/unistd.h,v 1.22.2.1 2000/03/18 23:20:12 jasone Exp $ ++ */ ++ ++#ifndef _SYS_RFORK_H ++#define _SYS_RFORK_H ++ ++#include ++ ++/* ++ * rfork() options. ++ * ++ * XXX currently, operations without RFPROC set are not supported. ++ */ ++#define RFNAMEG (1<<0) /* UNIMPL new plan9 `name space' */ ++#define RFENVG (1<<1) /* UNIMPL copy plan9 `env space' */ ++#define RFFDG (1<<2) /* copy fd table */ ++#define RFNOTEG (1<<3) /* UNIMPL create new plan9 `note group' */ ++#define RFPROC (1<<4) /* change child (else changes curproc) */ ++#define RFMEM (1<<5) /* share `address space' */ ++#define RFNOWAIT (1<<6) /* parent need not wait() on child */ ++#define RFCNAMEG (1<<10) /* UNIMPL zero plan9 `name space' */ ++#define RFCENVG (1<<11) /* UNIMPL zero plan9 `env space' */ ++#define RFCFDG (1<<12) /* zero fd table */ ++#define RFTHREAD (1<<13) /* enable kernel thread support */ ++#define RFSIGSHARE (1<<14) /* share signal handlers */ ++#define RFLINUXTHPN (1<<16) /* do linux clone exit parent notification */ ++#define RFPPWAIT (1<<31) /* parent sleeps until child exits (vfork) */ ++ ++#define RFTHPNSHIFT 24 /* reserve bits 24-30 */ ++#define RFTHPNMASK 0x7F /* for compatibility with linuxthreads/clone() */ ++ /* allow to specify "clone exit parent notification" signal */ ++#define RFTHPNSIGNUM(flags) (((flags) >> RFTHPNSHIFT) & RFTHPNMASK) ++ ++__BEGIN_DECLS ++ ++extern int rfork (int __flags) __THROW; ++ ++#ifdef _LIBC ++extern int __rfork (int __flags); ++#endif ++ ++__END_DECLS ++ ++#endif /* _SYS_RFORK_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/swap.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/swap.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/swap.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/swap.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,34 @@ ++/* Calls to enable swapping on specified locations. FreeBSD version. ++ Copyright (C) 1996-1997, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef __SYS_SWAP_H ++ ++#define __SYS_SWAP_H 1 ++#include ++ ++ ++__BEGIN_DECLS ++ ++/* Make the block special device PATH available to the system for swapping. ++ This call is restricted to the super-user. */ ++extern int swapon (__const char *__path) __THROW; ++ ++__END_DECLS ++ ++#endif /* sys/swap.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/syscall.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/syscall.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/syscall.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/syscall.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,377 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYSCALL_H ++#define _SYSCALL_H 1 ++ ++#define SYS_syscall 0 ++#define SYS_exit 1 ++#define SYS_fork 2 ++#define SYS_read 3 ++#define SYS_write 4 ++#define SYS_open 5 ++#define SYS_close 6 ++#define SYS_wait4 7 ++ /* 8 is old creat */ ++#define SYS_link 9 ++#define SYS_unlink 10 ++ /* 11 is obsolete execv */ ++#define SYS_chdir 12 ++#define SYS_fchdir 13 ++#define SYS_mknod 14 ++#define SYS_chmod 15 ++#define SYS_chown 16 ++#define SYS_obreak 17 ++ /* 18 is old getfsstat */ ++ /* 19 is old lseek */ ++#define SYS_getpid 20 ++#define SYS_mount 21 ++#define SYS_unmount 22 ++#define SYS_setuid 23 ++#define SYS_getuid 24 ++#define SYS_geteuid 25 ++#define SYS_ptrace 26 ++#define SYS_recvmsg 27 ++#define SYS_sendmsg 28 ++#define SYS_recvfrom 29 ++#define SYS_accept 30 ++#define SYS_getpeername 31 ++#define SYS_getsockname 32 ++#define SYS_access 33 ++#define SYS_chflags 34 ++#define SYS_fchflags 35 ++#define SYS_sync 36 ++#define SYS_kill 37 ++ /* 38 is old stat */ ++#define SYS_getppid 39 ++ /* 40 is old lstat */ ++#define SYS_dup 41 ++#define SYS_pipe 42 ++#define SYS_getegid 43 ++#define SYS_profil 44 ++#define SYS_ktrace 45 ++ /* 46 is old sigaction */ ++#define SYS_getgid 47 ++ /* 48 is old sigprocmask */ ++#define SYS_getlogin 49 ++#define SYS_setlogin 50 ++#define SYS_acct 51 ++ /* 52 is old sigpending */ ++#define SYS_sigaltstack 53 ++#define SYS_ioctl 54 ++#define SYS_reboot 55 ++#define SYS_revoke 56 ++#define SYS_symlink 57 ++#define SYS_readlink 58 ++#define SYS_execve 59 ++#define SYS_umask 60 ++#define SYS_chroot 61 ++ /* 62 is old fstat */ ++ /* 63 is old getkerninfo */ ++ /* 64 is old getpagesize */ ++#define SYS_msync 65 ++#define SYS_vfork 66 ++ /* 67 is obsolete vread */ ++ /* 68 is obsolete vwrite */ ++#define SYS_sbrk 69 ++#define SYS_sstk 70 ++ /* 71 is old mmap */ ++#define SYS_vadvise 72 ++#define SYS_munmap 73 ++#define SYS_mprotect 74 ++#define SYS_madvise 75 ++ /* 76 is obsolete vhangup */ ++ /* 77 is obsolete vlimit */ ++#define SYS_mincore 78 ++#define SYS_getgroups 79 ++#define SYS_setgroups 80 ++#define SYS_getpgrp 81 ++#define SYS_setpgid 82 ++#define SYS_setitimer 83 ++ /* 84 is old wait */ ++#define SYS_swapon 85 ++#define SYS_getitimer 86 ++ /* 87 is old gethostname */ ++ /* 88 is old sethostname */ ++#define SYS_getdtablesize 89 ++#define SYS_dup2 90 ++#define SYS_fcntl 92 ++#define SYS_select 93 ++#define SYS_fsync 95 ++#define SYS_setpriority 96 ++#define SYS_socket 97 ++#define SYS_connect 98 ++ /* 99 is old accept */ ++#define SYS_getpriority 100 ++ /* 101 is old send */ ++ /* 102 is old recv */ ++ /* 103 is old sigreturn */ ++#define SYS_bind 104 ++#define SYS_setsockopt 105 ++#define SYS_listen 106 ++ /* 107 is obsolete vtimes */ ++ /* 108 is old sigvec */ ++ /* 109 is old sigblock */ ++ /* 110 is old sigsetmask */ ++ /* 111 is old sigsuspend */ ++ /* 112 is old sigstack */ ++ /* 113 is old recvmsg */ ++ /* 114 is old sendmsg */ ++ /* 115 is obsolete vtrace */ ++#define SYS_gettimeofday 116 ++#define SYS_getrusage 117 ++#define SYS_getsockopt 118 ++#define SYS_readv 120 ++#define SYS_writev 121 ++#define SYS_settimeofday 122 ++#define SYS_fchown 123 ++#define SYS_fchmod 124 ++ /* 125 is old recvfrom */ ++#define SYS_setreuid 126 ++#define SYS_setregid 127 ++#define SYS_rename 128 ++ /* 129 is old truncate */ ++ /* 130 is old ftruncate */ ++#define SYS_flock 131 ++#define SYS_mkfifo 132 ++#define SYS_sendto 133 ++#define SYS_shutdown 134 ++#define SYS_socketpair 135 ++#define SYS_mkdir 136 ++#define SYS_rmdir 137 ++#define SYS_utimes 138 ++ /* 139 is obsolete 4.2 sigreturn */ ++#define SYS_adjtime 140 ++ /* 141 is old getpeername */ ++ /* 142 is old gethostid */ ++ /* 143 is old sethostid */ ++ /* 144 is old getrlimit */ ++ /* 145 is old setrlimit */ ++ /* 146 is old killpg */ ++#define SYS_setsid 147 ++#define SYS_quotactl 148 ++ /* 149 is old quota */ ++ /* 150 is old getsockname */ ++#define SYS_nfssvc 155 ++ /* 156 is old getdirentries */ ++ /* 157 is old statfs */ ++ /* 158 is old fstatfs */ ++#define SYS_lgetfh 160 ++#define SYS_getfh 161 ++#define SYS_getdomainname 162 ++#define SYS_setdomainname 163 ++#define SYS_uname 164 ++#define SYS_sysarch 165 ++#define SYS_rtprio 166 ++#define SYS_semsys 169 ++#define SYS_msgsys 170 ++#define SYS_shmsys 171 ++#define SYS_pread 173 ++#define SYS_pwrite 174 ++#define SYS_ntp_adjtime 176 ++#define SYS_setgid 181 ++#define SYS_setegid 182 ++#define SYS_seteuid 183 ++#define SYS_stat 188 ++#define SYS_fstat 189 ++#define SYS_lstat 190 ++#define SYS_pathconf 191 ++#define SYS_fpathconf 192 ++#define SYS_getrlimit 194 ++#define SYS_setrlimit 195 ++#define SYS_getdirentries 196 ++#define SYS_mmap 197 ++#define SYS___syscall 198 ++#define SYS_lseek 199 ++#define SYS_truncate 200 ++#define SYS_ftruncate 201 ++#define SYS_sysctl 202 ++#define SYS_mlock 203 ++#define SYS_munlock 204 ++#define SYS_undelete 205 ++#define SYS_futimes 206 ++#define SYS_getpgid 207 ++#define SYS_poll 209 ++#define SYS_semctl 220 ++#define SYS_semget 221 ++#define SYS_semop 222 ++#define SYS_msgctl 224 ++#define SYS_msgget 225 ++#define SYS_msgsnd 226 ++#define SYS_msgrcv 227 ++#define SYS_shmat 228 ++#define SYS_shmctl 229 ++#define SYS_shmdt 230 ++#define SYS_shmget 231 ++#define SYS_clock_gettime 232 ++#define SYS_clock_settime 233 ++#define SYS_clock_getres 234 ++#define SYS_nanosleep 240 ++#define SYS_minherit 250 ++#define SYS_rfork 251 ++#define SYS_openbsd_poll 252 ++#define SYS_issetugid 253 ++#define SYS_lchown 254 ++#define SYS_getdents 272 ++#define SYS_lchmod 274 ++#define SYS_netbsd_lchown 275 ++#define SYS_lutimes 276 ++#define SYS_netbsd_msync 277 ++#define SYS_nstat 278 ++#define SYS_nfstat 279 ++#define SYS_nlstat 280 ++#define SYS_preadv 289 ++#define SYS_pwritev 290 ++ /* 297 is old fhstatfs */ ++#define SYS_fhopen 298 ++#define SYS_fhstat 299 ++#define SYS_modnext 300 ++#define SYS_modstat 301 ++#define SYS_modfnext 302 ++#define SYS_modfind 303 ++#define SYS_kldload 304 ++#define SYS_kldunload 305 ++#define SYS_kldfind 306 ++#define SYS_kldnext 307 ++#define SYS_kldstat 308 ++#define SYS_kldfirstmod 309 ++#define SYS_getsid 310 ++#define SYS_setresuid 311 ++#define SYS_setresgid 312 ++ /* 313 is obsolete signanosleep */ ++#define SYS_aio_return 314 ++#define SYS_aio_suspend 315 ++#define SYS_aio_cancel 316 ++#define SYS_aio_error 317 ++#define SYS_aio_read 318 ++#define SYS_aio_write 319 ++#define SYS_lio_listio 320 ++#define SYS_yield 321 ++ /* 322 is obsolete thr_sleep */ ++ /* 323 is obsolete thr_wakeup */ ++#define SYS_mlockall 324 ++#define SYS_munlockall 325 ++#define SYS_getcwd 326 ++#define SYS_sched_setparam 327 ++#define SYS_sched_getparam 328 ++#define SYS_sched_setscheduler 329 ++#define SYS_sched_getscheduler 330 ++#define SYS_sched_yield 331 ++#define SYS_sched_get_priority_max 332 ++#define SYS_sched_get_priority_min 333 ++#define SYS_sched_rr_get_interval 334 ++#define SYS_utrace 335 ++ /* 336 is old sendfile */ ++#define SYS_kldsym 337 ++#define SYS_jail 338 ++#define SYS_sigprocmask 340 ++#define SYS_sigsuspend 341 ++ /* 342 is old sigaction */ ++#define SYS_sigpending 343 ++ /* 344 is old sigreturn */ ++#define SYS_sigtimedwait 345 ++#define SYS_sigwaitinfo 346 ++#define SYS_acl_get_file 347 ++#define SYS_acl_set_file 348 ++#define SYS_acl_get_fd 349 ++#define SYS_acl_set_fd 350 ++#define SYS_acl_delete_file 351 ++#define SYS_acl_delete_fd 352 ++#define SYS_acl_aclcheck_file 353 ++#define SYS_acl_aclcheck_fd 354 ++#define SYS_extattrctl 355 ++#define SYS_extattr_set_file 356 ++#define SYS_extattr_get_file 357 ++#define SYS_extattr_delete_file 358 ++#define SYS_aio_waitcomplete 359 ++#define SYS_getresuid 360 ++#define SYS_getresgid 361 ++#define SYS_kqueue 362 ++#define SYS_kevent 363 ++#define SYS_extattr_set_fd 371 ++#define SYS_extattr_get_fd 372 ++#define SYS_extattr_delete_fd 373 ++#define SYS_setugid 374 ++#define SYS_nfsclnt 375 ++#define SYS_eaccess 376 ++#define SYS_nmount 378 ++#define SYS_kse_exit 379 ++#define SYS_kse_wakeup 380 ++#define SYS_kse_create 381 ++#define SYS_kse_thr_interrupt 382 ++#define SYS_kse_release 383 ++#define SYS_mac_get_proc 384 ++#define SYS_mac_set_proc 385 ++#define SYS_mac_get_fd 386 ++#define SYS_mac_get_file 387 ++#define SYS_mac_set_fd 388 ++#define SYS_mac_set_file 389 ++#define SYS_kenv 390 ++#define SYS_lchflags 391 ++#define SYS_uuidgen 392 ++#define SYS_sendfile 393 ++#define SYS_mac_syscall 394 ++#define SYS_getfsstat 395 ++#define SYS_statfs 396 ++#define SYS_fstatfs 397 ++#define SYS_fhstatfs 398 ++#define SYS_ksem_close 400 ++#define SYS_ksem_post 401 ++#define SYS_ksem_wait 402 ++#define SYS_ksem_trywait 403 ++#define SYS_ksem_init 404 ++#define SYS_ksem_open 405 ++#define SYS_ksem_unlink 406 ++#define SYS_ksem_getvalue 407 ++#define SYS_ksem_destroy 408 ++#define SYS_mac_get_pid 409 ++#define SYS_mac_get_link 410 ++#define SYS_mac_set_link 411 ++#define SYS_extattr_set_link 412 ++#define SYS_extattr_get_link 413 ++#define SYS_extattr_delete_link 414 ++#define SYS_mac_execve 415 ++#define SYS_sigaction 416 ++#define SYS_sigreturn 417 ++#define SYS_getcontext 421 ++#define SYS_setcontext 422 ++#define SYS_swapcontext 423 ++#define SYS_swapoff 424 ++#define SYS_acl_get_link 425 ++#define SYS_acl_set_link 426 ++#define SYS_acl_delete_link 427 ++#define SYS_acl_aclcheck_link 428 ++#define SYS_sigwait 429 ++#define SYS_thr_create 430 ++#define SYS_thr_exit 431 ++#define SYS_thr_self 432 ++#define SYS_thr_kill 433 ++#define SYS__umtx_lock 434 ++#define SYS__umtx_unlock 435 ++#define SYS_jail_attach 436 ++#define SYS_extattr_list_fd 437 ++#define SYS_extattr_list_file 438 ++#define SYS_extattr_list_link 439 ++#define SYS_kse_switchin 440 ++#define SYS_ksem_timedwait 441 ++#define SYS_thr_suspend 442 ++#define SYS_thr_wake 443 ++#define SYS_kldunloadf 444 ++#define SYS_MAXSYSCALL 445 ++ ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/sysmacros.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/sysmacros.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/sysmacros.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/sysmacros.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,31 @@ ++/* Definitions of macros to access `dev_t' values. FreeBSD version. ++ Copyright (C) 1996-1997, 1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_SYSMACROS_H ++#define _SYS_SYSMACROS_H 1 ++ ++/* For compatibility we provide alternative names. ++ ++ The problem here is that compilers other than GCC probably don't ++ have the `long long' type and so `dev_t' is actually an array. */ ++#define major(dev) ((int)(((unsigned int) (dev) >> 8) & 0xff)) ++#define minor(dev) ((int)((dev) & 0xffff00ff)) ++#define makedev(major, minor) (((major) << 8) | (minor)) ++ ++#endif /* sys/sysmacros.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ttydefaults.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ttydefaults.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ttydefaults.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ttydefaults.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,96 @@ ++/*- ++ * Copyright (c) 1982, 1986, 1993 ++ * The Regents of the University of California. All rights reserved. ++ * (c) UNIX System Laboratories, Inc. ++ * All or some portions of this file are derived from material licensed ++ * to the University of California by American Telephone and Telegraph ++ * Co. or Unix System Laboratories, Inc. and are reproduced herein with ++ * the permission of UNIX System Laboratories, Inc. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * 4. Neither the name of the University nor the names of its contributors ++ * may be used to endorse or promote products derived from this software ++ * without specific prior written permission. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ++ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE ++ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ * SUCH DAMAGE. ++ * ++ * @(#)ttydefaults.h 8.4 (Berkeley) 1/21/94 ++ */ ++ ++/* ++ * System wide defaults for terminal state. FreeBSD version. ++ */ ++#ifndef _SYS_TTYDEFAULTS_H_ ++#define _SYS_TTYDEFAULTS_H_ ++ ++/* ++ * Defaults on "first" open. ++ */ ++#define TTYDEF_IFLAG (BRKINT | ICRNL | IMAXBEL | IXON | IXANY) ++#define TTYDEF_OFLAG (OPOST | ONLCR) ++#define TTYDEF_LFLAG (ECHO | ICANON | ISIG | IEXTEN | ECHOE|ECHOKE|ECHOCTL) ++#define TTYDEF_CFLAG (CREAD | CS8 | HUPCL) ++#define TTYDEF_SPEED (B9600) ++ ++/* ++ * Control Character Defaults ++ */ ++#define CTRL(x) (x&037) ++#define CEOF CTRL('d') ++#ifdef _POSIX_VDISABLE ++# define CEOL _POSIX_VDISABLE ++#else ++# define CEOL ((unsigned char)'\377') /* XXX avoid _POSIX_VDISABLE */ ++#endif ++#define CERASE 0177 ++#define CINTR CTRL('c') ++#define CSTATUS CTRL('t') ++#define CKILL CTRL('u') ++#define CMIN 1 ++#define CQUIT 034 /* FS, ^\ */ ++#define CSUSP CTRL('z') ++#define CTIME 0 ++#define CDSUSP CTRL('y') ++#define CSTART CTRL('q') ++#define CSTOP CTRL('s') ++#define CLNEXT CTRL('v') ++#define CDISCARD CTRL('o') ++#define CWERASE CTRL('w') ++#define CREPRINT CTRL('r') ++#define CEOT CEOF ++/* compat */ ++#define CBRK CEOL ++#define CRPRNT CREPRINT ++#define CFLUSH CDISCARD ++ ++/* PROTECTED INCLUSION ENDS HERE */ ++#endif /* !_SYS_TTYDEFAULTS_H_ */ ++ ++/* ++ * #define TTYDEFCHARS to include an array of default control characters. ++ */ ++#ifdef TTYDEFCHARS ++cc_t ttydefchars[NCCS] = { ++ CEOF, CEOL, CEOL, CERASE, CWERASE, CKILL, CREPRINT, ++ _POSIX_VDISABLE, CINTR, CQUIT, CSUSP, CDSUSP, CSTART, CSTOP, CLNEXT, ++ CDISCARD, CMIN, CTIME, CSTATUS, _POSIX_VDISABLE ++}; ++#undef TTYDEFCHARS ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ucontext.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ucontext.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ucontext.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sys/ucontext.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,48 @@ ++/* Data structures for user-level context switching. Generic version. ++ Copyright (C) 1997-1999, 2001-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* This file's definitions suffice for any platform where all ++ the machine-specific state is described in `struct sigcontext'. */ ++ ++#ifndef _SYS_UCONTEXT_H ++#define _SYS_UCONTEXT_H 1 ++ ++#include ++#include ++ ++/* We need the signal context definitions even if they are not used ++ included in . */ ++#include ++ ++/* This include file defines the type 'mcontext_t'. */ ++#include ++ ++/* Userlevel context. */ ++typedef struct ucontext ++ { ++ __sigset_t uc_sigmask; ++ mcontext_t uc_mcontext; ++ struct ucontext *uc_link; ++ stack_t uc_stack; ++ int uc_flags; ++#define UCF_SWAPPED 0x00000001 /* Used by swapcontext(3). */ ++ int __unused1[4]; ++ } ucontext_t; ++ ++#endif /* sys/ucontext.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/syscalls-inline.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/syscalls-inline.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/syscalls-inline.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/syscalls-inline.h 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,44 @@ ++/* prototypes of generally used "inline syscalls" ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef KFREEBSD_INLINE_SYSCALLS_H ++#define KFREEBSD_INLINE_SYSCALLS_H ++ ++#include ++#define __need_sigset_t ++#include ++ ++struct iovec; ++struct rusage; ++struct timespec; ++ ++int __syscall_open(const char *path, int flags, ...); ++int __syscall_close(int fd); ++ ++ssize_t __syscall_read(int fd, void *buf, size_t nbyte); ++ssize_t __syscall_write(int fd, const void *buf, size_t nbyte); ++ssize_t __syscall_writev(int fd, const struct iovec *iovp, int iovcnt); ++ ++int __syscall_fcntl(int fd, int cmd, ...); ++int __syscall_fork(void); ++int __syscall_wait4(int pid, int *status, int options, struct rusage *rusage); ++int __syscall_sigsuspend (const sigset_t *set); ++int __syscall_nanosleep (const struct timespec *requested_time, struct timespec *remaining); ++ ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/syscalls.list ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/syscalls.list +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/syscalls.list 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/syscalls.list 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,155 @@ ++# File name Caller Syscall name # args Strong name Weak names ++ ++acl_aclcheck_fd - acl_aclcheck_fd i:iip __acl_aclcheck_fd ++acl_aclcheck_file - acl_aclcheck_file i:sip __acl_aclcheck_file ++acl_delete_fd - acl_delete_fd i:ii __acl_delete_fd ++acl_delete_file - acl_delete_file i:si __acl_delete_file ++acl_get_fd - acl_get_fd i:iip __acl_get_fd ++acl_get_file - acl_get_file i:sip __acl_get_file ++acl_set_fd - acl_set_fd i:iip __acl_set_fd ++acl_set_file - acl_set_file i:sip __acl_set_file ++sys_aio_cancel - aio_cancel i:ip __syscall_aio_cancel ++sys_aio_error - aio_error i:p __syscall_aio_error ++sys_aio_read - aio_read i:p __syscall_aio_read ++sys_aio_return - aio_return i:p __syscall_aio_return ++sys_aio_suspend - aio_suspend i:bnP __syscall_aio_suspend ++sys_aio_waitcomplete - aio_waitcomplete i:pp __syscall_aio_waitcomplete ++sys_aio_write - aio_write i:p __syscall_aio_write ++sys_clock_getres - clock_getres i:ip __syscall_clock_getres ++sys_clock_gettime - clock_gettime i:ip __syscall_clock_gettime ++sys_clock_settime - clock_settime i:ip __syscall_clock_settime ++sys_execve - execve i:ppp __syscall_execve ++extattrctl - extattrctl i:sisI extattrctl ++extattr_delete_file - extattr_delete_file i:ss extattr_delete_file ++extattr_get_file - extattr_get_file i:ssbn extattr_get_file ++extattr_set_file - extattr_set_file i:ssbn extattr_set_file ++fhopen - fhopen i:pi fhopen ++sys_fork - fork i: __syscall_fork fork ++sys_fhstat - fhstat i:pp __syscall_fhstat ++sys_getfsstat - getfsstat i:pii __syscall_getfsstat ++sys_statfs - statfs i:sp __syscall_statfs ++sys_fstatfs - fstatfs i:ip __syscall_fstatfs ++sys_fhstatfs - fhstatfs i:pp __syscall_fhstatfs ++sys_fstat - fstat i:ip __syscall_fstat ++sys_ftruncate - ftruncate i:iii __syscall_ftruncate ++futimes - futimes i:ip __futimes futimes ++sys_getcwd - getcwd i:bn __syscall_getcwd ++sys_getdents - getdents i:ibn __syscall_getdents ++sys_getdirentries - getdirentries i:ibnP __syscall_getdirentries ++getfh - getfh i:sp getfh ++sys_getlogin - getlogin i:bn __syscall_getlogin ++getpgid - getpgid i:i __getpgid __getpgid_internal getpgid ++getpgrp - getpgrp i: getpgrp ++getresgid - getresgid i:ppp getresgid ++getresuid - getresuid i:ppp getresuid ++getrlimit - getrlimit i:ip __getrlimit getrlimit getrlimit64 ++getsid - getsid i:i getsid ++issetugid - issetugid i: issetugid ++jail - jail i:p jail ++kldfind - kldfind i:s kldfind ++kldfirstmod - kldfirstmod i:i kldfirstmod ++kldload - kldload i:s kldload ++kldnext - kldnext i:i kldnext ++kldstat - kldstat i:ip kldstat ++kldsym - kldsym i:iip kldsym ++kldunload - kldunload i:i kldunload ++kldunloadf - kldunloadf i:ii kldunloadf ++ktrace - ktrace i:siii ktrace ++lchmod - lchmod i:si lchmod ++lchown - lchown i:sii __lchown lchown ++sys_lio_listio - lio_listio i:ibnP __syscall_lio_listio ++sys_lseek - lseek i:iiii __syscall_lseek ++sys_lstat - lstat i:sp __syscall_lstat ++lutimes - lutimes i:sp __lutimes lutimes ++posix_madvise - madvise i:pii posix_madvise ++minherit - minherit i:aii minherit ++mincore - mincore i:anV mincore ++mlock - mlock i:bn mlock ++mlockall - mlockall i:i mlockall ++mkfifo - mkfifo i:si __mkfifo mkfifo ++sys_mknod - mknod i:sii __syscall_mknod ++sys_mmap - mmap b:aniiiii __syscall_mmap ++sys_munmap munmap munmap i:pi __syscall_munmap ++modfind - modfind i:s modfind ++modfnext - modfnext i:i modfnext ++modnext - modnext i:i modnext ++modstat - modstat i:ip modstat ++mount - mount i:ssiP mount ++msgctl - msgctl i:iip msgctl ++msgget - msgget i:ii msgget ++msgrcv - msgrcv Ci:ibnii __libc_msgrcv msgrcv ++msgsnd - msgsnd Ci:ibni __libc_msgsnd msgsnd ++munlock - munlock i:ai munlock ++munlockall - munlockall i: munlockall ++nanosleep - nanosleep Ci:pp __libc_nanosleep __nanosleep nanosleep ++nmount - nmount i:pii nmount ++sys_nfstat - nfstat i:ip __syscall_nfstat ++sys_nlstat - nlstat i:sp __syscall_nlstat ++sys_nstat - nstat i:sp __syscall_nstat ++ntp_adjtime - ntp_adjtime i:p ntp_adjtime ++obreak - obreak i:a __syscall_obreak ++sys_open - open i:siv __syscall_open ++poll - poll Ci:pii __poll poll ++sys_pread - pread i:ibnii __syscall_pread ++sys_ptrace - ptrace i:iipi __syscall_ptrace ++sys_pwrite - pwrite i:ibnii __syscall_pwrite ++quotactl - quotactl i:siip quotactl ++sys_readv - readv i:ipi __syscall_readv ++rfork - rfork i:i __rfork rfork ++rtprio - rtprio i:iip __rtprio rtprio ++sched_gets - sched_getscheduler i:i __sched_getscheduler sched_getscheduler ++sched_primax - sched_get_priority_max i:i __sched_get_priority_max sched_get_priority_max ++sched_primin - sched_get_priority_min i:i __sched_get_priority_min sched_get_priority_min ++sched_rr_gi - sched_rr_get_interval i:ip __sched_rr_get_interval sched_rr_get_interval ++sched_setp - sched_setparam i:ip __sched_setparam sched_setparam ++sched_sets - sched_setscheduler i:iip __sched_setscheduler sched_setscheduler ++sched_yield - sched_yield i: __sched_yield sched_yield ++semget - semget i:iii semget ++semop - semop i:ipi semop ++bsd_sendfile - sendfile i:iiiippi bsd_sendfile ++setegid - setegid i:i setegid ++seteuid - seteuid i:i seteuid ++setgid - setgid i:i __setgid setgid ++sys_setlogin - setlogin i:s __syscall_setlogin ++setpgid - setpgid i:ii __setpgid setpgid ++setresgid - setresgid i:iii setresgid ++setresuid - setresuid i:iii setresuid ++setrlimit - setrlimit i:ip __setrlimit setrlimit setrlimit64 ++setsid - setsid i: __setsid setsid ++setuid - setuid i:i __setuid setuid ++shmat - shmat i:iai shmat ++shmctl - shmctl i:iip shmctl ++shmdt - shmdt i:a shmdt ++shmget - shmget i:iii shmget ++sys_sigaction - sigaction i:ipp __syscall_sigaction ++sigpending - sigpending i:p sigpending ++sigprocmask - sigprocmask i:iPP __sigprocmask sigprocmask ++sigsuspend - sigsuspend Ci:p __sigsuspend sigsuspend ++sigwaitinfo - sigwaitinfo Ci:pp __sigwaitinfo sigwaitinfo ++sigtimedwait - sigtimedwait Ci:ppP __sigtimedwait sigtimedwait ++sys_stat - stat i:sp __syscall_stat ++sysarch - sysarch i:ip __sysarch sysarch ++sysctl - sysctl i:pibNbn __sysctl sysctl ++sys_truncate - truncate i:sii __syscall_truncate ++undelete - undelete i:s undelete ++unmount - unmount i:si unmount ++utrace - utrace i:bn utrace ++sys_writev - writev i:ipi __syscall_writev ++yield - yield i: __syscall_yield ++wait4 - wait4 i:iWiP __syscall_wait4 __wait4 wait4 ++sys_close - close i:i __syscall_close ++sys_fcntl - fcntl i:iiF __syscall_fcntl ++sys_write - write i:ibn __syscall_write ++sys_read - read i:ibn __syscall_read ++sys_connect - connect i:ipi __syscall_connect ++sys_bind - bind i:ipi __syscall_bind ++sys_sendto - sendto i:ibnibn __syscall_sendto ++sys_nanosleep EXTRA nanosleep i:pp __syscall_nanosleep ++sys_sigsuspend EXTRA sigsuspend i:p __syscall_sigsuspend ++swapcontext - swapcontext i:pp __swapcontext swapcontext ++swapon - swapon i:s swapon ++swapoff - swapoff i:s swapoff ++getcontext - getcontext i:p __getcontext getcontext ++setcontext - setcontext i:p __setcontext setcontext ++kqueue EXTRA kqueue i: __kqueue kqueue ++kevent EXTRA kevent i:ipipip __kevent kevent +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sysconf.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sysconf.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sysconf.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sysconf.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,50 @@ ++/* Get file-specific information about a file. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++#include ++ ++static long int posix_sysconf (int name); ++ ++/* Get the value of the system variable NAME. */ ++long int ++__sysconf (int name) ++{ ++ if (name == _SC_CPUTIME || name == _SC_THREAD_CPUTIME) ++ { ++#if HP_TIMING_AVAIL ++ // XXX We can add here test for machines which cannot support a ++ // XXX usable TSC. ++ return 200112L; ++#else ++ return -1; ++#endif ++ } ++ return posix_sysconf (name); ++} ++ ++/* Now the POSIX version. */ ++#undef __sysconf ++#define __sysconf static posix_sysconf ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sysctlbyname.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sysctlbyname.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/sysctlbyname.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/sysctlbyname.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,44 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++/* Read or write system parameters. */ ++int ++__sysctlbyname (const char *name, void *oldval, size_t *oldlenp, void *newval, size_t newlen) ++{ ++ int request[CTL_MAXNAME]; ++ size_t requestlen = sizeof (request); ++ ++ /* Convert the string NAME to a binary encoded request. The kernel ++ contains a routine for doing this, called "name2oid". But the way ++ to call it is a little bit strange. */ ++ int name2oid_request[2] = { 0, 3 }; ++ if (__sysctl (name2oid_request, 2, request, &requestlen, ++ (void *) name, strlen (name)) ++ < 0) ++ return -1; ++ ++ /* Now call sysctl using the binary encoded request. */ ++ return __sysctl (request, requestlen / sizeof (int), ++ oldval, oldlenp, newval, newlen); ++} ++ ++weak_alias (__sysctlbyname, sysctlbyname) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/tcdrain.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/tcdrain.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/tcdrain.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/tcdrain.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,41 @@ ++/* Copyright (C) 1995, 1996, 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++/* Wait for pending output to be written on FD. */ ++int ++__libc_tcdrain (int fd) ++{ ++ if (SINGLE_THREAD_P) ++ return __ioctl (fd, TIOCDRAIN); ++ ++ int oldtype = LIBC_CANCEL_ASYNC (); ++ ++ int result = __ioctl (fd, TIOCDRAIN); ++ ++ LIBC_CANCEL_RESET (oldtype); ++ ++ return result; ++} ++weak_alias (__libc_tcdrain, tcdrain) ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/telldir.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/telldir.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/telldir.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/telldir.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,2 @@ ++/* Avoid , which doesn't pass the testsuite. */ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/truncate.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/truncate.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/truncate.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/truncate.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,40 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++/* The real system call has a word of padding before the 64-bit off_t ++ argument. */ ++extern int __syscall_truncate (const char *__file, int __unused1, ++ __off_t __length) __THROW; ++ ++int ++__truncate (const char *file, __off_t length) ++{ ++ /* We pass 2 arguments in 4 words. */ ++ return INLINE_SYSCALL (truncate, 2, file, 0, length); ++} ++ ++weak_alias (__truncate, truncate) ++ ++/* 'truncate64' is the same as 'truncate', because __off64_t == __off_t. */ ++strong_alias (__truncate, __truncate64) ++weak_alias (__truncate64, truncate64) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/truncate64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/truncate64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/truncate64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/truncate64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++/* 'truncate64' is the same as 'truncate', because __off64_t == __off_t. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/uname.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/uname.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/uname.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/uname.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,110 @@ ++/* Copyright (C) 2002, 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible . ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#define SYSNAME "GNU/kFreeBSD" ++#define SYSNAME_LEN 13 ++ ++/* Check for bounds in pre-processor */ ++#if SYSNAME_LEN > _UTSNAME_SYSNAME_LENGTH ++#error ++#endif ++ ++/* Put information about the system in NAME. */ ++int ++__uname (struct utsname *name) ++{ ++ int request[2] = { CTL_KERN }; ++ size_t len; ++ ++ /* Fill sysname: "uname -s". */ ++ strcpy (name->sysname, SYSNAME); ++ ++ /* Fill nodename: "uname -n". Fetch sysctl "kern.hostname". */ ++ request[1] = KERN_HOSTNAME; ++ len = sizeof (name->nodename); ++ if (__sysctl (request, 2, name->nodename, &len, NULL, 0) >= 0) ++ { ++ if (len < sizeof (name->nodename)) ++ name->nodename[len] = '\0'; ++ } ++ ++ /* Fill release: "uname -r". Fetch sysctl "kern.osrelease". */ ++ request[1] = KERN_OSRELEASE; ++ len = sizeof (name->release); ++ if (__sysctl (request, 2, name->release, &len, NULL, 0) >= 0) ++ { ++ if (len < sizeof (name->release)) ++ name->release[len] = '\0'; ++ } ++ ++ /* Fill version: "uname -v". Fetch sysctl "kern.version". */ ++ request[1] = KERN_VERSION; ++ len = sizeof (name->version); ++ if (__sysctl (request, 2, name->version, &len, NULL, 0) >= 0) ++ { ++ if (len < sizeof (name->version)) ++ name->version[len] = '\0'; ++ } ++ ++ /* Remove trailing whitespace. Turn non-trailing whitespace to ++ spaces. */ ++ { ++ char *p0 = name->version; ++ char *p = p0 + __strnlen (p0, sizeof (name->version)); ++ ++ while (p > p0 && (p[-1] == '\t' || p[-1] == '\n' || p[-1] == ' ')) ++ *--p = '\0'; ++ ++ while (p > p0) ++ { ++ --p; ++ if (*p == '\t' || *p == '\n') ++ *p = ' '; ++ } ++ } ++ ++#ifdef __x86_64__ ++ /* Check for bounds in pre-processor */ ++# if 7 > _UTSNAME_MACHINE_LENGTH ++# error ++# endif ++ /* Pristine FreeBSD kernel would return "amd64". Avoid that. */ ++ strcpy (name->machine, "x86_64"); ++#else ++ /* Fill machine: "uname -m". Fetch sysctl "hw.machine". */ ++ request[0] = CTL_HW; ++ request[1] = HW_MACHINE; ++ len = sizeof (name->machine); ++ if (__sysctl (request, 2, name->machine, &len, NULL, 0) >= 0) ++ { ++ if (len < sizeof (name->machine)) ++ name->machine[len] = '\0'; ++ } ++#endif ++ ++ return 0; ++} ++libc_hidden_def (__uname) ++weak_alias (__uname, uname) ++libc_hidden_def (uname) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/usleep.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/usleep.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/usleep.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/usleep.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,53 @@ ++/* Implementation of the BSD usleep function using nanosleep. ++ Copyright (C) 1996-1997, 1999, 2001-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++extern int __nanosleep (const struct timespec *requested_time, ++ struct timespec *remaining); ++ ++int ++usleep (useconds_t useconds) ++{ ++ unsigned int sec; ++ unsigned int usec; ++ struct timespec ts; ++ ++ /* POSIX:2001 says that useconds >= 1000000 is invalid; nevertheless let's ++ be forgiving. */ ++ if (__builtin_expect (useconds < 1000000, 1)) ++ { ++ sec = 0; ++ usec = useconds; ++ } ++ else ++ { ++ sec = useconds / 1000000; ++ usec = useconds % 1000000; ++ } ++ ++ ts.tv_sec = sec; ++ ts.tv_nsec = usec * 1000; /* Multiply as 32-bit integers. */ ++ ++ /* Note the usleep() is a cancellation point. But since we call ++ nanosleep() which itself is a cancellation point we do not have ++ to do anything here. */ ++ return __nanosleep (&ts, NULL); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ustat.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ustat.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/ustat.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/ustat.c 2006-12-05 15:28:42.000000000 +0100 +@@ -0,0 +1,66 @@ ++/* Return info on filesystem. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++#include ++ ++int ++ustat (dev_t dev, struct ustat *ubuf) ++{ ++ int mntcount; ++ struct statfs *mntlist; ++ ++ /* Search for the device among the f_mntfromname fields of all mounted ++ filesystems. */ ++ mntcount = __getmntinfo (&mntlist, 0); ++ if (mntcount == 0 && errno != 0) ++ return -1; ++ if (mntcount > 0) ++ { ++ int i; ++ ++ for (i = 0; i < mntcount; i++) ++ { ++ struct statfs *mnt = &mntlist[i]; ++ struct stat statbuf; ++ ++ if ((__strnlen (mnt->f_mntfromname, sizeof (mnt->f_mntfromname)) ++ < sizeof (mnt->f_mntfromname)) ++ && __xstat (_STAT_VER, mnt->f_mntfromname, &statbuf) >= 0 ++ && S_ISBLK (statbuf.st_mode) ++ && statbuf.st_rdev == dev) ++ { ++ /* Found the device. Now produce the result. */ ++ memset (ubuf, '\0', sizeof (struct ustat)); ++ ubuf->f_tfree = mnt->f_bfree; ++ ubuf->f_tinode = mnt->f_ffree; ++ return 0; ++ } ++ } ++ } ++ ++ /* DEV is not among the mounted devices. */ ++ __set_errno (EINVAL); ++ return -1; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/Makefile ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/Makefile +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/Makefile 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/Makefile 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,6 @@ ++# Additional functions: ++ ++ifeq ($(subdir),login) ++# For . ++sysdep_routines += utmpconv ++endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/bits/utmp.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/bits/utmp.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/bits/utmp.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/bits/utmp.h 2006-10-18 09:59:57.000000000 +0200 +@@ -0,0 +1,50 @@ ++/* The `struct utmp' type, describing entries in the utmp file. For FreeBSD. ++ Copyright (C) 1993, 1996-1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _UTMP_H ++# error "Never include directly; use instead." ++#endif ++ ++#include ++#include ++ ++ ++#define UT_NAMESIZE 16 ++#define UT_LINESIZE 8 ++#define UT_HOSTSIZE 16 ++ ++ ++struct lastlog ++ { ++ time_t ll_time; ++ char ll_line[UT_LINESIZE]; ++ char ll_host[UT_HOSTSIZE]; ++ }; ++ ++struct utmp ++ { ++ char ut_line[UT_LINESIZE]; ++ char ut_user[UT_NAMESIZE]; ++#define ut_name ut_user ++ char ut_host[UT_HOSTSIZE]; ++ __time_t ut_time; ++ }; ++ ++ ++#define _HAVE_UT_HOST 1 /* We have the ut_host field. */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutmp.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutmp.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutmp.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutmp.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,31 @@ ++/* Copyright (C) 1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern int __utmpx_to_utmp (const struct utmpx *, struct utmp *); ++ ++/* Copy the information in UTMPX to UTMP. */ ++void ++getutmp (const struct utmpx *utmpx, struct utmp *utmp) ++{ ++ if (__utmpx_to_utmp (utmpx, utmp) < 0) ++ memset (utmp, '\0', sizeof (struct utmp)); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutmpx.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutmpx.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutmpx.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutmpx.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,31 @@ ++/* Copyright (C) 1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern int __utmp_to_utmpx (const struct utmp *, struct utmpx *); ++ ++/* Copy the information in UTMP to UTMPX. */ ++void ++getutmpx (const struct utmp *utmp, struct utmpx *utmpx) ++{ ++ if (__utmp_to_utmpx (utmp, utmpx) < 0) ++ memset (utmpx, '\0', sizeof (struct utmpx)); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxent.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxent.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxent.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxent.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,46 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern int __utmp_to_utmpx (const struct utmp *, struct utmpx *); ++ ++/* Static buffer to store the result. */ ++static struct utmpx buffer; ++ ++struct utmpx * ++__getutxent (void) ++{ ++ for (;;) ++ { ++ struct utmp *tmp = __getutent (); ++ ++ if (tmp == NULL) ++ return NULL; ++ ++ if (__utmp_to_utmpx (tmp, &buffer) >= 0) ++ return &buffer; ++ ++ /* Skip entries that cannot be converted to utmpx. */ ++ } ++} ++ ++weak_alias (__getutxent, getutxent) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxid.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxid.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxid.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxid.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,68 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern struct utmpx *__getutxent (void); ++ ++struct utmpx * ++getutxid (const struct utmpx *id) ++{ ++ switch (id->ut_type) ++ { ++ case INIT_PROCESS: ++ case LOGIN_PROCESS: ++ case USER_PROCESS: ++ case DEAD_PROCESS: ++ for (;;) ++ { ++ struct utmpx *next = __getutxent (); ++ ++ if (next == NULL) ++ return NULL; ++ ++ switch (next->ut_type) ++ { ++ case INIT_PROCESS: ++ case LOGIN_PROCESS: ++ case USER_PROCESS: ++ case DEAD_PROCESS: ++ if (strncmp (next->ut_id, id->ut_id, sizeof (id->ut_id)) == 0) ++ return next; ++ break; ++ default: ++ break; ++ } ++ } ++ ++ default: ++ for (;;) ++ { ++ struct utmpx *next = __getutxent (); ++ ++ if (next == NULL) ++ return NULL; ++ ++ if (next->ut_type == id->ut_type) ++ return next; ++ } ++ } ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxline.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxline.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxline.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/getutxline.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,40 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern struct utmpx *__getutxent (void); ++ ++struct utmpx * ++getutxline (const struct utmpx *line) ++{ ++ for (;;) ++ { ++ struct utmpx *next = __getutxent (); ++ ++ if (next == NULL) ++ return NULL; ++ ++ if ((next->ut_type == LOGIN_PROCESS || next->ut_type == USER_PROCESS) ++ && strncmp (next->ut_line, line->ut_line, __UT_LINESIZE) == 0) ++ return next; ++ } ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/pututxline.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/pututxline.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/pututxline.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/pututxline.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,50 @@ ++/* Copyright (C) 1998, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++extern int __utmp_to_utmpx (const struct utmp *, struct utmpx *); ++extern int __utmpx_to_utmp (const struct utmpx *, struct utmp *); ++ ++/* Static buffer to store the result. */ ++static struct utmpx buffer; ++ ++struct utmpx * ++pututxline (const struct utmpx *utmpx) ++{ ++ struct utmp tmp; ++ ++ if (__utmpx_to_utmp (utmpx, &tmp) >= 0) ++ { ++ struct utmp *tmpres = __pututline (&tmp); ++ ++ if (tmpres != NULL) ++ { ++ if (__utmp_to_utmpx (tmpres, &buffer) >= 0) ++ return &buffer; ++ ++ /* Hmm. We wrote a 'struct utmp' that we cannot convert back ++ to 'struct utmpx'. Shouldn't happen that often. */ ++ return NULL; ++ } ++ } ++ return NULL; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/updwtmpx.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/updwtmpx.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/updwtmpx.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/updwtmpx.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,31 @@ ++/* Copyright (C) 1998, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++extern int __utmpx_to_utmp (const struct utmpx *, struct utmp *); ++ ++void ++updwtmpx (const char *wtmpx_file, const struct utmpx *utmpx) ++{ ++ struct utmp tmp; ++ ++ if (__utmpx_to_utmp (utmpx, &tmp) >= 0) ++ __updwtmp (wtmpx_file, &tmp); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmp-equal.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmp-equal.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmp-equal.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmp-equal.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,50 @@ ++/* Copyright (C) 1996-1999,2000-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++#include ++ ++/* Test whether two entries match. */ ++static int ++__utmp_equal (const struct utmp *entry, const struct utmp *match) ++{ ++ /* This implementation is consistent with the __utmp_to_utmpx function. */ ++ return ++ (!((entry->ut_line[0] == '\0' && entry->ut_name[0] == '\0' ++ && entry->ut_host[0] == '\0') ++ || ((entry->ut_line[0] == '~' || entry->ut_line[0] == '{' ++ || entry->ut_line[0] == '|') ++ && entry->ut_line[1] == '\0')) ++ && ++ !((match->ut_line[0] == '\0' && match->ut_name[0] == '\0' ++ && match->ut_host[0] == '\0') ++ || ((match->ut_line[0] == '~' || match->ut_line[0] == '{' ++ || match->ut_line[0] == '|') ++ && match->ut_line[1] == '\0')) ++ && ++#if _HAVE_UT_ID - 0 ++ (entry->ut_id[0] && match->ut_id[0] ++ ? strncmp (entry->ut_id, match->ut_id, sizeof match->ut_id) == 0 ++ : strncmp (entry->ut_line, match->ut_line, sizeof match->ut_line) == 0) ++#else ++ strncmp (entry->ut_line, match->ut_line, sizeof match->ut_line) == 0 ++#endif ++ ); ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmp_file.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmp_file.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmp_file.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmp_file.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmpconv.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmpconv.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmpconv.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-compat/utmpconv.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,227 @@ ++/* Convert between 'struct utmp' and 'struct utmx'. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* We reuse the 'struct utmp' file format also for 'struct utmpx' records. ++ The mapping from 'struct utmp' to 'struct utmpx' is injective; the ++ reverse mapping succeeds only when common conventions are respected. */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++/* Compare two 'struct utmpx' records. */ ++int ++__utmpx_equal (const struct utmpx *u1, const struct utmpx *u2) ++{ ++ return (u1->ut_type == u2->ut_type) ++ && (u1->ut_pid == u2->ut_pid) ++ && (strncmp (u1->ut_line, u2->ut_line, __UT_LINESIZE) == 0) ++ && (strncmp (u1->ut_id, u2->ut_id, sizeof (u1->ut_id)) == 0) ++ && (strncmp (u1->ut_user, u2->ut_user, __UT_NAMESIZE) == 0) ++ && (strncmp (u1->ut_host, u2->ut_host, __UT_HOSTSIZE) == 0) ++ && (u1->ut_exit.e_termination == u2->ut_exit.e_termination) ++ && (u1->ut_exit.e_exit == u2->ut_exit.e_exit) ++ && (u1->ut_session == u2->ut_session) ++ && (u1->ut_tv.tv_sec == u2->ut_tv.tv_sec) ++ && (u1->ut_tv.tv_usec == u2->ut_tv.tv_usec) ++ && (memcmp (u1->ut_addr_v6, u2->ut_addr_v6, sizeof (u1->ut_addr_v6)) ++ == 0); ++} ++ ++int ++__utmp_to_utmpx (const struct utmp *u, struct utmpx *ux) ++{ ++ memset (ux, '\0', sizeof (struct utmpx)); ++ ++ if (u->ut_line[0] == '\0' && u->ut_name[0] == '\0' && u->ut_host[0] == '\0') ++ { ++ ux->ut_type = EMPTY; ++ } ++ else ++ { ++ if (u->ut_line[0] == '~' && u->ut_line[1] == '\0') ++ { ++ if (strncmp (u->ut_name, "runlevel", UT_NAMESIZE) == 0) ++ ux->ut_type = RUN_LVL; ++ else if (strncmp (u->ut_name, "reboot", UT_NAMESIZE) == 0) ++ ux->ut_type = BOOT_TIME; ++ else if (strncmp (u->ut_name, "acct", UT_NAMESIZE) == 0) ++ ux->ut_type = ACCOUNTING; ++ else ++ return -1; ++ } ++ else if (u->ut_line[0] == '{' && u->ut_line[1] == '\0') ++ { ++ if (strncmp (u->ut_name, "date", UT_NAMESIZE) == 0) ++ ux->ut_type = NEW_TIME; ++ else ++ return -1; ++ } ++ else if (u->ut_line[0] == '|' && u->ut_line[1] == '\0') ++ { ++ if (strncmp (u->ut_name, "date", UT_NAMESIZE) == 0) ++ ux->ut_type = OLD_TIME; ++ else ++ return -1; ++ } ++ else ++ { ++ if (strncmp (u->ut_name, "INIT", UT_NAMESIZE) == 0) ++ ux->ut_type = INIT_PROCESS; ++ else if (strncmp (u->ut_name, "LOGIN", UT_NAMESIZE) == 0) ++ ux->ut_type = LOGIN_PROCESS; ++ else if (strncmp (u->ut_name, "", UT_NAMESIZE) == 0) ++ ux->ut_type = DEAD_PROCESS; ++ else ++ ux->ut_type = USER_PROCESS; ++ ++ if (ux->ut_type == LOGIN_PROCESS || ux->ut_type == USER_PROCESS) ++ strncpy (ux->ut_user, u->ut_name, UT_NAMESIZE); ++ ++ if (strncmp (u->ut_line, "tty", 3) == 0) ++ { ++ strncpy (ux->ut_line, u->ut_line, UT_LINESIZE); ++ strncpy (ux->ut_id, u->ut_line + 3, sizeof (ux->ut_id)); ++ } ++ else ++ { ++ strncpy (ux->ut_id, u->ut_line, sizeof (ux->ut_id)); ++ } ++ } ++ ++ strncpy (ux->ut_host, u->ut_host, UT_HOSTSIZE); ++ ++ /* Hack: Recover the ut_pid from the hidden place after the host. */ ++ if (__strnlen (u->ut_host, UT_HOSTSIZE) < UT_HOSTSIZE - 2) ++ { ++ const char *hidden = u->ut_host + strlen (u->ut_host) + 1; ++ ++ if (hidden[0] != '\0') ++ { ++ size_t n = UT_HOSTSIZE - strlen (u->ut_host) - 1; ++ char buf[UT_HOSTSIZE]; ++ unsigned long pid; ++ char *endp; ++ ++ strncpy (buf, hidden, n); ++ buf[n] = '\0'; ++ ++ pid = strtoul (buf, &endp, 10); ++ if (endp != buf && *endp == '\0') ++ ux->ut_pid = pid; ++ } ++ } ++ ++ ux->ut_tv.tv_sec = u->ut_time; ++ ux->ut_tv.tv_usec = 0; ++ } ++ ++ return 0; ++} ++ ++int ++__utmpx_to_utmp (const struct utmpx *ux, struct utmp *u) ++{ ++ char buf[10+1]; ++ ++ switch (ux->ut_type) ++ { ++ case EMPTY: ++ strncpy (u->ut_line, "", UT_LINESIZE); ++ strncpy (u->ut_name, "", UT_NAMESIZE); ++ strncpy (u->ut_host, "", UT_HOSTSIZE); ++ break; ++ ++ case RUN_LVL: ++ strncpy (u->ut_line, "~", UT_LINESIZE); ++ strncpy (u->ut_name, "runlevel", UT_NAMESIZE); ++ strncpy (u->ut_host, ux->ut_host, UT_HOSTSIZE); ++ break; ++ ++ case BOOT_TIME: ++ strncpy (u->ut_line, "~", UT_LINESIZE); ++ strncpy (u->ut_name, "reboot", UT_NAMESIZE); ++ strncpy (u->ut_host, ux->ut_host, UT_HOSTSIZE); ++ break; ++ ++ case NEW_TIME: ++ strncpy (u->ut_line, "{", UT_LINESIZE); ++ strncpy (u->ut_name, "date", UT_NAMESIZE); ++ strncpy (u->ut_host, ux->ut_host, UT_HOSTSIZE); ++ break; ++ ++ case OLD_TIME: ++ strncpy (u->ut_line, "|", UT_LINESIZE); ++ strncpy (u->ut_name, "date", UT_NAMESIZE); ++ strncpy (u->ut_host, ux->ut_host, UT_HOSTSIZE); ++ break; ++ ++ case INIT_PROCESS: ++ case LOGIN_PROCESS: ++ case USER_PROCESS: ++ case DEAD_PROCESS: ++ if (ux->ut_line[0] != '\0') ++ strncpy (u->ut_line, ux->ut_line, UT_LINESIZE); ++ else ++ strncpy (u->ut_line, ux->ut_id, sizeof (ux->ut_id)); ++ switch (ux->ut_type) ++ { ++ case INIT_PROCESS: ++ strncpy (u->ut_name, "INIT", UT_NAMESIZE); ++ break; ++ case LOGIN_PROCESS: ++ strncpy (u->ut_name, "LOGIN", UT_NAMESIZE); ++ break; ++ case USER_PROCESS: ++ strncpy (u->ut_name, ux->ut_user, UT_NAMESIZE); ++ break; ++ case DEAD_PROCESS: ++ strncpy (u->ut_name, "", UT_NAMESIZE); ++ break; ++ } ++ strncpy (u->ut_host, ux->ut_host, UT_HOSTSIZE); ++ break; ++ ++ case ACCOUNTING: ++ strncpy (u->ut_line, "~", UT_LINESIZE); ++ strncpy (u->ut_name, "acct", UT_NAMESIZE); ++ strncpy (u->ut_host, ux->ut_host, UT_HOSTSIZE); ++ break; ++ ++ default: ++ return -1; ++ } ++ ++ u->ut_time = ux->ut_tv.tv_sec; ++ ++ /* Hack: Put the ut_pid at a hidden place where there is likely room. */ ++ if (ux->ut_pid != 0) ++ { ++ size_t room = UT_HOSTSIZE - strlen (u->ut_host) - 1; ++ ++ sprintf (buf, "%lu", (unsigned long) ux->ut_pid); ++ if (strlen (buf) <= room) ++ strncpy (u->ut_host + strlen (u->ut_host) + 1, buf, room); ++ } ++ ++ return 0; ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-utmpx/utmp_file.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-utmpx/utmp_file.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-utmpx/utmp_file.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/utmp-utmpx/utmp_file.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/wait.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/wait.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/wait.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/wait.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/wait3.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/wait3.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/wait3.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/wait3.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/waitpid.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/waitpid.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/waitpid.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/waitpid.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,56 @@ ++/* Copyright (C) 1991,95,96,97,2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++/* Wait for a child matching PID to die. ++ If PID is greater than 0, match any process whose process ID is PID. ++ If PID is (pid_t) -1, match any process. ++ If PID is (pid_t) 0, match any process with the ++ same process group as the current process. ++ If PID is less than -1, match any process whose ++ process group is the absolute value of PID. ++ If the WNOHANG bit is set in OPTIONS, and that child ++ is not already dead, return (pid_t) 0. If successful, ++ return PID and store the dead child's status in STAT_LOC. ++ Return (pid_t) -1 for errors. If the WUNTRACED bit is set in OPTIONS, ++ return status for stopped children; otherwise don't. */ ++pid_t ++__libc_waitpid (pid_t pid, int *stat_loc, int options) ++{ ++ if (SINGLE_THREAD_P) ++ { ++ return INLINE_SYSCALL (wait4, 4, pid, stat_loc, options, NULL); ++ } ++ ++ int oldtype = LIBC_CANCEL_ASYNC (); ++ ++ int result = INLINE_SYSCALL (wait4, 4, pid, stat_loc, options, NULL); ++ ++ LIBC_CANCEL_RESET (oldtype); ++ ++ return result; ++} ++ ++weak_alias (__libc_waitpid, __waitpid) ++libc_hidden_weak (__waitpid) ++weak_alias (__libc_waitpid, waitpid) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/writev.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/writev.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/writev.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/writev.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,57 @@ ++/* writev for FreeBSD. ++ Copyright (C) 1997-1998, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++extern ssize_t __syscall_writev (int, const struct iovec *__unbounded, int); ++ ++static ssize_t __atomic_writev_replacement (int, const struct iovec *, ++ int) internal_function; ++ ++ssize_t ++__libc_writev (int fd, const struct iovec *vector, int count) ++{ ++ if (count <= UIO_MAXIOV) ++ { ++ if (SINGLE_THREAD_P) ++ return INLINE_SYSCALL (writev, 3, fd, CHECK_N (vector, count), count); ++ ++ int oldtype = LIBC_CANCEL_ASYNC (); ++ ssize_t result = INLINE_SYSCALL (writev, 3, fd, CHECK_N (vector, count), count); ++ LIBC_CANCEL_RESET (oldtype); ++ return result; ++ ++ } ++ else ++ return __atomic_writev_replacement (fd, vector, count); ++} ++strong_alias (__libc_writev, __writev) ++weak_alias (__libc_writev, writev) ++ ++#define __libc_writev static internal_function __atomic_writev_replacement ++#include ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/Makefile ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/Makefile +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/Makefile 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/Makefile 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,7 @@ ++32bit-predefine = __i386__ ++64bit-predefine = __x86_64__ ++ ++ifeq ($(subdir),misc) ++sysdep_routines += iopl ++sysdep_headers += sys/perm.h sys/io.h ++endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/Versions ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/Versions +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/Versions 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/Versions 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,5 @@ ++libc { ++ GLIBC_2.3.4 { ++ iopl; ++ } ++} +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/mcontext.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/mcontext.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/mcontext.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/mcontext.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,101 @@ ++/* Machine-dependent processor state structure for FreeBSD. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#if !defined _SYS_UCONTEXT_H ++# error "Never use directly; include instead." ++#endif ++ ++/*- ++ * Copyright (c) 2003 Peter Wemm ++ * Copyright (c) 1999 Marcel Moolenaar ++ * All rights reserved. ++ * ++ * Redistribution and use in source and binary forms, with or without ++ * modification, are permitted provided that the following conditions ++ * are met: ++ * 1. Redistributions of source code must retain the above copyright ++ * notice, this list of conditions and the following disclaimer ++ * in this position and unchanged. ++ * 2. Redistributions in binary form must reproduce the above copyright ++ * notice, this list of conditions and the following disclaimer in the ++ * documentation and/or other materials provided with the distribution. ++ * 3. The name of the author may not be used to endorse or promote products ++ * derived from this software without specific prior written permission. ++ * ++ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR ++ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ++ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ++ * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, ++ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT ++ * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ++ * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ++ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ++ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ++ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ++ * ++ * based on $FreeBSD: src/sys/amd64/include/ucontext.h,v 1.18 2003/11/08 04:39:22 peter Exp $ ++ */ ++ ++typedef struct { ++ /* ++ * The first 20 fields must match the definition of ++ * sigcontext. So that we can support sigcontext ++ * and ucontext_t at the same time. ++ */ ++ long mc_onstack; /* XXX - sigcontext compat. */ ++ long mc_rdi; /* machine state (struct trapframe) */ ++ long mc_rsi; ++ long mc_rdx; ++ long mc_rcx; ++ long mc_r8; ++ long mc_r9; ++ long mc_rax; ++ long mc_rbx; ++ long mc_rbp; ++ long mc_r10; ++ long mc_r11; ++ long mc_r12; ++ long mc_r13; ++ long mc_r14; ++ long mc_r15; ++ long mc_trapno; ++ long mc_addr; ++ long mc_flags; ++ long mc_err; ++ long mc_rip; ++ long mc_cs; ++ long mc_rflags; ++ long mc_rsp; ++ long mc_ss; ++ ++ long mc_len; /* sizeof(mcontext_t) */ ++#define _MC_FPFMT_NODEV 0x10000 /* device not present or configured */ ++#define _MC_FPFMT_XMM 0x10002 ++ long mc_fpformat; ++#define _MC_FPOWNED_NONE 0x20000 /* FP state not used */ ++#define _MC_FPOWNED_FPU 0x20001 /* FP state came from FPU */ ++#define _MC_FPOWNED_PCB 0x20002 /* FP state came from PCB */ ++ long mc_ownedfp; ++ /* ++ * See for the internals of mc_fpstate[]. ++ */ ++ long mc_fpstate[64] __attribute__((aligned(16))); ++ long mc_spare[8]; ++} mcontext_t; ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/sigcontext.h 2006-11-07 19:20:05.000000000 +0100 +@@ -0,0 +1,160 @@ ++/* Machine-dependent signal context structure for FreeBSD. i386 version. ++ Copyright (C) 1991-1992,1994,1997,2001-2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#if !defined _SIGNAL_H && !defined _SYS_UCONTEXT_H ++# error "Never use directly; include instead." ++#endif ++ ++#ifndef _BITS_SIGCONTEXT_H ++#define _BITS_SIGCONTEXT_H 1 ++ ++#ifdef __i386__ ++ ++/* State of this thread when the signal was taken. ++ The unions below are for compatibility with Linux (whose sigcontext ++ components don't have sc_ prefix) */ ++struct sigcontext ++ { ++ __sigset_t sc_mask; /* Blocked signals to restore. */ ++ int sc_onstack; /* Nonzero if running on sigstack. */ ++ ++ /* Segment registers. */ ++ union { int sc_gs; int gs; }; ++ union { int sc_fs; int fs; }; ++ union { int sc_es; int es; }; ++ union { int sc_ds; int ds; }; ++ ++ /* "General" registers. These members are in the order that the i386 ++ `pusha' and `popa' instructions use (`popa' ignores %esp). */ ++ union { int sc_edi; int edi; }; ++ union { int sc_esi; int esi; }; ++ union { int sc_ebp; int ebp; }; ++ union { int sc_isp; int isp; }; /* Not used; sc_esp is used instead. */ ++ union { int sc_ebx; int ebx; }; ++ union { int sc_edx; int edx; }; ++ union { int sc_ecx; int ecx; }; ++ union { int sc_eax; int eax; }; ++ ++ union { int sc_trapno; int trapno; }; ++ union { int sc_err; int err; }; ++ ++ union { int sc_eip; int eip; }; /* Instruction pointer. */ ++ union { int sc_cs; int cs; }; /* Code segment register. */ ++ ++ union { int sc_efl; int eflags; }; /* Processor flags. */ ++ ++ union { int sc_esp; int esp; }; /* This stack pointer is used. */ ++ union { int sc_ss; int ss; }; /* Stack segment register. */ ++ ++ int sc_len; /* sizeof(mcontext_t) */ ++ /* ++ * XXX - See and for ++ * the following fields. ++ */ ++ int sc_fpformat; ++ int sc_ownedfp; ++ int sc_spare1[1]; ++ int sc_fpstate[128] __attribute__((aligned(16))); ++ int sc_spare2[8]; ++ }; ++ ++/* Traditional BSD names for some members. */ ++#define sc_sp sc_esp /* Stack pointer. */ ++#define sc_fp sc_ebp /* Frame pointer. */ ++#define sc_pc sc_eip /* Process counter. */ ++#define sc_ps sc_efl ++#define sc_eflags sc_efl ++ ++ ++/* Codes for SIGFPE. */ ++#define FPE_INTDIV 1 /* integer divide by zero */ ++#define FPE_INTOVF 2 /* integer overflow */ ++ ++#if 1 /* FIXME: These need verification. */ ++ ++#define FPE_FLTDIV 3 /* floating divide by zero */ ++#define FPE_FLTOVF 4 /* floating overflow */ ++#define FPE_FLTUND 5 /* floating underflow */ ++#define FPE_FLTINX 6 /* floating loss of precision */ ++#define FPE_SUBRNG_FAULT 0x7 /* BOUNDS instruction failed */ ++#define FPE_FLTDNR_FAULT 0x8 /* denormalized operand */ ++#define FPE_EMERR_FAULT 0xa /* mysterious emulation error 33 */ ++#define FPE_EMBND_FAULT 0xb /* emulation BOUNDS instruction failed */ ++ ++/* Codes for SIGILL. */ ++#define ILL_PRIVIN_FAULT 1 ++#define ILL_ALIGN_FAULT 14 ++#define ILL_FPOP_FAULT 24 ++ ++/* Codes for SIGBUS. */ ++#define BUS_PAGE_FAULT 12 ++#define BUS_SEGNP_FAULT 26 ++#define BUS_STK_FAULT 27 ++#define BUS_SEGM_FAULT 29 ++ ++#endif ++ ++#else ++ ++struct sigcontext { ++ __sigset_t sc_mask; /* signal mask to restore */ ++ long sc_onstack; /* sigstack state to restore */ ++ union { long sc_rdi; long rdi;}; ++ union { long sc_rsi; long rsi;}; ++ union { long sc_rdx; long rdx;}; ++ union { long sc_rcx; long rcx;}; ++ union { long sc_r8; long r8;}; ++ union { long sc_r9; long r9;}; ++ union { long sc_rax; long rax;}; ++ union { long sc_rbx; long rbx;}; ++ union { long sc_rbp; long rbp;}; ++ union { long sc_r10; long r10;}; ++ union { long sc_r11; long r11;}; ++ union { long sc_r12; long r12;}; ++ union { long sc_r13; long r13;}; ++ union { long sc_r14; long r14;}; ++ union { long sc_r15; long r15;}; ++ union { long sc_trapno; long trapno;}; ++ union { long sc_addr; long addr;}; ++ union { long sc_flags; long flags;}; ++ union { long sc_err; long err;}; ++ union { long sc_rip; long rip;}; ++ union { long sc_cs; long cs;}; ++ union { long sc_rflags; long rflags;}; ++ union { long sc_rsp; long rsp;}; ++ union { long sc_ss; long ss;}; ++ long sc_len; /* sizeof(mcontext_t) */ ++ /* ++ * XXX - See and for ++ * the following fields. ++ */ ++ long sc_fpformat; ++ long sc_ownedfp; ++ long sc_fpstate[64] __attribute__((aligned(16))); ++ long sc_spare[8]; ++}; ++ ++/* Traditional BSD names for some members. */ ++#define sc_sp sc_rsp /* Stack pointer. */ ++#define sc_fp sc_rbp /* Frame pointer. */ ++#define sc_pc sc_rip /* Process counter. */ ++ ++#endif ++ ++#endif /* _BITS_SIGCONTEXT_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/time.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/time.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/time.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/bits/time.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,83 @@ ++/* System-dependent timing definitions. FreeBSD version. ++ Copyright (C) 1996-1997, 1999, 2000, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* ++ * Never include this file directly; use instead. ++ */ ++ ++#ifndef __need_timeval ++# ifndef _BITS_TIME_H ++# define _BITS_TIME_H 1 ++ ++/* ISO/IEC 9899:1990 7.12.1: ++ The macro `CLOCKS_PER_SEC' is the number per second of the value ++ returned by the `clock' function. */ ++/* CAE XSH, Issue 4, Version 2: ++ The value of CLOCKS_PER_SEC is required to be 1 million on all ++ XSI-conformant systems. */ ++# define CLOCKS_PER_SEC 1000000l ++ ++# ifdef __USE_POSIX199309 ++/* Identifier for system-wide realtime clock. */ ++# define CLOCK_REALTIME 0 ++/* High-resolution timer from the CPU. */ ++# define CLOCK_PROCESS_CPUTIME_ID 2 ++/* Thread-specific CPU-time clock. */ ++# define CLOCK_THREAD_CPUTIME_ID 3 ++/* Monotonic system-wide clock. */ ++# define CLOCK_MONOTONIC 4 ++/* These are BSD specific clocks. */ ++# ifdef __USE_BSD ++# define CLOCK_VIRTUAL 1 ++# define CLOCK_PROF 2 ++# endif ++ ++/* Flag to indicate time is absolute. */ ++# define TIMER_ABSTIME 1 ++# endif ++ ++ ++/* Getkerninfo clock information structure */ ++struct clockinfo ++ { ++ int hz; /* clock frequency */ ++ int tick; /* micro-seconds per hz tick */ ++ int spare; ++ int stathz; /* statistics clock frequency */ ++ int profhz; /* profiling clock frequency */ ++ }; ++ ++# endif /* bits/time.h */ ++#endif ++ ++#ifdef __need_timeval ++# undef __need_timeval ++# ifndef _STRUCT_TIMEVAL ++# define _STRUCT_TIMEVAL 1 ++# include ++ ++/* A time value that is accurate to the nearest ++ microsecond but also has a range of years. */ ++struct timeval ++ { ++ __time_t tv_sec; /* Seconds. */ ++ __suseconds_t tv_usec; /* Microseconds. */ ++ }; ++# endif /* struct timeval */ ++#endif /* need timeval */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-cache.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-cache.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-cache.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-cache.h 2007-01-05 11:36:38.000000000 +0100 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-machine.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-machine.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-machine.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-machine.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,80 @@ ++/* Machine-dependent ELF dynamic relocation inline functions. FreeBSD/amd64 version. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifdef dl_machine_h ++#include_next ++#else ++#include_next ++ ++#undef RTLD_START ++ ++/* Initial entry point code for the dynamic linker. ++ The C function `_dl_start' is the real entry point; ++ its return value is the user program's entry point. */ ++#define RTLD_START asm ("\n\ ++.text\n\ ++ .align 16\n\ ++.globl _start\n\ ++# we dont use it: .globl _dl_start_user\n\ ++_start:\n\ ++ # align stack.\n\ ++ andq $-16, %rsp\n\ ++ # save argument pointer.\n\ ++ movq %rdi, %r13\n\ ++ call _dl_start\n\ ++# we dont use it: _dl_start_user:\n\ ++ # Save the user entry point address in %r12.\n\ ++ movq %rax, %r12\n\ ++ # See if we were run as a command with the executable file\n\ ++ # name as an extra leading argument.\n\ ++ movl _dl_skip_args(%rip), %eax\n\ ++ # get the original argument count.\n\ ++ movq 0(%r13), %rdx\n\ ++ # Adjust the pointer to skip _dl_skip_args words.\n\ ++ leaq (%r13,%rax,8), %r13\n\ ++ # Subtract _dl_skip_args from argc.\n\ ++ subl %eax, %edx\n\ ++ # Put argc on adjusted place\n\ ++ movq %rdx, 0(%r13)\n\ ++ # Call _dl_init (struct link_map *main_map, int argc, char **argv, char **env)\n\ ++ # argc -> rsi\n\ ++ movq %rdx, %rsi\n\ ++ # _dl_loaded -> rdi\n\ ++ movq _rtld_local(%rip), %rdi\n\ ++ # env -> rcx\n\ ++ leaq 16(%r13,%rdx,8), %rcx\n\ ++ # argv -> rdx\n\ ++ leaq 8(%r13), %rdx\n\ ++ # Clear %rbp to mark outermost frame obviously even for constructors.\n\ ++ xorl %ebp, %ebp\n\ ++ # Call the function to run the initializers.\n\ ++ call _dl_init_internal@PLT\n\ ++ # Pass our finalizer function to the user in %rdx, as per ELF ABI draft.\n\ ++ leaq _dl_fini(%rip), %rdx\n\ ++ # And make sure %rdi points to argc stored on the stack.\n\ ++ movq %r13, %rdi\n\ ++ # Pass finalizer function also in %rsi, as per C calling convention.\n\ ++ movq %rdx, %rsi\n\ ++ # Jump to the user's entry point.\n\ ++ jmp *%r12\n\ ++.previous\n\ ++"); ++ ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-procinfo.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-procinfo.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-procinfo.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-procinfo.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-procinfo.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-procinfo.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-procinfo.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/dl-procinfo.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1 @@ ++#include +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/elf/start.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/elf/start.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/elf/start.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/elf/start.S 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,143 @@ ++/* Startup code for FreeBSD/amd64 ABI. ++ Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Andreas Jaeger , 2001. ++ FreeBSD modification by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ In addition to the permissions in the GNU Lesser General Public ++ License, the Free Software Foundation gives you unlimited ++ permission to link the compiled version of this file with other ++ programs, and to distribute those programs without any restriction ++ coming from the use of this file. (The GNU Lesser General Public ++ License restrictions do apply in other respects; for example, they ++ cover modification of the file, and distribution when not linked ++ into another program.) ++ ++ Note that people who make modified versions of this file are not ++ obligated to grant this special exception for their modified ++ versions; it is their choice whether to do so. The GNU Lesser ++ General Public License gives permission to release a modified ++ version without this exception; this exception also makes it ++ possible to release a modified version which carries forward this ++ exception. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* This is the canonical entry point, usually the first thing in the text ++ segment. The SVR4/i386 ABI (pages 3-31, 3-32) says that when the entry ++ point runs, most registers' values are unspecified, except for a few. ++ Blindly applied on amd64: ++ ++ %rdx Contains a function pointer to be registered with `atexit'. ++ This is how the dynamic linker arranges to have DT_FINI ++ functions called for shared libraries that have been loaded ++ before this code runs. ++ ++ %rsp The stack contains the arguments and environment: ++ 0(%rsp) argc ++ 8(%rsp) argv[0] ++ ... ++ (8*argc)(%rsp) NULL ++ (8*(argc+1))(%rsp) envp[0] ++ ... ++ NULL ++ ++ But on amd64 %rsp also have to be 16-byte aligned, ++ standard C calling convention already passes arguments in registers. ++ ++ FreeBSD uses %edi as pointer to arguments and environment, %rsp is passed aligned. ++ On entry from kernel, %rsp=%rdi or %rsp=%rdi-8, ++ on entry from ld.so, glibc might set up it slightly differently. ++ ++ On FreeBSD, we use %rsi for passing function pointer to rtld_fini(). ++ On entry from FreeBSD kernel, %rsi is cleared, %rdx is not cleared, ++ on entry from ld.so, glibc sets both %rsi and %rdx to point to rtld_fini(). ++ ++ Used interface (via %rdi, %rsi) is equal to standard C calling interface for ++ ++ void _start(void *arg, void *rtld_fini()); ++ ++*/ ++ ++#include "bp-sym.h" ++ ++ .text ++ .globl _start ++ .type _start,@function ++_start: ++ /* Clear the frame pointer. The ABI suggests this be done, to mark ++ the outermost frame obviously. */ ++ xorl %ebp, %ebp /* zero extending clears whole rbp */ ++ ++ /* Extract the arguments as encoded on the stack and set up ++ the arguments for __libc_start_main (int (*main) (int, char **, char **), ++ int argc, char *argv, ++ void (*init) (void), void (*fini) (void), ++ void (*rtld_fini) (void), void *stack_end). ++ The arguments are passed via registers and on the stack: ++ main: %rdi ++ argc: %rsi ++ argv: %rdx ++ init: %rcx ++ fini: %r8 ++ rtld_fini: %r9 ++ stack_end: stack. */ ++ ++ movq %rsi, %r9 /* Address of the shared library termination ++ function. */ ++ movq 0(%rdi), %rsi /* argument count. */ ++ leaq 8(%rdi), %rdx /* argv starts just at above argc. */ ++ ++ /* Align the stack to a 16 byte boundary to follow the ABI. */ ++ andq $~15, %rsp ++ ++ pushq %rax /* Push garbage because we push 8 more bytes. */ ++ ++ /* Provide the highest stack address to the user code (for stacks ++ which grow downwards). */ ++ pushq %rsp ++ ++#ifdef SHARED ++ /* Pass address of our own entry points to .fini and .init. */ ++ movq __libc_csu_fini@GOTPCREL(%rip), %r8 ++ movq __libc_csu_init@GOTPCREL(%rip), %rcx ++ ++ movq BP_SYM (main)@GOTPCREL(%rip), %rdi ++ ++ /* Call the user's main function, and exit with its value. ++ But let the libc call main. */ ++ call BP_SYM (__libc_start_main)@PLT ++#else ++ /* Pass address of our own entry points to .fini and .init. */ ++ movq $__libc_csu_fini, %r8 ++ movq $__libc_csu_init, %rcx ++ ++ movq $BP_SYM (main), %rdi ++ ++ /* Call the user's main function, and exit with its value. ++ But let the libc call main. */ ++ call BP_SYM (__libc_start_main) ++#endif ++ ++ hlt /* Crash if somehow `exit' does return. */ ++ ++/* Define a symbol for the first piece of initialized data. */ ++ .data ++ .globl __data_start ++__data_start: ++ .long 0 ++ .weak data_start ++ data_start = __data_start +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/get_clockfreq.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/get_clockfreq.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/get_clockfreq.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/get_clockfreq.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1 @@ ++#include "../i386/get_clockfreq.c" +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/getcontext.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/getcontext.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/getcontext.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/getcontext.S 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,38 @@ ++/* Save current context. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++.text ++ENTRY(__getcontext) ++ clc ++ movq 0(%rsp), %rsi /* save the return PC value */ ++ ++ DO_CALL (getcontext, 1) ++ jb SYSCALL_ERROR_LABEL ++ ++ addq $8, %rsp /* remove stale return address */ ++ jmp *%rsi ++ ++L(pseudo_end): ++ ret ++ ++PSEUDO_END(__getcontext) ++ ++weak_alias(__getcontext, getcontext) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/iopl.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/iopl.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/iopl.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/iopl.c 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1 @@ ++#include "../i386/iopl.c" +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldconfig.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldconfig.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldconfig.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldconfig.h 2007-01-05 11:36:38.000000000 +0100 +@@ -0,0 +1,39 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++#define SYSDEP_KNOWN_INTERPRETER_NAMES \ ++ { "/lib/ld.so.1", FLAG_ELF_LIBC6 }, \ ++ { "/lib/ld-kfreebsd-x86-64.so.1", FLAG_ELF_LIBC6 }, \ ++ { "/lib64/ld-kfreebsd-x86-64.so.1", FLAG_ELF_LIBC6 }, \ ++ { "/libexec/ld-elf.so.1", FLAG_ELF_LIBC5 }, ++ ++#define SYSDEP_KNOWN_LIBRARY_NAMES \ ++ { "libc.so.0.1", FLAG_ELF_LIBC6 }, \ ++ { "libm.so.1", FLAG_ELF_LIBC6 }, \ ++ { "libc.so.4", FLAG_ELF_LIBC5 }, \ ++ { "libm.so.4", FLAG_ELF_LIBC5 }, \ ++ { "libc.so.5", FLAG_ELF_LIBC5 }, \ ++ { "libm.so.5", FLAG_ELF_LIBC5 }, \ ++ { "libc.so.6", FLAG_ELF_LIBC5 }, \ ++ { "libm.so.6", FLAG_ELF_LIBC5 }, \ ++ { "libc.so.7", FLAG_ELF_LIBC5 }, \ ++ { "libm.so.7", FLAG_ELF_LIBC5 }, \ ++ { "libc.so.8", FLAG_ELF_LIBC5 }, \ ++ { "libm.so.8", FLAG_ELF_LIBC5 }, +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldd-rewrite.sed ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldd-rewrite.sed +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldd-rewrite.sed 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ldd-rewrite.sed 2007-01-05 11:36:38.000000000 +0100 +@@ -0,0 +1,3 @@ ++/LD_TRACE_LOADED_OBJECTS=1/a\ ++add_env="$add_env LD_LIBRARY_VERSION=\\$verify_out" ++s_^\(RTLDLIST=\)\(.*lib\)\(\|64\)\(/[^/]*\)\(-kfreebsd-x86-64\)\(\.so\.[0-9.]*\)[ ]*$_\1"\2\4\6 \264\4\5\6"_ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/Makefile ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/Makefile +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/Makefile 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/Makefile 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,4 @@ ++ifeq ($(subdir),linuxthreads) ++CFLAGS-pt-initfini.s = -g0 -fPIC -fno-inline-functions \ ++ -fno-asynchronous-unwind-tables $(fno-unit-at-a-time) ++endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/asm/prctl.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/asm/prctl.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/asm/prctl.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/asm/prctl.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1 @@ ++/* placeholder to make linuxthreads/sysdeps/x86_64/pt-machine.h happy */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/pt-machine.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/pt-machine.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/pt-machine.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/pt-machine.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,51 @@ ++/* Machine-dependent pthreads configuration and inline functions. ++ x86-64 FreeBSD version. ++ Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _FREEBSD_PT_MACHINE_H ++#define _FREEBSD_PT_MACHINE_H 1 ++ ++/* ++ almost all parts are common with linux version ++ */ ++ ++#include ++ ++#ifndef __ASSEMBLER__ ++ ++/* and only one FreeBSD specifics */ ++ ++#include ++ ++/* Initialize the thread-unique value. */ ++ ++#undef INIT_THREAD_SELF ++#define INIT_THREAD_SELF(descr, nr) \ ++{ \ ++ long tmp; \ ++ tmp = (long) descr; \ ++ if (sysarch(AMD64_SET_FSBASE, &tmp) != 0) \ ++ { \ ++ abort(); \ ++ } \ ++} ++ ++#endif /* !__ASSEMBLER__ */ ++ ++#endif /* pt-machine.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/sysdep-cancel.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/sysdep-cancel.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/sysdep-cancel.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/sysdep-cancel.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,138 @@ ++/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Jakub Jelinek , 2002. ++ Modification for FreeBSD contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#ifndef __ASSEMBLER__ ++# include ++#endif ++ ++/* Syscalls with more than 6 arguments are not supported here. */ ++ ++#if !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt ++ ++# undef PSEUDO ++# define PSEUDO(name, syscall_name, args) \ ++ .text; \ ++ ENTRY (name) \ ++ SINGLE_THREAD_P; \ ++ jne L(pseudo_cancel); \ ++ DO_CALL (syscall_name, args); \ ++ jb SYSCALL_ERROR_LABEL; \ ++ ret; \ ++ L(pseudo_cancel): \ ++ /* Save registers that might get destroyed. */ \ ++ SAVESTK_##args \ ++ PUSHARGS_##args \ ++ CENABLE \ ++ /* Restore registers. */ \ ++ POPARGS_##args \ ++ RESTSTK_##args \ ++ /* The return value from CENABLE is argument for CDISABLE. */ \ ++ movq %rax, (%rsp); \ ++ movl $SYS_ify (syscall_name), %eax; \ ++ syscall; \ ++ popq %rdi; cfi_adjust_cfa_offset(-8); \ ++ pushfq; cfi_adjust_cfa_offset(8); \ ++ /* Save %rax since it's the return/error code from the syscall. */ \ ++ movq %rax, 8(%rsp); \ ++ CDISABLE \ ++ popfq; cfi_adjust_cfa_offset(-8); \ ++ /* fetch the error code from the syscall. */ \ ++ popq %rax; cfi_adjust_cfa_offset(-8); \ ++ /* adjust rsp, do not change flags */ \ ++ popq %rdx; cfi_adjust_cfa_offset(-8); \ ++ jb SYSCALL_ERROR_LABEL; \ ++ L(pseudo_end): ++ ++# define PUSHARGS_0 /* Nothing. */ ++# define PUSHARGS_1 PUSHARGS_0 movq %rdi, 8(%rsp); ++# define PUSHARGS_2 PUSHARGS_1 movq %rsi, 16(%rsp); ++# define PUSHARGS_3 PUSHARGS_2 movq %rdx, 24(%rsp); ++# define PUSHARGS_4 PUSHARGS_3 movq %rcx, 32(%rsp); ++# define PUSHARGS_5 PUSHARGS_4 movq %r8, 40(%rsp); ++# define PUSHARGS_6 PUSHARGS_5 movq %r9, 48(%rsp); ++ ++# define POPARGS_0 /* Nothing. */ ++# define POPARGS_1 POPARGS_0 movq 8(%rsp), %rdi; ++# define POPARGS_2 POPARGS_1 movq 16(%rsp), %rsi; ++# define POPARGS_3 POPARGS_2 movq 24(%rsp), %rdx; ++# define POPARGS_4 POPARGS_3 movq 32(%rsp), %r10; ++# define POPARGS_5 POPARGS_4 movq 40(%rsp), %r8; ++# define POPARGS_6 POPARGS_5 movq 48(%rsp), %r9; ++ ++/* We always have to align the stack before calling a function. */ ++# define SAVESTK_0 subq $24, %rsp;cfi_adjust_cfa_offset(24); ++# define SAVESTK_1 SAVESTK_0 ++# define SAVESTK_2 SAVESTK_1 ++# define SAVESTK_3 subq $40, %rsp;cfi_adjust_cfa_offset(40); ++# define SAVESTK_4 SAVESTK_3 ++# define SAVESTK_5 subq $56, %rsp;cfi_adjust_cfa_offset(56); ++# define SAVESTK_6 SAVESTK_5 ++ ++# define RESTSTK_0 /* Nothing. */ ++# define RESTSTK_1 RESTSTK_0 ++# define RESTSTK_2 RESTSTK_1 ++# define RESTSTK_3 addq $16, %rsp;cfi_adjust_cfa_offset(-16); ++# define RESTSTK_4 RESTSTK_3 ++# define RESTSTK_5 addq $32, %rsp;cfi_adjust_cfa_offset(-32); ++# define RESTSTK_6 RESTSTK_5 ++ ++# ifdef IS_IN_libpthread ++# define CENABLE call __pthread_enable_asynccancel; ++# define CDISABLE call __pthread_disable_asynccancel; ++# define __local_multiple_threads __pthread_multiple_threads ++# elif !defined NOT_IN_libc ++# define CENABLE call __libc_enable_asynccancel; ++# define CDISABLE call __libc_disable_asynccancel; ++# define __local_multiple_threads __libc_multiple_threads ++# else ++# define CENABLE call __librt_enable_asynccancel@plt; ++# define CDISABLE call __librt_disable_asynccancel@plt; ++# endif ++ ++# if defined IS_IN_libpthread || !defined NOT_IN_libc ++# ifndef __ASSEMBLER__ ++extern int __local_multiple_threads attribute_hidden; ++# define SINGLE_THREAD_P \ ++ __builtin_expect (__local_multiple_threads == 0, 1) ++# else ++# define SINGLE_THREAD_P cmpl $0, __local_multiple_threads(%rip) ++# endif ++ ++# else ++ ++# ifndef __ASSEMBLER__ ++# define SINGLE_THREAD_P \ ++ __builtin_expect (THREAD_GETMEM (THREAD_SELF, \ ++ p_header.data.multiple_threads) == 0, 1) ++# else ++# define SINGLE_THREAD_P cmpl $0, %fs:MULTIPLE_THREADS_OFFSET ++# endif ++ ++# endif ++ ++#elif !defined __ASSEMBLER__ ++ ++/* This code should never be used but we define it anyhow. */ ++# define SINGLE_THREAD_P (1) ++ ++#endif +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/tls.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/tls.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/tls.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/linuxthreads/tls.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,62 @@ ++/* Definitions for thread-local data handling. linuxthreads/x86-64 version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Modification for FreeBSD by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _FREEBSD_TLS_H ++#define _FREEBSD_TLS_H ++ ++#include ++ ++#ifdef HAVE_TLS_SUPPORT ++ ++# ifndef __ASSEMBLER__ ++ ++#include ++#include ++ ++/* Code to initially initialize the thread pointer. This might need ++ special attention since 'errno' is not yet available and if the ++ operation can cause a failure 'errno' must not be touched. */ ++ ++# undef TLS_INIT_TP ++# define TLS_INIT_TP(descr, secondcall) \ ++ ({ \ ++ void *_descr = (descr); \ ++ tcbhead_t *head = _descr; \ ++ long int _result; \ ++ \ ++ head->tcb = _descr; \ ++ /* For now the thread descriptor is at the same address. */ \ ++ head->self = _descr; \ ++ \ ++ asm volatile ("syscall" \ ++ : "=a" (_result) \ ++ : "0" ((unsigned long int) SYS_sysarch), \ ++ "D" ((unsigned long int) AMD64_SET_FSBASE), \ ++ "S" (&_descr) \ ++ : "memory", "cc", "cx", "dx", "r8", "r9", "r10", "r11"); \ ++ \ ++ _result ? "cannot set %fs base address for thread-local storage" : 0; \ ++ }) ++ ++ ++# endif /* HAVE_TLS_SUPPORT */ ++#endif /* __ASSEMBLER__ */ ++ ++#endif /* tls.h */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/makecontext.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/makecontext.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/makecontext.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/makecontext.S 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,146 @@ ++/* makecontext() for FreeBSD/amd64. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++/* ++ void makecontext(ucontext_t *ucp, void *func(), int argc, ...); ++ ++ ++ input parameters: ++ ++ rdi ucp ++ rsi func ++ edx argc ++ rcx arg1 -> ucp.rdi ++ r8 arg2 -> ucp.rsi ++ r9 arg3 -> ucp.rdx ++ 8(%rsp) arg4 -> ucp.rcx ++ 16(%rsp) arg5 -> ucp.r8 ++ 24(%rsp) arg6 -> ucp.r9 ++ i*8+24(%rsp) arg(6+i)-> future stack ++ ++*/ ++ ++ENTRY(__makecontext) ++ ++ /* Compute the address of the stack. ++ The information comes from us_stack element. */ ++ movq oSS_SP(%rdi), %rax ++ addq oSS_SIZE(%rdi), %rax ++ ++ /* Put start addr into ucp */ ++ movq %rsi, oRIP(%rdi) ++ ++ /* properly align future stack */ ++ andq $-16, %rax ++ subq $8, %rax ++ ++ /* Put the next context into preserved ucp.rbx ++ (from the uc_link element). */ ++ movq oLINK(%rdi), %rsi ++ movq %rsi, oRBX(%rdi) ++ ++ /* save future registers arguments */ ++ ++ orl %edx, %edx ++ jz L(param_done) ++ ++ decl %edx ++ movq %rcx, oRDI(%rdi) ++ jz L(param_done) ++ ++ decl %edx ++ movq %r8, oRSI(%rdi) ++ jz L(param_done) ++ ++ decl %edx ++ movq %r9, oRDX(%rdi) ++ jz L(param_done) ++ ++ movq 8(%rsp), %rsi ++ decl %edx ++ movq %rsi, oRCX(%rdi) ++ jz L(param_done) ++ ++ movq 16(%rsp), %rcx ++ decl %edx ++ movq %rcx, oR8(%rdi) ++ jz L(param_done) ++ ++ movq 24(%rsp), %rsi ++ decl %edx ++ movq %rsi, oR9(%rdi) ++ jz L(param_done) ++ ++ /* we have to copy some arguments also on the future stack */ ++ movl %edx, %ecx ++ negq %rdx ++ leaq -16(%rax,%rdx,8), %rax /* we a litle bit waste stack space */ ++ orq $8, %rax ++ ++1: movq 24(%rsp,%rcx,8), %rsi ++ movq %rsi,(%rax,%rcx,8) ++ loop 1b ++ ++L(param_done): ++ ++ /* Store the future stack pointer and chain helper code. */ ++ leaq L(exitcode)(%rip), %rdx ++ movq %rax, oRSP(%rdi) ++ movq %rdx, (%rax) ++ ++ /* 'makecontext' returns no value. */ ++ ret ++ ++/***************************************************************************/ ++ ++ /* This is the helper code which gets called if a function which ++ is registered with 'makecontext' returns. In this case we ++ have to install the context listed in the uc_link element of ++ the context 'makecontext' manipulated at the time of the ++ 'makecontext' call. If the pointer is NULL the process must ++ terminate. */ ++ ++L(exitcode): ++ /* we don't bother with extra arguments left on the stack ++ - more than 6 arguments is rare ++ - setcontext changes stacks immediately ++ - exit will call _exit in near future ++ */ ++ ++ testq %rbx, %rbx /* If it is zero exit. */ ++ jz 2f ++ ++ movq %rbx, %rdi ++ call JUMPTARGET(__setcontext) ++ /* If this returns (which can happen if the syscall fails) we'll ++ exit the program with the return error value (-1). */ ++ ++2: movq %rax, %rdi ++ call HIDDEN_JUMPTARGET(exit) ++ /* The 'exit' call should never return. In case it does cause ++ the process to terminate. */ ++ hlt ++END(__makecontext) ++ ++weak_alias(__makecontext, makecontext) ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/pipe.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/pipe.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/pipe.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/pipe.S 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,32 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++.text ++ENTRY (__pipe) ++ DO_CALL (pipe, 1) ++ jb SYSCALL_ERROR_LABEL ++ movl %eax, 0(%rdi) ++ movl %edx, 4(%rdi) ++ xorl %eax, %eax ++L(pseudo_end): ++ ret ++PSEUDO_END (__pipe) ++libc_hidden_def (__pipe) ++weak_alias (__pipe, pipe) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/readelflib.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/readelflib.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/readelflib.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/readelflib.c 2007-02-05 15:33:41.000000000 +0100 +@@ -0,0 +1,62 @@ ++/* Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Andreas Jaeger , 1999 and ++ Jakub Jelinek , 1999. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++int process_elf32_file (const char *file_name, const char *lib, int *flag, ++ unsigned int *osversion, char **soname, ++ void *file_contents, size_t file_length); ++int process_elf64_file (const char *file_name, const char *lib, int *flag, ++ unsigned int *osversion, char **soname, ++ void *file_contents, size_t file_length); ++ ++/* Returns 0 if everything is ok, != 0 in case of error. */ ++int ++process_elf_file (const char *file_name, const char *lib, int *flag, ++ unsigned int *osversion, char **soname, void *file_contents, ++ size_t file_length) ++{ ++ ElfW(Ehdr) *elf_header = (ElfW(Ehdr) *) file_contents; ++ int ret; ++ ++ if (elf_header->e_ident [EI_CLASS] == ELFCLASS32) ++ return process_elf32_file (file_name, lib, flag, osversion, soname, ++ file_contents, file_length); ++ else ++ { ++ ret = process_elf64_file (file_name, lib, flag, osversion, soname, ++ file_contents, file_length); ++ /* x86-64 64bit libraries are always LIBC6. */ ++ if (!ret) ++ *flag = FLAG_X8664_LIB64|FLAG_ELF_LIBC6; ++ return ret; ++ } ++} ++ ++#undef __ELF_NATIVE_CLASS ++#undef process_elf_file ++#define process_elf_file process_elf32_file ++#define __ELF_NATIVE_CLASS 32 ++#include "elf/readelflib.c" ++ ++#undef __ELF_NATIVE_CLASS ++#undef process_elf_file ++#define process_elf_file process_elf64_file ++#define __ELF_NATIVE_CLASS 64 ++#include "elf/readelflib.c" +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/rfork.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/rfork.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/rfork.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/rfork.S 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,44 @@ ++/* Copyright (C) 1991-1992, 1994-1995, 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++.text; ++ENTRY (__rfork) ++ /* save the return PC value into RSI */ ++ movq 0(%rsp), %rsi; ++ DO_CALL (rfork, 1) ++ jb SYSCALL_ERROR_LABEL; ++ /* R1 is now 0 for the parent and 1 for the child. Decrement it to ++ make it -1 (all bits set) for the parent, and 0 (no bits set) ++ for the child. Then AND it with R0, so the parent gets ++ R0&-1==R0, and the child gets R0&0==0. */ ++ decq %rdx ++ andq %rdx, %rax ++ ++ popq %rdx ++ cfi_adjust_cfa_offset(-8) ++ ++ jmp *%rsi ++ ++L(pseudo_end): ++ ret ++PSEUDO_END (__rfork) ++ ++weak_alias (__rfork, rfork) ++ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sigcontextinfo.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sigcontextinfo.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sigcontextinfo.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sigcontextinfo.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,25 @@ ++/* Copyright (C) 1998, 1999, 2001, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#define SIGCONTEXT int _code, struct sigcontext * ++#define SIGCONTEXT_EXTRA_ARGS _code, ++#define GET_PC(ctx) ((void *) (ctx)->sc_rip) ++#define GET_FRAME(ctx) ((void *) (ctx)->sc_rbp) ++#define GET_STACK(ctx) ((void *) (ctx)->sc_rsp) ++#define CALL_SIGHANDLER(handler, signo, ctx) \ ++ (handler)((signo), SIGCONTEXT_EXTRA_ARGS (ctx)) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/start_thread.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/start_thread.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/start_thread.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/start_thread.S 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,196 @@ ++/* Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Bruno Haible , 2002. ++ Modification for amd64 contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* __start_thread (flags, stack, func, arg) ++ calls __rfork (flags), and in the child sets the stack pointer and then ++ calls _exit (func (arg)). ++ It cannot be done in portable C. */ ++ ++/* ++ The parameters are passed in registers: ++ rdi: flags for rfork ++ rsi: child_stack ++ rdx: func ++ rcx: arg ++*/ ++ ++#include ++#include ++ ++#define SIG_SETMASK 3 ++ ++/* There is a window of a few instructions, right after the rfork ++ system call, where the handling of a signal would write garbage ++ into the stack shared by the parent and the child (assuming ++ RFMEM is set in flags). To solve this: 1. We block all signals ++ around the rfork system call and unblock them afterwards in ++ the parent and in the child (but only after changing the stack ++ pointer). 2. The child accesses only values passed in registers ++ and on its own stack. This way, if the parent is scheduled to ++ run first, and handles a signal, it will not affect the child; ++ and if the child runs first, and handles a signal, it will use ++ the child's stack and not affect the parent. ++*/ ++ ++ .text ++ENTRY (__start_thread) ++ ++ /* Insert the argument onto the new aligned stack. */ ++ andq $-16,%rsi ++ subq $16,%rsi ++ movq %rcx,8(%rsi) ++ ++ /* Save the function pointer. It will be popped off in the child */ ++ movq %rdx,0(%rsi) ++ ++ testq $32, %rdi /* flags & RFMEM */ ++ jnz L(complex) ++ ++ /* Do the system call. */ ++ movl $SYS_ify(rfork),%eax ++ /* End FDE now, because in the child the unwind info will be ++ wrong. */ ++ cfi_endproc; ++ syscall /* rdi and rsi are extra preserved */ ++ ++ jb SYSCALL_ERROR_LABEL ++ ++ testq %rdx,%rdx /* 0 for the parent and 1 for the child */ ++ jz L(pseudo_end) /* just return in parent */ ++ ++L(thread_start): ++ ++ /* set up stack */ ++ movq %rsi, %rsp ++ ++ /* Clear the frame pointer. The ABI suggests this be done, to mark ++ the outermost frame obviously. */ ++ xorl %ebp, %ebp ++ ++L(thread_start2): ++ ++ /* Set up arguments for the function call. */ ++ popq %rax /* Function to call. */ ++ popq %rdi /* Argument. */ ++ call *%rax ++ ++ /* Call exit with return value from function call. */ ++ movq %rax, %rdi ++ call HIDDEN_JUMPTARGET (_exit) ++ ++ ++/****************************************************************************************************** ++ * ++ * and now the complex one ... ++ * ++ ******************************************************************************************************/ ++ ++L(complex): ++ ++ subq $32, %rsp ++ ++ /* save arguments - flags and stack */ ++ movq %rdi,0(%rsp) ++ movq %rsi,8(%rsp) ++ ++ /* Block all signals. */ ++ orq $-1, %rax ++ movq %rax, 16(%rsp) ++ movq %rax, 24(%rsp) ++ ++ leaq 16(%rsp), %rsi ++ movl $SIG_SETMASK, %edi ++ movq %rsi,%rdx ++ DO_CALL (sigprocmask, 3) ++ jb L(error) ++ ++ /* restore arguments - flags and stack */ ++ movq 0(%rsp),%rdi ++ movq 8(%rsp),%rsi ++ ++ /* Copy mask info into the child's stack. */ ++ ++ subq $16,%rsi ++ movq 16(%rsp),%rcx ++ movq 24(%rsp),%rdx ++ movq %rcx, 0(%rsi) ++ movq %rdx, 8(%rsi) ++ ++ /* Perform the rfork system call. */ ++ DO_CALL (rfork, 1) ++ jb L(error_unmask) ++ ++ /* %rdx is now 0 for the parent and 1 for the child. */ ++ testq %rdx, %rdx ++ jnz L(child) ++ ++ /* Save the child pid, currently in %rax. */ ++ movq %rax, 0(%rsp) ++ ++ /* Restore the previous signal mask. */ ++ movl $SIG_SETMASK, %edi ++ leaq 16(%rsp), %rsi ++ xorl %edx,%edx ++ DO_CALL (sigprocmask, 3) ++ ++ /* Return the child pid, saved on stack. */ ++ movq 0(%rsp), %rax ++ addq $32, %rsp ++L(pseudo_end): ++ ret ++ ++L(error_unmask): ++ ++ /* Save the error code, currently in %rax. */ ++ movq %rax, 0(%rsp) ++ ++ /* Restore the previous signal mask. */ ++ movq $SIG_SETMASK, %rdi ++ leaq 16(%rsp), %rsi ++ xorl %edx,%edx ++ DO_CALL (sigprocmask, 3) ++ ++ /* load saved error code */ ++ movq 0(%rsp), %rax ++ ++L(error): ++ addq $32, %rsp ++ jmp SYSCALL_ERROR_LABEL ++ ++L(child):/* Here we are in the child thread. */ ++ ++ /* set up stack */ ++ movq %rsi, %rsp ++ ++ /* Clear the frame pointer. The ABI suggests this be done, to mark ++ the outermost frame obviously. */ ++ xorl %ebp, %ebp ++ ++ /* Restore the previous signal mask. */ ++ movq $SIG_SETMASK, %rdi ++ xorl %edx,%edx ++ DO_CALL (sigprocmask, 3) ++ ++ addq $16, %rsp ++ jmp L(thread_start2) ++ ++ cfi_startproc; ++ ++PSEUDO_END (__start_thread) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/swapcontext.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/swapcontext.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/swapcontext.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/swapcontext.S 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,32 @@ ++/* swap current context. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++.text ++ENTRY(__swapcontext) ++ clc ++ DO_CALL (swapcontext, 2) ++ jb SYSCALL_ERROR_LABEL ++L(pseudo_end): ++ ret ++ ++PSEUDO_END(__swapcontext) ++ ++weak_alias(__swapcontext, swapcontext) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys/io.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys/io.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys/io.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys/io.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,180 @@ ++/* Copyright (C) 1996, 2000, 2002, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_IO_H ++#define _SYS_IO_H 1 ++ ++#include ++ ++__BEGIN_DECLS ++ ++/* If TURN_ON is TRUE, request for permission to do direct i/o on the ++ port numbers in the range [FROM,FROM+NUM-1]. Otherwise, turn I/O ++ permission off for that range. This call requires root privileges. ++ ++ Portability note: not all kFreeBSD platforms support this call. Most ++ platforms based on the PC I/O architecture probably will, however. */ ++extern int ioperm (unsigned long int __from, unsigned long int __num, ++ int __turn_on) __THROW; ++ ++/* Set the I/O privilege level to LEVEL. If LEVEL>3, permission to ++ access any I/O port is granted. This call requires root ++ privileges. */ ++extern int iopl (int __level) __THROW; ++ ++#if defined __GNUC__ && __GNUC__ >= 2 ++ ++static __inline unsigned char ++inb (unsigned short int port) ++{ ++ unsigned char _v; ++ ++ __asm__ __volatile__ ("inb %w1,%0":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline unsigned char ++inb_p (unsigned short int port) ++{ ++ unsigned char _v; ++ ++ __asm__ __volatile__ ("inb %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline unsigned short int ++inw (unsigned short int port) ++{ ++ unsigned short _v; ++ ++ __asm__ __volatile__ ("inw %w1,%0":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline unsigned short int ++inw_p (unsigned short int port) ++{ ++ unsigned short int _v; ++ ++ __asm__ __volatile__ ("inw %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline unsigned int ++inl (unsigned short int port) ++{ ++ unsigned int _v; ++ ++ __asm__ __volatile__ ("inl %w1,%0":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline unsigned int ++inl_p (unsigned short int port) ++{ ++ unsigned int _v; ++ __asm__ __volatile__ ("inl %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port)); ++ return _v; ++} ++ ++static __inline void ++outb (unsigned char value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outb %b0,%w1": :"a" (value), "Nd" (port)); ++} ++ ++static __inline void ++outb_p (unsigned char value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outb %b0,%w1\noutb %%al,$0x80": :"a" (value), ++ "Nd" (port)); ++} ++ ++static __inline void ++outw (unsigned short int value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outw %w0,%w1": :"a" (value), "Nd" (port)); ++ ++} ++ ++static __inline void ++outw_p (unsigned short int value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outw %w0,%w1\noutb %%al,$0x80": :"a" (value), ++ "Nd" (port)); ++} ++ ++static __inline void ++outl (unsigned int value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outl %0,%w1": :"a" (value), "Nd" (port)); ++} ++ ++static __inline void ++outl_p (unsigned int value, unsigned short int port) ++{ ++ __asm__ __volatile__ ("outl %0,%w1\noutb %%al,$0x80": :"a" (value), ++ "Nd" (port)); ++} ++ ++static __inline void ++insb (unsigned short int port, void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; insb":"=D" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++static __inline void ++insw (unsigned short int port, void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; insw":"=D" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++static __inline void ++insl (unsigned short int port, void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; insl":"=D" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++static __inline void ++outsb (unsigned short int port, const void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; outsb":"=S" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++static __inline void ++outsw (unsigned short int port, const void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; outsw":"=S" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++static __inline void ++outsl (unsigned short int port, const void *addr, unsigned long int count) ++{ ++ __asm__ __volatile__ ("cld ; rep ; outsl":"=S" (addr), ++ "=c" (count):"d" (port), "0" (addr), "1" (count)); ++} ++ ++#endif /* GNU C */ ++ ++__END_DECLS ++#endif /* _SYS_IO_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys/perm.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys/perm.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys/perm.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys/perm.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,43 @@ ++/* Copyright (C) 1996, 1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_PERM_H ++#define _SYS_PERM_H 1 ++ ++#include ++ ++__BEGIN_DECLS ++ ++/* Set port input/output permissions. */ ++extern int ioperm (unsigned long int __from, unsigned long int __num, ++ int __turn_on) __THROW; ++ ++ ++/* Change I/O privilege level. */ ++extern int iopl (int __level) __THROW; ++ ++extern int i386_set_ioperm (unsigned long int __from, unsigned long int __num, ++ int __turn_on) __THROW; ++ ++/* Retrieve a contiguous range of port input/output permissions. */ ++extern int i386_get_ioperm (unsigned long int __from, unsigned long int *__num, ++ int *__turned_on) __THROW; ++ ++__END_DECLS ++ ++#endif /* _SYS_PERM_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys_fork.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys_fork.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys_fork.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sys_fork.S 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,35 @@ ++/* Copyright (C) 1991-1992, 1994-1995, 1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++.text; ++ENTRY (__syscall_fork) ++ DO_CALL (fork, 0) ++ jb SYSCALL_ERROR_LABEL; ++ /* R1 is now 0 for the parent and 1 for the child. Decrement it to ++ make it -1 (all bits set) for the parent, and 0 (no bits set) ++ for the child. Then AND it with R0, so the parent gets ++ R0&-1==R0, and the child gets R0&0==0. */ ++ ++ decq %rdx ++ andq %rdx, %rax ++ ++L(pseudo_end): ++ ret ++PSEUDO_END (__syscall_fork) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysarch.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysarch.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysarch.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysarch.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,48 @@ ++/* Parameters for the architecture specific system call. amd64 version. ++ Copyright (C) 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYSARCH_H ++#define _SYSARCH_H 1 ++ ++#include ++ ++/* Function that can be used as first argument to 'sysarch'. */ ++ ++#define I386_GET_FSBASE 7 ++#define I386_SET_FSBASE 8 ++#define I386_GET_GSBASE 9 ++#define I386_SET_GSBASE 10 ++ ++/* Leave space for 0-127 for to avoid translating syscalls */ ++#define AMD64_GET_FSBASE 128 ++#define AMD64_SET_FSBASE 129 ++#define AMD64_GET_GSBASE 130 ++#define AMD64_SET_GSBASE 131 ++ ++__BEGIN_DECLS ++ ++extern int sysarch (int __cmd, void *__arg); ++ ++#ifdef _LIBC ++extern int __sysarch (int __cmd, void *__arg); ++#endif ++ ++__END_DECLS ++ ++#endif /* _SYSARCH_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/syscall.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/syscall.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/syscall.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/syscall.S 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,30 @@ ++/* Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Modification for FreeBSD contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++ .text ++ENTRY (syscall) ++ movq %rcx, %r10 ++ movl $SYS_ify (syscall), %eax ++ syscall ++ jb SYSCALL_ERROR_LABEL ++L(pseudo_end): ++ ret ++PSEUDO_END (syscall) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysdep.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysdep.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysdep.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysdep.S 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,40 @@ ++/* Copyright (C) 2001, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++/* The following code is only used in the shared library when we ++ compile the reentrant version. Otherwise each system call defines ++ each own version. */ ++ ++#ifndef PIC ++ ++/* The syscall stubs jump here when they detect an error. ++ The code for Linux is almost identical to the canonical Unix ++ code, except that the error number in %rax is negated. */ ++ ++#undef CALL_MCOUNT ++#define CALL_MCOUNT /* Don't insert the profiling call, it clobbers %rax. */ ++ ++ .text ++ENTRY (__syscall_error) ++ ++#define __syscall_error __syscall_error_1 ++#include ++ ++#endif /* !PIC */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysdep.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysdep.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysdep.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/sysdep.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,193 @@ ++/* Copyright (C) 2001,02,03,04 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Modification for FreeBSD contributed by Petr Salinger, 2006. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _KFREEBSD_X86_64_SYSDEP_H ++#define _KFREEBSD_X86_64_SYSDEP_H 1 ++ ++/* There is some commonality. */ ++#include ++#include ++#include ++#include ++ ++#ifdef IS_IN_rtld ++# include /* Defines RTLD_PRIVATE_ERRNO. */ ++#endif ++ ++ ++#ifdef __ASSEMBLER__ ++ ++/* We don't want the label for the error handle to be global when we define ++ it here. */ ++#ifdef PIC ++# define SYSCALL_ERROR_LABEL 0f ++#else ++# define SYSCALL_ERROR_LABEL syscall_error ++#endif ++ ++#undef PSEUDO ++#define PSEUDO(name, syscall_name, args) \ ++ .text; \ ++ ENTRY (name) \ ++ DO_CALL (syscall_name, args); \ ++ jb SYSCALL_ERROR_LABEL; \ ++ L(pseudo_end): ++ ++#undef PSEUDO_END ++#define PSEUDO_END(name) \ ++ SYSCALL_ERROR_HANDLER \ ++ END (name) ++ ++#undef PSEUDO_NOERRNO ++#define PSEUDO_NOERRNO(name, syscall_name, args) \ ++ .text; \ ++ ENTRY (name) \ ++ DO_CALL (syscall_name, args) ++ ++#undef PSEUDO_END_NOERRNO ++#define PSEUDO_END_NOERRNO(name) \ ++ END (name) ++ ++#define ret_NOERRNO ret ++ ++#undef PSEUDO_ERRVAL ++#define PSEUDO_ERRVAL(name, syscall_name, args) \ ++ .text; \ ++ ENTRY (name) \ ++ DO_CALL (syscall_name, args); \ ++ ++#undef PSEUDO_END_ERRVAL ++#define PSEUDO_END_ERRVAL(name) \ ++ END (name) ++ ++#define ret_ERRVAL ret ++ ++#ifndef PIC ++#define SYSCALL_ERROR_HANDLER /* Nothing here; code in sysdep.S is used. */ ++#elif RTLD_PRIVATE_ERRNO ++# define SYSCALL_ERROR_HANDLER \ ++0: \ ++ leaq rtld_errno(%rip), %rcx; \ ++ movl %eax, (%rcx); \ ++ orq $-1, %rax; \ ++ jmp L(pseudo_end); ++#elif USE___THREAD ++# ifndef NOT_IN_libc ++# define SYSCALL_ERROR_ERRNO __libc_errno ++# else ++# define SYSCALL_ERROR_ERRNO errno ++# endif ++# define SYSCALL_ERROR_HANDLER \ ++0: \ ++ movq SYSCALL_ERROR_ERRNO@GOTTPOFF(%rip), %rcx;\ ++ movl %eax, %fs:(%rcx); \ ++ orq $-1, %rax; \ ++ jmp L(pseudo_end); ++#elif defined _LIBC_REENTRANT ++/* Store (%eax) into errno through the GOT. ++ Note that errno occupies only 4 bytes. */ ++# define SYSCALL_ERROR_HANDLER \ ++0: \ ++ pushq %rax; \ ++ cfi_adjust_cfa_offset(8); \ ++ PUSH_ERRNO_LOCATION_RETURN; \ ++ call BP_SYM (__errno_location)@PLT; \ ++ POP_ERRNO_LOCATION_RETURN; \ ++ popq %rdx; \ ++ cfi_adjust_cfa_offset(-8); \ ++ movl %edx, (%rax); \ ++ orq $-1, %rax; \ ++ jmp L(pseudo_end); ++ ++/* A quick note: it is assumed that the call to `__errno_location' does ++ not modify the stack! */ ++#else /* Not _LIBC_REENTRANT. */ ++# define SYSCALL_ERROR_HANDLER \ ++0:movq errno@GOTPCREL(%RIP), %rcx; \ ++ movl %eax, (%rcx); \ ++ orq $-1, %rax; \ ++ jmp L(pseudo_end); ++#endif /* PIC */ ++ ++/* The FreeBSD/amd64 kernel expects the system call parameters in ++ registers according to the following table: ++ ++ syscall number rax ++ arg 1 rdi ++ arg 2 rsi ++ arg 3 rdx ++ arg 4 r10 ++ arg 5 r8 ++ arg 6 r9 ++ ++ The FreeBSD kernel internal syscall usage of registers: ++ ++ preserved: ++ stack pointer rsp ++ C preserved rbx, rbp, r12-r15 ++ some input params rdi, rsi ++ ++ destroyed: ++ return value(s) rax, rdx, eflags ++ return address from syscall rcx ++ eflags from syscall r11 ++ used internally r8-r10 ++ ++ Normal function call, including calls to the system call stub ++ functions in the libc, get the first six parameters passed in ++ registers and the seventh parameter and later on the stack. The ++ register use is as follows: ++ ++ system call number in the DO_CALL macro ++ arg 1 rdi ++ arg 2 rsi ++ arg 3 rdx ++ arg 4 rcx ++ arg 5 r8 ++ arg 6 r9 ++ ++ We have to take care that the stack is aligned to 16 bytes. When ++ called the stack is not aligned since the return address has just ++ been pushed. ++ ++*/ ++ ++#undef DO_CALL ++#define DO_CALL(syscall_name, args) \ ++ DOARGS_##args \ ++ movl $SYS_ify (syscall_name), %eax; \ ++ syscall; ++ ++#define DOARGS_0 /* nothing */ ++#define DOARGS_1 /* nothing */ ++#define DOARGS_2 /* nothing */ ++#define DOARGS_3 /* nothing */ ++#define DOARGS_4 movq %rcx, %r10; ++#define DOARGS_5 DOARGS_4 ++#define DOARGS_6 DOARGS_5 ++#define DOARGS_7 DOARGS_6 ++#define DOARGS_8 DOARGS_7 ++ ++#else /* !__ASSEMBLER__ */ ++ ++#include ++ ++#endif /* __ASSEMBLER__ */ ++ ++#endif /* _KFREEBSD_X86_64_SYSDEP_H */ +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ucontext_i.h ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ucontext_i.h +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ucontext_i.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/ucontext_i.h 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,38 @@ ++/* Offsets needed in the makecontext() function implementation. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* Offsets of the fields in the ucontext_t structure. */ ++ ++#define oRDI 24 ++#define oRSI 32 ++#define oRDX 40 ++#define oRCX 48 ++#define oR8 56 ++#define oR9 64 ++ ++#define oRAX 72 ++#define oRBX 80 ++#define oRBP 88 ++ ++#define oRIP 176 ++#define oRSP 200 ++ ++#define oLINK 816 ++#define oSS_SP 824 ++#define oSS_SIZE 832 +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/vfork.S ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/vfork.S +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/vfork.S 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/x86_64/vfork.S 2006-10-18 09:59:58.000000000 +0200 +@@ -0,0 +1,58 @@ ++/* Copyright (C) 1999, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++ ++/* Clone the calling process, but without copying the whole address space. ++ The calling process is suspended until the new process exits or is ++ replaced by a call to `execve'. Return -1 for errors, 0 to the new process, ++ and the process ID of the new process to the old process. */ ++ ++ENTRY (__vfork) ++ ++ /* Pop the return PC value into ESI. */ ++ popq %rsi ++ cfi_adjust_cfa_offset(-8) ++ ++ /* Perform the system call. */ ++ DO_CALL (vfork, 0) ++ jb L(error) /* Branch forward if it failed. */ ++ ++ /* In the parent process, %rdx == 0, %rax == child pid. */ ++ /* In the child process, %rdx == 1, %rax == parent pid. */ ++ ++ /* Change %rax to be 0 in the child process. */ ++ decq %rdx ++ andq %rdx, %rax ++ ++ /* Jump to the return PC. */ ++ jmp *%rsi ++ ++L(error): ++ /* Push back the return PC. */ ++ pushq %rsi ++ cfi_adjust_cfa_offset(8) ++ ++ /* Branch to the error handler, hidden in PSEUDO_END. */ ++ jmp SYSCALL_ERROR_LABEL ++L(pseudo_end): ++ ret ++PSEUDO_END (__vfork) ++libc_hidden_def (__vfork) ++ ++weak_alias (__vfork, vfork) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/xmknod.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/xmknod.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/xmknod.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/xmknod.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,48 @@ ++/* xmknod call using old-style Unix mknod and mkfifo system calls. ++ Copyright (C) 1991, 1993, 1995-1997, 2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++extern int __syscall_mknod (const char *, mode_t, dev_t); ++extern int __mkfifo (const char *, mode_t); ++ ++/* Create a device file named PATH, with permission and special bits MODE ++ and device number DEV (which can be constructed from major and minor ++ device numbers with the `makedev' macro above). */ ++int ++__xmknod (int vers, const char *path, mode_t mode, dev_t *dev) ++{ ++ if (vers != _MKNOD_VER) ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++ ++ /* The FreeBSD mknod() system call cannot be used to create FIFOs; we ++ must use the mkfifo() system call for this purpose. */ ++ if (S_ISFIFO (mode)) ++ return __mkfifo (path, mode & ~S_IFMT); ++ ++ return __syscall_mknod (path, mode, *dev); ++} ++libc_hidden_def (__xmknod) ++ ++weak_alias (__xmknod, _xmknod) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/xstat.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/xstat.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/xstat.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/xstat.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,49 @@ ++/* xstat using FreeBSD stat, nstat system calls. ++ Copyright (C) 1991,1995-1997,2000,2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#include "stat16conv.c" ++ ++int ++__xstat (int vers, const char *file, struct stat *buf) ++{ ++ if (__builtin_expect (vers == _STAT_VER, 1)) ++ { ++ struct stat16 buf16; ++ int result = __syscall_stat (CHECK_STRING (file), __ptrvalue (&buf16)); ++ if (result == 0) ++ stat16_to_stat (&buf16, buf); ++ return result; ++ } ++ else if (__builtin_expect (vers == _STAT_VER_stat, 1)) ++ return __syscall_stat (CHECK_STRING (file), ++ CHECK_1 ((struct stat16 *) buf)); ++ else ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++} ++hidden_def (__xstat) ++ ++weak_alias (__xstat, _xstat) +diff -x .svn -Nurd null/sysdeps/unix/bsd/bsd4.4/kfreebsd/xstat64.c ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/xstat64.c +--- null/sysdeps/unix/bsd/bsd4.4/kfreebsd/xstat64.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/bsd/bsd4.4/kfreebsd/xstat64.c 2006-10-18 09:59:59.000000000 +0200 +@@ -0,0 +1,44 @@ ++/* xstat using FreeBSD stat, nstat system calls. ++ Copyright (C) 1991,1995-1997,2000,2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#include "stat16conv.c" ++ ++int ++__xstat64 (int vers, const char *file, struct stat64 *buf) ++{ ++ if (__builtin_expect (vers == _STAT_VER, 1)) ++ { ++ struct stat16 buf16; ++ int result = __syscall_stat (CHECK_STRING (file), __ptrvalue (&buf16)); ++ if (result == 0) ++ stat16_to_stat64 (&buf16, buf); ++ return result; ++ } ++ else ++ { ++ __set_errno (EINVAL); ++ return -1; ++ } ++} ++hidden_def (__xstat64) --- glibc-2.5.orig/debian/patches/locale/preprocessor-collate.diff +++ glibc-2.5/debian/patches/locale/preprocessor-collate.diff @@ -0,0 +1,331 @@ +Allow preprocessor-like directives. These keywords were already +defined in locale/programs/locfile-kw.h, an implementation for +'define', 'undef', 'ifdef', 'else' and 'endif' is now provided in +locale/programs/ld-collate.c. For the moment, 'ifndef' and 'elif' +are not implemented because they do not appear in locfile-kw.h. +This patch is harmless, it only adds new keywords. + +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: BZ686 +# DP: Date: 2006-01-08 + +Index: locale/programs/ld-collate.c +=================================================================== +--- locale/programs/ld-collate.c.orig ++++ locale/programs/ld-collate.c +@@ -159,6 +159,24 @@ + size_t line; + }; + ++/* Data type for toggles. */ ++struct toggle_list_t; ++ ++struct toggle_list_t ++{ ++ const char *name; ++ ++ /* Predecessor in the list. */ ++ struct toggle_list_t *last; ++ ++ /* This flag is set when a keyword is undefined. */ ++ int is_undefined; ++ ++ /* Where does the branch come from. */ ++ const char *file; ++ size_t line; ++}; ++ + /* Sparse table of struct element_t *. */ + #define TABLE wchead_table + #define ELEMENT struct element_t * +@@ -212,6 +230,12 @@ + /* This value is used when handling ellipsis. */ + struct element_t ellipsis_weight; + ++ /* Known keywords. */ ++ struct toggle_list_t *defined_keywords; ++ ++ /* This is a stack of . */ ++ struct toggle_list_t *flow_control; ++ + /* Known collating elements. */ + hash_table elem_table; + +@@ -1454,6 +1478,56 @@ + } + + ++static struct token * ++flow_skip (struct linereader *ldfile, const struct charmap_t *charmap, ++ struct locale_collate_t *collate) ++{ ++ int level = 0; ++ struct token *now; ++ enum token_t nowtok; ++ while (1) ++ { ++ lr_ignore_rest (ldfile, 0); ++ now = lr_token (ldfile, charmap, NULL, NULL, 0); ++ nowtok = now->tok; ++ if (nowtok == tok_eof) ++ break; ++ else if (nowtok == tok_ifdef || nowtok == tok_ifndef) ++ ++level ; ++ else if (nowtok == tok_else) ++ { ++ if (strcmp (collate->flow_control->name, "else") == 0) ++ lr_error (ldfile, ++ _("%s: `else' statement at `%s:%Zu' cannot be followed by another `else' statement"), ++ "LC_COLLATE", collate->flow_control->name, collate->flow_control->line); ++ if (level == 0) ++ { ++ collate->flow_control->name = "else"; ++ collate->flow_control->file = ldfile->fname; ++ collate->flow_control->line = ldfile->lineno; ++ break; ++ } ++ } ++ else if (nowtok == tok_endif) ++ { ++ if (level == 0) ++ { ++ collate->flow_control = collate->flow_control->last; ++ break; ++ } ++ --level ; ++ } ++ } ++ if (nowtok == tok_eof) ++ WITH_CUR_LOCALE (error (0, 0, _("\ ++%s: unterminated `%s' flow control beginning at %s:%Zu"), ++ "LC_COLLATE", collate->flow_control->name, ++ collate->flow_control->file, ++ collate->flow_control->line)); ++ return now; ++} ++ ++ + static void + collate_startup (struct linereader *ldfile, struct localedef_t *locale, + struct localedef_t *copy_locale, int ignore_content) +@@ -3783,6 +3857,205 @@ + repertoire, result, nowtok); + break; + ++ case tok_define: ++ /* Ignore the rest of the line if we don't need the input of ++ this line. */ ++ if (ignore_content) ++ { ++ lr_ignore_rest (ldfile, 0); ++ break; ++ } ++ ++ arg = lr_token (ldfile, charmap, result, NULL, verbose); ++ if (arg->tok != tok_ident) ++ goto err_label; ++ else ++ { ++ struct toggle_list_t *runp = collate->defined_keywords; ++ char *name; ++ ++ while (runp != NULL) ++ if (strncmp (runp->name, arg->val.str.startmb, ++ arg->val.str.lenmb) == 0 ++ && runp->name[arg->val.str.lenmb] == '\0') ++ break; ++ else ++ runp = runp->last; ++ ++ if (runp != NULL && runp->is_undefined == 0) ++ { ++ lr_ignore_rest (ldfile, 0); ++ break; ++ } ++ ++ if (runp == NULL) ++ { ++ runp = (struct toggle_list_t *) xcalloc (1, sizeof (*runp)); ++ runp->last = collate->defined_keywords; ++ collate->defined_keywords = runp; ++ } ++ else ++ { ++ free ((char *) runp->name); ++ runp->is_undefined = 0; ++ } ++ ++ name = (char *) xmalloc (arg->val.str.lenmb + 1); ++ memcpy (name, arg->val.str.startmb, arg->val.str.lenmb); ++ name[arg->val.str.lenmb] = '\0'; ++ runp->name = name; ++ } ++ lr_ignore_rest (ldfile, 1); ++ break; ++ ++ case tok_undef: ++ /* Ignore the rest of the line if we don't need the input of ++ this line. */ ++ if (ignore_content) ++ { ++ lr_ignore_rest (ldfile, 0); ++ break; ++ } ++ ++ arg = lr_token (ldfile, charmap, result, NULL, verbose); ++ if (arg->tok != tok_ident) ++ goto err_label; ++ else ++ { ++ struct toggle_list_t *runp = collate->defined_keywords; ++ while (runp != NULL) ++ if (strncmp (runp->name, arg->val.str.startmb, ++ arg->val.str.lenmb) == 0 ++ && runp->name[arg->val.str.lenmb] == '\0') ++ { ++ runp->is_undefined = 1; ++ break; ++ } ++ else ++ runp = runp->last; ++ } ++ lr_ignore_rest (ldfile, 1); ++ break; ++ ++ case tok_ifdef: ++ /* Ignore the rest of the line if we don't need the input of ++ this line. */ ++ if (ignore_content) ++ { ++ lr_ignore_rest (ldfile, 0); ++ break; ++ } ++ ++ arg = lr_token (ldfile, charmap, result, NULL, verbose); ++ if (arg->tok != tok_ident) ++ goto err_label; ++ else ++ { ++ struct toggle_list_t *runp = collate->defined_keywords; ++ struct toggle_list_t *flow = (struct toggle_list_t *) xcalloc (1, sizeof (*runp)); ++ flow->name = "ifdef"; ++ flow->file = ldfile->fname; ++ flow->line = ldfile->lineno; ++ flow->last = collate->flow_control; ++ collate->flow_control = flow; ++ ++ while (runp != NULL) ++ if (strncmp (runp->name, arg->val.str.startmb, ++ arg->val.str.lenmb) == 0 ++ && runp->name[arg->val.str.lenmb] == '\0') ++ break; ++ else ++ runp = runp->last; ++ ++ if (runp == NULL) ++ { ++ now = flow_skip(ldfile, charmap, collate); ++ if (now->tok == tok_eof) ++ WITH_CUR_LOCALE (error (0, 0, _("\ ++%s: unterminated `%s' flow control"), "LC_COLLATE", collate->flow_control->name)); ++ } ++ } ++ lr_ignore_rest (ldfile, 1); ++ break; ++ ++ case tok_ifndef: ++ /* Ignore the rest of the line if we don't need the input of ++ this line. */ ++ if (ignore_content) ++ { ++ lr_ignore_rest (ldfile, 0); ++ break; ++ } ++ ++ arg = lr_token (ldfile, charmap, result, NULL, verbose); ++ if (arg->tok != tok_ident) ++ goto err_label; ++ else ++ { ++ struct toggle_list_t *runp = collate->defined_keywords; ++ struct toggle_list_t *flow = (struct toggle_list_t *) xcalloc (1, sizeof (*runp)); ++ flow->name = "ifndef"; ++ flow->file = ldfile->fname; ++ flow->line = ldfile->lineno; ++ flow->last = collate->flow_control; ++ collate->flow_control = flow; ++ ++ while (runp != NULL) ++ if (strncmp (runp->name, arg->val.str.startmb, ++ arg->val.str.lenmb) == 0 ++ && runp->name[arg->val.str.lenmb] == '\0') ++ break; ++ else ++ runp = runp->last; ++ ++ if (runp != NULL) ++ { ++ now = flow_skip(ldfile, charmap, collate); ++ if (now->tok == tok_eof) ++ WITH_CUR_LOCALE (error (0, 0, _("\ ++%s: unterminated `%s' flow control"), "LC_COLLATE", collate->flow_control->name)); ++ } ++ } ++ lr_ignore_rest (ldfile, 1); ++ break; ++ ++ case tok_else: ++ /* Ignore the rest of the line if we don't need the input of ++ this line. */ ++ if (ignore_content) ++ { ++ lr_ignore_rest (ldfile, 0); ++ break; ++ } ++ ++ if (strcmp (collate->flow_control->name, "else") == 0) ++ lr_error (ldfile, ++ _("%s: `else' statement at `%s:%Zu' cannot be followed by another `else' statement"), ++ "LC_COLLATE", collate->flow_control->name, collate->flow_control->line); ++ collate->flow_control->name = "else"; ++ collate->flow_control->file = ldfile->fname; ++ collate->flow_control->line = ldfile->lineno; ++ now = flow_skip(ldfile, charmap, collate); ++ if (now->tok == tok_eof) ++ WITH_CUR_LOCALE (error (0, 0, _("\ ++%s: unterminated `%s' flow control"), "LC_COLLATE", collate->flow_control->name)); ++ break; ++ ++ case tok_endif: ++ /* Ignore the rest of the line if we don't need the input of ++ this line. */ ++ if (ignore_content) ++ { ++ lr_ignore_rest (ldfile, 0); ++ break; ++ } ++ ++ if (collate->flow_control == NULL) ++ goto err_label; ++ else ++ collate->flow_control = collate->flow_control->last; ++ break; ++ + case tok_end: + /* Next we assume `LC_COLLATE'. */ + if (!ignore_content) +@@ -3812,6 +4085,13 @@ + else if (state == 5) + WITH_CUR_LOCALE (error (0, 0, _("\ + %s: missing `reorder-sections-end' keyword"), "LC_COLLATE")); ++ if (collate->flow_control != NULL ++ && strcmp(collate->flow_control->file, ldfile->fname) == 0) ++ WITH_CUR_LOCALE (error (0, 0, _("\ ++%s: unterminated `%s' flow control beginning at %s:%Zu"), ++ "LC_COLLATE", collate->flow_control->name, ++ collate->flow_control->file, ++ collate->flow_control->line)); + } + arg = lr_token (ldfile, charmap, result, NULL, verbose); + if (arg->tok == tok_eof) --- glibc-2.5.orig/debian/patches/locale/LC_COLLATE-keywords-ordering.diff +++ glibc-2.5/debian/patches/locale/LC_COLLATE-keywords-ordering.diff @@ -0,0 +1,138 @@ +Be less strict about keywords ordering in LC_COLLATE section, to +ease definition of new scripts. + +Submitted upstream: BZ690 + +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: BZ690 +# DP: Date: 2006-01-08 + +Index: locale/programs/ld-collate.c +=================================================================== +--- locale/programs/ld-collate.c.orig ++++ locale/programs/ld-collate.c +@@ -2719,7 +2719,6 @@ + + if (nowtok == tok_copy) + { +- state = 2; + now = lr_token (ldfile, charmap, result, NULL, verbose); + if (now->tok != tok_string) + { +@@ -2793,14 +2792,23 @@ + switch (nowtok) + { + case tok_copy: +- /* Allow copying other locales. */ ++ /* Ignore the rest of the line if we don't need the input of ++ this line. */ ++ if (ignore_content) ++ { ++ lr_ignore_rest (ldfile, 0); ++ break; ++ } ++ + now = lr_token (ldfile, charmap, result, NULL, verbose); + if (now->tok != tok_string) + goto err_label; + +- if (! ignore_content) +- load_locale (LC_COLLATE, now->val.str.startmb, repertoire_name, +- charmap, result); ++ if (state == 1 || state == 3 || state == 5) ++ goto err_label; ++ ++ load_locale (LC_COLLATE, now->val.str.startmb, repertoire_name, ++ charmap, result); + + lr_ignore_rest (ldfile, 1); + break; +@@ -2814,9 +2822,6 @@ + break; + } + +- if (state != 0) +- goto err_label; +- + arg = lr_token (ldfile, charmap, result, NULL, verbose); + if (arg->tok != tok_number) + goto err_label; +@@ -2837,7 +2842,7 @@ + break; + } + +- if (state != 0) ++ if (state == 1 || state == 3 || state == 5) + goto err_label; + + arg = lr_token (ldfile, charmap, result, repertoire, verbose); +@@ -2884,7 +2889,7 @@ + break; + } + +- if (state != 0 && state != 2) ++ if (state == 1 || state == 3 || state == 5) + goto err_label; + + arg = lr_token (ldfile, charmap, result, repertoire, verbose); +@@ -2953,7 +2958,7 @@ + break; + } + +- if (state != 0 && state != 2) ++ if (state == 1 || state == 3 || state == 5) + goto err_label; + + arg = lr_token (ldfile, charmap, result, repertoire, verbose); +@@ -3101,7 +3106,7 @@ + break; + } + +- if (state != 0) ++ if (state == 1 || state == 3 || state == 5) + goto err_label; + + arg = lr_token (ldfile, charmap, result, repertoire, verbose); +@@ -3217,7 +3222,7 @@ + break; + } + +- if (state != 0 && state != 1) ++ if (state == 3 || state == 5) + goto err_label; + state = 1; + +@@ -3388,8 +3393,12 @@ + was_ellipsis = tok_none; + } + } +- else if (state != 2 && state != 3) +- goto err_label; ++ else if (state == 5) ++ { ++ WITH_CUR_LOCALE (error (0, 0, _("\ ++%s: missing `reorder-sections-end' keyword"), "LC_COLLATE")); ++ state = 6; ++ } + state = 3; + + arg = lr_token (ldfile, charmap, result, repertoire, verbose); +@@ -3524,8 +3533,6 @@ + %s: missing `reorder-end' keyword"), "LC_COLLATE")); + state = 4; + } +- else if (state != 2 && state != 4) +- goto err_label; + state = 5; + + /* Get the name of the sections we are adding after. */ +@@ -4060,7 +4067,7 @@ + /* Next we assume `LC_COLLATE'. */ + if (!ignore_content) + { +- if (state == 0) ++ if (state == 0 && nrules == 0) + /* We must either see a copy statement or have + ordering values. */ + lr_error (ldfile, --- glibc-2.5.orig/debian/patches/locale/fix-exhausted-memory.diff +++ glibc-2.5/debian/patches/locale/fix-exhausted-memory.diff @@ -0,0 +1,33 @@ +Localedef fails if a symbol name has exactly 55 characters in charmap file. + +This bug has not been submitted upstream yet. + +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: not submitted +# DP: Date: 2006-01-08 + +Index: locale/programs/linereader.c +=================================================================== +--- locale/programs/linereader.c.orig ++++ locale/programs/linereader.c +@@ -523,8 +523,8 @@ + { + lr->token.tok = tok_bsymbol; + +- buf[bufact] = '\0'; + buf = xrealloc (buf, bufact + 1); ++ buf[bufact] = '\0'; + + lr->token.val.str.startmb = buf; + lr->token.val.str.lenmb = bufact - 1; +@@ -576,8 +576,8 @@ + { + lr->token.tok = tok_ident; + +- buf[bufact] = '\0'; + buf = xrealloc (buf, bufact + 1); ++ buf[bufact] = '\0'; + + lr->token.val.str.startmb = buf; + lr->token.val.str.lenmb = bufact; --- glibc-2.5.orig/debian/patches/locale/LC_IDENTIFICATION-optional-fields.diff +++ glibc-2.5/debian/patches/locale/LC_IDENTIFICATION-optional-fields.diff @@ -0,0 +1,35 @@ +In LC_IDENTIFICATION, audience, application and abbreviation keywords +are optional, thus do not report an error if they are not defined. + +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: not submitted +# DP: Date: 2006-01-08 + +Index: locale/programs/ld-identification.c +=================================================================== +--- locale/programs/ld-identification.c.orig ++++ locale/programs/ld-identification.c +@@ -146,6 +146,9 @@ + "LC_IDENTIFICATION", #cat)); \ + identification->cat = ""; \ + } ++#define TEST_ELEM_OPT(cat) \ ++ if (identification->cat == NULL) \ ++ identification->cat = ""; \ + + TEST_ELEM (title); + TEST_ELEM (source); +@@ -156,9 +159,9 @@ + TEST_ELEM (fax); + TEST_ELEM (language); + TEST_ELEM (territory); +- TEST_ELEM (audience); +- TEST_ELEM (application); +- TEST_ELEM (abbreviation); ++ TEST_ELEM_OPT (audience); ++ TEST_ELEM_OPT (application); ++ TEST_ELEM_OPT (abbreviation); + TEST_ELEM (revision); + TEST_ELEM (date); + --- glibc-2.5.orig/debian/patches/locale/fix-LC_COLLATE-rules.diff +++ glibc-2.5/debian/patches/locale/fix-LC_COLLATE-rules.diff @@ -0,0 +1,91 @@ +Fix rules definitions in LC_COLLATE. Backward/forward rules were +sometimes affected to a wrong section, some rules could wrongly be +declared as identical, and localedef segfaults are also fixed. +Special French collation now works as described in ISO-14651. + +Submitted upstream: BZ645 + +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: BZ645 +# DP: Status Details: depends on #310635 +# DP: Date: 2006-01-08 + +Index: locale/programs/ld-collate.c +=================================================================== +--- locale/programs/ld-collate.c.orig ++++ locale/programs/ld-collate.c +@@ -1522,6 +1522,7 @@ + int i; + int need_undefined = 0; + struct section_list *sect; ++ enum coll_sort_rule *orules; + int ruleidx; + int nr_wide_elems = 0; + +@@ -1533,17 +1534,28 @@ + "LC_COLLATE")); + return; + } ++ if (nrules == 0) ++ { ++ /* An error message has already been printed: ++ empty category description not allowed. */ ++ return; ++ } ++ + + /* If this assertion is hit change the type in `element_t'. */ + assert (nrules <= sizeof (runp->used_in_level) * 8); + + /* Make sure that the `position' rule is used either in all sections + or in none. */ ++ sect = collate->sections; ++ while (sect != NULL && sect->rules == NULL) ++ sect = sect->next; ++ orules = sect->rules; + for (i = 0; i < nrules; ++i) + for (sect = collate->sections; sect != NULL; sect = sect->next) + if (sect->rules != NULL + && ((sect->rules[i] & sort_position) +- != (collate->sections->rules[i] & sort_position))) ++ != (orules[i] & sort_position))) + { + WITH_CUR_LOCALE (error (0, 0, _("\ + %s: `position' must be used for a specific level in all sections or none"), +@@ -1838,7 +1850,7 @@ + + while (osect != sect) + if (osect->rules != NULL +- && memcmp (osect->rules, sect->rules, nrules) == 0) ++ && memcmp (osect->rules, sect->rules, nrules * sizeof (*osect->rules)) == 0) + break; + else + osect = osect->next; +@@ -3187,12 +3199,15 @@ + { + /* Insert sp in the collate->sections list, + right after collate->current_section. */ +- if (collate->current_section == NULL) ++ if (collate->sections == NULL) ++ collate->sections = collate->current_section = sp; ++ else if (collate->current_section == NULL) + collate->current_section = sp; + else + { + sp->next = collate->current_section->next; + collate->current_section->next = sp; ++ collate->current_section = sp; + } + } + +@@ -3383,6 +3398,9 @@ + no_error = 0; + } + } ++ /* Update current section. */ ++ if (collate->cursor != NULL) ++ collate->current_section = collate->cursor->section; + + lr_ignore_rest (ldfile, no_error); + } --- glibc-2.5.orig/debian/patches/locale/check-unknown-symbols.diff +++ glibc-2.5/debian/patches/locale/check-unknown-symbols.diff @@ -0,0 +1,35 @@ +Check for unknown symbols in collation rules. This is useful to detect +broken locales since unknown symbols are always wrong. + +This request has not been submitted upstream yet. + +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: not submitted +# DP: Date: 2006-01-08 + +Index: glibc-2.3.5/locale/programs/ld-collate.c +=================================================================== +--- glibc-2.3.5.orig/locale/programs/ld-collate.c ++++ glibc-2.3.5/locale/programs/ld-collate.c +@@ -3524,8 +3524,20 @@ + } + else if (arg != NULL) + { ++ void *ptr = NULL; + symstr = arg->val.str.startmb; + symlen = arg->val.str.lenmb; ++ if (state != 5 ++ && find_entry (&charmap->char_table, symstr, symlen, &ptr) != 0 ++ && (repertoire == NULL || ++ find_entry (&repertoire->char_table, symstr, symlen, &ptr) != 0) ++ && find_entry (&collate->elem_table, symstr, symlen, &ptr) != 0 ++ && find_entry (&collate->sym_table, symstr, symlen, &ptr) != 0) ++ { ++ lr_error (ldfile, _("%s: symbol `%.*s' not known"), ++ "LC_COLLATE", (int) symlen, symstr); ++ lr_ignore_rest (ldfile, 0); ++ } + } + else + { --- glibc-2.5.orig/debian/patches/locale/locale-print-LANGUAGE.diff +++ glibc-2.5/debian/patches/locale/locale-print-LANGUAGE.diff @@ -0,0 +1,30 @@ +Comments tell that LANG has to be the first value, and LC_ALL the last +one. Thus LANGUAGE is printed between them. + +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: not submitted +# DP: Date: 2006-01-08 + +Index: locale/programs/locale.c +=================================================================== +--- locale/programs/locale.c.orig ++++ locale/programs/locale.c +@@ -751,6 +751,7 @@ + { + size_t cat_no; + const char *lcall = getenv ("LC_ALL"); ++ const char *language = getenv ("LANGUAGE"); + const char *lang = getenv ("LANG") ? : ""; + + auto void get_source (const char *name); +@@ -769,6 +770,9 @@ + /* LANG has to be the first value. */ + printf ("LANG=%s\n", lang); + ++ if (language != NULL && getenv ("POSIXLY_CORRECT") == NULL) ++ printf ("LANGUAGE=%s\n", language); ++ + /* Now all categories in an unspecified order. */ + for (cat_no = 0; cat_no < NCATEGORIES; ++cat_no) + if (cat_no != LC_ALL) --- glibc-2.5.orig/debian/patches/locale/fix-C-first_weekday.diff +++ glibc-2.5/debian/patches/locale/fix-C-first_weekday.diff @@ -0,0 +1,27 @@ +#! /bin/sh -e + +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: #327025 C locale has bad default for _NL_TIME_FIRST_WEEKDAY +# DP: Also fixes the 3rd value of the week keyword. +# DP: Related bugs: #327025 BZ181 +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Petter Reinholdtsen +# DP: Upstream status: BZ181 +# DP: Date: 2006-01-10 + +Index: locale/C-time.c +=================================================================== +--- locale/C-time.c.orig ++++ locale/C-time.c +@@ -135,10 +135,10 @@ + { .wstr = (const uint32_t *) L"" }, + { .string = "\7" }, + { .word = 19971130 }, +- { .string = "\4" }, + { .string = "\7" }, + { .string = "\1" }, + { .string = "\1" }, ++ { .string = "\1" }, + { .string = "" }, + { .string = "%a %b %e %H:%M:%S %Z %Y" }, + { .wstr = (const uint32_t *) L"%a %b %e %H:%M:%S %Z %Y" }, --- glibc-2.5.orig/debian/patches/locale/iso3166-RS.diff +++ glibc-2.5/debian/patches/locale/iso3166-RS.diff @@ -0,0 +1,18 @@ +See + http://www.iso.org/iso/en/prods-services/iso3166ma/03updates-on-iso-3166/nlv12-div.html + +Add SERBIA, it has not yet been committed upstream. +Keep SERBIA AND MONTENEGRO for a transition phase. + +Index: glibc-2.3.6/locale/iso-3166.def +=================================================================== +--- glibc-2.3.6.orig/locale/iso-3166.def ++++ glibc-2.3.6/locale/iso-3166.def +@@ -197,6 +197,7 @@ + DEFINE_COUNTRY_CODE ("SAO TOME AND PRINCIPE", ST, STP, 678) + DEFINE_COUNTRY_CODE ("SAUDI ARABIA", SA, SAU, 682) + DEFINE_COUNTRY_CODE ("SENEGAL", SN, SEN, 686) ++DEFINE_COUNTRY_CODE ("SERBIA", RS, SRB, 688) + DEFINE_COUNTRY_CODE ("SERBIA AND MONTENEGRO", CS, SCG, 891) + DEFINE_COUNTRY_CODE ("SEYCHELLES", SC, SYC, 690) + DEFINE_COUNTRY_CODE ("SIERRA LEONE", SL, SLE, 694) --- glibc-2.5.orig/debian/patches/localedata/fix-lang.diff +++ glibc-2.5/debian/patches/localedata/fix-lang.diff @@ -0,0 +1,39 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Fix lang_* fields in LC_ADDRESS +# DP: Related bugs: +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: Not submitted +# DP: Status Details: +# DP: Date: 2006-01-20 + +Index: localedata/locales/tr_TR +=================================================================== +--- localedata/locales/tr_TR.orig ++++ localedata/locales/tr_TR +@@ -1591,10 +1591,10 @@ + country_ab3 "" + % Turkish + lang_name "" +-% tr ++% tur + lang_term "" ++% tur ++lang_lib "" + % tr +-lang_lib "" +-%tr + lang_ab "" + END LC_ADDRESS +Index: localedata/locales/wal_ET +=================================================================== +--- localedata/locales/wal_ET.orig ++++ localedata/locales/wal_ET +@@ -110,7 +110,6 @@ + % country_car unknown + % country_isbn unknown, Need ISO 2108 + lang_name "" +-lang_ab "" + lang_term "" + lang_lib "" + --- glibc-2.5.orig/debian/patches/localedata/dz_BT-collation.diff +++ glibc-2.5/debian/patches/localedata/dz_BT-collation.diff @@ -0,0 +1,2407 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Enhance collation rules for dz_BT. These rules have +# DP: been written by Pema Geyleg and Denis Barbier, based on +# DP: C. Fynn's chart. +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Pema Geyleg and Denis Barbier +# DP: Upstream status: not submitted +# DP: Date: 2006-01-30 + +Index: localedata/locales/dz_BT +=================================================================== +--- localedata/locales/dz_BT.orig ++++ localedata/locales/dz_BT +@@ -56,7 +56,30 @@ + LC_COLLATE + copy "iso14651_t1" + +-script ++% Collation rules written by Pema Geyleg, Pablo Saratxaga and Denis ++% Barbier, based on Dzongkha collation chart provided by Christopher J Fynn ++% at http://www.btinternet.com/~c.fynn/misc/DZ_bt/dzongkha-collate.html ++ ++% Third level ++ ++% Nominal, subjoined or variant forms ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++% Tibetan signs ++collating-symbol ++collating-symbol ++collating-symbol ++ ++% Second level ++collating-symbol ++collating-symbol ++collating-symbol ++ ++% Primary level ++collating-symbol + + % 30 base letters + collating-symbol +@@ -96,669 +119,736 @@ + collating-symbol + collating-symbol + +-% pre-radicals +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% nominal, subjoined or variant forms +-collating-symbol +-collating-symbol +-collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++ ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-symbol ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++% ++collating-symbol ++% ++collating-symbol ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++%%% Not in Fynn's chart ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++% ++collating-symbol ++collating-element from "" ++% ++collating-symbol ++collating-symbol ++collating-symbol ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol + +-% ka-radicals +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% kha-radicals +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +- +-% ga-radicals +-% as there are ambiguous, the next letter has to be added too; +-% so the are in fact double elements: the ga-radical +-% itself, and the following letter. +-collating-symbol % ambiguous +-collating-symbol % ambiguous +-collating-symbol % ambiguous +-collating-symbol % ambiguous +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% nga-radicals +-% as there are ambiguous, the next letter has to be added too; +-% so the are in fact double elements: the nga-radical +-% itself, and the following letter. +-collating-symbol % ambiguous +-collating-symbol % ambiguous +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% ca-radicals +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% cha-radicals +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +- +-% ja-radicals +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% nya-radicals +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% ta-radicals +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% tha-radicals +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +- +-% da-radicals +-% as there are ambiguous, the next letter has to be added too; +-% so the are in fact double elements: the da-radical +-% itself, and the following letter. +-collating-symbol % ambiguous +-collating-symbol % ambiguous +-collating-symbol % ambiguous +-collating-symbol % ambiguous +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% na-radicals +-% as there are ambiguous, the next letter has to be added too; +-% so the are in fact double elements: the na-radical +-% itself, and the following letter. +-collating-symbol % ambiguous +-collating-symbol % ambiguous +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% pa-radicals +-% as there are ambiguous, the next letter has to be added too; +-% so the are in fact double elements: the pa-radical +-% itself, and the following letter. +-collating-symbol % ambiguous in Dzongkha +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% pha-radicals +-collating-symbol +-collating-element from "" +- +-% ba-radicals +-% as there are ambiguous, the next letter has to be added too; +-% so the are in fact double elements: the ba-radical +-% itself, and the following letter. +-collating-symbol % ambiguous +-collating-symbol % ambiguous +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% ma-radicals +-% as there are ambiguous, the next letter has to be added too; +-% so the are in fact double elements: the ma-radical +-% itself, and the following letter. +-collating-symbol % ambiguous +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% tsa-radicals +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% tsha-radicals +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +- +-% dza-radicals +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% zha-radicals +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +- +-% za-radicals +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +- +-% ya-radicals +-collating-symbol +-collating-element from "" +- +-% ra-radicals +-% as there are ambiguous, the next letter has to be added too; +-% so the are in fact double elements: the ra-radical +-% itself, and the following letter. +-collating-symbol % ambiguous +-collating-element from "" +- +-% sha-radicals +-collating-symbol +-collating-symbol +-collating-element from "" +-collating-element from "" +- +-% sa-radicals +-% as there are ambiguous, the next letter has to be added too; +-% so the are in fact double elements: the sa-radical +-% itself, and the following letter. +-collating-symbol % ambiguous +-collating-symbol % ambiguous +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" +- +-% ha-radicals +-collating-symbol +-collating-element from "" +- +-% generic definitions +-reorder-after ++reorder-after + + ++ ++ ++ ++ ++ ++ + + reorder-after +- +- +- +- +- +- +- +- +- +- +- +- +- +- ++ ++ ++ ++reorder-after ++ + +-% a better place than after cyrillic ya should be defined + reorder-after ++ + +- +- +- +- +- +- +- +- +- +- ++ ++ ++ + +- +- +- +- +- +- +- +- +- ++ + +- +- +- +- +- +- +- ++ + +- +- +- +- ++ + +- +- ++ + +- +- +- +- +- ++ + +- +- +- +- +- +- ++ + +- +- +- +- +- +- +- +- ++ + +- +- ++ + +- +- +- +- +- +- +- +- +- +- ++ + +- +- +- +- +- +- ++ + +- +- +- ++ + +- ++ + +- +- +- +- +- ++ + +- +- +- ++ + +- +- +- +- +- +- ++ + +- +- ++ + +- +- +- +- ++ + ++ + +- +- ++ + +- +- ++ + ++ + +- ++ + +- ++ + ++ + +- +- ++ + +- +- ++ + +- ++ + ++ ++ + + + + + +-%order_start ;forward;forward;forward;forward,position ++ + +-% specific definitions +-reorder-after +-% digits ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++reorder-end ++ ++script ++ ++order_start ;forward;forward;forward;forward,position + <0>;;IGNORE;IGNORE + <0>;;IGNORE;IGNORE + <1>;;IGNORE;IGNORE +@@ -780,430 +870,580 @@ + <9>;;IGNORE;IGNORE + <9>;;IGNORE;IGNORE + +-% letters +- ;;;IGNORE % ka +- ;;;IGNORE +- "";"";"";IGNORE % kssa +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % kha +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % ga +- ;;;IGNORE +- "";"";"";IGNORE % gha +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % nga +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % ca +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % cha +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % ja +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % nya +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % ta +- ;;;IGNORE +- ;;;IGNORE % tta +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % tha +- ;;;IGNORE +- ;;;IGNORE % ttha +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % da +- ;;;IGNORE +- ;;;IGNORE % dda +- ;;;IGNORE +- "";"";"";IGNORE % dha +- "";"";"";IGNORE +- "";"";"";IGNORE % ddha +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % na +- ;;;IGNORE +- ;;;IGNORE % nna +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % pa +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % pha +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % ba +- ;;;IGNORE +- "";"";"";IGNORE % bha +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % ma +- ;;;IGNORE +- ;;;IGNORE % +- ;;;IGNORE % +- ;;;IGNORE % +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % tsa +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % tsha +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % dza +- ;;;IGNORE +- "";"";"";IGNORE % dzha +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % wa +- ;;;IGNORE +- ;;;IGNORE % fixed wa +- ;;;IGNORE % zha +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % za +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % -a +- ;;;IGNORE +- ;;;IGNORE % ya +- ;;;IGNORE +- ;;;IGNORE % fixed ya +- ;;;IGNORE +- ;;;IGNORE % ra +- ;;;IGNORE +- ;;;IGNORE % fixed ra +- ;;;IGNORE +- ;;;IGNORE % vocalic r +-% FIXME; which of the two? +- ;;;IGNORE % vocalic rr +-% "";";";IGNORE % vocalic rr +- "";"";"";IGNORE +- ;;;IGNORE % la +- ;;;IGNORE +- ;;;IGNORE % vocalic l +-% FIXME; which of the two? +- ;;;IGNORE % vocalic ll +-% "";";";IGNORE % vocalic ll +- ;;;IGNORE % sha +- ;;;IGNORE +- ;;;IGNORE % ssa +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % sa +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE % ha +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE % a +- ;;;IGNORE +- +-% explicit vowels +- IGNORE;;IGNORE;IGNORE % long vowel mark % FIXME +- ;;;IGNORE % i +- ;;;IGNORE % reversed i +- ;;;IGNORE % ii +- ;;;IGNORE % reversed ii +- ;;;IGNORE % u +- ;;;IGNORE % uu +- ;;;IGNORE % e +- ;;;IGNORE % ee +- ;;;IGNORE % o +- ;;;IGNORE % oo +- +-% FIXME: 0F39, 0F7F, 0F84, 0F85, 0F86, 0F87, +- +-% FIXME: 0F88, UF89, UF8A, 0F8B +- IGNORE;;IGNORE;IGNORE +- IGNORE;;IGNORE;IGNORE +- IGNORE;;IGNORE;IGNORE +- IGNORE;;IGNORE;IGNORE ++ ;IGNORE;IGNORE;IGNORE + +-reorder-end ++ ;;;IGNORE ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ ++ ;;;IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ "";"";"";IGNORE ++ ++ ;;;IGNORE ++ ++ ;;;IGNORE ++ ++ ;;;IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++order_end + + END LC_COLLATE + --- glibc-2.5.orig/debian/patches/localedata/locales-sr.diff +++ glibc-2.5/debian/patches/localedata/locales-sr.diff @@ -0,0 +1,118 @@ +CS has been splitted into ME and RS. +Upstream already added sr_ME into CVS. +Keep sr_CS for backward compatibility, and add a new sr_RS +locale which copies definitions from sr_CS. In the future, +sr_CS will be renamed into sr_RS. + +Index: localedata/SUPPORTED +=================================================================== +--- localedata/SUPPORTED.orig ++++ localedata/SUPPORTED +@@ -336,6 +336,7 @@ + sr_CS.UTF-8/UTF-8 \ + sr_CS/ISO-8859-5 \ + sr_ME/UTF-8 \ ++sr_RS/UTF-8 \ + ss_ZA/UTF-8 \ + st_ZA.UTF-8/UTF-8 \ + st_ZA/ISO-8859-1 \ +Index: localedata/locales/sr_RS +=================================================================== +--- /dev/null ++++ localedata/locales/sr_RS +@@ -0,0 +1,95 @@ ++comment_char % ++escape_char / ++% ++% Serbian Language Locale for Serbia ++% Source: sr_YU locale ++% Address: ++% ++% Contact: Danilo Segan ++% Email: dsegan@gmx.net ++% Tel: +381 63 8626082 ++% Fax: none ++% Language: sr ++% Territory: RS ++% Revision: 1.0 ++% Date: 2003-08-13 ++% Application: general ++% Users: general ++% Charset: UTF-8, ISO-8859-5 ++% Distribution and use is free, also ++% for commercial purposes. ++% ++ ++LC_IDENTIFICATION ++title "Serbian locale for Serbia" ++source "sr_YU locale" ++address "" ++contact "Danilo Segan" ++email "bug-glibc@gnu.org" ++tel "" ++fax "" ++language "Serbian" ++territory "Serbia" ++revision "1.1" ++date "2004-01-10" ++audience "general" ++application "" ++abbreviation "" ++% ++category i18n:1997;LC_IDENTIFICATION ++category i18n:1997;LC_CTYPE ++category i18n:1997;LC_COLLATE ++category i18n:1997;LC_MONETARY ++category i18n:1997;LC_NUMERIC ++category i18n:1997;LC_TIME ++category i18n:1997;LC_MESSAGES ++category i18n:1997;LC_PAPER ++category i18n:1997;LC_NAME ++category i18n:1997;LC_ADDRESS ++category i18n:1997;LC_TELEPHONE ++category i18n:1997;LC_MEASUREMENT ++END LC_IDENTIFICATION ++ ++LC_CTYPE ++copy "sr_CS" ++END LC_CTYPE ++ ++LC_COLLATE ++copy "sr_CS" ++END LC_COLLATE ++ ++LC_MONETARY ++copy "sr_CS" ++END LC_MONETARY ++ ++LC_NUMERIC ++copy "sr_CS" ++END LC_NUMERIC ++ ++LC_TIME ++copy "sr_CS" ++END LC_TIME ++ ++LC_MESSAGES ++copy "sr_CS" ++END LC_MESSAGES ++ ++LC_PAPER ++copy "sr_CS" ++END LC_PAPER ++ ++LC_NAME ++copy "sr_CS" ++END LC_NAME ++ ++LC_ADDRESS ++copy "sr_CS" ++END LC_ADDRESS ++ ++LC_TELEPHONE ++copy "sr_CS" ++END LC_TELEPHONE ++ ++LC_MEASUREMENT ++copy "sr_CS" ++END LC_MEASUREMENT --- glibc-2.5.orig/debian/patches/localedata/first_weekday.diff +++ glibc-2.5/debian/patches/localedata/first_weekday.diff @@ -0,0 +1,2208 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Add first_weekday and first_workday, most come +# DP: from OpenOffice through CLDR +# DP: This patch applies the following conventions: +# DP: 1=Sunday...7=Saturday +# DP: The week keyword is removed from all locales. +# DP: Normally GTK apps should work with these settings, as well as +# DP: other apps. +# DP: Related bugs: #343885 347323 #379100 +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: not submitted +# DP: Date: 2006-01-10 + +Index: localedata/locales/aa_DJ +=================================================================== +--- localedata/locales/aa_DJ.orig ++++ localedata/locales/aa_DJ +@@ -273,5 +273,7 @@ + date_fmt "/ + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/aa_ER +=================================================================== +--- localedata/locales/aa_ER.orig ++++ localedata/locales/aa_ER +@@ -223,5 +223,7 @@ + date_fmt "/ + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/aa_ER@saaho +=================================================================== +--- localedata/locales/aa_ER@saaho.orig ++++ localedata/locales/aa_ER@saaho +@@ -207,5 +207,7 @@ + date_fmt "/ + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/aa_ET +=================================================================== +--- localedata/locales/aa_ET.orig ++++ localedata/locales/aa_ET +@@ -226,5 +226,7 @@ + date_fmt "/ + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/af_ZA +=================================================================== +--- localedata/locales/af_ZA.orig ++++ localedata/locales/af_ZA +@@ -164,6 +164,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/am_ET +=================================================================== +--- localedata/locales/am_ET.orig ++++ localedata/locales/am_ET +@@ -1564,5 +1564,7 @@ + / + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/ar_AE +=================================================================== +--- localedata/locales/ar_AE.orig ++++ localedata/locales/ar_AE +@@ -141,6 +141,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_BH +=================================================================== +--- localedata/locales/ar_BH.orig ++++ localedata/locales/ar_BH +@@ -145,6 +145,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_DZ +=================================================================== +--- localedata/locales/ar_DZ.orig ++++ localedata/locales/ar_DZ +@@ -144,6 +144,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_EG +=================================================================== +--- localedata/locales/ar_EG.orig ++++ localedata/locales/ar_EG +@@ -148,6 +148,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_IN +=================================================================== +--- localedata/locales/ar_IN.orig ++++ localedata/locales/ar_IN +@@ -127,6 +127,8 @@ + % Appropriate 12 h time representation (%r) + t_fmt_ampm "" + % ++% FIXME: copied from other *_IN locales ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/ar_IQ +=================================================================== +--- localedata/locales/ar_IQ.orig ++++ localedata/locales/ar_IQ +@@ -144,6 +144,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_JO +=================================================================== +--- localedata/locales/ar_JO.orig ++++ localedata/locales/ar_JO +@@ -162,6 +162,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_KW +=================================================================== +--- localedata/locales/ar_KW.orig ++++ localedata/locales/ar_KW +@@ -144,6 +144,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_LB +=================================================================== +--- localedata/locales/ar_LB.orig ++++ localedata/locales/ar_LB +@@ -161,6 +161,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_LY +=================================================================== +--- localedata/locales/ar_LY.orig ++++ localedata/locales/ar_LY +@@ -144,6 +144,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_MA +=================================================================== +--- localedata/locales/ar_MA.orig ++++ localedata/locales/ar_MA +@@ -144,6 +144,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_OM +=================================================================== +--- localedata/locales/ar_OM.orig ++++ localedata/locales/ar_OM +@@ -144,6 +144,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_QA +=================================================================== +--- localedata/locales/ar_QA.orig ++++ localedata/locales/ar_QA +@@ -144,6 +144,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_SA +=================================================================== +--- localedata/locales/ar_SA.orig ++++ localedata/locales/ar_SA +@@ -132,6 +132,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_SD +=================================================================== +--- localedata/locales/ar_SD.orig ++++ localedata/locales/ar_SD +@@ -144,6 +144,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_SY +=================================================================== +--- localedata/locales/ar_SY.orig ++++ localedata/locales/ar_SY +@@ -161,6 +161,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 5 + END LC_TIME + + +Index: localedata/locales/ar_TN +=================================================================== +--- localedata/locales/ar_TN.orig ++++ localedata/locales/ar_TN +@@ -144,6 +144,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/ar_YE +=================================================================== +--- localedata/locales/ar_YE.orig ++++ localedata/locales/ar_YE +@@ -144,6 +144,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + +Index: localedata/locales/az_AZ +=================================================================== +--- localedata/locales/az_AZ.orig ++++ localedata/locales/az_AZ +@@ -274,6 +274,8 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/be_BY +=================================================================== +--- localedata/locales/be_BY.orig ++++ localedata/locales/be_BY +@@ -145,6 +145,9 @@ + date_fmt "/ + / + " ++% Copied from be_BY@alternative ++first_weekday 2 ++first_workday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/be_BY@latin +=================================================================== +--- localedata/locales/be_BY@latin.orig ++++ localedata/locales/be_BY@latin +@@ -102,6 +102,9 @@ + date_fmt "/ + / + " ++% Copied from be_BY@alternative ++first_weekday 2 ++first_workday 2 + END LC_TIME + + LC_COLLATE +Index: localedata/locales/bn_IN +=================================================================== +--- localedata/locales/bn_IN.orig ++++ localedata/locales/bn_IN +@@ -145,6 +145,8 @@ + % Appropriate 12 h time representation (%r) + t_fmt_ampm "" + % ++% FIXME ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/br_FR +=================================================================== +--- localedata/locales/br_FR.orig ++++ localedata/locales/br_FR +@@ -141,6 +141,8 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/bs_BA +=================================================================== +--- localedata/locales/bs_BA.orig ++++ localedata/locales/bs_BA +@@ -208,6 +208,8 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/byn_ER +=================================================================== +--- localedata/locales/byn_ER.orig ++++ localedata/locales/byn_ER +@@ -218,5 +218,7 @@ + / + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/ca_ES +=================================================================== +--- localedata/locales/ca_ES.orig ++++ localedata/locales/ca_ES +@@ -138,6 +138,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/cs_CZ +=================================================================== +--- localedata/locales/cs_CZ.orig ++++ localedata/locales/cs_CZ +@@ -361,7 +361,7 @@ + % "";/ + % "" + +-week 7;19971201;4 ++% week 7;19971201;4 + + d_t_fmt "" + +@@ -376,6 +376,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + + END LC_TIME + +Index: localedata/locales/csb_PL +=================================================================== +--- localedata/locales/csb_PL.orig ++++ localedata/locales/csb_PL +@@ -191,7 +191,7 @@ + date_fmt "/ + / + " +-week 7;19971201;4 ++% week 7;19971201;4 + first_weekday 2 + first_workday 2 + END LC_TIME +Index: localedata/locales/cy_GB +=================================================================== +--- localedata/locales/cy_GB.orig ++++ localedata/locales/cy_GB +@@ -253,6 +253,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/da_DK +=================================================================== +--- localedata/locales/da_DK.orig ++++ localedata/locales/da_DK +@@ -214,6 +214,9 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 ++first_workday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/de_AT +=================================================================== +--- localedata/locales/de_AT.orig ++++ localedata/locales/de_AT +@@ -121,6 +121,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/de_BE +=================================================================== +--- localedata/locales/de_BE.orig ++++ localedata/locales/de_BE +@@ -119,6 +119,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/de_CH +=================================================================== +--- localedata/locales/de_CH.orig ++++ localedata/locales/de_CH +@@ -121,6 +121,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/de_DE +=================================================================== +--- localedata/locales/de_DE.orig ++++ localedata/locales/de_DE +@@ -118,7 +118,7 @@ + "";/ + "";/ + "" +-week 7;19971201;4 ++% week 7;19971201;4 + abmon "";"";/ + "";"";/ + "";"";/ +@@ -153,6 +153,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/de_LU +=================================================================== +--- localedata/locales/de_LU.orig ++++ localedata/locales/de_LU +@@ -119,6 +119,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/dz_BT +=================================================================== +--- localedata/locales/dz_BT.orig ++++ localedata/locales/dz_BT +@@ -1544,7 +1544,8 @@ + %I/ + %M%S %p" + +- ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/el_GR +=================================================================== +--- localedata/locales/el_GR.orig ++++ localedata/locales/el_GR +@@ -139,6 +139,8 @@ + % + % Appropriate date representation (date(1)) "%a %d %b %Y %r %Z" + date_fmt "" ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/en_AU +=================================================================== +--- localedata/locales/en_AU.orig ++++ localedata/locales/en_AU +@@ -117,6 +117,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/en_CA +=================================================================== +--- localedata/locales/en_CA.orig ++++ localedata/locales/en_CA +@@ -132,6 +132,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/en_DK +=================================================================== +--- localedata/locales/en_DK.orig ++++ localedata/locales/en_DK +@@ -106,6 +106,9 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 ++first_workday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/en_GB +=================================================================== +--- localedata/locales/en_GB.orig ++++ localedata/locales/en_GB +@@ -121,6 +121,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/en_HK +=================================================================== +--- localedata/locales/en_HK.orig ++++ localedata/locales/en_HK +@@ -133,6 +133,8 @@ + % Appropriate 12 h time representation (%r) + t_fmt_ampm "" + % ++% FIXME ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/en_IE +=================================================================== +--- localedata/locales/en_IE.orig ++++ localedata/locales/en_IE +@@ -115,6 +115,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/en_IN +=================================================================== +--- localedata/locales/en_IN.orig ++++ localedata/locales/en_IN +@@ -132,6 +132,8 @@ + % Appropriate 12 h time representation (%r) + t_fmt_ampm "" + % ++% FIXME ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/en_NZ +=================================================================== +--- localedata/locales/en_NZ.orig ++++ localedata/locales/en_NZ +@@ -117,6 +117,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/en_PH +=================================================================== +--- localedata/locales/en_PH.orig ++++ localedata/locales/en_PH +@@ -133,6 +133,8 @@ + % Appropriate 12 h time representation (%r) + t_fmt_ampm "" + % ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/en_SG +=================================================================== +--- localedata/locales/en_SG.orig ++++ localedata/locales/en_SG +@@ -131,6 +131,8 @@ + % Appropriate 12 h time representation (%r) + t_fmt_ampm "" + % ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/en_US +=================================================================== +--- localedata/locales/en_US.orig ++++ localedata/locales/en_US +@@ -81,7 +81,7 @@ + "";/ + "" + +-week 7;19971130;7 ++% week 7;19971130;7 + abmon "";"";/ + "";"";/ + "";"";/ +@@ -125,6 +125,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/en_ZA +=================================================================== +--- localedata/locales/en_ZA.orig ++++ localedata/locales/en_ZA +@@ -202,6 +202,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/es_AR +=================================================================== +--- localedata/locales/es_AR.orig ++++ localedata/locales/es_AR +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_BO +=================================================================== +--- localedata/locales/es_BO.orig ++++ localedata/locales/es_BO +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_CL +=================================================================== +--- localedata/locales/es_CL.orig ++++ localedata/locales/es_CL +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_CO +=================================================================== +--- localedata/locales/es_CO.orig ++++ localedata/locales/es_CO +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_CR +=================================================================== +--- localedata/locales/es_CR.orig ++++ localedata/locales/es_CR +@@ -113,6 +113,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_DO +=================================================================== +--- localedata/locales/es_DO.orig ++++ localedata/locales/es_DO +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_EC +=================================================================== +--- localedata/locales/es_EC.orig ++++ localedata/locales/es_EC +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_GT +=================================================================== +--- localedata/locales/es_GT.orig ++++ localedata/locales/es_GT +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_HN +=================================================================== +--- localedata/locales/es_HN.orig ++++ localedata/locales/es_HN +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_MX +=================================================================== +--- localedata/locales/es_MX.orig ++++ localedata/locales/es_MX +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_NI +=================================================================== +--- localedata/locales/es_NI.orig ++++ localedata/locales/es_NI +@@ -114,6 +114,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_PA +=================================================================== +--- localedata/locales/es_PA.orig ++++ localedata/locales/es_PA +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_PE +=================================================================== +--- localedata/locales/es_PE.orig ++++ localedata/locales/es_PE +@@ -123,6 +123,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_PR +=================================================================== +--- localedata/locales/es_PR.orig ++++ localedata/locales/es_PR +@@ -113,6 +113,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_PY +=================================================================== +--- localedata/locales/es_PY.orig ++++ localedata/locales/es_PY +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_SV +=================================================================== +--- localedata/locales/es_SV.orig ++++ localedata/locales/es_SV +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_US +=================================================================== +--- localedata/locales/es_US.orig ++++ localedata/locales/es_US +@@ -174,6 +174,8 @@ + date_fmt "/ + / + " ++% FIXME ++first_weekday 1 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_UY +=================================================================== +--- localedata/locales/es_UY.orig ++++ localedata/locales/es_UY +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/es_VE +=================================================================== +--- localedata/locales/es_VE.orig ++++ localedata/locales/es_VE +@@ -122,6 +122,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/et_EE +=================================================================== +--- localedata/locales/et_EE.orig ++++ localedata/locales/et_EE +@@ -177,6 +177,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/eu_ES +=================================================================== +--- localedata/locales/eu_ES.orig ++++ localedata/locales/eu_ES +@@ -131,6 +131,7 @@ + date_fmt "/ + / + " ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/fr_BE +=================================================================== +--- localedata/locales/fr_BE.orig ++++ localedata/locales/fr_BE +@@ -122,6 +122,7 @@ + / + / + " ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/fr_CA +=================================================================== +--- localedata/locales/fr_CA.orig ++++ localedata/locales/fr_CA +@@ -123,6 +123,7 @@ + / + / + " ++first_weekday 1 + END LC_TIME + + LC_PAPER +Index: localedata/locales/fr_CH +=================================================================== +--- localedata/locales/fr_CH.orig ++++ localedata/locales/fr_CH +@@ -107,6 +107,7 @@ + / + / + " ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/fr_FR +=================================================================== +--- localedata/locales/fr_FR.orig ++++ localedata/locales/fr_FR +@@ -131,6 +131,7 @@ + / + / + " ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/fr_LU +=================================================================== +--- localedata/locales/fr_LU.orig ++++ localedata/locales/fr_LU +@@ -122,6 +122,7 @@ + / + / + " ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/ga_IE +=================================================================== +--- localedata/locales/ga_IE.orig ++++ localedata/locales/ga_IE +@@ -117,6 +117,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/gd_GB +=================================================================== +--- localedata/locales/gd_GB.orig ++++ localedata/locales/gd_GB +@@ -122,6 +122,8 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/gez_ER +=================================================================== +--- localedata/locales/gez_ER.orig ++++ localedata/locales/gez_ER +@@ -215,5 +215,7 @@ + / + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/gez_ET +=================================================================== +--- localedata/locales/gez_ET.orig ++++ localedata/locales/gez_ET +@@ -216,5 +216,7 @@ + / + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/gl_ES +=================================================================== +--- localedata/locales/gl_ES.orig ++++ localedata/locales/gl_ES +@@ -121,6 +121,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/gu_IN +=================================================================== +--- localedata/locales/gu_IN.orig ++++ localedata/locales/gu_IN +@@ -161,6 +161,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/gv_GB +=================================================================== +--- localedata/locales/gv_GB.orig ++++ localedata/locales/gv_GB +@@ -131,6 +131,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/he_IL +=================================================================== +--- localedata/locales/he_IL.orig ++++ localedata/locales/he_IL +@@ -123,6 +123,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/hi_IN +=================================================================== +--- localedata/locales/hi_IN.orig ++++ localedata/locales/hi_IN +@@ -156,6 +156,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/hr_HR +=================================================================== +--- localedata/locales/hr_HR.orig ++++ localedata/locales/hr_HR +@@ -220,6 +220,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/hsb_DE +=================================================================== +--- localedata/locales/hsb_DE.orig ++++ localedata/locales/hsb_DE +@@ -220,6 +220,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/hu_HU +=================================================================== +--- localedata/locales/hu_HU.orig ++++ localedata/locales/hu_HU +@@ -553,7 +553,9 @@ + t_fmt_ampm "" + date_fmt "/ + " +-week 7;19971201;4 ++% week 7;19971201;4 ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/hy_AM +=================================================================== +--- localedata/locales/hy_AM.orig ++++ localedata/locales/hy_AM +@@ -317,6 +317,8 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/id_ID +=================================================================== +--- localedata/locales/id_ID.orig ++++ localedata/locales/id_ID +@@ -120,6 +120,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/is_IS +=================================================================== +--- localedata/locales/is_IS.orig ++++ localedata/locales/is_IS +@@ -2223,6 +2223,8 @@ + date_fmt "/ + / + " ++% FIXME: found in Java ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/it_CH +=================================================================== +--- localedata/locales/it_CH.orig ++++ localedata/locales/it_CH +@@ -98,6 +98,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/it_IT +=================================================================== +--- localedata/locales/it_IT.orig ++++ localedata/locales/it_IT +@@ -124,6 +124,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/ja_JP +=================================================================== +--- localedata/locales/ja_JP.orig ++++ localedata/locales/ja_JP +@@ -15006,6 +15006,8 @@ + "";"";/ + "";"";/ + "";"" ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/kk_KZ +=================================================================== +--- localedata/locales/kk_KZ.orig ++++ localedata/locales/kk_KZ +@@ -232,6 +232,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/km_KH +=================================================================== +--- localedata/locales/km_KH.orig ++++ localedata/locales/km_KH +@@ -1841,6 +1841,8 @@ + % ICT-7ICT-7 + %timezone "" + ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/kn_IN +=================================================================== +--- localedata/locales/kn_IN.orig ++++ localedata/locales/kn_IN +@@ -165,6 +165,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/ko_KR +=================================================================== +--- localedata/locales/ko_KR.orig ++++ localedata/locales/ko_KR +@@ -6189,6 +6189,8 @@ + / + / + " ++% FIXME: found in CLDR ++first_weekday 1 + + END LC_TIME + +Index: localedata/locales/ku_TR +=================================================================== +--- localedata/locales/ku_TR.orig ++++ localedata/locales/ku_TR +@@ -149,6 +149,8 @@ + t_fmt_ampm "" + % format: %A %d %B %Y + date_fmt "" ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/kw_GB +=================================================================== +--- localedata/locales/kw_GB.orig ++++ localedata/locales/kw_GB +@@ -123,6 +123,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/lo_LA +=================================================================== +--- localedata/locales/lo_LA.orig ++++ localedata/locales/lo_LA +@@ -718,6 +718,8 @@ + " + % ICT-7ICT-7 + timezone "" ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/lt_LT +=================================================================== +--- localedata/locales/lt_LT.orig ++++ localedata/locales/lt_LT +@@ -137,6 +137,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/lv_LV +=================================================================== +--- localedata/locales/lv_LV.orig ++++ localedata/locales/lv_LV +@@ -2183,6 +2183,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/mk_MK +=================================================================== +--- localedata/locales/mk_MK.orig ++++ localedata/locales/mk_MK +@@ -85,9 +85,9 @@ + date_fmt "/ + / + " +-week 7;19971201;4 +-first_weekday 1 % Monday +-first_workday 1 % Monday ++% week 7;19971201;4 ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MONETARY +Index: localedata/locales/ml_IN +=================================================================== +--- localedata/locales/ml_IN.orig ++++ localedata/locales/ml_IN +@@ -145,6 +145,8 @@ + % Appropriate 12 h time representation (%r) + t_fmt_ampm "" + % ++% FIXME ++first_weekday 1 + END LC_TIME + % + LC_MESSAGES +Index: localedata/locales/mn_MN +=================================================================== +--- localedata/locales/mn_MN.orig ++++ localedata/locales/mn_MN +@@ -220,6 +220,8 @@ + % "%Z %Y ony %B %e, %a %H:%M:%S" + date_fmt "/ + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/mr_IN +=================================================================== +--- localedata/locales/mr_IN.orig ++++ localedata/locales/mr_IN +@@ -153,6 +153,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/ms_MY +=================================================================== +--- localedata/locales/ms_MY.orig ++++ localedata/locales/ms_MY +@@ -139,6 +139,8 @@ + % Appropriate 12 h time representation (%r) + t_fmt_ampm "" + % ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + +Index: localedata/locales/nb_NO +=================================================================== +--- localedata/locales/nb_NO.orig ++++ localedata/locales/nb_NO +@@ -195,6 +195,9 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 ++first_workday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/ne_NP +=================================================================== +--- localedata/locales/ne_NP.orig ++++ localedata/locales/ne_NP +@@ -153,6 +153,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/nl_BE +=================================================================== +--- localedata/locales/nl_BE.orig ++++ localedata/locales/nl_BE +@@ -104,6 +104,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/nl_NL +=================================================================== +--- localedata/locales/nl_NL.orig ++++ localedata/locales/nl_NL +@@ -123,6 +123,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/nn_NO +=================================================================== +--- localedata/locales/nn_NO.orig ++++ localedata/locales/nn_NO +@@ -136,6 +136,9 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 ++first_workday 2 + END LC_TIME + + +Index: localedata/locales/nr_ZA +=================================================================== +--- localedata/locales/nr_ZA.orig ++++ localedata/locales/nr_ZA +@@ -162,6 +162,8 @@ + % %Z - time-zone name, + % %Y - year with century as a decimal number,e.g. 2001. + ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/nso_ZA +=================================================================== +--- localedata/locales/nso_ZA.orig ++++ localedata/locales/nso_ZA +@@ -157,6 +157,8 @@ + % %Z - time-zone name, + % %Y - year with century as a decimal number,e.g. 2001. + ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/oc_FR +=================================================================== +--- localedata/locales/oc_FR.orig ++++ localedata/locales/oc_FR +@@ -123,6 +123,8 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_NAME +Index: localedata/locales/om_ET +=================================================================== +--- localedata/locales/om_ET.orig ++++ localedata/locales/om_ET +@@ -233,5 +233,7 @@ + date_fmt "/ + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/pa_IN +=================================================================== +--- localedata/locales/pa_IN.orig ++++ localedata/locales/pa_IN +@@ -149,6 +149,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/pl_PL +=================================================================== +--- localedata/locales/pl_PL.orig ++++ localedata/locales/pl_PL +@@ -208,7 +208,9 @@ + date_fmt "/ + / + " +-week 7;19971201;4 ++% week 7;19971201;4 ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/pt_BR +=================================================================== +--- localedata/locales/pt_BR.orig ++++ localedata/locales/pt_BR +@@ -121,6 +121,7 @@ + date_fmt "/ + / + " ++first_weekday 1 + END LC_TIME + + LC_PAPER +Index: localedata/locales/pt_PT +=================================================================== +--- localedata/locales/pt_PT.orig ++++ localedata/locales/pt_PT +@@ -124,6 +124,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/ru_RU +=================================================================== +--- localedata/locales/ru_RU.orig ++++ localedata/locales/ru_RU +@@ -149,6 +149,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/rw_RW +=================================================================== +--- localedata/locales/rw_RW.orig ++++ localedata/locales/rw_RW +@@ -109,6 +109,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/sa_IN +=================================================================== +--- localedata/locales/sa_IN.orig ++++ localedata/locales/sa_IN +@@ -178,6 +178,8 @@ + date_fmt "/ + / + " ++% FIXME: copied from other *_IN locales ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/se_NO +=================================================================== +--- localedata/locales/se_NO.orig ++++ localedata/locales/se_NO +@@ -277,6 +277,9 @@ + " + + % %a %b-%e %H:%M:%S %Z %Y sn jan-31 21:15:11 CET 2001 ++% FIXME: found in CLDR ++first_weekday 2 ++first_workday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/sid_ET +=================================================================== +--- localedata/locales/sid_ET.orig ++++ localedata/locales/sid_ET +@@ -222,5 +222,7 @@ + % + date_fmt "/ + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/sk_SK +=================================================================== +--- localedata/locales/sk_SK.orig ++++ localedata/locales/sk_SK +@@ -183,7 +183,10 @@ + / + " + +-week 7;19971201;4 ++% week 7;19971201;4 ++ ++% FIXME: found in CLDR ++first_weekday 2 + + END LC_TIME + +Index: localedata/locales/sl_SI +=================================================================== +--- localedata/locales/sl_SI.orig ++++ localedata/locales/sl_SI +@@ -157,6 +157,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/so_DJ +=================================================================== +--- localedata/locales/so_DJ.orig ++++ localedata/locales/so_DJ +@@ -222,5 +222,7 @@ + date_fmt "/ + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/so_ET +=================================================================== +--- localedata/locales/so_ET.orig ++++ localedata/locales/so_ET +@@ -219,5 +219,7 @@ + date_fmt "/ + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/so_KE +=================================================================== +--- localedata/locales/so_KE.orig ++++ localedata/locales/so_KE +@@ -218,5 +218,7 @@ + date_fmt "/ + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/so_SO +=================================================================== +--- localedata/locales/so_SO.orig ++++ localedata/locales/so_SO +@@ -278,5 +278,7 @@ + date_fmt "/ + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/sq_AL +=================================================================== +--- localedata/locales/sq_AL.orig ++++ localedata/locales/sq_AL +@@ -290,6 +290,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + +Index: localedata/locales/sr_CS +=================================================================== +--- localedata/locales/sr_CS.orig ++++ localedata/locales/sr_CS +@@ -304,7 +304,7 @@ + date_fmt "/ + / + " +-week 7;19971201;4 ++% week 7;19971201;4 + first_weekday 2 + first_workday 2 + END LC_TIME +Index: localedata/locales/sr_ME +=================================================================== +--- localedata/locales/sr_ME.orig ++++ localedata/locales/sr_ME +@@ -110,7 +110,7 @@ + date_fmt "/ + / + " +-week 7;19971201;4 ++% week 7;19971201;4 + first_weekday 2 + first_workday 2 + END LC_TIME +Index: localedata/locales/ss_ZA +=================================================================== +--- localedata/locales/ss_ZA.orig ++++ localedata/locales/ss_ZA +@@ -167,6 +167,8 @@ + % %Z - time-zone name, + % %Y - year with century as a decimal number,e.g. 2001. + ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/st_ZA +=================================================================== +--- localedata/locales/st_ZA.orig ++++ localedata/locales/st_ZA +@@ -164,6 +164,8 @@ + % %Z - time-zone name, + % %Y - year with century as a decimal number,e.g. 2001. + ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/sv_FI +=================================================================== +--- localedata/locales/sv_FI.orig ++++ localedata/locales/sv_FI +@@ -105,6 +105,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/ta_IN +=================================================================== +--- localedata/locales/ta_IN.orig ++++ localedata/locales/ta_IN +@@ -230,6 +230,8 @@ + % Appropriate 12 h time representation (%r) + t_fmt_ampm "" + % ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/te_IN +=================================================================== +--- localedata/locales/te_IN.orig ++++ localedata/locales/te_IN +@@ -139,6 +139,8 @@ + % %p%I.%M.%S %Z + t_fmt_ampm "" + % ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/th_TH +=================================================================== +--- localedata/locales/th_TH.orig ++++ localedata/locales/th_TH +@@ -913,6 +913,8 @@ + " + % ICT-7ICT-7 + timezone "" ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/ti_ER +=================================================================== +--- localedata/locales/ti_ER.orig ++++ localedata/locales/ti_ER +@@ -270,5 +270,7 @@ + / + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/ti_ET +=================================================================== +--- localedata/locales/ti_ET.orig ++++ localedata/locales/ti_ET +@@ -1072,5 +1072,7 @@ + / + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/tig_ER +=================================================================== +--- localedata/locales/tig_ER.orig ++++ localedata/locales/tig_ER +@@ -218,5 +218,7 @@ + / + " + % ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/tn_ZA +=================================================================== +--- localedata/locales/tn_ZA.orig ++++ localedata/locales/tn_ZA +@@ -169,6 +169,8 @@ + % %Z - time-zone name, + % %Y - year with century as a decimal number,e.g. 2001. + ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/tr_TR +=================================================================== +--- localedata/locales/tr_TR.orig ++++ localedata/locales/tr_TR +@@ -1540,6 +1540,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/ts_ZA +=================================================================== +--- localedata/locales/ts_ZA.orig ++++ localedata/locales/ts_ZA +@@ -164,6 +164,8 @@ + % %Z - time-zone name, + % %Y - year with century as a decimal number,e.g. 2001. + ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/tt_RU +=================================================================== +--- localedata/locales/tt_RU.orig ++++ localedata/locales/tt_RU +@@ -297,6 +297,8 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/uk_UA +=================================================================== +--- localedata/locales/uk_UA.orig ++++ localedata/locales/uk_UA +@@ -158,6 +158,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_PAPER +Index: localedata/locales/uz_UZ +=================================================================== +--- localedata/locales/uz_UZ.orig ++++ localedata/locales/uz_UZ +@@ -260,6 +260,8 @@ + am_pm "";"" + t_fmt_ampm "" + date_fmt "" ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/uz_UZ@cyrillic +=================================================================== +--- localedata/locales/uz_UZ@cyrillic.orig ++++ localedata/locales/uz_UZ@cyrillic +@@ -263,6 +263,8 @@ + am_pm "";"" + t_fmt_ampm "" + date_fmt "" ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/ve_ZA +=================================================================== +--- localedata/locales/ve_ZA.orig ++++ localedata/locales/ve_ZA +@@ -166,6 +166,8 @@ + % %Z - time-zone name, + % %Y - year with century as a decimal number,e.g. 2001. + ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/vi_VN +=================================================================== +--- localedata/locales/vi_VN.orig ++++ localedata/locales/vi_VN +@@ -296,6 +296,8 @@ + am_pm "";"" + t_fmt_ampm "" + date_fmt "" ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + % yes: Va^ng / Da. +Index: localedata/locales/wa_BE +=================================================================== +--- localedata/locales/wa_BE.orig ++++ localedata/locales/wa_BE +@@ -163,7 +163,8 @@ + am_pm "";"" + t_fmt_ampm "" + % prumî djoû del samwinne (1=londi) +-first_weekday 1 ++% FIXME No, 2=lundi ++first_weekday 2 + END LC_TIME + + LC_NAME +Index: localedata/locales/wal_ET +=================================================================== +--- localedata/locales/wal_ET.orig ++++ localedata/locales/wal_ET +@@ -232,5 +232,7 @@ + / + / + " ++% FIXME: found in CLDR ++first_weekday 7 + END LC_TIME + % +Index: localedata/locales/xh_ZA +=================================================================== +--- localedata/locales/xh_ZA.orig ++++ localedata/locales/xh_ZA +@@ -164,6 +164,8 @@ + % time-zone name, + % year with century as a decimal number,e.g. 2001. + % ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/yi_US +=================================================================== +--- localedata/locales/yi_US.orig ++++ localedata/locales/yi_US +@@ -186,6 +186,8 @@ + am_pm "";"" + t_fmt_ampm "" + cal_direction 3 ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/zh_CN +=================================================================== +--- localedata/locales/zh_CN.orig ++++ localedata/locales/zh_CN +@@ -135,6 +135,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/zh_HK +=================================================================== +--- localedata/locales/zh_HK.orig ++++ localedata/locales/zh_HK +@@ -141,6 +141,8 @@ + date_fmt "/ + / + " ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + +Index: localedata/locales/zh_SG +=================================================================== +--- localedata/locales/zh_SG.orig ++++ localedata/locales/zh_SG +@@ -130,6 +130,8 @@ + % Appropriate 12 h time representation (%r) + t_fmt_ampm "" + % ++% FIXME: found in CLDR ++first_weekday 2 + END LC_TIME + + +Index: localedata/locales/zh_TW +=================================================================== +--- localedata/locales/zh_TW.orig ++++ localedata/locales/zh_TW +@@ -128,6 +128,9 @@ + / + " + ++% FIXME: found in CLDR ++first_weekday 1 ++ + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/zu_ZA +=================================================================== +--- localedata/locales/zu_ZA.orig ++++ localedata/locales/zu_ZA +@@ -170,6 +170,8 @@ + % %Z - time-zone name, + % %Y - year with century as a decimal number,e.g. 2001. + ++% FIXME: found in CLDR ++first_weekday 1 + END LC_TIME + + LC_MESSAGES --- glibc-2.5.orig/debian/patches/localedata/locale-pl_PL.diff +++ glibc-2.5/debian/patches/localedata/locale-pl_PL.diff @@ -0,0 +1,37 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Fix LC_MONETARY section of pl_PL +# DP: Related bugs: #227214 +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Michał Politowski" +# DP: Upstream status: not submitted, but message sent to +# DP: http://sources.redhat.com/ml/bug-glibc/2002-11/msg00131.html +# DP: Date: 2006-01-16 + +Index: localedata/locales/pl_PL +=================================================================== +--- localedata/locales/pl_PL.orig ++++ localedata/locales/pl_PL +@@ -2127,7 +2127,7 @@ + + LC_MONETARY + int_curr_symbol "" +-currency_symbol "" ++currency_symbol "" + mon_decimal_point "" + mon_thousands_sep "" + mon_grouping 3;3 +@@ -2135,10 +2135,10 @@ + negative_sign "" + int_frac_digits 2 + frac_digits 2 +-p_cs_precedes 1 +-p_sep_by_space 0 +-n_cs_precedes 1 +-n_sep_by_space 0 ++p_cs_precedes 0 ++p_sep_by_space 1 ++n_cs_precedes 0 ++n_sep_by_space 1 + p_sign_posn 1 + n_sign_posn 1 + END LC_MONETARY --- glibc-2.5.orig/debian/patches/localedata/locale-se_NO.diff +++ glibc-2.5/debian/patches/localedata/locale-se_NO.diff @@ -0,0 +1,32 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Fix se_NO locale +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: Not submitted yet +# DP: Date: 2006-06-02 + +Index: localedata/locales/se_NO +=================================================================== +--- localedata/locales/se_NO.orig ++++ localedata/locales/se_NO +@@ -137,7 +137,7 @@ + ;;;IGNORE % ezh caron + + reorder-after +- ;;;IGNORE % EZH ++ ;;;IGNORE % EZH + ;;;IGNORE % EZH caron + + reorder-after +@@ -164,9 +164,10 @@ + reorder-after + ;;;IGNORE % Kcaron + +-reorder-after ++reorder-after + ;"";"";IGNORE % + ;;;IGNORE % 288 ++reorder-after + ;;;IGNORE % 405 + + --- glibc-2.5.orig/debian/patches/localedata/sort-UTF8-first.diff +++ glibc-2.5/debian/patches/localedata/sort-UTF8-first.diff @@ -0,0 +1,76 @@ +Index: localedata/SUPPORTED +=================================================================== +--- localedata/SUPPORTED.orig ++++ localedata/SUPPORTED +@@ -222,8 +222,8 @@ + hi_IN/UTF-8 \ + hr_HR.UTF-8/UTF-8 \ + hr_HR/ISO-8859-2 \ +-hsb_DE/ISO-8859-2 \ + hsb_DE.UTF-8/UTF-8 \ ++hsb_DE/ISO-8859-2 \ + hu_HU.UTF-8/UTF-8 \ + hu_HU/ISO-8859-2 \ + hy_AM/UTF-8 \ +@@ -240,8 +240,8 @@ + it_IT@euro/ISO-8859-15 \ + iw_IL.UTF-8/UTF-8 \ + iw_IL/ISO-8859-8 \ +-ja_JP.EUC-JP/EUC-JP \ + ja_JP.UTF-8/UTF-8 \ ++ja_JP.EUC-JP/EUC-JP \ + ka_GE.UTF-8/UTF-8 \ + ka_GE/GEORGIAN-PS \ + kk_KZ.UTF-8/UTF-8 \ +@@ -250,8 +250,8 @@ + kl_GL/ISO-8859-1 \ + km_KH/UTF-8 \ + kn_IN/UTF-8 \ +-ko_KR.EUC-KR/EUC-KR \ + ko_KR.UTF-8/UTF-8 \ ++ko_KR.EUC-KR/EUC-KR \ + ku_TR.UTF-8/UTF-8 \ + ku_TR/ISO-8859-9 \ + kw_GB.UTF-8/UTF-8 \ +@@ -309,8 +309,8 @@ + pt_PT@euro/ISO-8859-15 \ + ro_RO.UTF-8/UTF-8 \ + ro_RO/ISO-8859-2 \ +-ru_RU.KOI8-R/KOI8-R \ + ru_RU.UTF-8/UTF-8 \ ++ru_RU.KOI8-R/KOI8-R \ + ru_RU.CP1251/CP1251 \ + ru_RU/ISO-8859-5 \ + ru_UA.UTF-8/UTF-8 \ +@@ -371,27 +371,27 @@ + uz_UZ/ISO-8859-1 \ + uz_UZ@cyrillic/UTF-8 \ + ve_ZA/UTF-8 \ +-vi_VN.TCVN/TCVN5712-1 \ + vi_VN/UTF-8 \ ++vi_VN.TCVN/TCVN5712-1 \ ++wa_BE.UTF-8/UTF-8 \ + wa_BE/ISO-8859-1 \ + wa_BE@euro/ISO-8859-15 \ +-wa_BE.UTF-8/UTF-8 \ + wo_SN/UTF-8 \ + xh_ZA.UTF-8/UTF-8 \ + xh_ZA/ISO-8859-1 \ + yi_US.UTF-8/UTF-8 \ + yi_US/CP1255 \ ++zh_CN.UTF-8/UTF-8 \ + zh_CN.GB18030/GB18030 \ + zh_CN.GBK/GBK \ +-zh_CN.UTF-8/UTF-8 \ + zh_CN/GB2312 \ + zh_HK.UTF-8/UTF-8 \ + zh_HK/BIG5-HKSCS \ + zh_SG.UTF-8/UTF-8 \ + zh_SG.GBK/GBK \ + zh_SG/GB2312 \ +-zh_TW.EUC-TW/EUC-TW \ + zh_TW.UTF-8/UTF-8 \ ++zh_TW.EUC-TW/EUC-TW \ + zh_TW/BIG5 \ + zu_ZA.UTF-8/UTF-8 \ + zu_ZA/ISO-8859-1 \ --- glibc-2.5.orig/debian/patches/localedata/fix-unknown-symbols.diff +++ glibc-2.5/debian/patches/localedata/fix-unknown-symbols.diff @@ -0,0 +1,175 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Fix unknown symbols in collation rules. These symbols +# DP: are trapped by locale/check-unknown-symbols.diff +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: not submitted +# DP: Date: 2006-01-19 + +Index: localedata/locales/da_DK +=================================================================== +--- localedata/locales/da_DK.orig ++++ localedata/locales/da_DK +@@ -66,6 +66,7 @@ + collating-symbol + collating-symbol + collating-symbol ++collating-symbol + + reorder-after + +Index: localedata/locales/fa_IR +=================================================================== +--- localedata/locales/fa_IR.orig ++++ localedata/locales/fa_IR +@@ -101,6 +101,7 @@ + collating-symbol + + collating-element from "" ++collating-element from "" + collating-element from "" + collating-element from "" + collating-element from "" +Index: localedata/locales/is_IS +=================================================================== +--- localedata/locales/is_IS.orig ++++ localedata/locales/is_IS +@@ -947,7 +947,6 @@ + IGNORE;IGNORE;IGNORE; + IGNORE;IGNORE;IGNORE; + IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> + IGNORE;IGNORE;IGNORE; + IGNORE;IGNORE;IGNORE; + IGNORE;IGNORE;IGNORE; +@@ -956,8 +955,6 @@ + IGNORE;IGNORE;IGNORE; + IGNORE;IGNORE;IGNORE; + IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; + UNDEFINED IGNORE;IGNORE;IGNORE + + ;;IGNORE;IGNORE +Index: localedata/locales/lo_LA +=================================================================== +--- localedata/locales/lo_LA.orig ++++ localedata/locales/lo_LA +@@ -230,6 +230,7 @@ + collating-element from "" + collating-element from "" + ++collating-element from "" + collating-element from "" + collating-element from "" + collating-element from "" +@@ -601,10 +602,10 @@ + + ;;; % Lao CHARACTER HHOr + "";;; +- "";;; +- "";;; +- "";;; +- "";;; ++ "";;; ++ "";;; ++ "";;; ++ "";;; + + + % order of Lao vowels +Index: localedata/locales/lv_LV +=================================================================== +--- localedata/locales/lv_LV.orig ++++ localedata/locales/lv_LV +@@ -919,7 +919,6 @@ + IGNORE;IGNORE;IGNORE; + IGNORE;IGNORE;IGNORE; + IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> + IGNORE;IGNORE;IGNORE; + IGNORE;IGNORE;IGNORE; + IGNORE;IGNORE;IGNORE; +Index: localedata/locales/nb_NO +=================================================================== +--- localedata/locales/nb_NO.orig ++++ localedata/locales/nb_NO +@@ -59,6 +59,7 @@ + collating-symbol + collating-symbol + collating-symbol ++collating-symbol + + reorder-after + +Index: localedata/locales/sr_CS +=================================================================== +--- localedata/locales/sr_CS.orig ++++ localedata/locales/sr_CS +@@ -137,6 +137,21 @@ + + copy "iso14651_t1" + ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++ ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++ ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" ++ + collating-symbol + collating-symbol + collating-symbol +@@ -179,35 +194,35 @@ + + reorder-after + ;;;IGNORE +- ;;;IGNORE ++ ;;;IGNORE + ;;;IGNORE + ;;;IGNORE + reorder-after + ;;;IGNORE +- ;;;IGNORE ++ ;;;IGNORE + ;;;IGNORE +- ;;;IGNORE ++ ;;;IGNORE + ;;;IGNORE + + reorder-after + ;;;IGNORE +- ;;;IGNORE ++ ;;;IGNORE + ;;;IGNORE + reorder-after + ;;;IGNORE +- ;;;IGNORE ++ ;;;IGNORE + ;;;IGNORE +- ;;;IGNORE ++ ;;;IGNORE + + reorder-after + ;;;IGNORE +- ;;;IGNORE ++ ;;;IGNORE + ;;;IGNORE + reorder-after + ;;;IGNORE +- ;;;IGNORE ++ ;;;IGNORE + ;;;IGNORE +- ;;;IGNORE ++ ;;;IGNORE + + reorder-after + ;;;IGNORE --- glibc-2.5.orig/debian/patches/localedata/locale-eu_FR.diff +++ glibc-2.5/debian/patches/localedata/locale-eu_FR.diff @@ -0,0 +1,217 @@ +#! /bin/sh -e + +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: #257840: locales: Please add the eu_FR locale +# DP: Related bugs: #257840 +# DP: Dpatch author: GOTO Masanori +# DP: Patch author: Christian Perrier +# DP: Upstream status: Not submitted +# DP: Status Details: sending upstream +# DP: Date: 2004-07-31 + +PATCHLEVEL=0 + +if [ $# -ne 2 ]; then + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +fi +case "$1" in + -patch) patch -d "$2" -f --no-backup-if-mismatch -p$PATCHLEVEL < $0;; + -unpatch) patch -d "$2" -f --no-backup-if-mismatch -R -p$PATCHLEVEL < $0;; + *) + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +esac +exit 0 + +# append the patch here and adjust the -p? flag in the patch calls. +Index: localedata/locales/eu_FR +=================================================================== +--- /dev/null ++++ localedata/locales/eu_FR +@@ -0,0 +1,83 @@ ++comment_char % ++escape_char / ++% ++% Basque Language Locale for France ++% Language: eu ++% Territory: FR ++% Revision: 1.0 ++% Date: 2004-06-24 ++% Users: general ++% Charset: ISO-8859-1 ++% Distribution and use is free, also ++% for commercial purposes. ++ ++LC_IDENTIFICATION ++title "Basque locale for France" ++source "Christian Perrier and the Debian Project" ++address "" ++contact "Christian Perrier" ++email "bubulle@debian.org" ++tel "" ++fax "" ++language "Basque" ++territory "France" ++revision "1.0" ++date "2004-06-24" ++% ++category "eu_FR:2000";LC_IDENTIFICATION ++category "eu_FR:2000";LC_CTYPE ++category "eu_FR:2000";LC_COLLATE ++category "eu_FR:2000";LC_TIME ++category "eu_FR:2000";LC_NUMERIC ++category "eu_FR:2000";LC_MONETARY ++category "eu_FR:2000";LC_MESSAGES ++category "eu_FR:2000";LC_PAPER ++category "eu_FR:2000";LC_NAME ++category "eu_FR:2000";LC_ADDRESS ++category "eu_FR:2000";LC_TELEPHONE ++ ++END LC_IDENTIFICATION ++ ++LC_COLLATE ++copy "iso14651_t1" ++END LC_COLLATE ++ ++LC_CTYPE ++copy "i18n" ++END LC_CTYPE ++ ++LC_MESSAGES ++copy "eu_ES" ++END LC_MESSAGES ++ ++LC_MONETARY ++copy "fr_FR" ++END LC_MONETARY ++ ++LC_NUMERIC ++copy "fr_FR" ++END LC_NUMERIC ++ ++LC_TIME ++copy "eu_ES" ++END LC_TIME ++ ++LC_PAPER ++copy "fr_FR" ++END LC_PAPER ++ ++LC_TELEPHONE ++copy "fr_FR" ++END LC_TELEPHONE ++ ++LC_MEASUREMENT ++copy "fr_FR" ++END LC_MEASUREMENT ++ ++LC_NAME ++copy "eu_ES" ++END LC_NAME ++ ++LC_ADDRESS ++copy "fr_FR" ++END LC_ADDRESS +Index: localedata/SUPPORTED +=================================================================== +--- localedata/SUPPORTED.orig ++++ localedata/SUPPORTED +@@ -173,6 +173,9 @@ + eu_ES.UTF-8/UTF-8 \ + eu_ES/ISO-8859-1 \ + eu_ES@euro/ISO-8859-15 \ ++eu_FR.UTF-8/UTF-8 \ ++eu_FR/ISO-8859-1 \ ++eu_FR@euro/ISO-8859-15 \ + fa_IR/UTF-8 \ + fi_FI.UTF-8/UTF-8 \ + fi_FI/ISO-8859-1 \ +Index: localedata/locales/eu_FR@euro +=================================================================== +--- /dev/null ++++ localedata/locales/eu_FR@euro +@@ -0,0 +1,83 @@ ++comment_char % ++escape_char / ++% ++% Basque Language Locale for France ++% Language: eu ++% Territory: FR ++% Revision: 1.0 ++% Date: 2004-06-24 ++% Users: general ++% Charset: ISO-8859-15 ++% Distribution and use is free, also ++% for commercial purposes. ++ ++LC_IDENTIFICATION ++title "Basque locale for France" ++source "Christian Perrier and the Debian Project" ++address "" ++contact "Christian Perrier" ++email "bubulle@debian.org" ++tel "" ++fax "" ++language "Basque" ++territory "France" ++revision "1.0" ++date "2004-06-24" ++% ++category "eu_FR:2000";LC_IDENTIFICATION ++category "eu_FR:2000";LC_CTYPE ++category "eu_FR:2000";LC_COLLATE ++category "eu_FR:2000";LC_TIME ++category "eu_FR:2000";LC_NUMERIC ++category "eu_FR:2000";LC_MONETARY ++category "eu_FR:2000";LC_MESSAGES ++category "eu_FR:2000";LC_PAPER ++category "eu_FR:2000";LC_NAME ++category "eu_FR:2000";LC_ADDRESS ++category "eu_FR:2000";LC_TELEPHONE ++ ++END LC_IDENTIFICATION ++ ++LC_COLLATE ++copy "iso14651_t1" ++END LC_COLLATE ++ ++LC_CTYPE ++copy "i18n" ++END LC_CTYPE ++ ++LC_MESSAGES ++copy "eu_ES" ++END LC_MESSAGES ++ ++LC_MONETARY ++copy "fr_FR" ++END LC_MONETARY ++ ++LC_NUMERIC ++copy "fr_FR" ++END LC_NUMERIC ++ ++LC_TIME ++copy "eu_ES" ++END LC_TIME ++ ++LC_PAPER ++copy "fr_FR" ++END LC_PAPER ++ ++LC_TELEPHONE ++copy "fr_FR" ++END LC_TELEPHONE ++ ++LC_MEASUREMENT ++copy "fr_FR" ++END LC_MEASUREMENT ++ ++LC_NAME ++copy "eu_ES" ++END LC_NAME ++ ++LC_ADDRESS ++copy "fr_FR" ++END LC_ADDRESS --- glibc-2.5.orig/debian/patches/localedata/fo_FO-date_fmt.diff +++ glibc-2.5/debian/patches/localedata/fo_FO-date_fmt.diff @@ -0,0 +1,35 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Fix d_t_fmt and date_fmt in fo_FO +# DP: Related bugs: #307194 +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Jacob Sparre Andersen +# DP: Upstream status: not submitted +# DP: Date: 2006-01-10 + +Index: glibc-2.3.5/localedata/locales/fo_FO +=================================================================== +--- glibc-2.3.5.orig/localedata/locales/fo_FO ++++ glibc-2.3.5/localedata/locales/fo_FO +@@ -95,14 +95,18 @@ + "";/ + "";/ + "" +-d_t_fmt "" ++d_t_fmt "/ ++/ ++" + d_fmt "" + t_fmt "" + am_pm "";"" + t_fmt_ampm "" +-date_fmt "/ +-/ +-" ++date_fmt "/ ++/ ++/ ++/ ++" + END LC_TIME + + LC_MESSAGES --- glibc-2.5.orig/debian/patches/localedata/locales_GB.diff +++ glibc-2.5/debian/patches/localedata/locales_GB.diff @@ -0,0 +1,42 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Add AM/PM strings to cy_GB and en_GB. +# DP: This patch has been rejected upstream but is in fedora-branch. +# DP: Related bugs: #240901 +# DP: Dpatch author: Denis Barbier +# DP: Patch author: taken from Fedora +# DP: Upstream status: not submitted +# DP: Date: 2006-02-16 + +Index: localedata/locales/cy_GB +=================================================================== +--- localedata/locales/cy_GB.orig ++++ localedata/locales/cy_GB +@@ -248,8 +248,11 @@ + d_t_fmt "" + d_fmt "" + t_fmt "" +-am_pm "";"" +-t_fmt_ampm "" ++am_pm "";"" ++t_fmt_ampm "" ++date_fmt "/ ++/ ++" + END LC_TIME + + LC_MESSAGES +Index: localedata/locales/en_GB +=================================================================== +--- localedata/locales/en_GB.orig ++++ localedata/locales/en_GB +@@ -116,8 +116,8 @@ + d_t_fmt "" + d_fmt "" + t_fmt "" +-am_pm "";"" +-t_fmt_ampm "" ++am_pm "";"" ++t_fmt_ampm "" + date_fmt "/ + / + " --- glibc-2.5.orig/debian/patches/localedata/local-all-no-archive.diff +++ glibc-2.5/debian/patches/localedata/local-all-no-archive.diff @@ -0,0 +1,13 @@ +Index: localedata/Makefile +=================================================================== +--- localedata/Makefile.orig ++++ localedata/Makefile +@@ -222,7 +222,7 @@ + echo -n `echo $$locale | sed 's/\([^\@]*\)\(\@.*\)*/\2/'`; \ + echo -n '...'; \ + input=`echo $$locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; \ +- $(LOCALEDEF) --alias-file=../intl/locale.alias \ ++ $(LOCALEDEF) --alias-file=../intl/locale.alias --no-archive \ + -i locales/$$input -c -f charmaps/$$charset \ + $(addprefix --prefix=,$(install_root)) $$locale; \ + echo ' done'; \ --- glibc-2.5.orig/debian/patches/localedata/locale-sa_IN.diff +++ glibc-2.5/debian/patches/localedata/locale-sa_IN.diff @@ -0,0 +1,267 @@ +Index: localedata/locales/sa_IN +=================================================================== +--- /dev/null ++++ localedata/locales/sa_IN +@@ -0,0 +1,250 @@ ++comment_char % ++escape_char / ++% Sanskrit language locale for India. ++% Contributed by Vidya Ayer ++% and Christian Perrier ++ ++LC_IDENTIFICATION ++title "Sanskrit language locale for India" ++source "The Debian project" ++address "" ++contact "Christian Perrier" ++email "bubulle@debian.org" ++tel "" ++fax "" ++language "Sanskrit" ++territory "India" ++revision "1.0" ++date "2005-09-25" ++% ++category "sa_IN:2000";LC_IDENTIFICATION ++category "sa_IN:2000";LC_CTYPE ++category "sa_IN:2000";LC_COLLATE ++category "sa_IN:2000";LC_TIME ++category "sa_IN:2000";LC_NUMERIC ++category "sa_IN:2000";LC_MONETARY ++category "sa_IN:2000";LC_MESSAGES ++category "sa_IN:2000";LC_PAPER ++category "sa_IN:2000";LC_NAME ++category "sa_IN:2000";LC_ADDRESS ++category "sa_IN:2000";LC_TELEPHONE ++ ++END LC_IDENTIFICATION ++ ++LC_CTYPE ++copy "i18n" ++END LC_CTYPE ++ ++LC_COLLATE ++ ++% Copy the template from ISO/IEC 14651 ++copy "iso14651_t1" ++ ++END LC_COLLATE ++ ++LC_MONETARY ++% This is the POSIX Locale definition the LC_MONETARY category. ++% These are generated based on XML base Locale difintion file ++% for IBM Class for Unicode/Java ++% ++int_curr_symbol "" ++currency_symbol "" ++mon_decimal_point "" ++mon_thousands_sep "" ++mon_grouping 3 ++positive_sign "" ++negative_sign "" ++int_frac_digits 2 ++frac_digits 2 ++p_cs_precedes 1 ++p_sep_by_space 1 ++n_cs_precedes 1 ++n_sep_by_space 1 ++p_sign_posn 1 ++n_sign_posn 1 ++% ++END LC_MONETARY ++ ++ ++LC_NUMERIC ++% This is the POSIX Locale definition for the LC_NUMERIC category. ++% ++decimal_point "" ++thousands_sep "" ++grouping 3 ++% ++END LC_NUMERIC ++ ++ ++LC_TIME ++% This is the POSIX Locale definition for the LC_TIME category. ++% These are generated based on XML base Locale difintion file ++% for IBM Class for Unicode/Java ++% ++% Abbreviated weekday names (%a) ++% ravih,somah,mangalah,budhah,brhaspatih,shukra,shanih ++abday "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" ++% ++% Full weekday names (%A) ++% ravivasarah, somavasarah, mangalavasarah, budhavasarah, brhaspativasarah, shukravasarah, shanivasarah ++day "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" ++% ++% Abbreviated month names (%b) ++% Below comes from hi_IN. ++% Sanskrit uses a lunar calendar. When gregorian month names ++% are needed, the names are the same names than those used ++% by Hindi ++% names for gregorian month names: ++abmon "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" ++% ++% Full month names (%B) ++% Sanskrit uses a lunar calendar. When gregorian month names ++% are needed, the names are the same names than those used ++% by Hindi ++% Lunar calendar month names: ++% Chaitra March 22 ++% Vaisakha April 29 ++% jyeshthah May 22 ++% ashadah June 22 ++% shravanah July 23 ++% bhadrapadah August 23 ++% ashvinah September 23 ++% kartikah October 23 ++% margashirsah November 22 ++% paushah December 22 ++% maghah January 29 ++% phalgunah February 20 ++% names for gregorian month names: ++mon "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" ++% ++% Equivalent of AM PM ++am_pm "";/ ++ "" ++% ++% Appropriate date and time representation ++% %A %d %b %Y%I:%M:%S %Z ++d_t_fmt "/ ++/ ++" ++% ++% Appropriate date representation ++% %A %d %b %Y ++d_fmt "/ ++" ++% ++% Appropriate time representation ++% %I:%M:%S %Z ++t_fmt "/ ++" ++% ++% Appropriate 12 h time representation (%r) ++t_fmt_ampm "/ ++" ++% ++date_fmt "/ ++/ ++" ++END LC_TIME ++ ++ ++LC_MESSAGES ++% "^[aAyY].*" ++% "^[nN].*" ++yesexpr "" ++noexpr "" ++END LC_MESSAGES ++ ++ ++LC_PAPER ++% This is the ISO_IEC TR14652 Locale definition for the LC_PAPER category ++% generated by IBM Basic CountryPack Transformer. ++height 297 ++width 210 ++ ++END LC_PAPER ++ ++ ++LC_NAME ++% This is the ISO_IEC TR14652 Locale definition for the ++% LC_NAME category. ++% ++name_fmt "/ ++" ++name_gen "" ++% ++% shri ++name_mr "" ++% For boys under 18, this is "kumar" ++% but locales are sexist and do not even imagine ++% that some language may have different forms for MEN too ++% name_mr "" ++% shrimati ++name_mrs "" ++% kumari ++name_miss "" ++% shrimati ++name_ms "" ++ ++END LC_NAME ++ ++ ++LC_ADDRESS ++% This is the ISO_IEC TR14652 Locale definition for the ++% LC_ADDRESS ++postal_fmt "/ ++" ++ ++country_ab2 "" ++country_ab3 "" ++country_num 356 ++END LC_ADDRESS ++ ++ ++LC_TELEPHONE ++% This is the ISO_IEC TR14652 Locale definition for the LC_TELEPHONE ++% generated by IBM Basic CountryPack Transformer. ++tel_int_fmt "" ++int_prefix "" ++int_select "" ++END LC_TELEPHONE ++ ++ ++LC_MEASUREMENT ++% This is the ISO_IEC TR14652 Locale definition for the LC_MEASUREMENT ++% category generated by IBM Basic CountryPack Transformer. ++measurement 1 ++END LC_MEASUREMENT +Index: localedata/SUPPORTED +=================================================================== +--- localedata/SUPPORTED.orig ++++ localedata/SUPPORTED +@@ -312,6 +312,7 @@ + ru_UA.UTF-8/UTF-8 \ + ru_UA/KOI8-U \ + rw_RW/UTF-8 \ ++sa_IN/UTF-8 \ + se_NO/UTF-8 \ + si_LK/UTF-8 \ + sid_ET/UTF-8 \ --- glibc-2.5.orig/debian/patches/localedata/locale-ia.diff +++ glibc-2.5/debian/patches/localedata/locale-ia.diff @@ -0,0 +1,162 @@ +Locale definition for the interlingua locale, submitted by +Alberto Mardegan in #224756. +Ulrich Drepper claimed that he will not accept artificial +languages (like interlingua and esperanto), this locale +will thus not be submitted upstream. + +Index: localedata/locales/ia +=================================================================== +--- /dev/null ++++ localedata/locales/ia +@@ -0,0 +1,139 @@ ++comment_char % ++escape_char / ++% ++% Interlingua Language Locale ++ ++LC_IDENTIFICATION ++title "Interlingua locale" ++source "" ++address "" ++contact "" ++email "mardy@despammed.com" ++tel "" ++fax "" ++language "Interlingua" ++territory "" ++revision "1.0" ++date "2003-11-25" ++% ++category "ia:2000";LC_IDENTIFICATION ++category "ia:2000";LC_CTYPE ++category "ia:2000";LC_COLLATE ++category "ia:2000";LC_TIME ++category "ia:2000";LC_NUMERIC ++category "ia:2000";LC_MONETARY ++category "ia:2000";LC_MESSAGES ++category "ia:2000";LC_PAPER ++category "ia:2000";LC_NAME ++category "ia:2000";LC_ADDRESS ++category "ia:2000";LC_TELEPHONE ++ ++END LC_IDENTIFICATION ++ ++LC_COLLATE ++copy "iso14651_t1" ++END LC_COLLATE ++ ++LC_CTYPE ++copy "i18n" ++END LC_CTYPE ++ ++LC_MESSAGES ++yesexpr "" ++noexpr "" ++END LC_MESSAGES ++ ++LC_MONETARY ++int_curr_symbol "" ++currency_symbol "" ++mon_decimal_point "" ++mon_thousands_sep "" ++mon_grouping 3;3 ++positive_sign "" ++negative_sign "" ++int_frac_digits 2 ++frac_digits 2 ++p_cs_precedes 1 ++p_sep_by_space 1 ++n_cs_precedes 1 ++n_sep_by_space 1 ++p_sign_posn 1 ++n_sign_posn 1 ++END LC_MONETARY ++ ++LC_NUMERIC ++decimal_point "" ++thousands_sep "" ++grouping 0;0 ++END LC_NUMERIC ++ ++LC_TIME ++abday "";"";/ ++ "";"";/ ++ "";"";/ ++ "" ++day "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" ++abmon "";"";/ ++ "";"";/ ++ "";"";/ ++ "";"";/ ++ "";"";/ ++ "";"" ++mon "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" ++d_t_fmt "" ++d_fmt "" ++t_fmt "" ++am_pm "";"" ++t_fmt_ampm "" ++date_fmt "/ ++/ ++" ++END LC_TIME ++ ++LC_PAPER ++% FIXME ++height 297 ++% FIXME ++width 210 ++END LC_PAPER ++ ++LC_TELEPHONE ++tel_int_fmt "/ ++" ++int_select "" ++END LC_TELEPHONE ++ ++LC_MEASUREMENT ++% FIXME ++measurement 1 ++END LC_MEASUREMENT ++ ++LC_NAME ++name_fmt "/ ++" ++END LC_NAME ++ ++LC_ADDRESS ++postal_fmt "/ ++/ ++/ ++/ ++" ++END LC_ADDRESS +Index: localedata/SUPPORTED +=================================================================== +--- localedata/SUPPORTED.orig ++++ localedata/SUPPORTED +@@ -226,6 +226,7 @@ + hu_HU/ISO-8859-2 \ + hy_AM/UTF-8 \ + hy_AM.ARMSCII-8/ARMSCII-8 \ ++ia/UTF-8 \ + id_ID.UTF-8/UTF-8 \ + id_ID/ISO-8859-1 \ + is_IS.UTF-8/UTF-8 \ --- glibc-2.5.orig/debian/patches/localedata/locale-csb_PL.diff +++ glibc-2.5/debian/patches/localedata/locale-csb_PL.diff @@ -0,0 +1,57 @@ +Modify collation rules which could cause errors in regular expressions +with character ranges, as was reported in #362514 for another locale. + +Index: glibc-2.5/localedata/locales/csb_PL +=================================================================== +--- glibc-2.5.orig/localedata/locales/csb_PL ++++ glibc-2.5/localedata/locales/csb_PL +@@ -93,38 +93,45 @@ + + reorder-after + ;;;IGNORE +- ;;;IGNORE + ;;;IGNORE ++reorder-after ++ ;;;IGNORE + ;;;IGNORE + + reorder-after + ;;;IGNORE +- ;;;IGNORE + ;;;IGNORE ++reorder-after ++ ;;;IGNORE + ;;;IGNORE + + reorder-after + ;;;IGNORE ++reorder-after + ;;;IGNORE + + reorder-after + ;;;IGNORE ++reorder-after + ;;;IGNORE + + reorder-after + ;;;IGNORE +- ;;;IGNORE + ;;;IGNORE +- ;;;IGNORE + ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE + ;;;IGNORE + + reorder-after + ;;;IGNORE ++reorder-after + ;;;IGNORE + + reorder-after + ;;;IGNORE ++reorder-after + ;;;IGNORE + + reorder-end --- glibc-2.5.orig/debian/patches/localedata/supported.diff +++ glibc-2.5/debian/patches/localedata/supported.diff @@ -0,0 +1,72 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Add several locales to localedata.SUPPORTED +# DP: - ru_RU.CP1251 was requested in #225516 +# DP: - uz_UZ.UTF-8 was clearly missing, uz_UZ had no UTF-8 variant +# DP: - da_DK.ISO-8859-15, en_GB.ISO-8859-15, en_US.ISO-8859-15, no_NO.UTF-8, +# DP: no_NO and sv_SE.ISO-8859-15 are found in fedora-branch CVS branch. +# DP: Related bugs: #225516 (ru_RU.CP1251) +# DP: Dpatch author: Denis Barbier +# DP: Upstream status: not submitted +# DP: Date: 2006-01-10 + +Index: localedata/SUPPORTED +=================================================================== +--- localedata/SUPPORTED.orig ++++ localedata/SUPPORTED +@@ -77,6 +77,7 @@ + cy_GB/ISO-8859-14 \ + da_DK.UTF-8/UTF-8 \ + da_DK/ISO-8859-1 \ ++da_DK.ISO-8859-15/ISO-8859-15 \ + de_AT.UTF-8/UTF-8 \ + de_AT/ISO-8859-1 \ + de_AT@euro/ISO-8859-15 \ +@@ -106,6 +107,7 @@ + en_DK/ISO-8859-1 \ + en_GB.UTF-8/UTF-8 \ + en_GB/ISO-8859-1 \ ++en_GB.ISO-8859-15/ISO-8859-15 \ + en_HK.UTF-8/UTF-8 \ + en_HK/ISO-8859-1 \ + en_IE.UTF-8/UTF-8 \ +@@ -120,6 +122,7 @@ + en_SG/ISO-8859-1 \ + en_US.UTF-8/UTF-8 \ + en_US/ISO-8859-1 \ ++en_US.ISO-8859-15/ISO-8859-15 \ + en_ZA.UTF-8/UTF-8 \ + en_ZA/ISO-8859-1 \ + en_ZW.UTF-8/UTF-8 \ +@@ -281,6 +284,8 @@ + nl_NL@euro/ISO-8859-15 \ + nn_NO.UTF-8/UTF-8 \ + nn_NO/ISO-8859-1 \ ++no_NO.UTF-8/UTF-8 \ ++no_NO/ISO-8859-1 \ + nr_ZA/UTF-8 \ + nso_ZA/UTF-8 \ + oc_FR.UTF-8/UTF-8 \ +@@ -302,6 +307,7 @@ + ro_RO/ISO-8859-2 \ + ru_RU.KOI8-R/KOI8-R \ + ru_RU.UTF-8/UTF-8 \ ++ru_RU.CP1251/CP1251 \ + ru_RU/ISO-8859-5 \ + ru_UA.UTF-8/UTF-8 \ + ru_UA/KOI8-U \ +@@ -333,6 +339,7 @@ + sv_FI@euro/ISO-8859-15 \ + sv_SE.UTF-8/UTF-8 \ + sv_SE/ISO-8859-1 \ ++sv_SE.ISO-8859-15/ISO-8859-15 \ + ta_IN/UTF-8 \ + te_IN/UTF-8 \ + tg_TJ.UTF-8/UTF-8 \ +@@ -354,6 +361,7 @@ + uk_UA.UTF-8/UTF-8 \ + uk_UA/KOI8-U \ + ur_PK/UTF-8 \ ++uz_UZ.UTF-8/UTF-8 \ + uz_UZ/ISO-8859-1 \ + uz_UZ@cyrillic/UTF-8 \ + ve_ZA/UTF-8 \ --- glibc-2.5.orig/debian/patches/localedata/locale-de_CH.diff +++ glibc-2.5/debian/patches/localedata/locale-de_CH.diff @@ -0,0 +1,39 @@ +#! /bin/sh -e + +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Changing d_fmt from "%Y-%m-%d" to "%d.%m.%Y" +# DP: Related bugs: #27397 +# DP: Dpatch author: +# DP: Patch author: Alastair McKinstry +# DP: Upstream status: +# DP: Status Details: +# DP: Date: 2002-02-11 + +if [ $# -ne 2 ]; then + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +fi +case "$1" in + -patch) patch -d "$2" -f --no-backup-if-mismatch -p1 < $0;; + -unpatch) patch -d "$2" -f --no-backup-if-mismatch -R -p1 < $0;; + *) + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +esac +exit 0 + + +# append the patch here and adjust the -p? flag in the patch calls. +diff -urN glibc-2.2.5.orig/localedata/locales/de_CH glibc-2.2.5/localedata/locales/de_CH +--- glibc-2.2.5.orig/localedata/locales/de_CH Thu Dec 20 10:51:20 2001 ++++ glibc-2.2.5/localedata/locales/de_CH Sun Mar 10 23:00:09 2002 +@@ -114,7 +114,7 @@ + "";/ + "" + d_t_fmt "" +-d_fmt "" ++d_fmt "" + t_fmt "" + am_pm "";"" + t_fmt_ampm "" + --- glibc-2.5.orig/debian/patches/localedata/new-valencian-locale.diff +++ glibc-2.5/debian/patches/localedata/new-valencian-locale.diff @@ -0,0 +1,116 @@ +Submitted upstream: BZ2522 + +Index: localedata/locales/ca_ES@valencia +=================================================================== +--- /dev/null ++++ localedata/locales/ca_ES@valencia +@@ -0,0 +1,96 @@ ++comment_char % ++escape_char / ++% ++% Valencian (southern Catalan) locale for Spain with Euro ++% ++% Note that this locale is almost the same as ca_ES@euro. The point of having ++% a separate locale is only for PO translations, which have a lot of social ++% support and are very appreciated by the Valencian-speaking community. ++% ++% Contact: Jordi Mallach ++% Email: jordi@gnu.org ++% Tel: ++% Fax: ++% Language: ca ++% Territory: ES ++% Option: euro ++% Revision: 1.0 ++% Date: 2006-04-06 ++% Application: general ++% Users: general ++% Repertoiremap: mnemonic,ds ++% Charset: ISO-8859-15 ++% Distribution and use is free, also ++% for commercial purposes. ++ ++LC_IDENTIFICATION ++title "Valencian (southern Catalan) locale for Spain with Euro" ++source "" ++address "" ++contact "Jordi Mallach" ++email "jordi@gnu.org" ++tel "" ++fax "" ++language "Catalan" ++territory "Spain" ++revision "1.0" ++date "2006-04-06" ++% ++category "ca_ES@valencia:2006";LC_IDENTIFICATION ++category "ca_ES@valencia:2006";LC_CTYPE ++category "ca_ES@valencia:2006";LC_COLLATE ++category "ca_ES@valencia:2006";LC_MONETARY ++category "ca_ES@valencia:2006";LC_NUMERIC ++category "ca_ES@valencia:2006";LC_TIME ++category "ca_ES@valencia:2006";LC_MESSAGES ++category "ca_ES@valencia:2006";LC_PAPER ++category "ca_ES@valencia:2006";LC_NAME ++category "ca_ES@valencia:2006";LC_ADDRESS ++category "ca_ES@valencia:2006";LC_TELEPHONE ++category "ca_ES@valencia:2006";LC_MEASUREMENT ++ ++END LC_IDENTIFICATION ++ ++LC_CTYPE ++copy "i18n" ++END LC_CTYPE ++ ++LC_COLLATE ++copy "ca_ES" ++END LC_COLLATE ++ ++LC_MONETARY ++copy "ca_ES" ++END LC_MONETARY ++ ++LC_NUMERIC ++copy "ca_ES" ++END LC_NUMERIC ++ ++LC_TIME ++copy "ca_ES" ++END LC_TIME ++ ++LC_MESSAGES ++copy "ca_ES" ++END LC_MESSAGES ++ ++LC_PAPER ++copy "ca_ES" ++END LC_PAPER ++ ++LC_NAME ++copy "ca_ES" ++END LC_NAME ++ ++LC_ADDRESS ++copy "ca_ES" ++END LC_ADDRESS ++ ++LC_TELEPHONE ++copy "ca_ES" ++END LC_TELEPHONE ++ ++LC_MEASUREMENT ++copy "ca_ES" ++END LC_MEASUREMENT +Index: localedata/SUPPORTED +=================================================================== +--- localedata/SUPPORTED.orig ++++ localedata/SUPPORTED +@@ -66,6 +66,8 @@ + ca_ES.UTF-8/UTF-8 \ + ca_ES/ISO-8859-1 \ + ca_ES@euro/ISO-8859-15 \ ++ca_ES.UTF-8@valencia/UTF-8 \ ++ca_ES@valencia/ISO-8859-15 \ + ca_FR.UTF-8/UTF-8 \ + ca_FR/ISO-8859-15 \ + ca_IT.UTF-8/UTF-8 \ --- glibc-2.5.orig/debian/patches/localedata/locale-en_DK.diff +++ glibc-2.5/debian/patches/localedata/locale-en_DK.diff @@ -0,0 +1,85 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Improve en_DK and add en_DK.ISO-8859-15 to SUPPORTED +# DP: This locale is only useful to provide ISO8601 date formats. +# DP: Related bugs: #323159 +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Jakob Bohm +# DP: Upstream status: not submitted +# DP: Date: 2006-01-16 + +Index: localedata/SUPPORTED +=================================================================== +--- localedata/SUPPORTED.orig ++++ localedata/SUPPORTED +@@ -104,6 +104,7 @@ + en_CA.UTF-8/UTF-8 \ + en_CA/ISO-8859-1 \ + en_DK.UTF-8/UTF-8 \ ++en_DK.ISO-8859-15/ISO-8859-15 \ + en_DK/ISO-8859-1 \ + en_GB.UTF-8/UTF-8 \ + en_GB/ISO-8859-1 \ +Index: localedata/locales/en_DK +=================================================================== +--- localedata/locales/en_DK.orig ++++ localedata/locales/en_DK +@@ -60,27 +60,11 @@ + END LC_CTYPE + + LC_MONETARY +-int_curr_symbol "" +-currency_symbol "" +-mon_decimal_point "" +-mon_thousands_sep "" +-mon_grouping 3;3 +-positive_sign "" +-negative_sign "" +-int_frac_digits 2 +-frac_digits 2 +-p_cs_precedes 1 +-p_sep_by_space 0 +-n_cs_precedes 1 +-n_sep_by_space 0 +-p_sign_posn 1 +-n_sign_posn 1 ++copy "da_DK" + END LC_MONETARY + + LC_NUMERIC +-decimal_point "" +-thousands_sep "" +-grouping 3;3 ++copy "da_DK" + END LC_NUMERIC + + LC_TIME +@@ -125,8 +109,7 @@ + END LC_TIME + + LC_MESSAGES +-yesexpr "" +-noexpr "" ++copy "da_DK" + END LC_MESSAGES + + LC_PAPER +@@ -142,17 +125,9 @@ + END LC_MEASUREMENT + + LC_NAME +-name_fmt "/ +-" ++copy "da_DK" + END LC_NAME + + LC_ADDRESS +-postal_fmt "/ +-/ +-/ +-/ +-" +-country_ab2 "" +-country_ab3 "" +-country_num 208 ++copy "da_DK" + END LC_ADDRESS --- glibc-2.5.orig/debian/patches/localedata/locale-eo_EO.diff +++ glibc-2.5/debian/patches/localedata/locale-eo_EO.diff @@ -0,0 +1,258 @@ +#! /bin/sh -e + +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Add Esperanto locale (eo_EO) +# DP: Related bugs: #78085 #233308 +# DP: Dpatch author: Ben Collins +# DP: Patch author: Robert Thomson and Edmund GRIMLEY +# DP: Upstream status: Not submitted +# DP: Status Details: +# DP: Date: 2001-03-23 + +if [ $# -ne 2 ]; then + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +fi +case "$1" in + -patch) patch -d "$2" -f --no-backup-if-mismatch -p1 < $0;; + -unpatch) patch -d "$2" -f --no-backup-if-mismatch -R -p1 < $0;; + *) + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +esac +exit 0 + +Index: localedata/locales/eo +=================================================================== +--- /dev/null ++++ localedata/locales/eo +@@ -0,0 +1,216 @@ ++comment_char % ++escape_char / ++ ++% Esperanto language locale for ... ++% Edmund GRIMLEY EVANS ++ ++LC_IDENTIFICATION ++title "Esperanto locale" ++source "" ++address "" ++contact "" ++email "debian-esperanto@lists.debian.org" ++tel "" ++fax "" ++language "Esperanto" ++territory "" ++revision "draft" ++date "2002-07-04" ++% ++category "eo:2000";LC_IDENTIFICATION ++category "eo:2000";LC_CTYPE ++category "eo:2000";LC_COLLATE ++category "eo:2000";LC_TIME ++category "eo:2000";LC_NUMERIC ++category "eo:2000";LC_MONETARY ++category "eo:2000";LC_MESSAGES ++category "eo:2000";LC_PAPER ++category "eo:2000";LC_NAME ++category "eo:2000";LC_ADDRESS ++category "eo:2000";LC_TELEPHONE ++ ++END LC_IDENTIFICATION ++ ++LC_CTYPE ++copy "i18n" ++END LC_CTYPE ++ ++LC_COLLATE ++copy "iso14651_t1" ++ ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++ ++reorder-after ++ ++reorder-after ++ ++reorder-after ++ ++reorder-after ++ ++reorder-after ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE % Ĉ ++reorder-after ++ ;;;IGNORE % ĉ ++reorder-after ++ ;;;IGNORE % Ĝ ++reorder-after ++ ;;;IGNORE % ĝ ++reorder-after ++ ;;;IGNORE % Ĥ ++reorder-after ++ ;;;IGNORE % ĥ ++reorder-after ++ ;;;IGNORE % Ĵ ++reorder-after ++ ;;;IGNORE % ĵ ++reorder-after ++ ;;;IGNORE % Ŝ ++reorder-after ++ ;;;IGNORE % ŝ ++reorder-after ++ ;;;IGNORE % Ŭ ++reorder-after ++ ;;;IGNORE % ŭ ++ ++reorder-end ++ ++END LC_COLLATE ++ ++LC_MONETARY ++int_curr_symbol "" % "EUR" ++currency_symbol "" % "EUR" ++% "" ne eblas en ISO-8859-3 ++mon_decimal_point "" ++mon_thousands_sep "" ++mon_grouping 3;3 ++positive_sign "" ++negative_sign "" ++int_frac_digits 2 ++frac_digits 2 ++p_cs_precedes 1 ++p_sep_by_space 1 ++n_cs_precedes 1 ++n_sep_by_space 1 ++p_sign_posn 1 ++n_sign_posn 1 ++END LC_MONETARY ++ ++LC_NUMERIC ++decimal_point "" ++thousands_sep "" ++grouping 0;0 ++END LC_NUMERIC ++ ++LC_TIME ++ ++% "dim";"lun";"mar";"mer";"ĵaŭ";"ven";"sab" ++abday "";"";/ ++ "";"";/ ++ "";"";/ ++ "" ++ ++% "dimanĉo";"lundo";"mardo";"merkredo";"ĵaŭdo";"vendredo";"sabato" ++day "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" ++ ++% "Jan";"Feb";"Mar";"Apr";"Maj";"Jun";"Jul";"Aŭg";"Sep";"Okt";"Nov";"Dec" ++abmon "";"";/ ++ "";"";/ ++ "";"";/ ++ "";"";/ ++ "";"";/ ++ "";"" ++ ++% "Januaro";"Februaro";"Marto";"Aprilo";"Majo";"Junio"; ++% "Julio";"Aŭgusto";"Septembro";"Oktobro";"Novembro";"Decembro" ++mon "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" ++ ++am_pm "";"" ++ ++% "%a %d %b %Y %T %z" ++d_t_fmt "" ++ ++% "%Y-%m-%d" ++d_fmt "" ++ ++% "%T" ++t_fmt "" ++ ++t_fmt_ampm "" ++ ++% date_fmt ? ++ ++END LC_TIME ++ ++LC_MESSAGES ++% "^[JjYy].*" ++yesexpr "" ++% "^[Nn].*" ++noexpr "" ++END LC_MESSAGES ++ ++LC_PAPER ++height 297 ++width 210 ++END LC_PAPER ++ ++LC_TELEPHONE ++% "+%c %a %l" ++tel_int_fmt "/ ++" ++% "00" ++int_select "" ++END LC_TELEPHONE ++ ++LC_MEASUREMENT ++measurement 1 ++END LC_MEASUREMENT ++ ++LC_NAME ++% "%d%t%g%t%m%t%f" ++name_fmt "/ ++" ++name_mr "" % "s-ro" ++name_mrs "" % "s-ino" ++name_ms "" % "s-ino" ++END LC_NAME ++ ++LC_ADDRESS ++% "%f%N%a%N%d%N%b%N%s %h %e %r%N%%z %T%N%c%N" ++postal_fmt "/ ++/ ++/ ++/ ++" ++% "Esperanto" ++lang_name "" ++lang_ab "" % "eo" ++lang_term "" % "epo" ++END LC_ADDRESS +Index: localedata/SUPPORTED +=================================================================== +--- localedata/SUPPORTED.orig ++++ localedata/SUPPORTED +@@ -124,6 +124,8 @@ + en_ZA/ISO-8859-1 \ + en_ZW.UTF-8/UTF-8 \ + en_ZW/ISO-8859-1 \ ++eo.UTF-8/UTF-8 \ ++eo/ISO-8859-3 \ + es_AR.UTF-8/UTF-8 \ + es_AR/ISO-8859-1 \ + es_BO.UTF-8/UTF-8 \ --- glibc-2.5.orig/debian/patches/localedata/locale-wo_SN.diff +++ glibc-2.5/debian/patches/localedata/locale-wo_SN.diff @@ -0,0 +1,197 @@ +Index: localedata/locales/wo_SN +=================================================================== +--- /dev/null ++++ localedata/locales/wo_SN +@@ -0,0 +1,180 @@ ++comment_char % ++escape_char / ++% ++% Wolof locale for Senegal ++% Source: The Debian Project ++% Contact: Christian Perrier/Samba Ndao Diop ++% Email: bubulle@debian.org/samba.ndao.diop@tiscali.fr ++% Tel: +33 - 130699222 ++% Language: wo ++% Territory: SN ++% Revision: 1.0 ++% Date: 2004-09-15 ++% Users: general ++% Charset: UTF-8 ++% Distribution and use is free, also ++% for commercial purposes. ++ ++LC_IDENTIFICATION ++title "Wolof locale for Senegal" ++source "The Debian Project" ++address "" ++contact "Christian Perrier" ++email "bubulle@debian.org" ++tel "" ++fax "" ++language "Wolof" ++territory "Senegal" ++revision "1.0" ++date "2004-09-08" ++% ++category "mg_MG:2000";LC_IDENTIFICATION ++category "mg_MG:2000";LC_CTYPE ++category "mg_MG:2000";LC_COLLATE ++category "mg_MG:2000";LC_TIME ++category "mg_MG:2000";LC_NUMERIC ++category "mg_MG:2000";LC_MONETARY ++category "mg_MG:2000";LC_MESSAGES ++category "mg_MG:2000";LC_PAPER ++category "mg_MG:2000";LC_NAME ++category "mg_MG:2000";LC_ADDRESS ++category "mg_MG:2000";LC_TELEPHONE ++ ++END LC_IDENTIFICATION ++ ++LC_CTYPE ++copy "i18n" ++ ++translit_start ++ ++% Accents are simply omitted if they cannot be represented. ++include "translit_combining";"" ++ ++translit_end ++ ++END LC_CTYPE ++ ++LC_COLLATE ++% Copy the template from ISO/IEC 14651 ++copy "iso14651_t1" ++END LC_COLLATE ++ ++LC_MESSAGES ++% Yes=Waaw ++% No=Det ++yesexpr "" ++noexpr "" ++END LC_MESSAGES ++ ++LC_MONETARY ++int_curr_symbol "" ++currency_symbol "" ++mon_decimal_point "" ++mon_thousands_sep "" ++mon_grouping 3;3 ++positive_sign "" ++negative_sign "" ++int_frac_digits 2 ++frac_digits 2 ++p_cs_precedes 0 ++p_sep_by_space 1 ++n_cs_precedes 0 ++n_sep_by_space 1 ++p_sign_posn 1 ++n_sign_posn 1 ++END LC_MONETARY ++ ++LC_NUMERIC ++decimal_point "" ++thousands_sep "" ++grouping 0;0 ++END LC_NUMERIC ++ ++LC_TIME ++% dib'eer (dib), altine (alt), talaata (tal), allarba (all), alxames (alx), ++% ajjuma (ajj), gaawu (gaa) ++% Sunday, Monday.... ++abday "";"";/ ++ "";"";/ ++ "";"";/ ++ "" ++day "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" ++% Sanwiy'e, feebriy'e, mars, awril, me, suwen, sulet, uut, septaambar, ++% oktoobar, nowaambar, desaambar. ++abmon "";"";/ ++ "";"";/ ++ "";"";/ ++ "";"";/ ++ "";"";/ ++ "";"" ++mon "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" ++% %a %d %b %Y %T %Z ++d_t_fmt "" ++% %d.%m.%Y ++d_fmt "" ++% %T ++t_fmt "" ++am_pm "";"" ++t_fmt_ampm "" ++% %a %b %e %H:%M:%S %Z %Y ++date_fmt "/ ++/ ++" ++END LC_TIME ++ ++LC_PAPER ++height 297 ++width 210 ++END LC_PAPER ++ ++LC_TELEPHONE ++% +%C %a %l ++tel_int_fmt "/ ++" ++% %a %l ++tel_dom_fmt "" ++% 221 ++int_prefix "" ++% 00 ++int_select "" ++END LC_TELEPHONE ++ ++LC_MEASUREMENT ++measurement 1 ++END LC_MEASUREMENT ++ ++LC_NAME ++% %d%t%g%t%m%t%f ++name_fmt "/ ++" ++END LC_NAME ++ ++LC_ADDRESS ++% %f%N%a%N%d%N%b%N%s %h %e %r%N%%z %T%N%c%N ++postal_fmt "/ ++/ ++/ ++/ ++" ++country_ab2 "" ++country_ab3 "" ++country_num 450 ++END LC_ADDRESS ++ +Index: localedata/SUPPORTED +=================================================================== +--- localedata/SUPPORTED.orig ++++ localedata/SUPPORTED +@@ -372,6 +372,7 @@ + wa_BE/ISO-8859-1 \ + wa_BE@euro/ISO-8859-15 \ + wa_BE.UTF-8/UTF-8 \ ++wo_SN/UTF-8 \ + xh_ZA.UTF-8/UTF-8 \ + xh_ZA/ISO-8859-1 \ + yi_US.UTF-8/UTF-8 \ --- glibc-2.5.orig/debian/patches/localedata/locale-hy_AM.diff +++ glibc-2.5/debian/patches/localedata/locale-hy_AM.diff @@ -0,0 +1,193 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: fix collation rules for hy_AM +# DP: Apply patch#13 from BZ68. +# DP: Thanks to patches/locale/LC_COLLATE-keywords-ordering.diff, +# DP: the limitations explained in this bugreport do not apply and +# DP: collation rules can be defined the right way. +# DP: Related bugs: BZ68 +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Pablo Saratxaga, Ani +# DP: Upstream status: BZ68 +# DP: Date: 2006-10-02 + +Index: glibc-2.5/localedata/locales/hy_AM +=================================================================== +--- glibc-2.5.orig/localedata/locales/hy_AM ++++ glibc-2.5/localedata/locales/hy_AM +@@ -68,6 +68,176 @@ + + LC_COLLATE + copy "iso14651_t1" ++ ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++ ++reorder-after ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++reorder-end ++ ++script ++ ++order_start ;forward;forward;forward;forward,position ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++order_end ++ ++reorder-sections-after ++ ++reorder-sections-end ++ + END LC_COLLATE + + LC_CTYPE --- glibc-2.5.orig/debian/patches/localedata/locale-ku_TR.diff +++ glibc-2.5/debian/patches/localedata/locale-ku_TR.diff @@ -0,0 +1,206 @@ +#! /bin/sh -e + +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Please add Kurdish locale +# DP: Related bugs: BZ870 +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Kader DILSIZ, Pablo Saratxaga +# DP: Upstream status: Version 0.1 submitted in the original bugreport +# DP: has been committed, this new version has been sent just after. +# DP: Date: 2006-01-06 + +PATCHLEVEL=0 + +if [ $# -ne 2 ]; then + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +fi +case "$1" in + -patch) patch -d "$2" -f --no-backup-if-mismatch -p$PATCHLEVEL < $0;; + -unpatch) patch -d "$2" -f --no-backup-if-mismatch -R -p$PATCHLEVEL < $0;; + *) + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +esac +exit 0 + +# append the patch here and adjust the -p? flag in the patch calls. +Index: localedata/locales/ku_TR +=================================================================== +--- localedata/locales/ku_TR.orig ++++ localedata/locales/ku_TR +@@ -16,6 +16,8 @@ + % Distribution and use is free, also + % for commercial purposes. + % History: ++% 0.2 2005-04-24 Erdal Ronah ++% Fix LC_CTYPE and LC_NAME sections. Remove dotless i from LC_COLLATE + + LC_IDENTIFICATION + title "Kurdish (latin) locale for Turkey" +@@ -27,8 +29,8 @@ + fax "" + language "Kurdish" + territory "Turkey" +-revision "0.1" +-date "2003-07-27" ++revision "0.2" ++date "2005-04-24" + % + category "ku_TR:2000";LC_IDENTIFICATION + category "ku_TR:2000";LC_CTYPE +@@ -46,7 +48,7 @@ + END LC_IDENTIFICATION + + LC_CTYPE +-copy "tr_TR" ++copy "i18n" + END LC_CTYPE + + LC_COLLATE +@@ -56,7 +58,6 @@ + + collating-symbol + collating-symbol > +-collating-symbol + collating-symbol > + collating-symbol + collating-symbol > +@@ -65,9 +66,7 @@ + + reorder-after + > +-reorder-after +- +- ++reorder-after + > + reorder-after + +@@ -84,13 +83,9 @@ + reorder-after + >;;;IGNORE + +-reorder-after +- ;;;IGNORE +- ;;;IGNORE ++reorder-after + >;;;IGNORE +-reorder-after +- ;;;IGNORE +- ;;;IGNORE ++reorder-after + >;;;IGNORE + + reorder-after +@@ -116,35 +111,35 @@ + END LC_NUMERIC + + LC_TIME +-abday "";"";/ +- "";"";/ +- "";"";/ +- "" +-day "";/ +- "";/ +- "";/ +- "";/ +- "";/ +- "";/ +- "" ++abday "";"";/ ++ "";"";/ ++ "";"";/ ++ "" ++day "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" + abmon "";"";/ + "";"";/ + "";"";/ + "";"";/ + "";"";/ + "";"" +-mon "";/ +- "";/ +- "";/ +- "";/ +- "";/ +- "";/ +- "";/ +- "";/ +- "";/ +- "";/ +- "";/ +- "" ++mon "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "";/ ++ "" + % format: %A %d %B %Y %T %Z + d_t_fmt "" + % format: %d/%m/%Y +@@ -182,15 +177,15 @@ + name_fmt "/ + " + % TODO +-% Sayn +-name_gen "" ++% Birz ++name_gen "" + % "M." +-name_mr "" +-% "Jne" +-name_mrs "" +-name_ms "" +-% "Kc,k" +-name_miss "" ++name_mr "" ++% "Birz" ++name_mrs "" ++name_ms "" ++% "Birz" ++name_miss "" + END LC_NAME + + LC_ADDRESS +@@ -199,17 +194,16 @@ + / + / + " +-% TODO +-country_name "" +-country_post "TR" +-country_ab2 "TR" +-country_ab3 "TUR" ++country_name "" ++country_post "" ++country_ab2 "" ++country_ab3 "" + country_num 792 + country_isbn 975 +-country_car "TR" +-% "kurdi" +-lang_name "" +-lang_ab "ku" +-lang_term "kur" +-lang_lib "kur" ++country_car "" ++% "kurd" ++lang_name "" ++lang_ab "" ++lang_term "" ++lang_lib "" + END LC_ADDRESS --- glibc-2.5.orig/debian/patches/localedata/locale-no_NO.diff +++ glibc-2.5/debian/patches/localedata/locale-no_NO.diff @@ -0,0 +1,129 @@ +#! /bin/sh -e + +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Keep no_NO around during transition to nb_NO +# DP: Related bugs: +# DP: Dpatch author: Jeff Bailey +# DP: Patch author: Petter Reinholdtsen +# DP: Upstream status: Debian-Specific +# DP: Status Details: +# DP: Date: Wed Mar 24 10:35:44 EST 2004, (Updated 2005-01-02 gotom) + +PATCHLEVEL=0 + +if [ $# -ne 2 ]; then + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +fi +case "$1" in + -patch) patch -d "$2" -f --no-backup-if-mismatch -p$PATCHLEVEL < $0;; + -unpatch) patch -d "$2" -f --no-backup-if-mismatch -R -p$PATCHLEVEL < $0;; + *) + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +esac +exit 0 + +# append the patch here and adjust the -p? flag in the patch calls. +2005-01-02 GOTO Masanori + + * intl/locale.alias: Dropped. + +Index: localedata/locales/no_NO +=================================================================== +--- /dev/null ++++ localedata/locales/no_NO +@@ -0,0 +1,93 @@ ++escape_char / ++comment_char % ++ ++% This is NOT the Norwegian language locale for Norway ++% You really want nb_NO instead. ++% Source: Norsk Standardiseringsforbund ++% Address: University Library, ++% Drammensveien 41, N-9242 Oslo, Norge ++% Contact: Kolbjoern Aamboe ++% Tel: +47 - 22859109 ++% Fax: +47 - 22434497 ++% Email: kolbjorn.aambo@usit.uio.no ++% Language: no ++% Territory: NO ++% Revision: 4.3 ++% Date: 1996-10-15 ++% Application: general ++% Users: general ++% Repertoiremap: mnemonic.ds ++% Charset: ISO-8859-1 ++% Distribution and use is free, also ++% for commercial purposes. ++ ++LC_IDENTIFICATION ++title "Norwegian (Bokmal) locale for Norway" ++source "Norsk Standardiseringsforbund" ++address "University Library,, Drammensveien 41, N-9242 Oslo, Norge" ++contact "" ++email "bug-glibc@gnu.org" ++tel "" ++fax "" ++language "Norwegian Bokml" ++territory "Norway" ++revision "1.0" ++date "2000-06-29" ++% ++category "nb_NO:2000";LC_IDENTIFICATION ++category "nb_NO:2000";LC_CTYPE ++category "nb_NO:2000";LC_COLLATE ++category "nb_NO:2000";LC_TIME ++category "nb_NO:2000";LC_NUMERIC ++category "nb_NO:2000";LC_MONETARY ++category "nb_NO:2000";LC_MESSAGES ++category "nb_NO:2000";LC_PAPER ++category "nb_NO:2000";LC_NAME ++category "nb_NO:2000";LC_ADDRESS ++category "nb_NO:2000";LC_TELEPHONE ++ ++END LC_IDENTIFICATION ++ ++LC_COLLATE ++copy "nb_NO" ++END LC_COLLATE ++ ++LC_CTYPE ++copy "nb_NO" ++END LC_CTYPE ++ ++LC_MONETARY ++copy "nb_NO" ++END LC_MONETARY ++ ++LC_NUMERIC ++copy "nb_NO" ++END LC_NUMERIC ++ ++LC_TIME ++copy "nb_NO" ++END LC_TIME ++ ++LC_MESSAGES ++copy "nb_NO" ++END LC_MESSAGES ++ ++LC_PAPER ++copy "nb_NO" ++END LC_PAPER ++ ++LC_TELEPHONE ++copy "nb_NO" ++END LC_TELEPHONE ++ ++LC_MEASUREMENT ++copy "nb_NO" ++END LC_MEASUREMENT ++ ++LC_NAME ++copy "nb_NO" ++END LC_NAME ++ ++LC_ADDRESS ++copy "nb_NO" ++END LC_ADDRESS --- glibc-2.5.orig/debian/patches/localedata/locale-zh_TW.diff +++ glibc-2.5/debian/patches/localedata/locale-zh_TW.diff @@ -0,0 +1,23 @@ +See BTS #352600. +Not submitted yet. + +Index: localedata/locales/zh_TW +=================================================================== +--- localedata/locales/zh_TW.orig ++++ localedata/locales/zh_TW +@@ -107,13 +107,13 @@ + "";"";"" + + % d_t_fmt: "%Y%m%d (%A) %H
%M%S" +-d_t_fmt "/ ++d_t_fmt "/ + / + / + / + " + +-d_fmt "/ ++d_fmt "/ + " + + t_fmt "" --- glibc-2.5.orig/debian/patches/localedata/locales-fr.diff +++ glibc-2.5/debian/patches/localedata/locales-fr.diff @@ -0,0 +1,307 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Various fixes for all French locales +# DP: Related bugs: #248377 #351786 #345481 +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: not submitted +# DP: Date: 2006-01-10 + +Index: glibc-2.3.6/localedata/locales/fr_BE +=================================================================== +--- glibc-2.3.6.orig/localedata/locales/fr_BE ++++ glibc-2.3.6/localedata/locales/fr_BE +@@ -42,6 +42,7 @@ + category "fr_BE:2000";LC_NAME + category "fr_BE:2000";LC_ADDRESS + category "fr_BE:2000";LC_TELEPHONE ++category "fr_BE:2000";LC_MEASUREMENT + + END LC_IDENTIFICATION + +@@ -79,7 +80,7 @@ + LC_NUMERIC + decimal_point "" + thousands_sep "" +-grouping 0;0 ++grouping 3;3 + END LC_NUMERIC + + LC_TIME +@@ -117,9 +118,10 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" +-date_fmt "/ +-/ +-" ++date_fmt "/ ++/ ++/ ++" + END LC_TIME + + LC_PAPER +@@ -142,8 +144,7 @@ + END LC_MEASUREMENT + + LC_NAME +-name_fmt "/ +-" ++copy "fr_FR" + END LC_NAME + + LC_ADDRESS +@@ -155,4 +156,13 @@ + country_ab2 "" + country_ab3 "" + country_num 056 ++country_name "" ++country_car "" ++% FIXME ++country_post "" ++country_isbn 2 ++lang_name "" ++lang_ab "" ++lang_term "" ++lang_lib "" + END LC_ADDRESS +Index: glibc-2.3.6/localedata/locales/fr_CA +=================================================================== +--- glibc-2.3.6.orig/localedata/locales/fr_CA ++++ glibc-2.3.6/localedata/locales/fr_CA +@@ -43,6 +43,7 @@ + category "fr_CA:2000";LC_NAME + category "fr_CA:2000";LC_ADDRESS + category "fr_CA:2000";LC_TELEPHONE ++category "fr_CA:2000";LC_MEASUREMENT + + END LC_IDENTIFICATION + +@@ -80,7 +81,7 @@ + LC_NUMERIC + decimal_point "" + thousands_sep "" +-grouping 0;0 ++grouping 3;3 + END LC_NUMERIC + + LC_TIME +@@ -118,9 +119,10 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" +-date_fmt "/ +-/ +-" ++date_fmt "/ ++/ ++/ ++" + END LC_TIME + + LC_PAPER +@@ -136,8 +138,7 @@ + END LC_MEASUREMENT + + LC_NAME +-name_fmt "/ +-" ++copy "fr_FR" + END LC_NAME + + LC_ADDRESS +@@ -149,4 +150,12 @@ + country_ab2 "" + country_ab3 "" + country_num 124 ++country_name "" ++country_car "" ++country_post "" ++country_isbn 2 ++lang_name "" ++lang_ab "" ++lang_term "" ++lang_lib "" + END LC_ADDRESS +Index: glibc-2.3.6/localedata/locales/fr_CH +=================================================================== +--- glibc-2.3.6.orig/localedata/locales/fr_CH ++++ glibc-2.3.6/localedata/locales/fr_CH +@@ -43,6 +43,7 @@ + category "fr_CH:2000";LC_NAME + category "fr_CH:2000";LC_ADDRESS + category "fr_CH:2000";LC_TELEPHONE ++category "fr_CH:2000";LC_MEASUREMENT + + END LC_IDENTIFICATION + +@@ -64,9 +65,7 @@ + END LC_MONETARY + + LC_NUMERIC +-decimal_point "" +-thousands_sep "" +-grouping 0;0 ++copy "de_CH" + END LC_NUMERIC + + LC_TIME +@@ -104,9 +105,10 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" +-date_fmt "/ +-/ +-" ++date_fmt "/ ++/ ++/ ++" + END LC_TIME + + LC_PAPER +@@ -128,8 +130,7 @@ + END LC_MEASUREMENT + + LC_NAME +-name_fmt "/ +-" ++copy "fr_FR" + END LC_NAME + + LC_ADDRESS +@@ -141,4 +142,12 @@ + country_ab2 "" + country_ab3 "" + country_num 756 ++country_name "" ++country_car "" ++country_post "" ++country_isbn 2 ++lang_name "" ++lang_ab "" ++lang_term "" ++lang_lib "" + END LC_ADDRESS +Index: glibc-2.3.6/localedata/locales/fr_FR +=================================================================== +--- glibc-2.3.6.orig/localedata/locales/fr_FR ++++ glibc-2.3.6/localedata/locales/fr_FR +@@ -42,6 +42,7 @@ + category "fr_FR:2000";LC_NAME + category "fr_FR:2000";LC_ADDRESS + category "fr_FR:2000";LC_TELEPHONE ++category "fr_FR:2000";LC_MEASUREMENT + + END LC_IDENTIFICATION + +@@ -87,8 +88,8 @@ + + LC_NUMERIC + decimal_point "" +-thousands_sep "" +-grouping 0;0 ++thousands_sep "" ++grouping 3;3 + END LC_NUMERIC + + LC_TIME +@@ -126,9 +127,10 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" +-date_fmt "/ +-/ +-" ++date_fmt "/ ++/ ++/ ++" + END LC_TIME + + LC_PAPER +@@ -151,6 +153,11 @@ + LC_NAME + name_fmt "/ + " ++name_gen "" ++name_mr "" ++name_mrs "" ++name_miss "" ++name_ms "" + END LC_NAME + + LC_ADDRESS +@@ -162,4 +169,12 @@ + country_ab2 "" + country_ab3 "" + country_num 250 ++country_name "" ++country_car "" ++country_post "" ++country_isbn 2 ++lang_name "" ++lang_ab "" ++lang_term "" ++lang_lib "" + END LC_ADDRESS +Index: glibc-2.3.6/localedata/locales/fr_LU +=================================================================== +--- glibc-2.3.6.orig/localedata/locales/fr_LU ++++ glibc-2.3.6/localedata/locales/fr_LU +@@ -42,6 +42,7 @@ + category "fr_LU:2000";LC_NAME + category "fr_LU:2000";LC_ADDRESS + category "fr_LU:2000";LC_TELEPHONE ++category "fr_LU:2000";LC_MEASUREMENT + + END LC_IDENTIFICATION + +@@ -78,8 +79,8 @@ + + LC_NUMERIC + decimal_point "" +-thousands_sep "" +-grouping 0;0 ++thousands_sep "" ++grouping 3;3 + END LC_NUMERIC + + LC_TIME +@@ -117,9 +118,10 @@ + t_fmt "" + am_pm "";"" + t_fmt_ampm "" +-date_fmt "/ +-/ +-" ++date_fmt "/ ++/ ++/ ++" + END LC_TIME + + LC_PAPER +@@ -141,8 +143,7 @@ + END LC_MEASUREMENT + + LC_NAME +-name_fmt "/ +-" ++copy "fr_FR" + END LC_NAME + + LC_ADDRESS +@@ -154,4 +155,12 @@ + country_ab2 "" + country_ab3 "" + country_num 442 ++country_name "" ++country_car "" ++country_post "" ++country_isbn 2 ++lang_name "" ++lang_ab "" ++lang_term "" ++lang_lib "" + END LC_ADDRESS --- glibc-2.5.orig/debian/patches/localedata/locales_CH.diff +++ glibc-2.5/debian/patches/localedata/locales_CH.diff @@ -0,0 +1,22 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: LC_NUMERIC: copy de_CH into it_CH +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier +# DP: Upstream status: not submitted +# DP: Date: 2006-10-02 + +Index: glibc-2.3.6/localedata/locales/it_CH +=================================================================== +--- glibc-2.3.6.orig/localedata/locales/it_CH ++++ glibc-2.3.6/localedata/locales/it_CH +@@ -57,9 +57,7 @@ + END LC_MONETARY + + LC_NUMERIC +-decimal_point "" +-thousands_sep "" +-grouping 3;3 ++copy "de_CH" + END LC_NUMERIC + + LC_TIME --- glibc-2.5.orig/debian/patches/localedata/tailor-iso14651_t1.diff +++ glibc-2.5/debian/patches/localedata/tailor-iso14651_t1.diff @@ -0,0 +1,32350 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Rewrite collation rules to include iso14651_t1 +# DP: es_ES: BZ664, by Pablo Saratxaga +# DP: ca_ES da_DK en_CA es_US fi_FI nb_NO: BZ672, by Denis Barbier +# DP: ar_SA cs_CZ et_EE hr_HR hsb_DE lt_LT pl_PL sl_SI tr_TR: not +# DP: submitted yet. +# DP: Related bugs: BZ664 BZ672 +# DP: Dpatch author: Denis Barbier +# DP: Patch author: Denis Barbier, Pablo Saratxaga +# DP: Upstream status: BZ664 BZ672 +# DP: Date: 2006-01-18 + +2005-01-16 Denis Barbier + + [BZ #672] + * locales/ca_ES: Replace current collation rules by including + iso14651_t1 and adding extra rules if needed. There should be + no noticeable changes in sorted text. only ligatures and + ignoreable characters have modified weights. + * locales/da_DK: Likewise. + * locales/en_CA: Likewise. + * locales/es_US: Likewise. + * locales/fi_FI: Likewise. + * locales/nb_NO: Likewise. + +Index: localedata/locales/ca_ES +=================================================================== +--- localedata/locales/ca_ES.orig ++++ localedata/locales/ca_ES +@@ -46,2067 +46,20 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++copy "iso14651_t1" + +-% Base collation scheme: 1994-03-22 ++collating-symbol + +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script ++reorder-after ++ + +-% collating symbols ++reorder-after ++ ;;;IGNORE + +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. ++reorder-after ++ ;;;IGNORE + +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +-order_end ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/da_DK +=================================================================== +--- localedata/locales/da_DK.orig ++++ localedata/locales/da_DK +@@ -55,2082 +55,83 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++copy "iso14651_t1" ++ + collating-element from "" + collating-element from "" + collating-element from "" + collating-element from "" ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++ ++reorder-after ++ ++ ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++ + +-% Base collation scheme: 1994-03-22 +- +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- + % and are treated as in Danish +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ + % is a separate letter in Danish +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE + % is a separate letter in Danish +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE + % is a separate letter in Danish +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +-order_end ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ++% Present in iso14651_t1, but these definitions seem to have been ++% removed from latest iso14651 tables. ++reorder-after ++ "";"";"";IGNORE ++reorder-after ++ "";"";"";IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE + ++reorder-end + END LC_COLLATE + + LC_CTYPE +Index: localedata/locales/en_CA +=================================================================== +--- localedata/locales/en_CA.orig ++++ localedata/locales/en_CA +@@ -49,2067 +49,20 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++copy "iso14651_t1" + +-% Base collation scheme: 1994-03-22 ++reorder-after ++ + +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script ++% Present in iso14651_t1, but these definitions seem to have been ++% removed from latest iso14651 tables. ++reorder-after ++ "";"";"";IGNORE + +-% collating symbols ++reorder-after ++ "";"";"";IGNORE + +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +-order_end ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/es_ES +=================================================================== +--- localedata/locales/es_ES.orig ++++ localedata/locales/es_ES +@@ -11,8 +11,8 @@ + % Fax: +45 - 33256543 + % Language: es + % Territory: ES +-% Revision: 4.4 +-% Date: 1997-03-18 ++% Revision: 4.5 ++% Date: 2004-06-23 + % Application: general + % Users: general + % Repertoiremap: mnemonic.ds +@@ -48,2067 +48,19 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++copy "iso14651_t1" + +-% Base collation scheme: 1994-03-22 ++collating-symbol + +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana ++reorder-after ++ + +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE + +-order_end ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/es_US +=================================================================== +--- localedata/locales/es_US.orig ++++ localedata/locales/es_US +@@ -48,6 +48,8 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++copy "iso14651_t1" ++ + collating-element from "" + collating-element from "" + collating-element from "" +@@ -57,2074 +59,49 @@ + collating-element from "" + collating-element from "" + +-% Base collation scheme: 1994-03-22 ++collating-symbol ++collating-symbol ++collating-symbol ++ ++collating-symbol ++collating-symbol ++ ++reorder-after ++ ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE + +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE + +-order_end ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/fi_FI +=================================================================== +--- localedata/locales/fi_FI.orig ++++ localedata/locales/fi_FI +@@ -52,2068 +52,79 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++copy "iso14651_t1" + +-% Base collation scheme: 1994-03-22 ++collating-symbol ++collating-symbol ++collating-symbol ++ ++reorder-after ++ ++ ++ ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;; ++ ;;; ++ ;;; ++ ;;; ++ ;;; ++ ;;; ++ ;;; ++ ;;; ++reorder-after ++ ;;; ++ ;;; ++ ;;; ++ ;;; ++ ;;; ++ ;;; ++ ;;; ++ ;;; ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++% Present in iso14651_t1, but these definitions seem to have been ++% removed from latest iso14651 tables. ++reorder-after ++ "";"";"";IGNORE ++reorder-after ++ "";"";"";IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE + +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +-% before letters +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +-order_end ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/nb_NO +=================================================================== +--- localedata/locales/nb_NO.orig ++++ localedata/locales/nb_NO +@@ -48,2078 +48,78 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++copy "iso14651_t1" ++ + collating-element from "" + collating-element from "" + collating-element from "" + collating-element from "" ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++ ++reorder-after ++ ++ ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++ ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ++% Present in iso14651_t1, but these definitions seem to have been ++% removed from latest iso14651 tables. ++reorder-after ++ "";"";"";IGNORE ++reorder-after ++ "";"";"";IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE + +-% Base collation scheme: 1994-03-22 +- +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +-% before letters +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE %LATIN CAPITAL LETTER ETH (Icelandic) +- ;;;IGNORE %LATIN SMALL LETTER ETH (Icelandic) +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +-order_end ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/ar_SA +=================================================================== +--- localedata/locales/ar_SA.orig ++++ localedata/locales/ar_SA +@@ -43,223 +43,8 @@ + % Set up the LC_COLLATE category + + LC_COLLATE +- +- +-order_start forward; forward +- +- +- +- +- +- +- +- +- +- +- +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- ; +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- IGNORE +- IGNORE +- IGNORE +- IGNORE +- IGNORE +- IGNORE +- IGNORE +- IGNORE +- IGNORE +-order_end +- +- ++% Copy the template from ISO/IEC 14651 ++copy "iso14651_t1" + END LC_COLLATE + + +Index: localedata/locales/cs_CZ +=================================================================== +--- localedata/locales/cs_CZ.orig ++++ localedata/locales/cs_CZ +@@ -136,2166 +136,89 @@ + + LC_COLLATE + +-% Base collation scheme: 1994-03-22 ++define UPPERCASE_FIRST ++define LATIN_FORWARD ++copy "iso14651_t1" + +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before letters, +-% numbers after letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +- +-% Definice psmene ch ++collating-symbol + + collating-element from "" + collating-element from "" + collating-element from "" + ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE + +-% letter;accent;case;specials +- +-%order_start forward;forward;forward;forward +-order_start forward;forward;forward;forward +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +-% Poad akcent: nahoe, dole, vzadu, vpedu, uvnit nebo pes psmeno +-% pokud toto nerozhodne zle na potu a tvaru +- +- +-% nahoe +- % Teka +- % Vodorovn rka nahoe +- % rka ' (nap: ) +- % Zptn rka ` +- % Stka ^ (nap: ) +- % Hek +- % Tilda (~) +- % Doln plkrouek (vypad jako sjednocen) +-% Horn plkrouek (vypad jako prnik) +- % Krouek +- % netum jak diakritick znamnko to je, pedpokldm je nahoe +- % netum jak diakritick znamnko to je, pedpokldm je nahoe +- +- % Dv teky +- +- % Dv rky +- % Dv zptn rky +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +-% nahoe a dole +- % Zde si nejsem jist jak je to mnno, zda ob pod +- % nebo pouze to druh +- +- +- +- +- +- +- +- +-% nahoe a uprosted +- +- +-% dole +- +- +- +- +- % Zobek pod psmenem vypad skoro jako s () +- % Zobek pod psmenem obrcen k pedchozmu (jako c)() +- +-% za +-% ped +- +-% uprosted +- % krtnut psmene v prostedku (polsk ) +- +- +- +- +- +- +- +- +- +- +- ;;; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +-% Zde jsou vechna latinsk psmena s diakritikou +-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- ;;; +- ;;; +- +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- "";"";"";"" +- "";"";"";"" +- +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- ;;; +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- "";"";"";"" +- "";"";"";"" +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- "";"";"";"" +- "";"";"";"" +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- "";"";"";"" +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- "";"";"";"" +- "";"";"";IGNORE +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- "";"";"";"" +- "";"";"";"" +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- +- +- ;;; +- ;;; +- +- +-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +-% slice +-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +- +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- +-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +-% Vechny speciln znaky (snail jsem se to seadit podle normy, ale moc se +-% mi nedailo) +-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +-% znamnka +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-% Uvozovky +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +-% ustlen znaky +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +-% grafick znaky a obrazce linern +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +-% grafick znaky a obrazce plon +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +-% Akcenty, nevm kam je zaadit (nkter jsou brny jako uvozovky) +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-% IGNORE;IGNORE;IGNORE; % pemstn do uvozovek +-% IGNORE;IGNORE;IGNORE; % pemstn do obrazc linernch +- IGNORE;IGNORE;IGNORE; +-% tilda +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +-% Neseazeno +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE;IGNORE +- +-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +-% Zbytek vc z unikodu +-%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- ;IGNORE;IGNORE; +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- +- IGNORE;IGNORE;; +- IGNORE;IGNORE;; +- IGNORE;IGNORE;; +- IGNORE;IGNORE;; +- IGNORE;IGNORE;; +- IGNORE;IGNORE;; +- IGNORE;IGNORE;; +- IGNORE;IGNORE;; +- IGNORE;IGNORE;; +- +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- "";"";"";"" +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- ;;IGNORE; +- +-order_end ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/et_EE +=================================================================== +--- localedata/locales/et_EE.orig ++++ localedata/locales/et_EE +@@ -55,2067 +55,48 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++define UPPERCASE_FIRST ++copy "iso14651_t1" + +-% Base collation scheme: 1994-03-22 ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++ ++reorder-after ++ ++ ++ ++reorder-after ++ ++ ++ ++ ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE + +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;; +- ;; +- ;; +- ;; +- ;; +- ;; +- ;; +- ;; +- ;; +- ;; +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;;; +- ;; +- ;; +- ;; +- ;; +- ;; +- ;; +- ;; +- ;; +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +-order_end ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/hr_HR +=================================================================== +--- localedata/locales/hr_HR.orig ++++ localedata/locales/hr_HR +@@ -48,10 +48,25 @@ + END LC_IDENTIFICATION + + LC_COLLATE +-collating-element from "" +-collating-element from "" +-collating-element from "" +-collating-element from "" ++copy "iso14651_t1" ++ ++collating-symbol ++collating-symbol ++ ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++ ++collating-symbol ++collating-symbol ++collating-symbol ++ ++collating-element from "" ++collating-element from "" ++collating-element from "" ++collating-element from "" + collating-element from "" + collating-element from "" + collating-element from "" +@@ -61,2078 +76,71 @@ + collating-element from "" + collating-element from "" + +-% Base collation scheme: 1994-03-22 +- +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE ++reorder-after ++ ++ ++ ++reorder-after ++ ++ ++ ++reorder-after ++ ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE + +-order_end ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/hsb_DE +=================================================================== +--- localedata/locales/hsb_DE.orig ++++ localedata/locales/hsb_DE +@@ -34,7 +34,14 @@ + + END LC_IDENTIFICATION + ++LC_CTYPE ++copy "i18n" ++END LC_CTYPE ++ + LC_COLLATE ++% Copy the template from ISO/IEC 14651 ++copy "iso14651_t1" ++ + collating-element from "" + collating-element from "" + collating-element from "" +@@ -44,2081 +51,122 @@ + collating-element from "" + collating-element from "" + +-% Base collation scheme: 1994-03-22 ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++ ++collating-symbol ++collating-symbol ++ ++reorder-after ++ ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++% Is oacute really used? ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE + +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +-order_end ++reorder-end + + END LC_COLLATE + +-LC_CTYPE +-copy "i18n" +-END LC_CTYPE +- + LC_MESSAGES + yesexpr "" + noexpr "" +Index: localedata/locales/iso14651_t1 +=================================================================== +--- localedata/locales/iso14651_t1.orig ++++ localedata/locales/iso14651_t1 +@@ -261,7 +261,11 @@ + # SYMB. N + # + ++ifdef UPPERCASE_FIRST ++ ++else + ++endif + # forme de base (bas de casse, arabe intrinsque, + # hbreu intrinsque, etc. + # basic form (lower case, intrinsic Arabic +@@ -280,14 +284,21 @@ + # medial/mdian + # 6 + # ++ifdef UPPERCASE_FIRST ++ # 7 ++ # 8 ++ # 9 ++ # 10 ++ # 11 ++ # 12 ++else + # 7 + # 8 + # 9 + # 10 + # 11 +- +-#alternate lower case/ +-# 12 ++ # 12 alternate lower case ++endif + # + #minuscules spciales aprs majuscules + # / +@@ -761,7 +772,11 @@ + IGNORE;IGNORE;IGNORE; + IGNORE;IGNORE;IGNORE; + ++ifdef LATIN_FORWARD ++order_start ;forward;forward;forward;forward,position ++else + order_start ;forward;backward;forward;forward,position ++endif + # + ;;;IGNORE # 170 + # +Index: localedata/locales/lt_LT +=================================================================== +--- localedata/locales/lt_LT.orig ++++ localedata/locales/lt_LT +@@ -58,2067 +58,13 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++define UPPERCASE_FIRST ++copy "iso14651_t1" + +-% Base collation scheme: 1994-03-22 ++reorder-after ++ + +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +-order_end ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/pl_PL +=================================================================== +--- localedata/locales/pl_PL.orig ++++ localedata/locales/pl_PL +@@ -48,2067 +48,88 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++copy "iso14651_t1" + +-% Base collation scheme: 1994-03-22 ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++ ++reorder-after ++ ;IGNORE;; ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE + +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- ;IGNORE;; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +-order_end ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/sl_SI +=================================================================== +--- localedata/locales/sl_SI.orig ++++ localedata/locales/sl_SI +@@ -48,2067 +48,37 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++copy "iso14651_t1" + +-% Base collation scheme: 1994-03-22 ++collating-symbol ++collating-symbol ++collating-symbol + +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE ++reorder-after ++ + +-order_end ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-end + + END LC_COLLATE + +Index: localedata/locales/tr_TR +=================================================================== +--- localedata/locales/tr_TR.orig ++++ localedata/locales/tr_TR +@@ -61,2067 +61,67 @@ + END LC_IDENTIFICATION + + LC_COLLATE ++define UPPERCASE_FIRST ++% Copy the template from ISO/IEC 14651 ++copy "iso14651_t1" ++ ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++collating-symbol ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE ++ ++reorder-after ++ ;;;IGNORE ++reorder-after ++ ;;;IGNORE + +-% Base collation scheme: 1994-03-22 +- +-% Ordering algorithm: +-% 1. Spaces and hyphen (but not soft +-% hyphen) before punctuation +-% characters, punctuation characters +-% before numbers, +-% numbers before letters. +-% 2. Letters with diacritical marks are +-% members of equivalence classes +-% 3. A distinction is made with regards +-% to case as noted below. +-% 4. Special characters are ignored +-% when comparing letters, but then +-% they are considered +-% 5. The alphabets are sorted in order +-% of first appearance in ISO 10646: +-% Latin, Greek, Cyrillic, etc. +-% +-% According to Greek specifications, +-% the steps 2. and 3. above are reversed +-% for the Greek script +- +-% collating symbols +- +-% The collating symbol naming is +-% mostly taken from ISO 10646-1, +-% for example the case and accent +-% names are from this standard. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% and +-% are for cases like Danish +-% and Spanish being treated +-% as one letter. +- +-% The ...... collating +-% symbols have defined weights as +-% the last character in a group of +-% Latin letters. They are used +-% to specify deltas by locales using +-% a locale as the default ordering +-% and by "replace-after" statements +-% specifying the changed placement +-% in an ordering of a character. +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +-collating-symbol +- +-% letter;accent;case;specials +- +-order_start forward;backward/ +- ;forward;position +- +-% or letters first: +- +- +- +- +- +- +-% Accents: +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ;;;IGNORE +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-<"=> IGNORE;IGNORE;IGNORE;<"=> +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +-UNDEFINED IGNORE;IGNORE;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;;;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- ;IGNORE;IGNORE;IGNORE +- +-% Arabic collating +- +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- IGNORE;IGNORE;IGNORE; +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- IGNORE;IGNORE;;IGNORE +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- "";"";"";IGNORE +- +-% katakana/hiragana sorting +-% base is katakana, as this is present in most charsets +-% normal before voiced before semi-voiced +-% small vocals before normal vocals +-% katakana before hiragana +- +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- ;;IGNORE;IGNORE +- +-order_end ++reorder-end + + END LC_COLLATE + --- glibc-2.5.orig/debian/patches/localedata/tl_PH-yesexpr.diff +++ glibc-2.5/debian/patches/localedata/tl_PH-yesexpr.diff @@ -0,0 +1,33 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Fix yesexpr/noexpr/yesstr/nostr +# DP: Related bugs: #295810 +# DP: Dpatch author: Denis Barbier +# DP: Patch author: eric pareja +# DP: Upstream status: not submitted +# DP: Date: 2006-01-10 + +Index: glibc-2.3.5/localedata/locales/tl_PH +=================================================================== +--- glibc-2.3.5.orig/localedata/locales/tl_PH ++++ glibc-2.3.5/localedata/locales/tl_PH +@@ -140,7 +140,19 @@ + END LC_TIME + + LC_MESSAGES +-copy "en_US" ++ ++% "^[oOyY].*" for "Yes" ++yesexpr "" ++ ++% "^[hHnN].*" for "No" ++noexpr "" ++ ++% "Oo" for "Yes" ++yesstr "" ++ ++% "Hindi" for "No" ++nostr "" ++ + END LC_MESSAGES + + LC_PAPER --- glibc-2.5.orig/debian/patches/m32r/local-ports-m32r.diff +++ glibc-2.5/debian/patches/m32r/local-ports-m32r.diff @@ -0,0 +1,5424 @@ +diff --exclude=CVS -upNr ports/ChangeLog.m32r ports/ChangeLog.m32r +--- ports/ChangeLog.m32r 1970-01-01 09:00:00.000000000 +0900 ++++ ports/ChangeLog.m32r 2006-05-09 10:23:08.000000000 +0900 +@@ -0,0 +1,297 @@ ++2006-06-07 Kazuhiro Inaoka ++ * sysdeps/unix/sysv/linux/m32r/configure: Removed ++ libc_cv_gcc_unwind_find=yes, because we provide _Unwind_Find_FDE ++ from libgcc. ++ * sysdeps/unix/sysv/linux/m32r/configure: Ditto. ++ ++2006-04-24 Kazuhiro Inaoka ++ * sysdeps/m32r/setjmp.h : Avoid stdlib/isomac.out Error. ++ ++2006-04-06 Kazuhiro Inaoka ++ * sysdeps/unix/sysv/linux/m32r/linuxthreads/sysdep-cancel.h : ++ Changed for IS_IN_librt case. Gather a common SYSCALL_ERROR_HANDLER ++ code. ++ ++2006-03-24 Kazuhiro Inaoka ++ * sysdeps/unix/sysv/linux/m32r/linuxthreads/sysdep-cancel.h : ++ Recoverd the code before 2006-03-02. ++ ++2006-03-22 Kazuhiro Inaoka ++ * Rebuild by gcc-3.4.3-13.0.3. ++ * sysdeps/m32r/strlen.S (strlen): Disable pre-read codes. ++ * sysdeps/unix/sysv/linux/m32r/mmap.S (strlen): Set an Error Code ++ when using an illegal offset value. ++ ++2006-03-02 Kazuhiro Inaoka ++ * sysdeps/unix/sysv/linux/m32r/clone.S (__clone): Changes for ++ the new system call calling convention of the kernel. ++ Marged calling SYSCALL_ERROR_HANDLER. ++ * sysdeps/unix/sysv/linux/m32r/sysdep.h : Use @GOT, @PLT, @GOTOFF. ++ Add "|| nop" after trap. Marged calling SYSCALL_ERROR_HANDLER. ++ * sysdeps/unix/sysv/linux/m32r/brk.c (__brk): Ditto. ++ * sysdeps/unix/sysv/linux/m32r/flushcache.S (__brk): Ditto. ++ * sysdeps/unix/sysv/linux/m32r/sigaction.c : Ditto. ++ * sysdeps/unix/m32r/sysdep.S : Ditto. ++ * sysdeps/m32r/bsd-_setjmp.S (_setjmp): Ditto. ++ * sysdeps/m32r/bsd-setjmp.S (setjmp): Ditto. ++ * sysdeps/m32r/setjmp.S (__sigsetjmp): Ditto. ++ * sysdeps/m32r/dl-machine.h : Ditto. ++ * sysdeps/m32r/m32r-mcount.S (_mcount): Ditto. ++ * sysdeps/m32r/sysdep.h : Ditto. ++ * sysdeps/unix/sysv/linux/m32r/linuxthreads/sysdep-cancel.h : ++ Use @GOT, @PLT, @GOTOFF. Fixed typo. Changed for IS_IN_librt case. ++ Removed UNDOCARGS2_*. Removed UNDOCARGS_5 DOCARGS_5 verbose saving. ++ sigaction.cv ++ ++2006-03-01 Kazuhiro Inaoka ++ ++ * sysdeps/unix/sysv/linux/m32r/bits/fcntl.h ++ [__USE_GNU] (F_SETLEASE. F_GETLEASE, F_NOTIFY): New macros. ++ [__USE_GNU] (LOCK_MAND, LOCK_READ, LOCK_WRITE, LOCK_RW): New macros. ++ [__USE_GNU] (DN_ACCESS, DN_MODIFY, DN_CREATE, DN_DELETE, DN_RENAME, ++ DN_ATTRIB, DN_MULTISHOT): New macros. ++ ++2006-01-26 Kazuhiro Inaoka ++ ++ * sysdeps/unix/sysv/linux/m32r/brk.c (__brk): Fixed conflist r0 on ++ asm(). ++ ++2006-01-18 Kazuhiro Inaoka ++ ++ * sysdeps/unix/m32r/sysdep.S: Changed to avoid redefined ++ error of symbol `__syscall_error_1'. ++ ++2005-11-22 Kazuhiro Inaoka ++ ++ * sysdeps/m32r/dl-machine.h (elf_machine_rela): Support ++ R_M32R_10_PCREL_RELA. ++ Remove a code to use relocation field at R_M32R_26_PCREL_RELA ++ and R_M32R_18_PCREL_RELA. The field must be 0 with RELA. ++ ++2005-11-18 Kazuhiro Inaoka ++ ++ * sysdeps/m32r/bits/setjmp.h (_JMPBUF_UNWINDS): Remove unnecessary &. ++ Make sure only setjmp.h or pthread.h are allow to include ++ bits/setjmp.h. ++ ++2005-10-21 Hirokazu Takata ++ ++ * sysdeps/m32r/memset.S: Update for m32r2. ++ ++2005-10-20 Kazuhiro Inaoka ++ ++ * sysdeps/m32r/elf/start.S: Support Update PIE. ++ ++2005-10-19 Kazuhiro Inaoka ++ ++ * sysdeps/unix/sysv/linux/m32r/socket.S: Remove weak_alias ++ to create listen if NO_WEAK_ALIAS is defined. ++ ++2005-10-14 Kazuhiro Inaoka ++ ++ * sysdeps/m32r/gccframe.h: New file for dwarf2-unwind. ++ * sysdeps/unix/sysv/linux/m32r/configure: Support dwarf2-unwind. ++ ++2005-07-15 ++ ++ * sysdeps/m32r/dl-machine.h: Support R_M32R_REL32. ++ It's important to change with elf/elf.h. ++ ++2005-03-03 Hirokazu Takata ++ ++ * sysdeps/unix/sysv/linux/m32r/kernel-features.h: Removed ++ __ASSUME_VFORK_SYSCALL. ++ ++2005-02-22 Kazuhiro Inaoka ++ ++ * sysdeps/unix/sysv/linux/m32r/linuxthreads/vfork.S: Changed for ++ __ASSUME_VFORK_SYSCALL. ++ * sysdeps/unix/sysv/linux/m32r/vfork.S: Ditto. ++ ++2005-02-15 Kazuhiro Inaoka ++ ++ * sysdeps/unix/sysv/linux/m32r/socket.S: Added .fillinsn. ++ ++2005-02-10 Kazuhiro Inaoka ++ ++ * sysdeps/unix/sysv/linux/m32r/linuxthreads/vfork.S: Changed to ++ reference pthread_create. ++ ++2005-02-04 Kazuhiro Inaoka ++ ++ * sysdeps/unix/sysv/linux/m32r/linuxthreads/sysdep-cancel.h: ++ Support thread cancel. ++ * sysdeps/unix/sysv/linux/m32r/linuxthreads/vfork.S: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/clone.S: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/socket.S: Ditto. ++ ++2005-01-31 Kazuhiro Inaoka ++ ++ * sysdeps/unix/sysv/linux/m32r/socket.S: Removed # in macro body. ++ * sysdeps/unix/sysv/linux/Makefile: Removed gnulib, gnulib-static. ++ * sysdeps/unix/sysv/linux/sigaction.c: Changed ++ to "kernel-features.h" ++ ++2004-12-20 NIIBE Yutaka ++ ++ * sysdeps/unix/sysv/linux/m32r/kernel-features.h: Port for ++ kernel-2.6.9. ++ * sysdeps/unix/sysv/linux/m32r/getgid.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/sigaction.c: Ditto. ++ * glibc-20041101/sysdeps/unix/sysv/linux/i386/fcntl.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/chown.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/getresgid.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/getresuid.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/getrlimit.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/getrlimit64.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/lchown.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/msgctl.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/semctl.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/setfsgid.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/setfsuid.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/setrlimit.c: Ditto. ++ * sysdeps/unix/sysv/linux/m32r/shmctl.c: Ditto. ++ * ++ ++2004-10-26 Kazuhiro Inaoka ++ ++ * ChangeLog.m32r: Fix typo in comment. ++ * sysdeps/m32r/preconfigure: Removed. ++ * sysdeps/m32r/configure.in: New file. ++ * sysdeps/m32r/configure: New generated file. ++ * sysdeps/m32r/linuxthreads/pspinlock.c (__pthread_spin_lock): ++ Changed INLINE_SYSCALL to INTERNAL_SYSCALL. ++ (__pthread_spin_trylock): Ditto. ++ * sysdeps/unix/sysv/linux/m32r/Versions: Removed GLIBC_2.2 ++ versioning, Added GLIBC_2.3 versioning. ++ ++2004-10-25 Kazuhiro Inaoka ++ ++ Moved from separate m32r-linuxthreads into m32r/linuxthreads ++ subdirs: ++ 2004-09-09 Kazuhiro Inaoka ++ * sysdeps/m32r/pspinlock.c: New file. ++ * sysdeps/m32r/pt-machine.h: New file ++ * sysdeps/m32r/preconfigure: Renamed from configure. ++ * sysdeps/m32r/shlib-versions: Moved from top level.. ++ * sysdeps/unix/sysv/linux/m32r/Makefile: Add static-gnulilb ++ environment value difinition. ++ ++2004-10-19 Kazuhiro Inaoka ++ ++ * m32r/configure: Changed into the simple rule. ++ ++2004-10-08 Kazuhiro Inaoka ++ ++ * sysdeps/unix/sysv/linux/m32r/mmap.S (__mmap): Use sys_mmap2. ++ ++2004-10-05 Kazuhiro Inaoka ++ ++ * sysdeps/m32r/dl-machine.h (elf_machine_rela_relative): Replace ++ static inline by auto inline, add always_inline attribute. ++ (elf_machine_rela): Likewise. ++ (elf_machine_lazy_rel): Likewise. ++ (elf_machine_runtime_setup): add always_inline attribute. ++ * sysdeps/unix/sysv/linux/m32r/bits/mman.h: Define PROT_GROWSDOWN ++ and PROT_GROWSUP. ++ * sysdeps/unix/sysv/linux/m32r/sysdep.h (SYSCALL_ERROR_HANDLER): ++ Define RTLD_PRIVATE_ERRNO variant. include . ++ ++2004-09-14 Kazuhiro Inaoka ++ ++ * configure: check for assembler line separator ++ ++2004-09-09 Kazuhiro Inaoka ++ ++ * configure, Makefile: Do nothing ++ * shlib-versions: New file. ++ * sysdeps/unix/m32r/sysdep.h: Use relative pathnames. ++ * sysdeps/unix/sysv/linux/m32r/sysdep.h: Use relative ++ pathnames. ++ * sysdeps/unix/sysv/linux/m32r/sysdep.S: Use relative ++ pathnames. ++ * sysdeps/m32r/init-first.c: Remove file ++ ++2004-09-09 Kazuhiro Inaoka ++ ++ * sysdeps/m32r/Implies: New file ++ * sysdeps/m32r/Makefile: New file ++ * sysdeps/m32r/__longjmp.S: New file ++ * sysdeps/m32r/bits/endian.h: New file ++ * sysdeps/m32r/bits/huge_val.h: New file ++ * sysdeps/m32r/bits/setjmp.h: New file ++ * sysdeps/m32r/bsd-_setjmp.S: New file ++ * sysdeps/m32r/bsd-setjmp.S: New file ++ * sysdeps/m32r/dl-machine.h: New file ++ * sysdeps/m32r/elf/start.S: New file ++ * sysdeps/m32r/gmp-mparam.h: New file ++ * sysdeps/m32r/init-first.c: New file ++ * sysdeps/m32r/m32r-mcount.S: New file ++ * sysdeps/m32r/machine-gmon.h: New file ++ * sysdeps/m32r/memcpy.S: New file ++ * sysdeps/m32r/memset.S: New file ++ * sysdeps/m32r/memusage.h: New file ++ * sysdeps/m32r/setjmp.S: New file ++ * sysdeps/m32r/stackinfo.h: New file ++ * sysdeps/m32r/strlen.S: New file ++ * sysdeps/m32r/sys/ucontext.h: New file ++ * sysdeps/m32r/sysdep.h: New file ++ * sysdeps/unix/m32r/Makefile: New file ++ * sysdeps/unix/m32r/sysdep.S: New file ++ * sysdeps/unix/m32r/sysdep.h: New file ++ * sysdeps/unix/sysv/linux/m32r/Dist: New file ++ * sysdeps/unix/sysv/linux/m32r/Makefile: New file ++ * sysdeps/unix/sysv/linux/m32r/Versions: New file ++ * sysdeps/unix/sysv/linux/m32r/bits/fcntl.h: New file ++ * sysdeps/unix/sysv/linux/m32r/bits/mman.h: New file ++ * sysdeps/unix/sysv/linux/m32r/bits/resource.h: New file ++ * sysdeps/unix/sysv/linux/m32r/brk.c: New file ++ * sysdeps/unix/sysv/linux/m32r/chown.c: New file ++ * sysdeps/unix/sysv/linux/m32r/clone.S: New file ++ * sysdeps/unix/sysv/linux/m32r/fchown.c: New file ++ * sysdeps/unix/sysv/linux/m32r/fcntl.c: New file ++ * sysdeps/unix/sysv/linux/m32r/flushcache.S: New file ++ * sysdeps/unix/sysv/linux/m32r/fxstat.c: New file ++ * sysdeps/unix/sysv/linux/m32r/getegid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/geteuid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/getgroups.c: New file ++ * sysdeps/unix/sysv/linux/m32r/getresgid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/getresuid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/getrlimit.c: New file ++ * sysdeps/unix/sysv/linux/m32r/getrlimit64.c: New file ++ * sysdeps/unix/sysv/linux/m32r/getuid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/lchown.c: New file ++ * sysdeps/unix/sysv/linux/m32r/lockf64.c: New file ++ * sysdeps/unix/sysv/linux/m32r/lxstat.c: New file ++ * sysdeps/unix/sysv/linux/m32r/m32r-stub.c: New file ++ * sysdeps/unix/sysv/linux/m32r/mmap.S: New file ++ * sysdeps/unix/sysv/linux/m32r/msgctl.c: New file ++ * sysdeps/unix/sysv/linux/m32r/pipe.S: New file ++ * sysdeps/unix/sysv/linux/m32r/profil-counter.h: New file ++ * sysdeps/unix/sysv/linux/m32r/semctl.c: New file ++ * sysdeps/unix/sysv/linux/m32r/setegid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/seteuid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/setfsgid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/setfsuid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/setgid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/setgroups.c: New file ++ * sysdeps/unix/sysv/linux/m32r/setregid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/setresgid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/setresuid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/setreuid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/setrlimit.c: New file ++ * sysdeps/unix/sysv/linux/m32r/setuid.c: New file ++ * sysdeps/unix/sysv/linux/m32r/shmctl.c: New file ++ * sysdeps/unix/sysv/linux/m32r/sigcontextinfo.h: New file ++ * sysdeps/unix/sysv/linux/m32r/socket.S: New file ++ * sysdeps/unix/sysv/linux/m32r/sys/cachectl.h: New file ++ * sysdeps/unix/sysv/linux/m32r/sys/io.h: New file ++ * sysdeps/unix/sysv/linux/m32r/sys/tas.h: New file ++ * sysdeps/unix/sysv/linux/m32r/sys/ucontext.h: New file ++ * sysdeps/unix/sysv/linux/m32r/sys/user.h: New file ++ * sysdeps/unix/sysv/linux/m32r/syscall.S: New file ++ * sysdeps/unix/sysv/linux/m32r/syscalls.list: New file ++ * sysdeps/unix/sysv/linux/m32r/sysdep.S: New file ++ * sysdeps/unix/sysv/linux/m32r/sysdep.h: New file ++ * sysdeps/unix/sysv/linux/m32r/vfork.S: New file ++ * sysdeps/unix/sysv/linux/m32r/xstat.c: New file +diff --exclude=CVS -upNr ports/sysdeps/m32r/Implies ports/sysdeps/m32r/Implies +--- ports/sysdeps/m32r/Implies 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/Implies 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,3 @@ ++wordsize-32 ++ieee754/flt-32 ++ieee754/dbl-64 +diff --exclude=CVS -upNr ports/sysdeps/m32r/Makefile ports/sysdeps/m32r/Makefile +--- ports/sysdeps/m32r/Makefile 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/Makefile 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,7 @@ ++# m32r/ELF specific definitions. ++ ++# The assembler on m32r needs the -fPIC flag even when it's assembler code. ++#ASFLAGS-.os = -fPIC ++ifeq ($(subdir),gmon) ++sysdep_routines += m32r-mcount ++endif +diff --exclude=CVS -upNr ports/sysdeps/m32r/__longjmp.S ports/sysdeps/m32r/__longjmp.S +--- ports/sysdeps/m32r/__longjmp.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/__longjmp.S 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,43 @@ ++/* longjmp for M32R. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++#define _SETJMP_H ++#define _ASM ++#include ++ ++/* __longjmp(jmpbuf, val) */ ++ ++ENTRY (__longjmp) ++ ld r8, @r0+ ++ ld r9, @r0+ ++ ld r10, @r0+ ++ ld r11, @r0+ ++ ld r12, @r0+ ++ ld r13, @r0+ ++ ld r2, @r0+ /* lr */ ++ ld r15, @r0 /* sp */ ++ ++ mv r0,r1 ++ bnez r0, 1f /* get the return value in place */ ++ ldi r0, #1 /* can't let setjmp() return zero! */ ++ .fillinsn ++1: ++ jmp r2 ++END (__longjmp) +diff --exclude=CVS -upNr ports/sysdeps/m32r/bits/endian.h ports/sysdeps/m32r/bits/endian.h +--- ports/sysdeps/m32r/bits/endian.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/bits/endian.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,13 @@ ++/* M32R is bi-endian. */ ++ ++#ifndef _ENDIAN_H ++# error "Never use directly; include instead." ++#endif ++ ++#ifdef __LITTLE_ENDIAN__ ++#define __BYTE_ORDER __LITTLE_ENDIAN ++#define __FLOAT_WORD_ORDER __LITTLE_ENDIAN ++#else ++#define __BYTE_ORDER __BIG_ENDIAN ++#define __FLOAT_WORD_ORDER __BIG_ENDIAN ++#endif +diff --exclude=CVS -upNr ports/sysdeps/m32r/bits/huge_val.h ports/sysdeps/m32r/bits/huge_val.h +--- ports/sysdeps/m32r/bits/huge_val.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/bits/huge_val.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,56 @@ ++/* `HUGE_VAL' constants for IEEE 754 machines (where it is infinity). ++ Used by and functions for overflow. ++ M32R version. ++ Copyright (C) 1992, 95, 96, 97, 98, 99, 2000, 2004 ++ Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _MATH_H ++# error "Never use directly; include instead." ++#endif ++ ++/* IEEE positive infinity (-HUGE_VAL is negative infinity). */ ++ ++#if __GNUC_PREREQ(3,3) ++# define HUGE_VAL (__builtin_huge_val()) ++#elif __GNUC_PREREQ(2,96) ++# define HUGE_VAL (__extension__ 0x1.0p2047) ++#elif defined __GNUC__ ++ ++# define HUGE_VAL \ ++ (__extension__ \ ++ ((union { unsigned __l __attribute__((__mode__(__DI__))); double __d; }) \ ++ { __l: 0x000000007ff00000ULL }).__d) ++ ++#else /* not GCC */ ++ ++# include ++ ++typedef union { unsigned char __c[8]; double __d; } __huge_val_t; ++ ++# if __BYTE_ORDER == __BIG_ENDIAN ++# define __HUGE_VAL_bytes { 0, 0, 0, 0, 0x7f, 0xf0, 0, 0 } ++# endif ++# if __BYTE_ORDER == __LITTLE_ENDIAN ++# define __HUGE_VAL_bytes { 0, 0, 0xf0, 0x7f, 0, 0, 0, 0 } ++# endif ++ ++static __huge_val_t __huge_val = { __HUGE_VAL_bytes }; ++# define HUGE_VAL (__huge_val.__d) ++ ++#endif /* GCC. */ +diff --exclude=CVS -upNr ports/sysdeps/m32r/bits/setjmp.h ports/sysdeps/m32r/bits/setjmp.h +--- ports/sysdeps/m32r/bits/setjmp.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/bits/setjmp.h 2006-05-09 10:22:45.000000000 +0900 +@@ -0,0 +1,57 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++/* Define the machine-dependent type `jmp_buf'. M32R version. */ ++#ifndef _BITS_SETJMP_H ++#define _BITS_SETJMP_H 1 ++ ++#if !defined _SETJMP_H && !defined _PTHREAD_H ++# error "Never include directly; use instead." ++#endif ++ ++#ifndef _ASM ++typedef struct ++ { ++ /* Callee-saved registers r8 through r15. */ ++ int __regs[8]; ++ ++ /* Program counter. */ ++ void * __pc; ++ } __jmp_buf[1]; ++#endif ++ ++#if defined __USE_MISC || defined _ASM ++#define JB_R8 0 ++#define JB_R9 1 ++#define JB_R10 2 ++#define JB_R11 3 ++#define JB_R12 4 ++#define JB_FP 5 ++#define JB_LR 6 ++#define JB_SP 7 ++#define JB_PC 8 ++ ++#define JB_SIZE (4 * 9) ++#endif ++ ++/* Test if longjmp to JMPBUF would unwind the frame ++ containing a local variable at ADDRESS. */ ++#define _JMPBUF_UNWINDS(jmpbuf, address) \ ++ ((void *) (address) < (jmpbuf)[0].__regs[JB_SP]) ++ ++#endif /* bits/setjmp.h */ +diff --exclude=CVS -upNr ports/sysdeps/m32r/bsd-_setjmp.S ports/sysdeps/m32r/bsd-_setjmp.S +--- ports/sysdeps/m32r/bsd-_setjmp.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/bsd-_setjmp.S 2006-03-02 11:15:18.000000000 +0900 +@@ -0,0 +1,43 @@ ++/* BSD `_setjmp' entry point to `sigsetjmp (..., 0)'. M32R version. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++/* This just does a tail-call to `__sigsetjmp (ARG, 0)'. ++ We cannot do it in C because it must be a tail-call, so frame-unwinding ++ in setjmp doesn't clobber the state restored by longjmp. */ ++ ++#include ++ ++ENTRY (_setjmp) ++#ifdef SHARED ++ mv r2,lr ++ bl.s .+4 ++ ld24 r1,#_GLOBAL_OFFSET_TABLE_ ++ add r1,lr ++ mv lr,r2 ++ ++ ld24 r2,C_SYMBOL_NAME(__sigsetjmp@GOT) ++ add r2,r1 ++ ld r2,@r2 ++#else ++ LDIMM (r2, C_SYMBOL_NAME(__sigsetjmp)) ++#endif ++ ldi r1, #0 /* Pass a second argument of zero. */ ++ jmp r2 ++END (_setjmp) ++libc_hidden_def(_setjmp) +diff --exclude=CVS -upNr ports/sysdeps/m32r/bsd-setjmp.S ports/sysdeps/m32r/bsd-setjmp.S +--- ports/sysdeps/m32r/bsd-setjmp.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/bsd-setjmp.S 2006-03-02 11:15:35.000000000 +0900 +@@ -0,0 +1,42 @@ ++/* BSD `setjmp' entry point to `sigsetjmp (..., 1)'. M32R version. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++/* This just does a tail-call to `__sigsetjmp (ARG, 1)'. ++ We cannot do it in C because it must be a tail-call, so frame-unwinding ++ in setjmp doesn't clobber the state restored by longjmp. */ ++ ++#include ++ ++ENTRY (setjmp) ++#ifdef SHARED ++ mv r2,lr ++ bl.s .+4 ++ ld24 r1,#_GLOBAL_OFFSET_TABLE_ ++ add r1,lr ++ mv lr,r2 ++ ++ ld24 r2,C_SYMBOL_NAME(__sigsetjmp@GOT) ++ add r2,r1 ++ ld r2,@r2 ++#else ++ LDIMM (r2, C_SYMBOL_NAME(__sigsetjmp)) ++#endif ++ ldi r1, #1 /* Pass a second argument of one. */ ++ jmp r2 ++END (setjmp) +diff --exclude=CVS -upNr ports/sysdeps/m32r/configure ports/sysdeps/m32r/configure +--- ports/sysdeps/m32r/configure 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/configure 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,7 @@ ++# This file is generated from configure.in by Autoconf. DO NOT EDIT! ++ ++libc_cv_asm_line_sep='!' ++cat >>confdefs.h <<_ACEOF ++#define ASM_LINE_SEP $libc_cv_asm_line_sep ++_ACEOF ++ +diff --exclude=CVS -upNr ports/sysdeps/m32r/configure.in ports/sysdeps/m32r/configure.in +--- ports/sysdeps/m32r/configure.in 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/configure.in 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,5 @@ ++GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory. ++ ++dnl M32R uses `;' to start comments and `!' for line separator. ++libc_cv_asm_line_sep='!' ++AC_DEFINE_UNQUOTED(ASM_LINE_SEP, $libc_cv_asm_line_sep) +diff --exclude=CVS -upNr ports/sysdeps/m32r/dl-machine.h ports/sysdeps/m32r/dl-machine.h +--- ports/sysdeps/m32r/dl-machine.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/dl-machine.h 2006-03-02 11:28:06.000000000 +0900 +@@ -0,0 +1,814 @@ ++/* Machine-dependent ELF dynamic relocation inline functions. M32R version. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#ifndef dl_machine_h ++#define dl_machine_h ++ ++/* Only dummy. This doesn't work. */ ++ ++#define ELF_MACHINE_NAME "M32R" ++ ++#include ++ ++#include ++ ++/* Define the M32R_OLD_ABI, if you want to keep compatibility with ++ an old Renesas relocs */ ++#ifdef M32R_OLD_ABI ++#define R_M32R_16_SAMPLE 1 ++#define R_M32R_32_SAMPLE 2 ++#define R_M32R_24_SAMPLE 3 ++#define R_M32R_10_PCREL_SAMPLE 4 ++#define R_M32R_18_PCREL_SAMPLE 5 ++#define R_M32R_26_PCREL_SAMPLE 6 ++#define R_M32R_HI16_ULO_SAMPLE 7 ++#define R_M32R_HI16_SLO_SAMPLE 8 ++#define R_M32R_LO16_SAMPLE 9 ++#define R_M32R_SDA16_SAMPLE 10 ++ ++#define R_M32R_GOT24_SAMPLE 11 /* conflict */ ++#define R_M32R_26_PLTREL_SAMPLE 12 /* conflict */ ++#define R_M32R_GOT16_HI_ULO_SAMPLE 13 ++#define R_M32R_GOT16_HI_SLO_SAMPLE 14 ++#define R_M32R_GOT16_LO_SAMPLE 15 ++#define R_M32R_GOTPC24_SAMPLE 16 ++#define R_M32R_COPY_SAMPLE 17 ++#define R_M32R_GLOB_DAT_SAMPLE 18 ++#define R_M32R_JMP_SLOT_SAMPLE 19 ++#define R_M32R_RELATIVE_SAMPLE 20 ++#define R_M32R_GNU_VTINHERIT_SAMPLE 21 ++#define R_M32R_GNU_VTENTRY_SAMPLE 22 ++#endif /* M32R_OLD_ABI */ ++ ++/* Return nonzero iff ELF header is compatible with the running host. */ ++static inline int __attribute__ ((unused)) ++elf_machine_matches_host (const Elf32_Ehdr *ehdr) ++{ ++ return (ehdr->e_machine == EM_M32R); ++} ++ ++ ++/* Return the link-time address of _DYNAMIC. Conveniently, this is the ++ first element of the GOT. This must be inlined in a function which ++ uses global data. */ ++static inline Elf32_Addr __attribute__ ((unused)) ++elf_machine_dynamic (void) ++{ ++ register Elf32_Addr *got; ++ asm (" bl.s .+4\n" ++ " ld24 %0,#_GLOBAL_OFFSET_TABLE_\n" ++ " add %0,lr" :"=r" (got) : : "lr" ); ++ return *got; ++} ++ ++ ++/* Return the run-time load address of the shared object. */ ++static inline Elf32_Addr __attribute__ ((unused)) ++elf_machine_load_address (void) ++{ ++ Elf32_Addr addr; ++ asm (" ld24 r0,#here\n\t" ++ " add r0,r12\n\t" ++ " ld r0,@r0\n\t" ++ "here: \n\t" ++ " ld24 r1,#_GLOBAL_OFFSET_TABLE_\n\t" ++ " mv r2,r12\n\t" ++ " sub r2,r1\n\t" ++ " sub r2,r0\n\t" ++ " mv %0,r2" ++ : "=r" (addr) : : "r0", "r1", "r2" ); ++ return addr; ++} ++ ++ ++/* Set up the loaded object described by L so its unrelocated PLT ++ entries will jump to the on-demand fixup code in dl-runtime.c. */ ++ ++static inline int __attribute__ ((unused, always_inline)) ++elf_machine_runtime_setup (struct link_map *l, int lazy, int profile) ++{ ++ Elf32_Addr *got; ++ extern void _dl_runtime_resolve (Elf32_Word); ++ extern void _dl_runtime_profile (Elf32_Word); ++ ++ if (l->l_info[DT_JMPREL] && lazy) ++ { ++ /* The GOT entries for functions in the PLT have not yet been filled ++ in. Their initial contents will arrange when called to load an ++ offset into the .rela.plt section and _GLOBAL_OFFSET_TABLE_[1], ++ and then jump to _GLOBAL_OFFSET_TABLE[2]. */ ++ got = (Elf32_Addr *) D_PTR (l, l_info[DT_PLTGOT]); ++ got[1] = (Elf32_Addr) l; /* Identify this shared object. */ ++ ++ /* The got[2] entry contains the address of a function which gets ++ called to get the address of a so far unresolved function and ++ jump to it. The profiling extension of the dynamic linker allows ++ to intercept the calls to collect information. In this case we ++ don't store the address in the GOT so that all future calls also ++ end in this function. */ ++ if (profile) ++ { ++ got[2] = (Elf32_Addr) &_dl_runtime_profile; ++ /* Say that we really want profiling and the timers are started. */ ++ GL(dl_profile_map) = l; ++ } ++ else ++ /* This function will get called to fix up the GOT entry indicated by ++ the offset on the stack, and then jump to the resolved address. */ ++ got[2] = (Elf32_Addr) &_dl_runtime_resolve; ++ } ++ return lazy; ++} ++ ++/* This code is used in dl-runtime.c to call the `fixup' function ++ and then redirect to the address it returns. */ ++ ++#define ELF_MACHINE_RUNTIME_FIXUP_ARGS int plt_type ++ ++#ifdef SHARED ++#define FUN_ADDR( func ) "\n\ ++ bl.s .+4 \n\ ++ ld24 r12,#_GLOBAL_OFFSET_TABLE_ \n\ ++ add r12,lr \n\ ++ ld24 r4,#" #func "@GOT \n\ ++ add r4,r12 \n\ ++ ld r4,@r4" ++#else ++#define FUN_ADDR( func ) "\ ++ seth r4,#high( " #func " ) \n\ ++ or3 r4,r4,#low( " #func " )" ++#endif ++ ++#define FGR_SAVE "" ++#define FGR_LOAD "" ++ ++#ifdef M32R_OLD_NEWABI ++#define LOAD_ARGS_FROM_STACK( name ) "\n\ ++ mv r7,lr \n\ ++ ; OLD_PLT to keep compatible mode only \n\ ++ bl.s .+4 \n\ ++ .fillinsn \n\ ++ addi lr,# " #name " -. \n\ ++ beq r6,lr,1f \n\ ++ ; OLT_PLT ABI \n\ ++ pop r4 ; link map address \n\ ++ pop r5 ; reloc offset \n\ ++ .fillinsn \n\ ++1: \n\ ++ mv lr,r7" ++#else ++#define LOAD_ARGS_FROM_STACK( name ) "\n\ ++ ; DELETE FOR NEW ABI pop r4 ; link map address \n\ ++ ; DELETE FOR NEW ABI pop r5 ; reloc offset\n" ++#endif ++ ++#ifndef PROF ++# define ELF_MACHINE_RUNTIME_TRAMPOLINE asm ("\ ++ .text \n\ ++ .globl _dl_runtime_resolve \n\ ++ .type _dl_runtime_resolve, @function \n\ ++ \n\ ++ .balign 4 \n\ ++_dl_runtime_resolve: \n\ ++ " LOAD_ARGS_FROM_STACK( _dl_runtime_resolve ) " \n\ ++ push r0 \n\ ++ push r1 \n\ ++ push r2 \n\ ++ push r3 \n\ ++ push r12 \n\ ++ " FGR_SAVE " \n\ ++ push lr \n\ ++ \n\ ++ ; fixup( ELF_MACHINE_RUNTIME_TRAMPOLINE, link_map, reloc_offset ) \n\ ++ ;mv r0,*** ; plt_type (dummy) \n\ ++ \n\ ++ mv r1,r4 ; link map address \n\ ++ mv r2,r5 ; reloc offset \n\ ++ \n\ ++ " FUN_ADDR( fixup ) " \n\ ++ \n\ ++ jl r4 ; Call resolver. \n\ ++ mv r4,r0 ; value \n\ ++ \n\ ++ pop lr ; Get register content back. \n\ ++ " FGR_LOAD " \n\ ++ pop r12 \n\ ++ pop r3 \n\ ++ pop r2 \n\ ++ pop r1 \n\ ++ pop r0 \n\ ++ \n\ ++ jmp r4 ; Jump to function address. \n\ ++ \n\ ++ .balign 4 \n\ ++ .size _dl_runtime_resolve, .-_dl_runtime_resolve \n\ ++ \n\ ++ .globl _dl_runtime_profile \n\ ++ .type _dl_runtime_profile, @function \n\ ++ \n\ ++ .balign 4 \n\ ++_dl_runtime_profile: \n\ ++ " LOAD_ARGS_FROM_STACK( _dl_runtime_profile ) " \n\ ++ push r0 \n\ ++ push r1 \n\ ++ push r2 \n\ ++ push r3 \n\ ++ push r12 \n\ ++ " FGR_SAVE " \n\ ++ push lr \n\ ++ \n\ ++ ; profile_fixup( ELF_MACHINE_RUNTIME_TRAMPOLINE, link_map, reloc_offset ) \n\ ++ ;mv r0,*** ; plt_type (dummy) \n\ ++ mv r1,r4 ; link map address \n\ ++ mv r2,r5 ; reloc offset \n\ ++ \n\ ++ " FUN_ADDR( profile_fixup ) " \n\ ++ \n\ ++ jl r4 ; Call resolver. \n\ ++ mv r4,r0 ; value \n\ ++ \n\ ++ pop lr ; Get register content back. \n\ ++ " FGR_LOAD " \n\ ++ pop r12 \n\ ++ pop r3 \n\ ++ pop r2 \n\ ++ pop r1 \n\ ++ pop r0 \n\ ++ \n\ ++ jmp r4 ; Jump to function address. \n\ ++ \n\ ++ .balign 4 \n\ ++ .size _dl_runtime_profile, .-_dl_runtime_profile \n\ ++ .previous \n\ ++"); ++#else ++# define ELF_MACHINE_RUNTIME_TRAMPOLINE asm ("\ ++ .text \n\ ++ .globl _dl_runtime_resolve \n\ ++ .globl _dl_runtime_profile \n\ ++ .type _dl_runtime_resolve, @function \n\ ++ .type _dl_runtime_profile, @function \n\ ++ \n\ ++ .balign 4 \n\ ++_dl_runtime_resolve: \n\ ++_dl_runtime_profile: \n\ ++ " LOAD_ARGS_FROM_STACK( _dl_runtime_resolve ) " \n\ ++ push r0 \n\ ++ push r1 \n\ ++ push r2 \n\ ++ push r3 \n\ ++ push r12 \n\ ++ " FGR_SAVE " \n\ ++ push lr \n\ ++ \n\ ++ ; fixup( ELF_MACHINE_RUNTIME_TRAMPOLINE, link_map, reloc_offset ) \n\ ++ ;mv r0,*** ; plt_type (dummy) \n\ ++ mv r1,r4 ; link map address \n\ ++ mv r2,r5 ; reloc offset \n\ ++ \n\ ++ " FUN_ADDR( fixup ) " \n\ ++ \n\ ++ jl r4 ; Call resolver. \n\ ++ mv r4,r0 ; value \n\ ++ \n\ ++ pop lr ; Get register content back. \n\ ++ " FGR_LOAD " \n\ ++ pop r12 \n\ ++ pop r3 \n\ ++ pop r2 \n\ ++ pop r1 \n\ ++ pop r0 \n\ ++ \n\ ++ jmp r4 ; Jump to function address. \n\ ++ \n\ ++ .balign 4 \n\ ++ .size _dl_runtime_resolve, .-_dl_runtime_resolve \n\ ++ .size _dl_runtime_profile, .-_dl_runtime_profile \n\ ++ .previous \n\ ++"); ++#endif ++ ++/* Mask identifying addresses reserved for the user program, ++ where the dynamic linker should not map anything. */ ++#define ELF_MACHINE_USER_ADDRESS_MASK 0x80000000UL ++ ++/* Initial entry point code for the dynamic linker. ++ The C function `_dl_start' is the real entry point; ++ its return value is the user program's entry point. */ ++ ++#define RTLD_START asm ("\ ++.text\n\ ++.globl _start\n\ ++.globl _dl_start_user\n\ ++_start:\n\ ++ mv r0,r15\n\ ++ bl _dl_start\n\ ++_dl_start_user:\n\ ++ ; Save the user entry point address in r8.\n\ ++ mv r8,r0\n\ ++ ; Point r12 at the GOT.\n\ ++ bl.s .+4\n\ ++ ld24 r12,#_GLOBAL_OFFSET_TABLE_\n\ ++ add r12,lr\n\ ++ ; Store the highest stack address\n\ ++ ld24 r0,#__libc_stack_end@GOT ; __libc_stack_end@GOT \n\ ++ add r0,r12\n\ ++ ld r0,@r0\n\ ++ st r15,@r0\n\ ++ ; See if we were run as a command with the executable file\n\ ++ ; name as an extra leading argument.\n\ ++ ld24 r0,#_dl_skip_args@GOT ; _dl_skip_args@GOT \n\ ++ add r0,r12\n\ ++ ld r0,@r0\n\ ++ ld r0,@r0\n\ ++ ; Get the original argument count.\n\ ++ ld r1,@r15\n\ ++ ; Subtract _dl_skip_args from it.\n\ ++ sub r1,r0\n\ ++ ; Adjust the stack pointer to skip _dl_skip_args words.\n\ ++ slli r0,#2\n\ ++ add r15,r0\n\ ++ ; Store back the modified argument count.\n\ ++ st r1,@r15\n\ ++ ; Compute argv address and envp.\n\ ++ mv r2,r15\n\ ++ addi r2,#4\n\ ++ mv r3,r1\n\ ++ addi r3,#1\n\ ++ slli r3,#2\n\ ++ add r3,r2\n\ ++ ld24 r0,#_rtld_local@GOT\n\ ++ add r0,r12\n\ ++ ld r0,@r0\n\ ++ ld r0,@r0\n\ ++ ; Call _dl_init.\n\ ++ bl _dl_init@PLT ; _dl_init@PLT \n\ ++ .fillinsn\n\ ++1: ; Pass our finalizer function to the user in r4, as per ELF ABI.\n\ ++ ld24 r0,#_dl_fini@GOT ; _dl_fini@GOT \n\ ++ add r0,r12\n\ ++ ld r0,@r0\n\ ++ ; Jump to the user's entry point.\n\ ++ jmp r8\n\ ++.previous\n\ ++"); ++ ++/* ELF_RTYPE_CLASS_PLT iff TYPE describes relocation of a PLT entry, so ++ PLT entries should not be allowed to define the value. ++ ELF_RTYPE_CLASS_NOCOPY iff TYPE should not be allowed to resolve to one ++ of the main executable's symbols, as for a COPY reloc. */ ++#ifdef M32R_OLD_ABI ++/* for oldtype relocation compatibility */ ++#define elf_machine_type_class(type) \ ++ ((((type) == R_M32R_JMP_SLOT || (type) == R_M32R_JMP_SLOT_SAMPLE) * ELF_RTYPE_CLASS_PLT) \ ++ | (((type) == R_M32R_COPY || (type) == R_M32R_COPY_SAMPLE) * ELF_RTYPE_CLASS_COPY)) ++#else ++#define elf_machine_type_class(type) \ ++ ((((type) == R_M32R_JMP_SLOT) * ELF_RTYPE_CLASS_PLT) \ ++ | (((type) == R_M32R_COPY) * ELF_RTYPE_CLASS_COPY)) ++#endif ++ ++/* A reloc type used for ld.so cmdline arg lookups to reject PLT entries. */ ++#ifdef M32R_OLD_ABI ++/* for oldtype relocation compatibility */ ++#define ELF_MACHINE_JMP_SLOT \ ++ R_M32R_JMP_SLOT || ELFW(R_TYPE)(reloc->r_info) == R_M32R_JMP_SLOT_SAMPLE ++#else ++#define ELF_MACHINE_JMP_SLOT R_M32R_JMP_SLOT ++#endif ++ ++/* M32R never uses Elf32_Rel relocations. */ ++#define ELF_MACHINE_NO_REL 1 ++ ++/* We define an initialization functions. This is called very early in ++ _dl_sysdep_start. */ ++#define DL_PLATFORM_INIT dl_platform_init () ++ ++static inline void __attribute__ ((unused)) ++dl_platform_init (void) ++{ ++ if (GLRO(dl_platform) != NULL && *GLRO(dl_platform) == '\0') ++ /* Avoid an empty string which would disturb us. */ ++ GLRO(dl_platform) = NULL; ++} ++ ++static inline Elf32_Addr ++elf_machine_fixup_plt (struct link_map *map, lookup_t t, ++ const Elf32_Rela *reloc, ++ Elf32_Addr *reloc_addr, Elf32_Addr value) ++{ ++ return *reloc_addr = value; ++} ++ ++/* Return the final value of a plt relocation. */ ++static inline Elf32_Addr ++elf_machine_plt_value (struct link_map *map, const Elf32_Rela *reloc, ++ Elf32_Addr value) ++{ ++ return value + reloc->r_addend; ++} ++ ++#endif /* !dl_machine_h */ ++ ++#ifdef RESOLVE ++ ++extern char **_dl_argv; ++ ++/* Perform the relocation specified by RELOC and SYM (which is fully resolved). ++ MAP is the object containing the reloc. */ ++ ++auto inline void ++__attribute ((always_inline)) ++elf_machine_rela (struct link_map *map, const Elf32_Rela *reloc, ++ const Elf32_Sym *sym, const struct r_found_version *version, ++ void *const reloc_addr_arg) ++{ ++ Elf32_Addr *const reloc_addr = reloc_addr_arg; ++ const unsigned int r_type = ELF32_R_TYPE (reloc->r_info); ++ Elf32_Addr value; ++ ++#define COPY_UNALIGNED_WORD(swp, twp, align) \ ++ { \ ++ void *__s = (swp), *__t = (twp); \ ++ unsigned char *__s1 = __s, *__t1 = __t; \ ++ unsigned short *__s2 = __s, *__t2 = __t; \ ++ unsigned long *__s4 = __s, *__t4 = __t; \ ++ switch ((align)) \ ++ { \ ++ case 0: \ ++ *__t4 = *__s4; \ ++ break; \ ++ case 2: \ ++ *__t2++ = *__s2++; \ ++ *__t2 = *__s2; \ ++ break; \ ++ default: \ ++ *__t1++ = *__s1++; \ ++ *__t1++ = *__s1++; \ ++ *__t1++ = *__s1++; \ ++ *__t1 = *__s1; \ ++ break; \ ++ } \ ++ } ++#define COPY_UNALIGNED_HWORD(swp, twp, align) \ ++ { \ ++ void *__s = (swp), *__t = (twp); \ ++ unsigned char *__s1 = __s, *__t1 = __t; \ ++ unsigned short *__s2 = __s, *__t2 = __t; \ ++ switch ((align)) \ ++ { \ ++ case 0: \ ++ *__t2 = *__s2; \ ++ break; \ ++ default: \ ++ *__t1++ = *__s1++; \ ++ *__t1 = *__s1; \ ++ break; \ ++ } \ ++ } ++ ++#ifdef M32R_OLD_ABI ++/* for oldtype relocation compatibility */ ++ if (__builtin_expect (r_type == R_M32R_RELATIVE || r_type == R_M32R_RELATIVE_SAMPLE, 0)) ++#else ++ if (__builtin_expect (r_type == R_M32R_RELATIVE, 0)) ++#endif ++ { ++#ifndef RTLD_BOOTSTRAP ++ if (map != &GL(dl_rtld_map)) /* Already done in rtld itself. */ ++#endif ++ { ++ if (reloc->r_addend) ++ value = map->l_addr + reloc->r_addend; ++ else ++ { ++ COPY_UNALIGNED_WORD (reloc_addr_arg, &value, ++ (int) reloc_addr_arg & 3); ++ value += map->l_addr; ++ } ++ COPY_UNALIGNED_WORD (&value, reloc_addr_arg, ++ (int) reloc_addr_arg & 3); ++ } ++ } ++#ifndef RTLD_BOOTSTRAP ++ else if (__builtin_expect (r_type == R_M32R_NONE, 0)) ++ return; ++#endif ++ else ++ { ++ const Elf32_Sym *const refsym = sym; ++#ifndef RTLD_BOOTSTRAP ++ Elf32_Addr tmp_value; ++#endif ++ value = RESOLVE (&sym, version, r_type); ++ if (sym) ++ value += sym->st_value; ++ value += reloc->r_addend; ++ ++ switch (r_type) ++ { ++#ifdef M32R_OLD_ABI ++ case R_M32R_COPY_SAMPLE: ++#endif ++ case R_M32R_COPY: ++ if (sym == NULL) ++ /* This can happen in trace mode if an object could not be ++ found. */ ++ break; ++ if (sym->st_size > refsym->st_size ++ || (sym->st_size < refsym->st_size && GLRO(dl_verbose))) ++ { ++ const char *strtab; ++ ++ strtab = (const char *) D_PTR (map, l_info[DT_STRTAB]); ++ _dl_error_printf ("\ ++%s: Symbol `%s' has different size in shared object, consider re-linking\n", ++ _dl_argv[0] ?: "", ++ strtab + refsym->st_name); ++ } ++ memcpy (reloc_addr, (void *) value, MIN (sym->st_size, ++ refsym->st_size)); ++ break; ++#ifdef M32R_OLD_ABI ++ case R_M32R_GLOB_DAT_SAMPLE: ++#endif ++ case R_M32R_GLOB_DAT: ++#if 0 /* 20021129 1 -> 0 */ ++ case R_M32R_32: ++ *reloc_addr = value; ++ break; ++#endif /* 20021129 1 -> 0 */ ++#ifdef M32R_OLD_ABI ++ case R_M32R_JMP_SLOT_SAMPLE: ++#endif ++ case R_M32R_JMP_SLOT: ++ elf_machine_fixup_plt(map, 0, reloc, reloc_addr, value); ++ break; ++#if 1 /* 20021129 0 -> 1 */ ++#ifdef M32R_OLD_ABI ++ case R_M32R_32_SAMPLE: ++#endif ++ case R_M32R_32_RELA: ++#ifndef RTLD_BOOTSTRAP ++#ifdef M32R_OLD_ABI ++ case R_M32R_24_SAMPLE: ++ case R_M32R_16_SAMPLE: ++ case R_M32R_HI16_ULO_SAMPLE: ++ case R_M32R_HI16_SLO_SAMPLE: ++ case R_M32R_LO16_SAMPLE: ++ case R_M32R_SDA16_SAMPLE: ++#endif ++ case R_M32R_24_RELA: ++ case R_M32R_16_RELA: ++ case R_M32R_HI16_ULO_RELA: ++ case R_M32R_HI16_SLO_RELA: ++ case R_M32R_LO16_RELA: ++ case R_M32R_SDA16_RELA: ++#endif ++ case R_M32R_REL32: ++ { ++#ifndef RTLD_BOOTSTRAP ++ /* This is defined in rtld.c, but nowhere in the static ++ libc.a; make the reference weak so static programs can ++ still link. This declaration cannot be done when ++ compiling rtld.c (i.e. #ifdef RTLD_BOOTSTRAP) because ++ rtld.c contains the common defn for _dl_rtld_map, which ++ is incompatible with a weak decl in the same file. */ ++# ifndef SHARED ++ weak_extern (GL(dl_rtld_map)); ++# endif ++ if (map == &GL(dl_rtld_map)) ++ /* Undo the relocation done here during bootstrapping. ++ Now we will relocate it anew, possibly using a ++ binding found in the user program or a loaded library ++ rather than the dynamic linker's built-in definitions ++ used while loading those libraries. */ ++ value -= map->l_addr + refsym->st_value + reloc->r_addend; ++#endif ++#ifdef M32R_OLD_ABI ++ if (r_type == R_M32R_32_SAMPLE ++ || r_type == R_M32R_32_RELA) ++#else ++ if (r_type == R_M32R_32_RELA) ++#endif ++ { ++ COPY_UNALIGNED_WORD (&value, reloc_addr_arg, ++ (int) reloc_addr_arg & 3); ++ } ++#ifndef RTLD_BOOTSTRAP ++#ifdef M32R_OLD_ABI ++ else if (r_type == R_M32R_16_SAMPLE ++ || r_type == R_M32R_16_RELA) ++#else ++ else if (r_type == R_M32R_16_RELA) ++#endif ++ { ++ COPY_UNALIGNED_HWORD (&value, reloc_addr_arg, ++ (int) reloc_addr_arg & 3); ++ } ++ else if (r_type == R_M32R_REL32) ++ { ++ value = (value - (Elf32_Addr) reloc_addr); ++ COPY_UNALIGNED_WORD (&value, reloc_addr_arg, ++ (int) reloc_addr_arg & 3); ++ } ++ else ++ { ++ COPY_UNALIGNED_WORD (reloc_addr_arg, &tmp_value, ++ (int) reloc_addr_arg & 3); ++ switch (r_type) ++ { ++#ifdef M32R_OLD_ABI ++ case R_M32R_24_SAMPLE: ++ if (value & 0xff000000) ++ { ++ _dl_signal_error (0, map->l_name, NULL, ++ "R_M32R_24 relocation overflow"); ++ } ++ value = (tmp_value & ~0xffffff) | (value & 0xffffff); ++ break; ++#endif ++ case R_M32R_24_RELA: ++ if (value & 0xff000000) ++ { ++ _dl_signal_error (0, map->l_name, NULL, ++ "R_M32R_24_RELA relocation overflow"); ++ } ++ value = (tmp_value & ~0xffffff) | (value & 0xffffff); ++ break; ++#ifdef M32R_OLD_ABI ++ case R_M32R_HI16_ULO_SAMPLE: ++#endif ++ case R_M32R_HI16_ULO_RELA: ++ value = (tmp_value & ~0xffff) | ((value >>16) & 0xffff); ++ break; ++#ifdef M32R_OLD_ABI ++ case R_M32R_HI16_SLO_SAMPLE: ++#endif ++ case R_M32R_HI16_SLO_RELA: ++ if (value & 0x8000) ++ value += 0x10000; ++ value = (tmp_value & ~0xffff) | ((value >>16) & 0xffff); ++ break; ++#ifdef M32R_OLD_ABI ++ case R_M32R_LO16_SAMPLE: ++ case R_M32R_SDA16_SAMPLE: ++#endif ++ case R_M32R_LO16_RELA: ++ case R_M32R_SDA16_RELA: ++ value = (tmp_value & ~0xffff) | (value & 0xffff); ++ break; ++ } ++ COPY_UNALIGNED_WORD (&value, reloc_addr_arg, ++ (int) reloc_addr_arg & 3); ++ } ++#endif ++ break; ++ } ++#ifndef RTLD_BOOTSTRAP ++#ifdef M32R_OLD_ABI ++ case R_M32R_26_PCREL_SAMPLE: ++ COPY_UNALIGNED_WORD (reloc_addr_arg, &tmp_value, ++ (int) reloc_addr_arg & 3); ++ value += (signed long)(((tmp_value & 0xffffff) ^ 0x800000) - 0x800000) << 2; ++ value = value - (Elf32_Addr) reloc_addr; ++ if ((signed long)value < -0x2000000 || 0x1fffffc < (signed long)value) ++ { ++ _dl_signal_error (0, map->l_name, NULL, ++ "R_M32R_26_PCREL relocation overflow"); ++ } ++ value = (tmp_value & ~0xffffff) | ((value >> 2) & 0xffffff); ++ COPY_UNALIGNED_WORD (&value, reloc_addr_arg, (int) reloc_addr_arg & 3); ++ break; ++#endif ++ case R_M32R_26_PCREL_RELA: ++ COPY_UNALIGNED_WORD (reloc_addr_arg, &tmp_value, ++ (int) reloc_addr_arg & 3); ++ value = value - (Elf32_Addr) reloc_addr; ++ if ((signed long)value < -0x2000000 || 0x1fffffc < (signed long)value) ++ { ++ _dl_signal_error (0, map->l_name, NULL, ++ "R_M32R_26_PCREL_RELA relocation overflow"); ++ } ++ value = (tmp_value & ~0xffffff) | ((value >> 2) & 0xffffff); ++ COPY_UNALIGNED_WORD (&value, reloc_addr_arg, ++ (int) reloc_addr_arg & 3); ++ break; ++#ifdef M32R_OLD_ABI ++ case R_M32R_18_PCREL_SAMPLE: ++ COPY_UNALIGNED_WORD (reloc_addr_arg, &tmp_value, ++ (int) reloc_addr_arg & 3); ++ value += (signed long)((tmp_value & 0xffff) ^ 0x8000) - 0x8000) << 2; ++ value = value - (Elf32_Addr) reloc_addr; ++ if ((signed long)value < -0x20000 || 0x1fffc < (signed long)value) ++ { ++ _dl_signal_error (0, map->l_name, NULL, ++ "R_M32R_18_PCREL relocation overflow"); ++ } ++ value = (tmp_value & ~0xffff) | ((value >> 2) & 0xffff); ++ COPY_UNALIGNED_WORD (&value, reloc_addr_arg, ++ (int) reloc_addr_arg & 3); ++ break; ++#endif ++ case R_M32R_18_PCREL_RELA: ++ COPY_UNALIGNED_WORD (reloc_addr_arg, &tmp_value, ++ (int) reloc_addr_arg & 3); ++ value = value - (Elf32_Addr) reloc_addr; ++ if ((signed long)value < -0x20000 || 0x1fffc < (signed long)value) ++ { ++ _dl_signal_error (0, map->l_name, NULL, ++ "R_M32R_18_PCREL_RELA relocation overflow"); ++ } ++ value = (tmp_value & ~0xffff) | ((value >> 2) & 0xffff); ++ COPY_UNALIGNED_WORD (&value, reloc_addr_arg, ++ (int) reloc_addr_arg & 3); ++ break; ++#endif ++#ifdef M32R_OLD_ABI ++ case R_M32R_10_PCREL_SAMPLE: ++#else ++ case R_M32R_10_PCREL_RELA: ++#endif ++ { ++ unsigned short tmp_hvalue; ++ COPY_UNALIGNED_HWORD (reloc_addr_arg, &tmp_hvalue, ++ (int) reloc_addr_arg & 3); ++ value = value - (Elf32_Addr) reloc_addr; ++ if ((signed long)value < -0x200 || 0x1fc < (signed long)value) ++ { ++#ifdef M32R_OLD_ABI ++ _dl_signal_error (0, map->l_name, NULL, ++ "R_M32R_10_PCREL relocation overflow"); ++#else ++ _dl_signal_error (0, map->l_name, NULL, ++ "R_M32R_10_PCREL_RELA relocation overflow"); ++#endif ++ } ++ tmp_hvalue = (tmp_hvalue & ~0xff) | ((value >> 2) & 0xff); ++ COPY_UNALIGNED_HWORD (&tmp_hvalue, reloc_addr_arg, ++ (int) reloc_addr_arg & 3); ++ break; ++ } ++#endif /* 20021129 0 -> 1 */ ++ default: ++ _dl_reloc_bad_type (map, r_type, 0); ++ break; ++ } ++ } ++} ++ ++auto inline void ++__attribute ((always_inline)) ++elf_machine_rela_relative (Elf32_Addr l_addr, const Elf32_Rela *reloc, ++ void *const reloc_addr_arg) ++{ ++ Elf32_Addr value; ++ ++ if (reloc->r_addend) ++ value = l_addr + reloc->r_addend; ++ else ++ { ++ COPY_UNALIGNED_WORD (reloc_addr_arg, &value, (int) reloc_addr_arg & 3); ++ value += l_addr; ++ } ++ COPY_UNALIGNED_WORD (&value, reloc_addr_arg, (int) reloc_addr_arg & 3); ++ ++#undef COPY_UNALIGNED_WORD ++#undef COPY_UNALIGNED_HWORD ++} ++ ++auto inline void ++__attribute ((always_inline)) ++elf_machine_lazy_rel (struct link_map *map, ++ Elf32_Addr l_addr, const Elf32_Rela *reloc) ++{ ++ Elf32_Addr *const reloc_addr = (void *) (l_addr + reloc->r_offset); ++ /* Check for unexpected PLT reloc type. */ ++#ifdef M32R_OLD_ABI ++ if (ELF32_R_TYPE (reloc->r_info) == R_M32R_JMP_SLOT ++ || ELF32_R_TYPE (reloc->r_info) == R_M32R_JMP_SLOT_SAMPLE) ++#else ++ if (ELF32_R_TYPE (reloc->r_info) == R_M32R_JMP_SLOT) ++#endif ++ *reloc_addr += l_addr; ++ else ++ _dl_reloc_bad_type (map, ELF32_R_TYPE (reloc->r_info), 1); ++} ++ ++#endif /* RESOLVE */ +diff --exclude=CVS -upNr ports/sysdeps/m32r/elf/start.S ports/sysdeps/m32r/elf/start.S +--- ports/sysdeps/m32r/elf/start.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/elf/start.S 2006-03-02 11:31:52.000000000 +0900 +@@ -0,0 +1,109 @@ ++/* Startup code for M32R & ELF. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++/* This is the canonical entry point, usually the first thing in the text ++ segment. ++ ++ Note that the code in the .init section has already been run. ++ This includes _init and _libc_init ++ ++ ++ At this entry point, most registers' values are unspecified, except: ++ ++ r0 Contains a function pointer to be registered with `atexit'. ++ This is how the dynamic linker arranges to have DT_FINI ++ functions called for shared libraries that have been loaded ++ before this code runs. ++ ++ sp The stack contains the arguments and environment: ++ @(0,sp) argc ++ @(4,sp) argv[0] ++ ... ++ @((4*argc),sp) NULL ++ @((4*(argc+1)),sp) envp[0] ++ ... ++ NULL ++*/ ++ ++#include "sysdep.h" ++#include "bp-sym.h" ++ ++ .text ++ .globl _start ++_start: ++ /* Clear the frame pointer since this is the outermost frame. */ ++ ldi r13, #0 ++#ifdef SHARED ++ bl.s .+4 ++ ld24 r12, #_GLOBAL_OFFSET_TABLE_ ++ add r12, lr ++#endif ++ ++ /* Pop argc off the stack and save a pointer to argv */ ++ pop r1 ++ mv r2, sp ++ ++ /* Push the last arguments to main() onto the stack */ ++ push r0 ++#ifdef SHARED ++ ld24 r0, #__libc_csu_fini@GOT ++ add r0,r12 ++ ld r0,@r0 ++#else ++ LDIMM (r0, __libc_csu_fini) ++#endif ++ push r0 ++ ++ /* Set up the other arguments for main() that go in registers */ ++#ifdef SHARED ++ ld24 r0,#BP_SYM (main@GOT) ++ add r0,r12 ++ ld r0,@r0 ++ ld24 r3, #__libc_csu_init@GOT ++ add r3,r12 ++ ld r3,@r3 ++#else ++ LDIMM (r0, BP_SYM (main)) ++ LDIMM (r3, __libc_csu_init) ++#endif ++ ++ /* __libc_start_main (main, argc, argv, init, fini, rtld_fini) */ ++ ++ /* Let the libc call main and exit with its return code. */ ++#ifdef SHARED ++ bl BP_SYM (__libc_start_main@PLT) ++#else ++ LDIMM (r4, BP_SYM (__libc_start_main)) ++ jl r4 ++#endif ++ /* should never get here....*/ ++#ifdef SHARED ++ bl abort@PLT ++#else ++ LDIMM (r4, abort) ++ jl r4 ++#endif ++ ++/* Define a symbol for the first piece of initialized data. */ ++ .data ++ .globl __data_start ++__data_start: ++ .long 0 ++ .weak data_start ++ data_start = __data_start +diff --exclude=CVS -upNr ports/sysdeps/m32r/gccframe.h ports/sysdeps/m32r/gccframe.h +--- ports/sysdeps/m32r/gccframe.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/gccframe.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,22 @@ ++/* Definition of object in frame unwind info. m32r version. ++ Copyright (C) 2001 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#define DWARF_FRAME_REGISTERS 20 ++ ++#include +diff --exclude=CVS -upNr ports/sysdeps/m32r/gmp-mparam.h ports/sysdeps/m32r/gmp-mparam.h +--- ports/sysdeps/m32r/gmp-mparam.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/gmp-mparam.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,30 @@ ++/* gmp-mparam.h -- Compiler/machine parameter header file. ++ ++Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ ++This file is part of the GNU MP Library. ++ ++The GNU MP Library is free software; you can redistribute it and/or modify ++it under the terms of the GNU Library General Public License as published by ++the Free Software Foundation; either version 2 of the License, or (at your ++option) any later version. ++ ++The GNU MP Library is distributed in the hope that it will be useful, but ++WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ++or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public ++License for more details. ++ ++You should have received a copy of the GNU Library General Public License ++along with the GNU MP Library; see the file COPYING.LIB. If not, write to ++the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, ++MA 02111-1307, USA. */ ++ ++#define BITS_PER_MP_LIMB 32 ++#define BYTES_PER_MP_LIMB 4 ++#define BITS_PER_LONGINT 32 ++#define BITS_PER_INT 32 ++#define BITS_PER_SHORTINT 16 ++#define BITS_PER_CHAR 8 ++ ++#define IEEE_DOUBLE_BIG_ENDIAN 0 ++#define IEEE_DOUBLE_MIXED_ENDIAN 1 +diff --exclude=CVS -upNr ports/sysdeps/m32r/linuxthreads/pspinlock.c ports/sysdeps/m32r/linuxthreads/pspinlock.c +--- ports/sysdeps/m32r/linuxthreads/pspinlock.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/linuxthreads/pspinlock.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,70 @@ ++/* POSIX spinlock implementation. M32R version. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++#include ++#include "internals.h" ++ ++int ++__pthread_spin_lock (pthread_spinlock_t *lock) ++{ ++ while (INTERNAL_SYSCALL (tas, , 1, lock)); ++ return 0; ++} ++weak_alias (__pthread_spin_lock, pthread_spin_lock) ++ ++ ++int ++__pthread_spin_trylock (pthread_spinlock_t *lock) ++{ ++ unsigned int val; ++ ++ if ((val = *lock) == 0) ++ val = INTERNAL_SYSCALL (tas, , 1, lock); ++ return (val > 0 ? EBUSY : 0); ++} ++weak_alias (__pthread_spin_trylock, pthread_spin_trylock) ++ ++ ++int ++__pthread_spin_unlock (pthread_spinlock_t *lock) ++{ ++ return *lock = 0; ++} ++weak_alias (__pthread_spin_unlock, pthread_spin_unlock) ++ ++ ++int ++__pthread_spin_init (pthread_spinlock_t *lock, int pshared) ++{ ++ /* We can ignore the `pshared' parameter. Since we are busy-waiting ++ all processes which can access the memory location `lock' points ++ to can use the spinlock. */ ++ return *lock = 0; ++} ++weak_alias (__pthread_spin_init, pthread_spin_init) ++ ++ ++int ++__pthread_spin_destroy (pthread_spinlock_t *lock) ++{ ++ /* Nothing to do. */ ++ return 0; ++} ++weak_alias (__pthread_spin_destroy, pthread_spin_destroy) +diff --exclude=CVS -upNr ports/sysdeps/m32r/linuxthreads/pt-machine.h ports/sysdeps/m32r/linuxthreads/pt-machine.h +--- ports/sysdeps/m32r/linuxthreads/pt-machine.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/linuxthreads/pt-machine.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,55 @@ ++/* Machine-dependent pthreads configuration and inline functions. ++ M32R version. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#ifndef _PT_MACHINE_H ++#define _PT_MACHINE_H 1 ++ ++#include ++#include ++ ++#ifndef __ASSEMBLER__ ++#ifndef PT_EI ++# define PT_EI extern inline ++#endif ++ ++extern long int testandset (int *spinlock); ++extern int __compare_and_swap (long int *p, long int oldval, long int newval); ++ ++/* Spinlock implementation; required. */ ++PT_EI long int ++testandset (int *spinlock) ++{ ++ int ret; ++ ++ ret = INLINE_SYSCALL (tas, 1, spinlock); ++ return ret; ++} ++ ++#define lock_held(p) *(p) ++ ++/* Get some notion of the current stack. Need not be exactly the top ++ of the stack, just something somewhere in the current frame. */ ++#define CURRENT_STACK_FRAME stack_pointer ++register char * stack_pointer __asm__ ("r15"); ++ ++#endif /* __ASSEMBLER__ */ ++ ++#endif /* pt-machine.h */ ++ +diff --exclude=CVS -upNr ports/sysdeps/m32r/m32r-mcount.S ports/sysdeps/m32r/m32r-mcount.S +--- ports/sysdeps/m32r/m32r-mcount.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/m32r-mcount.S 2006-03-02 11:17:40.000000000 +0900 +@@ -0,0 +1,67 @@ ++/* m32r-specific implemetation of profiling support. ++ Copyright (C) 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++ ++ ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(_mcount) ++ ASM_TYPE_DIRECTIVE(C_SYMBOL_NAME(_mcount), function) ++ .balign 4 ++C_LABEL(_mcount) ++ /* Save the caller-clobbered registers. */ ++ push r0 ++ push r1 ++ push r2 ++ push r3 ++ push r4 ++ push r5 ++ push r6 ++ push r7 ++ push lr ++ ld r0,@(36,sp) ++ mv r1,lr ++ ++#ifdef __PIC__ ++ push r12 ++ bl.s .+4 ++ ld24 r12,#_GLOBAL_OFFSET_TABLE_ ++ add r12,lr ++ ld24 lr,#__mcount_internal@GOT ++ add lr,r12 ++ ld lr,@(lr) ++ jl lr ++ pop r12 ++#else ++ bl __mcount_internal ++#endif ++ /* Pop the saved registers. Please note that `mcount' has no ++ return value. */ ++ pop lr ++ pop r7 ++ pop r6 ++ pop r5 ++ pop r4 ++ pop r3 ++ pop r2 ++ pop r1 ++ pop r0 ++ ret ++ ASM_SIZE_DIRECTIVE(C_SYMBOL_NAME(_mcount)) ++ ++#undef mcount ++weak_alias(_mcount, mcount) +diff --exclude=CVS -upNr ports/sysdeps/m32r/machine-gmon.h ports/sysdeps/m32r/machine-gmon.h +--- ports/sysdeps/m32r/machine-gmon.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/machine-gmon.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,34 @@ ++/* Machine-dependent definitions for profiling support. M32R version. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++/* NOTYET */ ++ ++/* We must not pollute the global namespace. */ ++#define mcount_internal __mcount_internal ++ ++void mcount_internal (u_long frompc, u_long selfpc); ++ ++#define _MCOUNT_DECL(frompc, selfpc) \ ++void mcount_internal (u_long frompc, u_long selfpc) ++ ++ ++/* Define MCOUNT as empty since we have the implementation in another ++ file. */ ++#define MCOUNT ++ +diff --exclude=CVS -upNr ports/sysdeps/m32r/memcpy.S ports/sysdeps/m32r/memcpy.S +--- ports/sysdeps/m32r/memcpy.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/memcpy.S 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,62 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++#include ++ ++/* ++ * void *memcpy(void *dst, const void *src, size_t n); ++ * No overlap between the memory of DST and of SRC are assumed. ++ * ++ * dst: r0 ++ * src: r1 ++ * n : r2 ++ */ ++ ++ENTRY(memcpy) ++ mv r4, r0 ++ mv r7, r0 ++ or r7, r1 ++ beq r0, r1, end_memcopy ++ beqz r2, end_memcopy ++ ++ and3 r7, r7, #3 ++ bnez r7, byte_copy ++ srl3 r3, r2, #2 ++ and3 r2, r2, #3 ++ beqz r3, byte_copy ++ addi r4, #-4 ++word_copy: ++ ld r7, @r1+ ++ addi r3, #-1 ++ st r7, @+r4 ++ bnez r3, word_copy ++ beqz r2, end_memcopy ++ addi r4, #4 ++byte_copy: ++ ldb r7, @r1 ++ addi r1, #1 ++ addi r2, #-1 ++ stb r7, @r4 ++ addi r4, #1 ++ bnez r2, byte_copy ++end_memcopy: ++ jmp r14 ++ nop ++END(memcpy) ++libc_hidden_builtin_def (memcpy) +diff --exclude=CVS -upNr ports/sysdeps/m32r/memset.S ports/sysdeps/m32r/memset.S +--- ports/sysdeps/m32r/memset.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/memset.S 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,184 @@ ++/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++ ++/* void *memset(void *dst, int val, int len); ++ * ++ * dst: r0 ++ * val: r1 ++ * len: r2 ++ * ret: r0 ++ */ ++ ++ .text ++ ++#if defined(__m32r2__) ++ ++ENTRY(memset) ++ mv r4, r0 || cmpz r2 ++ jc r14 ; return if r2=0 ++ cmpui r2, #16 ++ bnc qword_align_check ++ cmpui r2, #4 ++ bc byte_set ++; case len >= 4 ++word_align_check: ++ and3 r3, r4, #3 ++ beqz r3, word_set ++; case no word-align ++ addi r3, #-4 ++ neg r3, r3 ; r3 = -(r3 - 4) ++align_word: ++ stb r1, @r4 || addi r4, #1 ++ addi r2, #-1 || addi r3, #-1 ++ bnez r3, align_word ++ cmpui r2, #4 ++ bc byte_set ++word_set: ++ and3 r1, r1, #0x00ff ; r1: abababab <-- ??????ab ++ sll3 r3, r1, #8 ++ or r1, r3 || addi r4, #-4 ++ sll3 r3, r1, #16 ++ or r1, r3 || addi r2, #-4 ++word_set_loop: ++ st r1, @+r4 || addi r2, #-4 ++ bgtz r2, word_set_loop ++ bnez r2, byte_set_wrap ++ st r1, @+r4 ++ jmp r14 ++ ++qword_align_check: ++ and3 r3, r4, #15 ++ bnez r3, word_align_check ++qword_set: ++ and3 r1, r1, #0x00ff ; r1: abababab <-- ??????ab ++ sll3 r3, r1, #8 ++ or r1, r3 || addi r4, #-4 ++ sll3 r3, r1, #16 ++ or r1, r3 || ldi r5, #16 ++qword_set_loop: ++ ld r3, @(4,r4) ; cache line allocate ++ st r1, @+r4 || addi r2, #-16 ++ st r1, @+r4 || cmpu r2, r5 ++ st r1, @+r4 ++ st r1, @+r4 ++ bnc qword_set_loop || cmpz r2 ++ jc r14 ++set_remainder: ++ cmpui r2, #4 ++ bc byte_set_wrap1 ++ addi r2, #-4 ++ bra word_set_loop ++ ++byte_set_wrap: ++ addi r2, #4 ++ cmpz r2 ++ jc r14 ; return if r2=0 ++byte_set_wrap1: ++ addi r4, #4 ++byte_set: ++ addi r2, #-1 || stb r1, @r4+ ++ bnez r2, byte_set ++end_memset: ++ jmp r14 ++END(memset) ++ ++#else ++ ++ENTRY(memset) ++ mv r4, r0 ++ beqz r2, end_memset ++ cmpui r2, #16 ++ bnc qword_align_check ++ cmpui r2, #4 ++ bc byte_set ++; case len >= 4 ++word_align_check: ++ and3 r3, r4, #3 ++ beqz r3, word_set ++; case no word-align ++ addi r3, #-4 ++ neg r3, r3 ; r3 = -(r3 - 4) ++align_word: ++ stb r1, @r4 ++ addi r4, #1 ++ addi r2, #-1 ++ addi r3, #-1 ++ bnez r3, align_word ++ cmpui r2, #4 ++ bc byte_set ++word_set: ++ and3 r1, r1, #0x00ff ; r1: abababab <-- ??????ab ++ sll3 r3, r1, #8 ++ or r1, r3 ++ sll3 r3, r1, #16 ++ or r1, r3 ++ addi r2, #-4 ++ addi r4, #-4 ++word_set_loop: ++ st r1, @+r4 ++ addi r2, #-4 ++ bgtz r2, word_set_loop ++ bnez r2, byte_set_wrap ++ st r1, @+r4 ++ jmp r14 ++ ++qword_align_check: ++ and3 r3, r4, #15 ++ bnez r3, word_align_check ++qword_set: ++ and3 r1, r1, #0x00ff ; r1: abababab <-- ??????ab ++ sll3 r3, r1, #8 ++ or r1, r3 ++ sll3 r3, r1, #16 ++ or r1, r3 ++ addi r4, #-4 ++qword_set_loop: ++ ld r3, @(4,r4) ; cache line allocate ++ addi r2, #-16 ++ st r1, @+r4 ++ st r1, @+r4 ++ cmpui r2, #16 ++ st r1, @+r4 ++ st r1, @+r4 ++ bnc qword_set_loop ++ bnez r2, set_remainder ++ jmp r14 ++set_remainder: ++ cmpui r2, #4 ++ bc byte_set_wrap1 ++ addi r2, #-4 ++ bra word_set_loop ++ ++byte_set_wrap: ++ addi r2, #4 ++ beqz r2, end_memset ++byte_set_wrap1: ++ addi r4, #4 ++byte_set: ++ addi r2, #-1 ++ stb r1, @r4 ++ addi r4, #1 ++ bnez r2, byte_set ++end_memset: ++ jmp r14 ++END(memset) ++ ++#endif ++libc_hidden_builtin_def (memset) +diff --exclude=CVS -upNr ports/sysdeps/m32r/memusage.h ports/sysdeps/m32r/memusage.h +--- ports/sysdeps/m32r/memusage.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/memusage.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,21 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#define GETSP() ({ register uintptr_t stack_ptr asm ("r15"); stack_ptr; }) ++ ++#include +diff --exclude=CVS -upNr ports/sysdeps/m32r/setjmp.S ports/sysdeps/m32r/setjmp.S +--- ports/sysdeps/m32r/setjmp.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/setjmp.S 2006-03-02 11:18:51.000000000 +0900 +@@ -0,0 +1,53 @@ ++/* setjmp for M32R. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++#define _SETJMP_H ++#define _ASM ++#include ++ ++ENTRY (__sigsetjmp) ++ mv r2, r0 ++ /* Save registers */ ++ st r8, @r0 ++ st r9, @+r0 ++ st r10, @+r0 ++ st r11, @+r0 ++ st r12, @+r0 ++ st r13, @+r0 ++ st r14, @+r0 /* lr */ ++ st r15, @+r0 /* sp */ ++ mv r0, r2 ++ ++ /* Make a tail call to __sigjmp_save; it takes the same args. */ ++#ifdef SHARED ++ mv r2,lr ++ bl.s .+4 ++ ld24 r3,#_GLOBAL_OFFSET_TABLE_ ++ add r3,lr ++ mv lr,r2 ++ ++ ld24 r2,C_SYMBOL_NAME(__sigjmp_save@GOT) ++ add r2,r3 ++ ld r2,@r2 ++#else ++ LDIMM (r2, C_SYMBOL_NAME(__sigjmp_save)) ++#endif ++ jmp r2 ++END (__sigsetjmp) +diff --exclude=CVS -upNr ports/sysdeps/m32r/shlib-versions ports/sysdeps/m32r/shlib-versions +--- ports/sysdeps/m32r/shlib-versions 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/shlib-versions 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,2 @@ ++m32r.*-.*-linux.* DEFAULT GLIBC_2.3 ++m32r.*-.*-linux.* ld=ld-linux.so.2 +diff --exclude=CVS -upNr ports/sysdeps/m32r/stackinfo.h ports/sysdeps/m32r/stackinfo.h +--- ports/sysdeps/m32r/stackinfo.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/stackinfo.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,28 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++/* This file contains a bit of information about the stack allocation ++ of the processor. */ ++ ++#ifndef _STACKINFO_H ++#define _STACKINFO_H 1 ++ ++/* On SH the stack grows down. */ ++#define _STACK_GROWS_DOWN 1 ++ ++#endif /* stackinfo.h */ +diff --exclude=CVS -upNr ports/sysdeps/m32r/strlen.S ports/sysdeps/m32r/strlen.S +--- ports/sysdeps/m32r/strlen.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/strlen.S 2006-04-20 09:44:29.000000000 +0900 +@@ -0,0 +1,77 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++#include ++ ++/* size_t strlen (const char *s) */ ++ ++ENTRY(strlen) ++ mv r6, r0 ++ ldi r2, #0 ++ and3 r0, r0, #3 ++ bnez r0, strlen_byte ++; ++strlen_word: ++ ld r0, @r6+ ++; ++ seth r5, #high(0x01010101) ++ or3 r5, r5, #low(0x01010101) ++ sll3 r7, r5, #7 ++strlen_word_loop: ++ not r4, r0 ; NOTE: If a null char. exists, return 0. ++ sub r0, r5 ; if ((x - 0x01010101) & ~x & 0x80808080) ++ and r4, r7 ; return 0; ++ and r4, r0 ++ bnez r4, strlen_last_bytes ++ ld r1, @r6+ ++ addi r2, #4 ++; ++ not r4, r1 ; NOTE: If a null char. exists, return 0. ++ sub r1, r5 ; if ((x - 0x01010101) & ~x & 0x80808080) ++ and r4, r7 ; return 0; ++ and r4, r1 ++ bnez r4, strlen_last_bytes ++ ld r0, @r6+ ++ addi r2, #4 ++ bra strlen_word_loop ++; ++strlen_byte: ++ ldb r1, @r6 ++ addi r6, #1 ++ beqz r1, strlen_exit ++ addi r2, #1 ++ bra strlen_byte ++; ++strlen_last_bytes: ++ ldi r0, #4 ++ addi r6, #-4 ++; ++strlen_byte_loop: ++ ldb r1, @r6 ++ addi r6, #1 ++ addi r0, #-1 ++ beqz r1, strlen_exit ++ addi r2, #1 ++ bnez r0, strlen_byte_loop ++; ++strlen_exit: ++ mv r0, r2 ++ jmp r14 ++END(strlen) ++libc_hidden_builtin_def (strlen) +diff --exclude=CVS -upNr ports/sysdeps/m32r/sys/ucontext.h ports/sysdeps/m32r/sys/ucontext.h +--- ports/sysdeps/m32r/sys/ucontext.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/sys/ucontext.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,102 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#ifndef _SYS_UCONTEXT_H ++#define _SYS_UCONTEXT_H 1 ++ ++#include ++#include ++ ++typedef int greg_t; ++ ++/* Number of general registers. */ ++#define NGREG 16 ++ ++/* Container for all general registers. */ ++typedef greg_t gregset_t[NGREG]; ++ ++/* Number of each register is the `gregset_t' array. */ ++enum ++{ ++ R0 = 0, ++#define R0 R0 ++ R1 = 1, ++#define R1 R1 ++ R2 = 2, ++#define R2 R2 ++ R3 = 3, ++#define R3 R3 ++ R4 = 4, ++#define R4 R4 ++ R5 = 5, ++#define R5 R5 ++ R6 = 6, ++#define R6 R6 ++ R7 = 7, ++#define R7 R7 ++ R8 = 8, ++#define R8 R8 ++ R9 = 9, ++#define R9 R9 ++ R10 = 10, ++#define R10 R10 ++ R11 = 11, ++#define R11 R11 ++ R12 = 12, ++#define R12 R12 ++ R13 = 13, ++#define R13 R13 ++ R14 = 14, ++#define R14 R14 ++ R15 = 15, ++#define R15 R15 ++}; ++ ++#if 0 ++/* FIXME */ ++typedef int freg_t; ++ ++/* Number of FPU registers. */ ++#define NFREG 16 ++ ++/* Structure to describe FPU registers. */ ++typedef freg_t fpregset_t[NFREG]; ++#endif ++ ++/* Context to describe whole processor state. */ ++typedef struct ++ { ++ gregset_t gregs; ++#if 0 ++ fpregset_t fpregs; ++ fpregset_t xfpregs; ++#endif ++ } mcontext_t; ++ ++/* Userlevel context. */ ++typedef struct ucontext ++ { ++ unsigned long int uc_flags; ++ struct ucontext *uc_link; ++ __sigset_t uc_sigmask; ++ stack_t uc_stack; ++ mcontext_t uc_mcontext; ++ long int uc_filler[5]; ++ } ucontext_t; ++ ++#endif /* sys/ucontext.h */ +diff --exclude=CVS -upNr ports/sysdeps/m32r/sysdep.h ports/sysdeps/m32r/sysdep.h +--- ports/sysdeps/m32r/sysdep.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/m32r/sysdep.h 2006-03-06 15:12:42.000000000 +0900 +@@ -0,0 +1,92 @@ ++/* Assembler macros for M32R. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++ ++#ifdef __ASSEMBLER__ ++ ++/* Syntactic details of assembler. */ ++ ++#ifdef HAVE_ELF ++ ++#define ALIGNARG(log2) log2 ++/* For ELF we need the `.type' directive to make shared libs work right. */ ++#define ASM_TYPE_DIRECTIVE(name,typearg) .type name,@##typearg ++#define ASM_SIZE_DIRECTIVE(name) .size name,.-name ++ ++#define PLTJMP(_x) _x ++#define GOT(_x) _x ++ ++#else ++ ++#define ALIGNARG(log2) log2 ++#define ASM_TYPE_DIRECTIVE(name,type) /* Nothing is specified. */ ++#define ASM_SIZE_DIRECTIVE(name) /* Nothing is specified. */ ++ ++#define PLTJMP(_x) _x ++#define GOT(_x) _x ++ ++#endif ++ ++/* If compiled for profiling, call `mcount' at the start of each function. */ ++#ifdef PROF ++#ifdef __PIC__ ++#define CALL_MCOUNT \ ++ push r14 ! \ ++ ld24 r14,#mcount@GOT ! \ ++ add r14,r12 ! \ ++ ld r14,@r14 ! \ ++ jl r14 ! \ ++ pop r14 ++#else ++#define CALL_MCOUNT \ ++ push r14 ! \ ++ seth r14,#high(mcount) ! \ ++ or3 r14,r14,#low(mcount) ! \ ++ jl r14 ! \ ++ pop r14 ++#endif ++#else ++#define CALL_MCOUNT /* Do nothing. */ ++#endif ++ ++#undef CALL_MCOUNT /* Do nothing. */ ++#define CALL_MCOUNT /* Do nothing. */ ++ ++/* Define an entry point visible from C. */ ++#define ENTRY(name) \ ++ ASM_GLOBAL_DIRECTIVE C_SYMBOL_NAME(name) ! \ ++ ASM_TYPE_DIRECTIVE (C_SYMBOL_NAME(name),function) ! \ ++ .balign 4 ! \ ++ C_LABEL(name) ! \ ++ CALL_MCOUNT ++ ++#undef END ++#define END(name) \ ++ ASM_SIZE_DIRECTIVE(C_SYMBOL_NAME(name)) ++ ++#ifdef NO_UNDERSCORES ++/* Since C identifiers are not normally prefixed with an underscore ++ on this system, the asm identifier `syscall_error' intrudes on the ++ C name space. Make sure we use an innocuous name. */ ++#define syscall_error __syscall_error ++#define mcount _mcount ++#endif ++ ++#endif /* __ASSEMBLER__ */ +diff --exclude=CVS -upNr ports/sysdeps/unix/m32r/Makefile ports/sysdeps/unix/m32r/Makefile +--- ports/sysdeps/unix/m32r/Makefile 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/m32r/Makefile 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,4 @@ ++# m32r/ELF specific definitions. ++ ++# The assembler on m32r needs the -fPIC flag even when it's assembler code. ++ASFLAGS-.os = -fPIC +diff --exclude=CVS -upNr ports/sysdeps/unix/m32r/sysdep.S ports/sysdeps/unix/m32r/sysdep.S +--- ports/sysdeps/unix/m32r/sysdep.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/m32r/sysdep.S 2006-03-02 11:39:48.000000000 +0900 +@@ -0,0 +1,84 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++#define _ERRNO_H ++#include ++ ++.globl C_SYMBOL_NAME(errno) ++.globl syscall_error ++ ++#undef syscall_error ++#ifdef NO_UNDERSCORES ++__syscall_error: ++#else ++syscall_error: ++#endif ++#if defined (EWOULDBLOCK_sys) && EWOULDBLOCK_sys != EAGAIN ++ /* We translate the system's EWOULDBLOCK error into EAGAIN. ++ The GNU C library always defines EWOULDBLOCK==EAGAIN. ++ EWOULDBLOCK_sys is the original number. */ ++ ldi r1, #EWOULDBLOCK_sys ++ bne r1, r0, skip ++ ldi r0, #EAGAIN ++skip: ++#endif ++ /* Store it in errno... */ ++#ifndef SHARED ++#ifndef _LIBC_REENTRANT ++ LDIMM (r1, C_SYMBOL_NAME(errno)) ++ st r0, @r1 ++#else ++ push r0 ++ push lr ++ LDIMM (r1, C_SYMBOL_NAME(__errno_location)) ++ jl r1 ++ pop lr ++ pop r1 ++ st r1, @r0 ++#endif ++#else ++ push r12 ++ push lr ++ bl.s .+4 ++ ld24 r12,#_GLOBAL_OFFSET_TABLE_ ++ add r12, lr ++#ifndef _LIBC_REENTRANT ++ mv r2, r0 ++ LDIMM (r1, C_SYMBOL_NAME(errno@GOT)) ++ add r1, r12 ++ ld r1, @r1 ++ st r2, @r1 ++#else ++ push r0 ++ LDIMM (r1, C_SYMBOL_NAME(__errno_location@GOT)) ++ add r1, r12 ++ ld r1, @r1 ++ jl r1 ++ pop r1 ++ st r1, @r0 ++#endif ++ pop lr ++ pop r12 ++#endif ++ /* And just kick back a -1. */ ++ ldi r0, #-1 ++ ret ++ ++#undef __syscall_error ++END(__syscall_error) +diff --exclude=CVS -upNr ports/sysdeps/unix/m32r/sysdep.h ports/sysdeps/unix/m32r/sysdep.h +--- ports/sysdeps/unix/m32r/sysdep.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/m32r/sysdep.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,33 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++#include "../../m32r/sysdep.h" ++ ++#ifdef __ASSEMBLER__ ++ ++#define ret jmp r14 ++ ++/* The m32r move insn is d, s. */ ++#define MOVE(x,y) mv y,x ++ ++#define LDIMM(reg,x) \ ++ seth reg, #high(x) ! \ ++ or3 reg, reg, #low(x) ++ ++#endif +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/Dist ports/sysdeps/unix/sysv/linux/m32r/Dist +--- ports/sysdeps/unix/sysv/linux/m32r/Dist 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/Dist 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,9 @@ ++clone.S ++pipe.S ++flushcache.S ++setresuid.c ++setresgid.c ++setfsuid.c ++setfsgid.c ++sys/io.h ++sys/user.h +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/Makefile ports/sysdeps/unix/sysv/linux/m32r/Makefile +--- ports/sysdeps/unix/sysv/linux/m32r/Makefile 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/Makefile 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,16 @@ ++# m32r/ELF specific definitions. ++#gnulib := -lgcc ++#static-gnulib := -lgcc ++ ++# The assembler on m32r needs the -fPIC flag even when it's assembler code. ++ASFLAGS-.os = -fPIC ++ ++ifeq ($(subdir),io) ++sysdep_routines += pipe ++endif ++ ++ifeq ($(subdir),misc) ++sysdep_routines += m32r-stub tas \ ++ cachectl flushcache ++sysdep_headers += sys/io.h sys/tas.h sys/cachectl.h ++endif +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/Versions ports/sysdeps/unix/sysv/linux/m32r/Versions +--- ports/sysdeps/unix/sysv/linux/m32r/Versions 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/Versions 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,12 @@ ++libc { ++ GLIBC_2.3 { ++ # Needed by gcc ++ _flush_cache; ++ ++ # c* ++ cachectl; cacheflush; ++ ++ # t* ++ tas; ++ } ++} +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/bits/fcntl.h ports/sysdeps/unix/sysv/linux/m32r/bits/fcntl.h +--- ports/sysdeps/unix/sysv/linux/m32r/bits/fcntl.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/bits/fcntl.h 2006-03-01 17:17:36.000000000 +0900 +@@ -0,0 +1,179 @@ ++/* O_*, F_*, FD_* bit values for Linux. ++ Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#ifndef _FCNTL_H ++# error "Never use directly; include instead." ++#endif ++ ++ ++#include ++ ++/* open/fcntl - O_SYNC is only implemented on blocks devices and on files ++ located on an ext2 file system */ ++#define O_ACCMODE 0003 ++#define O_RDONLY 00 ++#define O_WRONLY 01 ++#define O_RDWR 02 ++#define O_CREAT 0100 /* not fcntl */ ++#define O_EXCL 0200 /* not fcntl */ ++#define O_NOCTTY 0400 /* not fcntl */ ++#define O_TRUNC 01000 /* not fcntl */ ++#define O_APPEND 02000 ++#define O_NONBLOCK 04000 ++#define O_NDELAY O_NONBLOCK ++#define O_SYNC 010000 ++#define O_FSYNC O_SYNC ++#define O_ASYNC 020000 ++ ++#ifdef __USE_GNU ++# define O_DIRECT 040000 /* Direct disk access. */ ++# define O_DIRECTORY 0200000 /* Must be a directory. */ ++# define O_NOFOLLOW 0400000 /* Do not follow links. */ ++#endif ++ ++/* For now Linux has synchronisity options for data and read operations. ++ We define the symbols here but let them do the same as O_SYNC since ++ this is a superset. */ ++#if defined __USE_POSIX199309 || defined __USE_UNIX98 ++# define O_DSYNC O_SYNC /* Synchronize data. */ ++# define O_RSYNC O_SYNC /* Synchronize read operations. */ ++#endif ++ ++#ifdef __USE_LARGEFILE64 ++# define O_LARGEFILE 0100000 ++#endif ++ ++/* Values for the second argument to `fcntl'. */ ++#define F_DUPFD 0 /* Duplicate file descriptor. */ ++#define F_GETFD 1 /* Get file descriptor flags. */ ++#define F_SETFD 2 /* Set file descriptor flags. */ ++#define F_GETFL 3 /* Get file status flags. */ ++#define F_SETFL 4 /* Set file status flags. */ ++#ifndef __USE_FILE_OFFSET64 ++# define F_GETLK 5 /* Get record locking info. */ ++# define F_SETLK 6 /* Set record locking info (non-blocking). */ ++# define F_SETLKW 7 /* Set record locking info (blocking). */ ++#else ++# define F_GETLK F_GETLK64 /* Get record locking info. */ ++# define F_SETLK F_SETLK64 /* Set record locking info (non-blocking).*/ ++# define F_SETLKW F_SETLKW64 /* Set record locking info (blocking). */ ++#endif ++#define F_GETLK64 12 /* Get record locking info. */ ++#define F_SETLK64 13 /* Set record locking info (non-blocking). */ ++#define F_SETLKW64 14 /* Set record locking info (blocking). */ ++ ++#if defined __USE_BSD || defined __USE_XOPEN2K ++# define F_SETOWN 8 /* Get owner of socket (receiver of SIGIO). */ ++# define F_GETOWN 9 /* Set owner of socket (receiver of SIGIO). */ ++#endif ++ ++#ifdef __USE_GNU ++# define F_SETSIG 10 /* Set number of signal to be sent. */ ++# define F_GETSIG 11 /* Get number of signal to be sent. */ ++#endif ++ ++#ifdef __USE_GNU ++# define F_SETLEASE 1024 /* Set a lease. */ ++# define F_GETLEASE 1025 /* Enquire what lease is active. */ ++# define F_NOTIFY 1026 /* Request notfications on a directory. */ ++#endif ++ ++/* For F_[GET|SET]FL. */ ++#define FD_CLOEXEC 1 /* actually anything with low bit set goes */ ++ ++/* For posix fcntl() and `l_type' field of a `struct flock' for lockf(). */ ++#define F_RDLCK 0 /* Read lock. */ ++#define F_WRLCK 1 /* Write lock. */ ++#define F_UNLCK 2 /* Remove lock. */ ++ ++/* For old implementation of bsd flock(). */ ++#define F_EXLCK 4 /* or 3 */ ++#define F_SHLCK 8 /* or 4 */ ++ ++#ifdef __USE_BSD ++/* Operations for bsd flock(), also used by the kernel implementation. */ ++# define LOCK_SH 1 /* shared lock */ ++# define LOCK_EX 2 /* exclusive lock */ ++# define LOCK_NB 4 /* or'd with one of the above to prevent ++ blocking */ ++# define LOCK_UN 8 /* remove lock */ ++#endif ++ ++#ifdef __USE_GNU ++# define LOCK_MAND 32 /* This is a mandatory flock: */ ++# define LOCK_READ 64 /* ... which allows concurrent read operations. */ ++# define LOCK_WRITE 128 /* ... which allows concurrent write operations. */ ++# define LOCK_RW 192 /* ... Which allows concurrent read & write operations. */ ++#endif ++ ++#ifdef __USE_GNU ++/* Types of directory notifications that may be requested with F_NOTIFY. */ ++# define DN_ACCESS 0x00000001 /* File accessed. */ ++# define DN_MODIFY 0x00000002 /* File modified. */ ++# define DN_CREATE 0x00000004 /* File created. */ ++# define DN_DELETE 0x00000008 /* File removed. */ ++# define DN_RENAME 0x00000010 /* File renamed. */ ++# define DN_ATTRIB 0x00000020 /* File changed attibutes. */ ++# define DN_MULTISHOT 0x80000000 /* Don't remove notifier. */ ++#endif ++ ++struct flock ++ { ++ short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */ ++ short int l_whence; /* Where `l_start' is relative to (like `lseek'). */ ++#ifndef __USE_FILE_OFFSET64 ++ __off_t l_start; /* Offset where the lock begins. */ ++ __off_t l_len; /* Size of the locked area; zero means until EOF. */ ++#else ++ __off64_t l_start; /* Offset where the lock begins. */ ++ __off64_t l_len; /* Size of the locked area; zero means until EOF. */ ++#endif ++ __pid_t l_pid; /* Process holding the lock. */ ++ }; ++ ++#ifdef __USE_LARGEFILE64 ++struct flock64 ++ { ++ short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */ ++ short int l_whence; /* Where `l_start' is relative to (like `lseek'). */ ++ __off64_t l_start; /* Offset where the lock begins. */ ++ __off64_t l_len; /* Size of the locked area; zero means until EOF. */ ++ __pid_t l_pid; /* Process holding the lock. */ ++ }; ++#endif ++ ++/* Define some more compatibility macros to be backward compatible with ++ BSD systems which did not managed to hide these kernel macros. */ ++#ifdef __USE_BSD ++# define FAPPEND O_APPEND ++# define FFSYNC O_FSYNC ++# define FASYNC O_ASYNC ++# define FNONBLOCK O_NONBLOCK ++# define FNDELAY O_NDELAY ++#endif /* Use BSD. */ ++ ++/* Advise to `posix_fadvise'. */ ++#ifdef __USE_XOPEN2K ++# define POSIX_FADV_NORMAL 0 /* No further special treatment. */ ++# define POSIX_FADV_RANDOM 1 /* Expect random page references. */ ++# define POSIX_FADV_SEQUENTIAL 2 /* Expect sequential page references. */ ++# define POSIX_FADV_WILLNEED 3 /* Will need these pages. */ ++# define POSIX_FADV_DONTNEED 4 /* Don't need these pages. */ ++# define POSIX_FADV_NOREUSE 5 /* Data will be accessed once. */ ++#endif +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/bits/mman.h ports/sysdeps/unix/sysv/linux/m32r/bits/mman.h +--- ports/sysdeps/unix/sysv/linux/m32r/bits/mman.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/bits/mman.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,98 @@ ++/* Definitions for POSIX memory map interface. Linux/M32R version. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#ifndef _SYS_MMAN_H ++# error "Never include this file directly. Use instead" ++#endif ++ ++/* The following definitions basically come from the kernel headers. ++ But the kernel header is not namespace clean. */ ++ ++ ++/* Protections are chosen from these bits, OR'd together. The ++ implementation does not necessarily support PROT_EXEC or PROT_WRITE ++ without PROT_READ. The only guarantees are that no writing will be ++ allowed without PROT_WRITE and no access will be allowed for PROT_NONE. */ ++ ++#define PROT_READ 0x1 /* Page can be read. */ ++#define PROT_WRITE 0x2 /* Page can be written. */ ++#define PROT_EXEC 0x4 /* Page can be executed. */ ++#define PROT_NONE 0x0 /* Page can not be accessed. */ ++#define PROT_GROWSDOWN 0x01000000 /* Extend change to start of ++ growsdown vma (mprotect only). */ ++#define PROT_GROWSUP 0x02000000 /* Extend change to start of ++ growsup vma (mprotect only). */ ++ ++ ++/* Sharing types (must choose one and only one of these). */ ++#define MAP_SHARED 0x01 /* Share changes. */ ++#define MAP_PRIVATE 0x02 /* Changes are private. */ ++#ifdef __USE_MISC ++# define MAP_TYPE 0x0f /* Mask for type of mapping. */ ++#endif ++ ++/* Other flags. */ ++#define MAP_FIXED 0x10 /* Interpret addr exactly. */ ++#ifdef __USE_MISC ++# define MAP_FILE 0 ++# define MAP_ANONYMOUS 0x20 /* Don't use a file. */ ++# define MAP_ANON MAP_ANONYMOUS ++#endif ++ ++/* These are Linux-specific. */ ++#ifdef __USE_MISC ++# define MAP_GROWSDOWN 0x0100 /* Stack-like segment. */ ++# define MAP_DENYWRITE 0x0800 /* ETXTBSY */ ++# define MAP_EXECUTABLE 0x1000 /* Mark it as an executable. */ ++# define MAP_LOCKED 0x2000 /* Lock the mapping. */ ++# define MAP_NORESERVE 0x4000 /* Don't check for reservations. */ ++#endif ++ ++/* Flags to `msync'. */ ++#define MS_ASYNC 1 /* Sync memory asynchronously. */ ++#define MS_SYNC 4 /* Synchronous memory sync. */ ++#define MS_INVALIDATE 2 /* Invalidate the caches. */ ++ ++/* Flags for `mlockall'. */ ++#define MCL_CURRENT 1 /* Lock all currently mapped pages. */ ++#define MCL_FUTURE 2 /* Lock all additions to address ++ space. */ ++ ++/* Flags for `mremap'. */ ++#ifdef __USE_GNU ++# define MREMAP_MAYMOVE 1 ++#endif ++ ++/* Advice to `madvise'. */ ++#ifdef __USE_BSD ++# define MADV_NORMAL 0 /* No further special treatment. */ ++# define MADV_RANDOM 1 /* Expect random page references. */ ++# define MADV_SEQUENTIAL 2 /* Expect sequential page references. */ ++# define MADV_WILLNEED 3 /* Will need these pages. */ ++# define MADV_DONTNEED 4 /* Don't need these pages. */ ++#endif ++ ++/* The POSIX people had to invent similar names for the same things. */ ++#ifdef __USE_XOPEN2K ++# define POSIX_MADV_NORMAL 0 /* No further special treatment. */ ++# define POSIX_MADV_RANDOM 1 /* Expect random page references. */ ++# define POSIX_MADV_SEQUENTIAL 2 /* Expect sequential page references. */ ++# define POSIX_MADV_WILLNEED 3 /* Will need these pages. */ ++# define POSIX_MADV_DONTNEED 4 /* Don't need these pages. */ ++#endif +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/bits/resource.h ports/sysdeps/unix/sysv/linux/m32r/bits/resource.h +--- ports/sysdeps/unix/sysv/linux/m32r/bits/resource.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/bits/resource.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,209 @@ ++/* Bit values & structures for resource limits. Linux/M32R version. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#ifndef _SYS_RESOURCE_H ++# error "Never use directly; include instead." ++#endif ++ ++#include ++ ++/* Transmute defines to enumerations. The macro re-definitions are ++ necessary because some programs want to test for operating system ++ features with #ifdef RUSAGE_SELF. In ISO C the reflexive ++ definition is a no-op. */ ++ ++/* Kinds of resource limit. */ ++enum __rlimit_resource ++{ ++ /* Per-process CPU limit, in seconds. */ ++ RLIMIT_CPU = 0, ++#define RLIMIT_CPU RLIMIT_CPU ++ ++ /* Largest file that can be created, in bytes. */ ++ RLIMIT_FSIZE = 1, ++#define RLIMIT_FSIZE RLIMIT_FSIZE ++ ++ /* Maximum size of data segment, in bytes. */ ++ RLIMIT_DATA = 2, ++#define RLIMIT_DATA RLIMIT_DATA ++ ++ /* Maximum size of stack segment, in bytes. */ ++ RLIMIT_STACK = 3, ++#define RLIMIT_STACK RLIMIT_STACK ++ ++ /* Largest core file that can be created, in bytes. */ ++ RLIMIT_CORE = 4, ++#define RLIMIT_CORE RLIMIT_CORE ++ ++ /* Largest resident set size, in bytes. ++ This affects swapping; processes that are exceeding their ++ resident set size will be more likely to have physical memory ++ taken from them. */ ++ RLIMIT_RSS = 5, ++#define RLIMIT_RSS RLIMIT_RSS ++ ++ /* Number of open files. */ ++ RLIMIT_NOFILE = 7, ++ RLIMIT_OFILE = RLIMIT_NOFILE, /* BSD name for same. */ ++#define RLIMIT_NOFILE RLIMIT_NOFILE ++#define RLIMIT_OFILE RLIMIT_OFILE ++ ++ /* Address space limit. */ ++ RLIMIT_AS = 9, ++#define RLIMIT_AS RLIMIT_AS ++ ++ /* Number of processes. */ ++ RLIMIT_NPROC = 6, ++#define RLIMIT_NPROC RLIMIT_NPROC ++ ++ /* Locked-in-memory address space. */ ++ RLIMIT_MEMLOCK = 8, ++#define RLIMIT_MEMLOCK RLIMIT_MEMLOCK ++ ++ /* Maximum number of file locks. */ ++ RLIMIT_LOCKS = 10, ++#define RLIMIT_LOCKS RLIMIT_LOCKS ++ ++ RLIMIT_NLIMITS = 11, ++ RLIM_NLIMITS = RLIMIT_NLIMITS ++#define RLIMIT_NLIMITS RLIMIT_NLIMITS ++#define RLIM_NLIMITS RLIM_NLIMITS ++}; ++ ++/* Value to indicate that there is no limit. */ ++#ifndef __USE_FILE_OFFSET64 ++# define RLIM_INFINITY ((unsigned long int)(~0UL)) ++#else ++# define RLIM_INFINITY 0xffffffffffffffffuLL ++#endif ++ ++#ifdef __USE_LARGEFILE64 ++# define RLIM64_INFINITY 0xffffffffffffffffuLL ++#endif ++ ++/* We can represent all limits. */ ++#define RLIM_SAVED_MAX RLIM_INFINITY ++#define RLIM_SAVED_CUR RLIM_INFINITY ++ ++ ++/* Type for resource quantity measurement. */ ++#ifndef __USE_FILE_OFFSET64 ++typedef __rlim_t rlim_t; ++#else ++typedef __rlim64_t rlim_t; ++#endif ++#ifdef __USE_LARGEFILE64 ++typedef __rlim64_t rlim64_t; ++#endif ++ ++struct rlimit ++ { ++ /* The current (soft) limit. */ ++ rlim_t rlim_cur; ++ /* The hard limit. */ ++ rlim_t rlim_max; ++ }; ++ ++#ifdef __USE_LARGEFILE64 ++struct rlimit64 ++ { ++ /* The current (soft) limit. */ ++ rlim64_t rlim_cur; ++ /* The hard limit. */ ++ rlim64_t rlim_max; ++ }; ++#endif ++ ++/* Whose usage statistics do you want? */ ++enum __rusage_who ++{ ++ /* The calling process. */ ++ RUSAGE_SELF = 0, ++#define RUSAGE_SELF RUSAGE_SELF ++ ++ /* All of its terminated child processes. */ ++ RUSAGE_CHILDREN = -1, ++#define RUSAGE_CHILDREN RUSAGE_CHILDREN ++ ++ /* Both. */ ++ RUSAGE_BOTH = -2 ++#define RUSAGE_BOTH RUSAGE_BOTH ++}; ++ ++#define __need_timeval ++#include /* For `struct timeval'. */ ++ ++/* Structure which says how much of each resource has been used. */ ++struct rusage ++ { ++ /* Total amount of user time used. */ ++ struct timeval ru_utime; ++ /* Total amount of system time used. */ ++ struct timeval ru_stime; ++ /* Maximum resident set size (in kilobytes). */ ++ long int ru_maxrss; ++ /* Amount of sharing of text segment memory ++ with other processes (kilobyte-seconds). */ ++ long int ru_ixrss; ++ /* Amount of data segment memory used (kilobyte-seconds). */ ++ long int ru_idrss; ++ /* Amount of stack memory used (kilobyte-seconds). */ ++ long int ru_isrss; ++ /* Number of soft page faults (i.e. those serviced by reclaiming ++ a page from the list of pages awaiting reallocation. */ ++ long int ru_minflt; ++ /* Number of hard page faults (i.e. those that required I/O). */ ++ long int ru_majflt; ++ /* Number of times a process was swapped out of physical memory. */ ++ long int ru_nswap; ++ /* Number of input operations via the file system. Note: This ++ and `ru_oublock' do not include operations with the cache. */ ++ long int ru_inblock; ++ /* Number of output operations via the file system. */ ++ long int ru_oublock; ++ /* Number of IPC messages sent. */ ++ long int ru_msgsnd; ++ /* Number of IPC messages received. */ ++ long int ru_msgrcv; ++ /* Number of signals delivered. */ ++ long int ru_nsignals; ++ /* Number of voluntary context switches, i.e. because the process ++ gave up the process before it had to (usually to wait for some ++ resource to be available). */ ++ long int ru_nvcsw; ++ /* Number of involuntary context switches, i.e. a higher priority process ++ became runnable or the current process used up its time slice. */ ++ long int ru_nivcsw; ++ }; ++ ++/* Priority limits. */ ++#define PRIO_MIN -20 /* Minimum priority a process can have. */ ++#define PRIO_MAX 20 /* Maximum priority a process can have. */ ++ ++/* The type of the WHICH argument to `getpriority' and `setpriority', ++ indicating what flavor of entity the WHO argument specifies. */ ++enum __priority_which ++{ ++ PRIO_PROCESS = 0, /* WHO is a process ID. */ ++#define PRIO_PROCESS PRIO_PROCESS ++ PRIO_PGRP = 1, /* WHO is a process group ID. */ ++#define PRIO_PGRP PRIO_PGRP ++ PRIO_USER = 2 /* WHO is a user ID. */ ++#define PRIO_USER PRIO_USER ++}; +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/brk.c ports/sysdeps/unix/sysv/linux/m32r/brk.c +--- ports/sysdeps/unix/sysv/linux/m32r/brk.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/brk.c 2006-03-02 12:30:59.000000000 +0900 +@@ -0,0 +1,50 @@ ++/* brk system call for Linux/M32R. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++#include ++#include ++ ++/* This must be initialized data because commons can't have aliases. */ ++void *__curbrk = 0; ++ ++int ++__brk (void *addr) ++{ ++ void *newbrk; ++ register long r7 asm ("r7") = SYS_ify (brk); ++ register long r0 asm ("r0") = (long)addr; ++ ++ asm volatile ("trap #0x2 || nop\n\t" ++ "mv %0,r0\n" ++ : "=r"(newbrk), "+r" (r0) ++ : "r" (r7), "r" (r0) ++ ); ++ ++ __curbrk = newbrk; ++ ++ if (newbrk < addr) ++ { ++ __set_errno (ENOMEM); ++ return -1; ++ } ++ ++ return 0; ++} ++weak_alias (__brk, brk) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/chown.c ports/sysdeps/unix/sysv/linux/m32r/chown.c +--- ports/sysdeps/unix/sysv/linux/m32r/chown.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/chown.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,35 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include "kernel-features.h" ++ ++int ++__chown (const char *file, uid_t owner, gid_t group) ++{ ++ return INLINE_SYSCALL (chown32, 3, CHECK_STRING (file), owner, group); ++} ++libc_hidden_def (__chown) ++weak_alias (__chown, chown) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/clone.S ports/sysdeps/unix/sysv/linux/m32r/clone.S +--- ports/sysdeps/unix/sysv/linux/m32r/clone.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/clone.S 2006-03-02 17:39:21.000000000 +0900 +@@ -0,0 +1,89 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++/* clone() is even more special than fork() as it mucks with stacks ++ and invokes a function in the right context after its all over. */ ++ ++#include ++#define _ERRNO_H 1 ++#include ++ ++/* int clone(int (*fn)(void *arg), void *child_stack, int flags, void *arg, ++ pid_t *ptid, void *tls, pid_t *ctid); */ ++ ++ .text ++ENTRY(__clone) ++ /* sanity check arguments. */ ++ beqz r0, 1f ++ bnez r1, 2f ++ ++ .fillinsn ++1: ++ ldi r0, #-EINVAL ++ bra .Lsyscall_error ++ .fillinsn ++2: ++ /* insert the args onto the new stack */ ++ st r3, @-r1 ++ /* save the function pointer as the 0th element */ ++ st r0, @-r1 ++ ++ /* do the system call */ ++ mv r0, r2 ++ ld r2, @r15 ++ ld r3, @(8,r15) ++ ;ld RX, @(4,r15) /* FIXME: *tls */ ++ ldi r7, #SYS_ify(clone) ++ SYSCALL_INST ++ not r1, r0 ++ srai r1, #12 // r1=0 means r0 = -1 to -4095 ++ bnez r1, 3f // i.e. error in linux ++ ++ .fillinsn ++.Lsyscall_error: ++ SYSCALL_ERROR_HANDLER ++ .fillinsn ++3: ++ beqz r0, 4f ++ ret ++ .fillinsn ++4: ++ /* thread starts */ ++ ld r1, @r15 ++ ld r0, @(4,r15) ++ jl r1 ++ ++ /* we are done, passing the return value through r0 */ ++#ifdef SHARED ++ push r12 ++ push lr ++ bl.s .+4 ++ ld24 r12, #_GLOBAL_OFFSET_TABLE_ ++ add r12, lr ++ bl C_SYMBOL_NAME(_exit@PLT) ++ pop lr ++ pop r12 ++ ret ++#else ++ LDIMM (r1, C_SYMBOL_NAME(_exit)) ++ jmp r1 ++#endif ++ ++PSEUDO_END (__clone) ++ ++weak_alias (__clone, clone) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/configure ports/sysdeps/unix/sysv/linux/m32r/configure +--- ports/sysdeps/unix/sysv/linux/m32r/configure 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/configure 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,5 @@ ++# This file is generated from configure.in by Autoconf. DO NOT EDIT! ++ # Local configure fragment for m32r/sysdeps/unix/sysv/linux/m32r ++ ++arch_minimum_kernel=2.4.19 ++ +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/configure.in ports/sysdeps/unix/sysv/linux/m32r/configure.in +--- ports/sysdeps/unix/sysv/linux/m32r/configure.in 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/configure.in 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,4 @@ ++# Local configure fragment for m32r/sysdeps/unix/sysv/linux/m32r ++ ++arch_minimum_kernel=2.4.19 ++ +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/fchown.c ports/sysdeps/unix/sysv/linux/m32r/fchown.c +--- ports/sysdeps/unix/sysv/linux/m32r/fchown.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/fchown.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/fcntl.c ports/sysdeps/unix/sysv/linux/m32r/fcntl.c +--- ports/sysdeps/unix/sysv/linux/m32r/fcntl.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/fcntl.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/flushcache.S ports/sysdeps/unix/sysv/linux/m32r/flushcache.S +--- ports/sysdeps/unix/sysv/linux/m32r/flushcache.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/flushcache.S 2006-03-02 11:42:26.000000000 +0900 +@@ -0,0 +1,29 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ++ 02111-1307, USA. */ ++ ++#include ++ ++/* int _flush_cache(char *addr, int nbytes, int cache); */ ++ ++ .text ++ENTRY(__flush_cache) ++ trap #12 || nop ++ ret ++PSEUDO_END (__flush_cache) ++ ++weak_alias (__flush_cache, _flush_cache) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/fxstat.c ports/sysdeps/unix/sysv/linux/m32r/fxstat.c +--- ports/sysdeps/unix/sysv/linux/m32r/fxstat.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/fxstat.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/getegid.c ports/sysdeps/unix/sysv/linux/m32r/getegid.c +--- ports/sysdeps/unix/sysv/linux/m32r/getegid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/getegid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/geteuid.c ports/sysdeps/unix/sysv/linux/m32r/geteuid.c +--- ports/sysdeps/unix/sysv/linux/m32r/geteuid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/geteuid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/getgid.c ports/sysdeps/unix/sysv/linux/m32r/getgid.c +--- ports/sysdeps/unix/sysv/linux/m32r/getgid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/getgid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/getgroups.c ports/sysdeps/unix/sysv/linux/m32r/getgroups.c +--- ports/sysdeps/unix/sysv/linux/m32r/getgroups.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/getgroups.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,2 @@ ++/* We also have to rewrite the kernel gid_t to the user land type. */ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/getresgid.c ports/sysdeps/unix/sysv/linux/m32r/getresgid.c +--- ports/sysdeps/unix/sysv/linux/m32r/getresgid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/getresgid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,38 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++ ++#include "kernel-features.h" ++ ++int ++__getresgid (gid_t *rgid, gid_t *egid, gid_t *sgid) ++{ ++ return INLINE_SYSCALL (getresgid32, 3, CHECK_1 (rgid), ++ CHECK_1 (egid), CHECK_1 (sgid)); ++} ++libc_hidden_def (__getresgid) ++weak_alias (__getresgid, getresgid) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/getresuid.c ports/sysdeps/unix/sysv/linux/m32r/getresuid.c +--- ports/sysdeps/unix/sysv/linux/m32r/getresuid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/getresuid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,38 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++#include ++ ++#include ++#include ++#include ++ ++#include "kernel-features.h" ++ ++int ++__getresuid (uid_t *ruid, uid_t *euid, uid_t *suid) ++{ ++ return INLINE_SYSCALL (getresuid32, 3, CHECK_1 (ruid), ++ CHECK_1 (euid), CHECK_1 (suid)); ++} ++libc_hidden_def (__getresuid) ++weak_alias (__getresuid, getresuid) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/getrlimit.c ports/sysdeps/unix/sysv/linux/m32r/getrlimit.c +--- ports/sysdeps/unix/sysv/linux/m32r/getrlimit.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/getrlimit.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,36 @@ ++/* Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++#include "kernel-features.h" ++ ++int ++__new_getrlimit (enum __rlimit_resource resource, struct rlimit *rlimits) ++{ ++ return INLINE_SYSCALL (ugetrlimit, 2, resource, CHECK_1 (rlimits)); ++} ++ ++weak_alias (__new_getrlimit, __getrlimit); ++versioned_symbol (libc, __new_getrlimit, getrlimit, GLIBC_2_3); +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/getrlimit64.c ports/sysdeps/unix/sysv/linux/m32r/getrlimit64.c +--- ports/sysdeps/unix/sysv/linux/m32r/getrlimit64.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/getrlimit64.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,25 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#define getrlimit64 __new_getrlimit64 ++ ++#include ++ ++#undef getrlimit64 ++#include ++versioned_symbol (libc, __new_getrlimit64, getrlimit64, GLIBC_2_3); +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/getuid.c ports/sysdeps/unix/sysv/linux/m32r/getuid.c +--- ports/sysdeps/unix/sysv/linux/m32r/getuid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/getuid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/kernel-features.h ports/sysdeps/unix/sysv/linux/m32r/kernel-features.h +--- ports/sysdeps/unix/sysv/linux/m32r/kernel-features.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/kernel-features.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,17 @@ ++#define __ASSUME_32BITUIDS 1 ++#define __ASSUME_CLONE_THREAD_FLAGS 1 ++#define __ASSUME_FADVISE64_64_SYSCALL 1 ++#define __ASSUME_FCNTL64 1 ++#define __ASSUME_GETDENTS64_SYSCALL 1 ++#define __ASSUME_IPC64 1 ++#define __ASSUME_MMAP2_SYSCALL 1 ++#define __ASSUME_NEW_GETRLIMIT_SYSCALL 1 ++#define __ASSUME_SETRESGID_SYSCALL 1 ++#define __ASSUME_SETRESUID_SYSCALL 1 ++#define __ASSUME_STAT64_SYSCALL 1 ++#define __ASSUME_ST_INO_64_BIT 1 ++#define __ASSUME_TGKILL 1 ++#define __ASSUME_TRUNCATE64_SYSCALL 1 ++#define __ASSUME_UTIMES 1 ++ ++#include_next "kernel-features.h" +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/lchown.c ports/sysdeps/unix/sysv/linux/m32r/lchown.c +--- ports/sysdeps/unix/sysv/linux/m32r/lchown.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/lchown.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,35 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++ ++#include ++#include ++#include ++ ++#include ++#include "kernel-features.h" ++ ++int ++__lchown (const char *file, uid_t owner, gid_t group) ++{ ++ return INLINE_SYSCALL (lchown32, 3, CHECK_STRING (file), owner, group); ++} ++ ++weak_alias (__lchown, lchown) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/linuxthreads/sysdep-cancel.h ports/sysdeps/unix/sysv/linux/m32r/linuxthreads/sysdep-cancel.h +--- ports/sysdeps/unix/sysv/linux/m32r/linuxthreads/sysdep-cancel.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/linuxthreads/sysdep-cancel.h 2006-04-20 09:44:47.000000000 +0900 +@@ -0,0 +1,186 @@ ++/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#ifndef __ASSEMBLER__ ++# include ++#endif ++ ++#if !defined NOT_IN_libc || defined IS_IN_libpthread || IS_IN_librt ++ ++# undef PSEUDO ++# define PSEUDO(name, syscall_name, args) \ ++ .text! \ ++ ENTRY(name)! \ ++ SINGLE_THREAD_P_INT ! \ ++ bnez r6, .Lpseudo_cancel ! \ ++ DO_CALL (syscall_name, args) ! \ ++ not r5,r0 ! \ ++ srai r5,12 ! \ ++ bnez r5,.Lpseudo_end ! \ ++ bra .Lsyscall_error ! \ ++ .fillinsn ! \ ++ .Lpseudo_cancel: ! \ ++ SAVE_REGS ! \ ++ /* save syscall args around CENABLE. */ \ ++ DOCARGS_##args ! \ ++ CENABLE ! \ ++ mv r8,r0 ! /* put mask back */ \ ++ /* restore syscall args */ \ ++ UNDOCARGS_##args ! \ ++ ldi r7, SYS_ify(syscall_name) ! /* do the call */ \ ++ SYSCALL_INST_##args ! \ ++ /* save syscall return value */ \ ++ push r0 ! \ ++ mv r0,r8 ! /* get mask back */ \ ++ CDISABLE ! \ ++ pop r0 ! /* retrive return value. */ \ ++ UNDOC2ARGS_##args ! \ ++ RESTORE_REGS ! \ ++ /* fix register damege. */ \ ++ not r5,r0 ! \ ++ srai r5,12 ! \ ++ bnez r5, .Lpseudo_end ! \ ++ .fillinsn ! \ ++ .Lsyscall_error: ! \ ++ SYSCALL_ERROR_HANDLER ! \ ++ .fillinsn ! \ ++ .Lpseudo_end: ! \ ++ ++# define DOCARGS_0 ++# define UNDOCARGS_0 ++# define UNDOC2ARGS_0 ++ ++# define DOCARGS_1 push r0 ++# define UNDOCARGS_1 pop r0 ++# define UNDOC2ARGS_1 ++ ++# define DOCARGS_2 push r1 ! push r0 ++# define UNDOCARGS_2 pop r0 ! pop r1 ++# define UNDOC2ARGS_2 ++ ++# define DOCARGS_3 push r2 ! push r1 ! push r0 ++# define UNDOCARGS_3 pop r0 ! pop r1 ! pop r2 ++# define UNDOC2ARGS_3 ++ ++# define DOCARGS_4 push r3 ! push r2 ! push r1 ! push r0 ++# define UNDOCARGS_4 pop r0 ! pop r1 ! pop r2 ! pop r3 ++# define UNDOC2ARGS_4 ++ ++# define DOCARGS_5 push r3 ! push r2 ! push r1 ! push r0 ++# if !defined PIC ++# define UNDOCARGS_5 pop r0 ! pop r1 ! pop r2 ! pop r3 ! ld r4, @(8,sp) ! push r4 ++# define UNDOC2ARGS_5 addi sp,#4 ++# else ++# define UNDOCARGS_5 pop r0 ! pop r1 ! pop r2 ! pop r3 ! ld r4, @(12,sp) ! push r4 ++# define UNDOC2ARGS_5 addi sp,#4 ++# endif ++ ++ ++# ifdef IS_IN_libpthread ++# ifdef PIC ++# define CENABLE bl __pthread_enable_asynccancel@PLT ++# define CDISABLE bl __pthread_disable_asynccancel@PLT ++# else ++# define CENABLE bl __pthread_enable_asynccancel ++# define CDISABLE bl __pthread_disable_asynccancel ++# endif ++# define __local_multiple_threads __pthread_multiple_threads ++# elif !defined NOT_IN_libc ++# ifdef PIC ++# define CENABLE bl __libc_enable_asynccancel@PLT ++# define CDISABLE bl __libc_disable_asynccancel@PLT ++# else ++# define CENABLE bl __libc_enable_asynccancel ++# define CDISABLE bl __libc_disable_asynccancel ++# endif ++# define __local_multiple_threads __libc_multiple_threads ++# else ++# ifdef PIC ++# define CENABLE bl __librt_enable_asynccancel@PLT ++# define CDISABLE bl __librt_disable_asynccancel@PLT ++# else ++# define CENABLE bl __librt_enable_asynccancel ++# define CDISABLE bl __librt_disable_asynccancel ++# endif ++# define __local_multiple_threads __librt_multiple_threads ++# endif ++ ++# ifndef __ASSEMBLER__ ++extern int __local_multiple_threads attribute_hidden; ++# define SINGLE_THREAD_P __builtin_expect (__local_multiple_threads == 0, 1) ++# else ++# if !defined PIC ++# define SINGLE_THREAD_P_INT \ ++ seth r6,#shigh(__local_multiple_threads) ! \ ++ ld r6,@(low(__local_multiple_threads), r6) ++ ++# define SINGLE_THREAD_P SINGLE_THREAD_P_INT ++ ++# define SAVE_REGS \ ++ push lr ! push r8 ++ ++# define RESTORE_REGS \ ++ pop r8 ! pop lr ++ ++# else ++# if !defined NOT_IN_libc || defined IS_IN_libpthread ++# define SINGLE_THREAD_P_INT \ ++ mv r4,lr ! \ ++ bl.s .+4 ! \ ++ ld24 r5,#_GLOBAL_OFFSET_TABLE_ ! \ ++ seth r6,#high(__local_multiple_threads@GOTOFF) !\ ++ or3 r6,r6,#low(__local_multiple_threads@GOTOFF) !\ ++ add r5,lr ! \ ++ mv lr,r4 ! \ ++ add r6,r5 ! \ ++ ld r6,@r6 ++ ++# else ++# define SINGLE_THREAD_P_INT \ ++ mv r4,lr ! \ ++ bl.s .+4 ! \ ++ ld24 r5,#_GLOBAL_OFFSET_TABLE_ ! \ ++ ld24 r6,#__local_multiple_threads@GOT !\ ++ add r5,lr ! \ ++ mv lr,r4 ! \ ++ add r6,r5 ! \ ++ ld r6,@r6 ! \ ++ ld r6,@r6 ++ ++# endif ++ ++# define SINGLE_THREAD_P \ ++ SINGLE_THREAD_P_INT ++ ++# define SAVE_REGS \ ++ push lr ! push r8 ! push r12 ! mv r12, r5 ++ ++# define RESTORE_REGS \ ++ pop r12 ! pop r8 ! pop lr ++ ++# endif ++# endif ++ ++ ++#elif !defined __ASSEMBLER__ ++ ++/* This code should never be used but we define it anyhow. */ ++# define SINGLE_THREAD_P (1) ++ ++#endif +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/linuxthreads/vfork.S ports/sysdeps/unix/sysv/linux/m32r/linuxthreads/vfork.S +--- ports/sysdeps/unix/sysv/linux/m32r/linuxthreads/vfork.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/linuxthreads/vfork.S 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,75 @@ ++/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#define _ERRNO_H 1 ++#include ++#include "kernel-features.h" ++/* Clone the calling process, but without copying the whole address space. ++ The calling process is suspended until the new process exits or is ++ replaced by a call to `execve'. Return -1 for errors, 0 to the new process, ++ and the process ID of the new process to the old process. */ ++ ++ENTRY (__vfork) ++#ifdef __NR_vfork ++ ++#ifdef SHARED ++ mv r4, lr ++ bl.s .+4 ++ ld24 r5, #_GLOBAL_OFFSET_TABLE_ ++ add r5, lr ++ mv lr, r4 ++ ++ seth r6, #high(__libc_pthread_functions@GOTOFF) ++ or3 r6, r6, #low(__libc_pthread_functions@GOTOFF) ++ add r6, r5 ++ ld r0, @r6 ++ ++ seth r6, #high(HIDDEN_JUMPTARGET(__fork)@GOTOFF) ++ or3 r6, r6, #low(HIDDEN_JUMPTARGET(__fork)@GOTOFF) ++ add r6, r5 ++ beqz r0, 5f ++ jmp r6 ++ .fillinsn ++5: ++#else ++ .weak pthread_create ++ seth r0, #shigh(pthread_create) ++ or3 r0, r0, #low(pthread_create) ++ bnez r0, HIDDEN_JUMPTARGET(__fork) ++#endif ++ ++ ldi r7, #__NR_vfork ++ SYSCALL_INST ++ not r1, r0 ++ srai r1, #12 // r1=0 means r0 = -1 to -4095 ++ bnez r1, 1f // i.e. error in linux ++ ++#endif ++ ++ SYSCALL_ERROR_HANDLER ++ ++ .fillinsn ++1: ++ ret ++ ++ ++PSEUDO_END (__vfork) ++libc_hidden_def(__vfork) ++ ++weak_alias (__vfork, vfork) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/lockf64.c ports/sysdeps/unix/sysv/linux/m32r/lockf64.c +--- ports/sysdeps/unix/sysv/linux/m32r/lockf64.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/lockf64.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/lxstat.c ports/sysdeps/unix/sysv/linux/m32r/lxstat.c +--- ports/sysdeps/unix/sysv/linux/m32r/lxstat.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/lxstat.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,2 @@ ++#include ++ +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/m32r-stub.c ports/sysdeps/unix/sysv/linux/m32r/m32r-stub.c +--- ports/sysdeps/unix/sysv/linux/m32r/m32r-stub.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/m32r-stub.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,11 @@ ++#include ++ ++struct link_map _dl_rtld_map; ++ ++#ifndef __PIC__ ++void __pthread_initialize_minimal(void) ++{ ++} ++#endif ++ ++ +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/mmap.S ports/sysdeps/unix/sysv/linux/m32r/mmap.S +--- ports/sysdeps/unix/sysv/linux/m32r/mmap.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/mmap.S 2006-04-20 09:44:30.000000000 +0900 +@@ -0,0 +1,59 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++ ++#define EINVAL 22 ++ ++/* ++__ptr_t ++__mmap (__ptr_t addr, size_t len, int prot, int flags, int fd, off_t offset); ++*/ ++ ++ENTRY (__mmap) ++ /* Push args and pass the address of 1st arg. ++ * The 5th and 6th args are already passed in the stack. ++ */ ++ ld r4, @sp // fd ++ ld r5, @(4,sp) // offset ++ and3 r6, r5, #0x00000fff ++ beqz r6, 2f ++ ldi r0, #-EINVAL ++ bra 0f ++ .fillinsn ++2: ++ srli r5, #12 ++ ++ ldi r7, #__NR_mmap2 ++ SYSCALL_INST ++ ++ .fillinsn ++0: ++ not r1, r0 ++ srai r1, #12 // r1=0 means r0 = -1 to -4095 ++ bnez r1, 1f // i.e. error in linux ++ ++ SYSCALL_ERROR_HANDLER ++ ++ .fillinsn ++1: ++ ret ++ ++PSEUDO_END (__mmap) ++ ++weak_alias (__mmap, mmap) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/msgctl.c ports/sysdeps/unix/sysv/linux/m32r/msgctl.c +--- ports/sysdeps/unix/sysv/linux/m32r/msgctl.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/msgctl.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,39 @@ ++/* Copyright (C) 1995, 1997, 1998, 2000, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Ulrich Drepper , August 1995. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++#include "kernel-features.h" ++#include ++ ++int ++__new_msgctl (int msqid, int cmd, struct msqid_ds *buf) ++{ ++ return INLINE_SYSCALL (ipc, 5, IPCOP_msgctl, ++ msqid, cmd | __IPC_64, 0, CHECK_1 (buf)); ++} ++ ++versioned_symbol (libc, __new_msgctl, msgctl, GLIBC_2_3); +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/pipe.S ports/sysdeps/unix/sysv/linux/m32r/pipe.S +--- ports/sysdeps/unix/sysv/linux/m32r/pipe.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/pipe.S 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,37 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++ ++ENTRY (__libc_pipe) ++ ldi r7, #__NR_pipe ++ SYSCALL_INST ++ not r1, r0 ++ srai r1, #12 // r1=0 means r0 = -1 to -4095 ++ bnez r1, 1f // i.e. error in linux ++ ++ SYSCALL_ERROR_HANDLER ++ .fillinsn ++1: ++ ldi r0, #0 ++ ret ++PSEUDO_END (__libc_pipe) ++ ++weak_alias (__libc_pipe, __pipe) ++libc_hidden_def (__pipe) ++weak_alias (__libc_pipe, pipe) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/profil-counter.h ports/sysdeps/unix/sysv/linux/m32r/profil-counter.h +--- ports/sysdeps/unix/sysv/linux/m32r/profil-counter.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/profil-counter.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,29 @@ ++/* Low-level statistical profiling support function. Linux/M32R version. ++ Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++#include ++ ++static void ++profil_counter (int signo, SIGCONTEXT sc) ++{ ++ void *pc; ++ pc = GET_PC(sc); ++ profil_count (pc); ++} +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/semctl.c ports/sysdeps/unix/sysv/linux/m32r/semctl.c +--- ports/sysdeps/unix/sysv/linux/m32r/semctl.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/semctl.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,62 @@ ++/* Copyright (C) 1995,1997,1998,2000,2003,2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Ulrich Drepper , August 1995. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++ ++#include ++#include ++#include ++ ++#include "kernel-features.h" ++#include ++ ++/* Define a `union semun' suitable for Linux here. */ ++union semun ++{ ++ int val; /* value for SETVAL */ ++ struct semid_ds *buf; /* buffer for IPC_STAT & IPC_SET */ ++ unsigned short int *array; /* array for GETALL & SETALL */ ++ struct seminfo *__buf; /* buffer for IPC_INFO */ ++ struct __old_semid_ds *__old_buf; ++}; ++ ++#include ++#include /* definition of CHECK_SEMCTL needs union semum */ ++ ++int ++__new_semctl (int semid, int semnum, int cmd, ...) ++{ ++ union semun arg; ++ va_list ap; ++ ++ va_start (ap, cmd); ++ ++ /* Get the argument. */ ++ arg = va_arg (ap, union semun); ++ ++ va_end (ap); ++ ++ return INLINE_SYSCALL (ipc, 5, IPCOP_semctl, semid, semnum, cmd | __IPC_64, ++ CHECK_SEMCTL (&arg, semid, cmd | __IPC_64)); ++} ++ ++versioned_symbol (libc, __new_semctl, semctl, GLIBC_2_3); +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/setegid.c ports/sysdeps/unix/sysv/linux/m32r/setegid.c +--- ports/sysdeps/unix/sysv/linux/m32r/setegid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/setegid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/seteuid.c ports/sysdeps/unix/sysv/linux/m32r/seteuid.c +--- ports/sysdeps/unix/sysv/linux/m32r/seteuid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/seteuid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/setfsgid.c ports/sysdeps/unix/sysv/linux/m32r/setfsgid.c +--- ports/sysdeps/unix/sysv/linux/m32r/setfsgid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/setfsgid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,34 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include "kernel-features.h" ++ ++int ++setfsgid (gid_t gid) ++{ ++ INTERNAL_SYSCALL_DECL (err); ++ /* No error checking. */ ++ return INTERNAL_SYSCALL (setfsgid32, err, 1, gid); ++} +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/setfsuid.c ports/sysdeps/unix/sysv/linux/m32r/setfsuid.c +--- ports/sysdeps/unix/sysv/linux/m32r/setfsuid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/setfsuid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,35 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++#include ++#include ++ ++#include ++#include "kernel-features.h" ++ ++int ++setfsuid (uid_t uid) ++{ ++ INTERNAL_SYSCALL_DECL (err); ++ /* No error checking. */ ++ return INTERNAL_SYSCALL (setfsuid32, err, 1, uid); ++} +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/setgid.c ports/sysdeps/unix/sysv/linux/m32r/setgid.c +--- ports/sysdeps/unix/sysv/linux/m32r/setgid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/setgid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/setgroups.c ports/sysdeps/unix/sysv/linux/m32r/setgroups.c +--- ports/sysdeps/unix/sysv/linux/m32r/setgroups.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/setgroups.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,2 @@ ++/* We also have to rewrite the kernel gid_t to the user land type. */ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/setregid.c ports/sysdeps/unix/sysv/linux/m32r/setregid.c +--- ports/sysdeps/unix/sysv/linux/m32r/setregid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/setregid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/setresgid.c ports/sysdeps/unix/sysv/linux/m32r/setresgid.c +--- ports/sysdeps/unix/sysv/linux/m32r/setresgid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/setresgid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/setresuid.c ports/sysdeps/unix/sysv/linux/m32r/setresuid.c +--- ports/sysdeps/unix/sysv/linux/m32r/setresuid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/setresuid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/setreuid.c ports/sysdeps/unix/sysv/linux/m32r/setreuid.c +--- ports/sysdeps/unix/sysv/linux/m32r/setreuid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/setreuid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/setrlimit.c ports/sysdeps/unix/sysv/linux/m32r/setrlimit.c +--- ports/sysdeps/unix/sysv/linux/m32r/setrlimit.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/setrlimit.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,37 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++ ++#include "kernel-features.h" ++ ++int ++__new_setrlimit (enum __rlimit_resource resource, const struct rlimit *rlimits) ++{ ++ return INLINE_SYSCALL (setrlimit, 2, resource, CHECK_1 (rlimits)); ++} ++ ++weak_alias (__new_setrlimit, __setrlimit); ++versioned_symbol (libc, __new_setrlimit, setrlimit, GLIBC_2_3); +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/setuid.c ports/sysdeps/unix/sysv/linux/m32r/setuid.c +--- ports/sysdeps/unix/sysv/linux/m32r/setuid.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/setuid.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/shmctl.c ports/sysdeps/unix/sysv/linux/m32r/shmctl.c +--- ports/sysdeps/unix/sysv/linux/m32r/shmctl.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/shmctl.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,40 @@ ++/* Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Ulrich Drepper , August 1995. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include "kernel-features.h" ++#include ++ ++int ++__new_shmctl (int shmid, int cmd, struct shmid_ds *buf) ++{ ++ return INLINE_SYSCALL (ipc, 5, IPCOP_shmctl, ++ shmid, cmd | __IPC_64, 0, CHECK_1 (buf)); ++} ++ ++versioned_symbol (libc, __new_shmctl, shmctl, GLIBC_2_3); +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/sigaction.c ports/sysdeps/unix/sysv/linux/m32r/sigaction.c +--- ports/sysdeps/unix/sysv/linux/m32r/sigaction.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/sigaction.c 2006-03-02 12:32:45.000000000 +0900 +@@ -0,0 +1,105 @@ ++/* POSIX.1 `sigaction' call for Linux/M32R. ++ Copyright (C) 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#include ++#include ++#include ++#include ++#include ++ ++#include ++#include ++ ++#include "kernel-features.h" ++ ++/* The difference here is that the sigaction structure used in the ++ kernel is not the same as we use in the libc. Therefore we must ++ translate it here. */ ++#include ++ ++/* We do not globally define the SA_RESTORER flag so do it here. */ ++#define SA_RESTORER 0x04000000 ++ ++/* Using the hidden attribute here does not change the code but it ++ helps to avoid warnings. */ ++#if defined HAVE_HIDDEN && defined HAVE_VISIBILITY_ATTRIBUTE \ ++ && !defined HAVE_BROKEN_VISIBILITY_ATTRIBUTE ++extern void restore_rt (void) asm ("__restore_rt") attribute_hidden; ++#else ++static void restore_rt (void) asm ("__restore_rt"); ++#endif ++ ++ ++/* If ACT is not NULL, change the action for SIG to *ACT. ++ If OACT is not NULL, put the old action for SIG in *OACT. */ ++int ++__libc_sigaction (int sig, const struct sigaction *act, struct sigaction *oact) ++{ ++ int result; ++ struct kernel_sigaction kact, koact; ++ ++ if (act) ++ { ++ kact.k_sa_handler = act->sa_handler; ++ memcpy (&kact.sa_mask, &act->sa_mask, sizeof (sigset_t)); ++ kact.sa_flags = act->sa_flags | SA_RESTORER; ++ ++ kact.sa_restorer = &restore_rt; ++ } ++ ++ /* XXX The size argument hopefully will have to be changed to the ++ real size of the user-level sigset_t. */ ++ result = INLINE_SYSCALL (rt_sigaction, 4, ++ sig, act ? __ptrvalue (&kact) : NULL, ++ oact ? __ptrvalue (&koact) : NULL, _NSIG / 8); ++ if (oact && result >= 0) ++ { ++ oact->sa_handler = koact.k_sa_handler; ++ memcpy (&oact->sa_mask, &koact.sa_mask, sizeof (sigset_t)); ++ oact->sa_flags = koact.sa_flags; ++ oact->sa_restorer = koact.sa_restorer; ++ } ++ return result; ++} ++libc_hidden_def (__libc_sigaction) ++ ++#ifndef LIBC_SIGACTION ++weak_alias (__libc_sigaction, __sigaction) ++libc_hidden_weak (__sigaction) ++weak_alias (__libc_sigaction, sigaction) ++#endif ++ ++/* NOTE: Please think twice before making any changes to the bits of ++ code below. GDB needs some intimate knowledge about it to ++ recognize them as signal trampolines, and make backtraces through ++ signal handlers work right. Important are both the names ++ (__restore_rt) and the exact instruction sequence. ++ If you ever feel the need to make any changes, please notify the ++ appropriate GDB maintainer. */ ++ ++#define RESTORE(name, syscall) RESTORE2 (name, syscall) ++# define RESTORE2(name, syscall) \ ++asm \ ++ ( \ ++ "__" #name ":\n" \ ++ " ldi r7,#" #syscall "\n" \ ++ " trap #2 || nop\n" \ ++ ); ++/* The return code for realtime-signals. */ ++RESTORE (restore_rt, __NR_rt_sigreturn) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/sigcontextinfo.h ports/sysdeps/unix/sysv/linux/m32r/sigcontextinfo.h +--- ports/sysdeps/unix/sysv/linux/m32r/sigcontextinfo.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/sigcontextinfo.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,26 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Philip Blundell , 1999. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#define SIGCONTEXT struct sigcontext * ++#define SIGCONTEXT_EXTRA_ARGS ++#define GET_PC(ctx) ((void *)((ctx)->sc_bpc)) ++#define GET_FRAME(ctx) ((void *)((ctx)->sc_fp)) ++#define GET_STACK(ctx) ((void *)((ctx)->sc_spi)) ++#define CALL_SIGHANDLER(handler, signo, ctx) \ ++ (handler)((signo), SIGCONTEXT_EXTRA_ARGS (ctx)) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/socket.S ports/sysdeps/unix/sysv/linux/m32r/socket.S +--- ports/sysdeps/unix/sysv/linux/m32r/socket.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/socket.S 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,155 @@ ++/* Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++#include ++ ++#define P(a, b) P2(a, b) ++#define P2(a, b) a##b ++ ++ .text ++/* The socket-oriented system calls are handled unusally in Linux. ++ They are all gated through the single `socketcall' system call number. ++ `socketcall' takes two arguments: the first is the subcode, specifying ++ which socket function is being called; and the second is a pointer to ++ the arguments to the specific function. ++ ++ The .S files for the other calls just #define socket and #include this. */ ++ ++#ifndef __socket ++#ifndef NO_WEAK_ALIAS ++#define __socket P(__,socket) ++#else ++#define __socket socket ++#endif ++#endif ++ ++#define PUSHARGS(x) PUSHARGS x ++ .macro PUSHARGS nargs ++ push r0 ++ .aif \nargs ge 2 ++ push r1 ++ .aif \nargs ge 3 ++ push r2 ++ .aif \nargs ge 4 ++ push r3 ++ /* If nargs is 5, caller has already pushed arg 5. */ ++ /* If nargs is 6, caller has already pushed arg 5, 6. */ ++ .aendi ++ .aendi ++ .aendi ++ .endm ++ ++#define PUSHARGS(x) PUSHARGS x ++ ++#define POPARGS_1 addi r15,#4 ++#define POPARGS_2 addi r15,#8 ++#define POPARGS_3 addi r15,#12 ++#define POPARGS_4 addi r15,#16 ++#define POPARGS_5 addi r15,#16 ++#define POPARGS_6 addi r15,#16 ++ ++#ifndef NARGS ++#define NARGS 3 /* If we were called with no wrapper, this is really socket() */ ++#endif ++ ++.globl __socket ++ENTRY (__socket) ++ /* This will not work in the case of a socket call being interrupted ++ by a signal. If the signal handler uses any stack the arguments ++ to socket will be trashed. The results of a restart of any ++ socket call are then unpredictable. */ ++ ++ /* Push args onto the stack. */ ++ /* PUSHARGS(NARGS) */ ++#if (NARGS >= 4) ++ push r3 ++ /* If nargs is 6, caller has already pushed arg 5, 6. */ ++ /* If nargs is 5, caller has already pushed arg 5. */ ++#endif ++#if (NARGS >= 3) ++ push r2 ++#endif ++#if (NARGS >= 2) ++ push r1 ++#endif ++ push r0 ++ ++#if defined NEED_CANCELLATION && defined CENABLE ++ SINGLE_THREAD_P ++ bnez r6, 2f ++#endif ++ ++ /* Do the system call trap. */ ++ ldi r0, #P(SOCKOP_,socket) ++ mv r1, r15 ++ ldi r7, #SYS_ify(socketcall) ++ SYSCALL_INST ++ ++ /* Pop args off the stack */ ++ P(POPARGS_,NARGS) ++ ++ not r1, r0 ++ srai r1, #12 // r1=0 means r0 = -1 to -4095 ++ bnez r1, 1f // i.e. error in linux ++ ++ SYSCALL_ERROR_HANDLER ++ .fillinsn ++1: ++ /* Successful; return the syscall's value. */ ++ ret ++ ++#if defined NEED_CANCELLATION && defined CENABLE ++ .fillinsn ++2: ++ SAVE_REGS ++ CENABLE ++ mv r8, r0 ++ ++ ldi r0, #P(SOCKOP_,socket) ++#if !defined PIC ++ add3 r1, r15, #8 ++#else ++ add3 r1, r15, #12 ++#endif ++ ldi r7, #SYS_ify(socketcall) ++ SYSCALL_INST ++ ++ push r0 ++ mv r0, r8 ++ CDISABLE ++ pop r0 ++ RESTORE_REGS ++ ++ P(POPARGS_,NARGS) ++ ++ not r1, r0 ++ srai r1, #12 // r1=0 means r0 = -1 to -4095 ++ bnez r1, 3f // i.e. error in linux ++ ++ SYSCALL_ERROR_HANDLER ++ .fillinsn ++3: ++ ret ++#endif ++ ++PSEUDO_END (__socket) ++ ++#ifndef NO_WEAK_ALIAS ++weak_alias (__socket, socket) ++#endif +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/sys/cachectl.h ports/sysdeps/unix/sysv/linux/m32r/sys/cachectl.h +--- ports/sysdeps/unix/sysv/linux/m32r/sys/cachectl.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/sys/cachectl.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,38 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SYS_CACHECTL_H ++#define _SYS_CACHECTL_H 1 ++ ++#include ++ ++/* ++ * Get the kernel definition for the op bits. ++ */ ++#include ++ ++__BEGIN_DECLS ++ ++#ifdef __USE_MISC ++extern int cacheflush (void *addr, __const int nbytes, __const int op) __THROW; ++#endif ++extern int _flush_cache (char *addr, __const int nbytes, __const int op) __THROW; ++ ++__END_DECLS ++ ++#endif /* sys/cachectl.h */ +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/sys/io.h ports/sysdeps/unix/sysv/linux/m32r/sys/io.h +--- ports/sysdeps/unix/sysv/linux/m32r/sys/io.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/sys/io.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,48 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#ifndef _SYS_IO_H ++ ++#define _SYS_IO_H 1 ++#include ++ ++__BEGIN_DECLS ++ ++/* If TURN_ON is TRUE, request for permission to do direct i/o on the ++ port numbers in the range [FROM,FROM+NUM-1]. Otherwise, turn I/O ++ permission off for that range. This call requires root privileges. */ ++extern int ioperm (unsigned long int __from, unsigned long int __num, ++ int __turn_on) __THROW; ++ ++/* Set the I/O privilege level to LEVEL. If LEVEL is nonzero, ++ permission to access any I/O port is granted. This call requires ++ root privileges. */ ++extern int iopl (int __level) __THROW; ++ ++/* The functions that actually perform reads and writes. */ ++extern unsigned char inb (unsigned long int port) __THROW; ++extern unsigned short int inw (unsigned long int port) __THROW; ++extern unsigned long int inl (unsigned long int port) __THROW; ++ ++extern void outb (unsigned char value, unsigned long int port) __THROW; ++extern void outw (unsigned short value, unsigned long int port) __THROW; ++extern void outl (unsigned long value, unsigned long int port) __THROW; ++ ++__END_DECLS ++ ++#endif /* _SYS_IO_H */ +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/sys/tas.h ports/sysdeps/unix/sysv/linux/m32r/sys/tas.h +--- ports/sysdeps/unix/sysv/linux/m32r/sys/tas.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/sys/tas.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,13 @@ ++#ifndef _SYS_TAS_H ++ ++#define _SYS_TAS_H 1 ++ ++#include ++ ++__BEGIN_DECLS ++ ++extern int tas(int *) __THROW; ++ ++__END_DECLS ++ ++#endif /* _SYS_TAS_H */ +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/sys/ucontext.h ports/sysdeps/unix/sysv/linux/m32r/sys/ucontext.h +--- ports/sysdeps/unix/sysv/linux/m32r/sys/ucontext.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/sys/ucontext.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,111 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++/* Where is System V/SH ABI? */ ++ ++#ifndef _SYS_UCONTEXT_H ++#define _SYS_UCONTEXT_H 1 ++ ++#include ++#include ++ ++/* We need the signal context definitions even if they are not used ++ included in . */ ++#include ++ ++ ++typedef int greg_t; ++ ++/* Number of general registers. */ ++#define NFPREG 16 ++ ++/* Container for all general registers. */ ++typedef greg_t gregset_t[NFPREG]; ++ ++#if 0 ++#ifdef __USE_GNU ++/* Number of each register is the `gregset_t' array. */ ++enum ++{ ++ R0 = 0, ++#define R0 R0 ++ R1 = 1, ++#define R1 R1 ++ R2 = 2, ++#define R2 R2 ++ R3 = 3, ++#define R3 R3 ++ R4 = 4, ++#define R4 R4 ++ R5 = 5, ++#define R5 R5 ++ R6 = 6, ++#define R6 R6 ++ R7 = 7, ++#define R7 R7 ++ R8 = 8, ++#define R8 R8 ++ R9 = 9, ++#define R9 R9 ++ R10 = 10, ++#define R10 R10 ++ R11 = 11, ++#define R11 R11 ++ R12 = 12, ++#define R12 R12 ++ R13 = 13, ++#define R13 R13 ++ R14 = 14, ++#define R14 R14 ++ R15 = 15, ++#define R15 R15 ++}; ++#endif ++#endif /* 0 */ ++ ++typedef int freg_t; ++ ++/* Number of FPU registers. */ ++#define NFPREG 16 ++ ++/* Structure to describe FPU registers. */ ++typedef freg_t fpregset_t[NFPREG]; ++ ++/* Context to describe whole processor state. */ ++typedef struct ++ { ++ gregset_t gregs; ++ fpregset_t fpregs; ++ fpregset_t xfpregs; ++ unsigned int fpscr; ++ unsigned int fpul; ++ unsigned int macl; ++ unsigned int mach; ++ } mcontext_t; ++ ++/* Userlevel context. */ ++typedef struct ucontext ++ { ++ unsigned long int uc_flags; ++ struct ucontext *uc_link; ++ stack_t uc_stack; ++ mcontext_t uc_mcontext; ++ __sigset_t uc_sigmask; ++ } ucontext_t; ++ ++#endif /* sys/ucontext.h */ +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/sys/user.h ports/sysdeps/unix/sysv/linux/m32r/sys/user.h +--- ports/sysdeps/unix/sysv/linux/m32r/sys/user.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/sys/user.h 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,26 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#ifndef _SYS_USER_H ++#define _SYS_USER_H 1 ++ ++#include ++ ++#include ++ ++#endif /* sys/user.h */ +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/syscall.S ports/sysdeps/unix/sysv/linux/m32r/syscall.S +--- ports/sysdeps/unix/sysv/linux/m32r/syscall.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/syscall.S 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,41 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++ ++ENTRY (__syscall) ++ mv r7, r0 // syscall number ++ mv r0, r1 // p1 ++ mv r1, r2 // p2 ++ mv r2, r3 // p3 ++ ld r3, @(sp) // p4 ++ ld r4, @(4,sp) // p5 ++ ld r5, @(8,sp) // p6 ++ ld r6, @(12,sp) // p7 ++ SYSCALL_INST ++ not r1, r0 ++ srai r1, #12 // r1=0 means r0 = -1 to -4095 ++ bnez r1, 1f // i.e. error in linux ++ ++ SYSCALL_ERROR_HANDLER ++ .fillinsn ++1: ++ ret ++PSEUDO_END (__syscall) ++ ++weak_alias (__syscall, syscall) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/syscalls.list ports/sysdeps/unix/sysv/linux/m32r/syscalls.list +--- ports/sysdeps/unix/sysv/linux/m32r/syscalls.list 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/syscalls.list 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,4 @@ ++# File name Caller Syscall name # args Strong name Weak names ++tas - tas i:p __tas tas ++cachectl - cachectl i:pii __cachectl cachectl ++cacheflush - cacheflush i:pii __cacheflush cacheflush +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/sysdep.S ports/sysdeps/unix/sysv/linux/m32r/sysdep.S +--- ports/sysdeps/unix/sysv/linux/m32r/sysdep.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/sysdep.S 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1,32 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++ ++/* The syscall stubs jump here when they detect an error. ++ The code for Linux is almost identical to the canonical Unix ++ code, except that the error number in R0 is negated. */ ++ ++#undef CALL_MCOUNT ++#define CALL_MCOUNT /* Don't insert the profiling call, it clobbers R0. */ ++ ++ENTRY (__syscall_error) ++ neg r0, r0 ++ ++#define __syscall_error __syscall_error_1 ++#include "../../../m32r/sysdep.S" +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/sysdep.h ports/sysdeps/unix/sysv/linux/m32r/sysdep.h +--- ports/sysdeps/unix/sysv/linux/m32r/sysdep.h 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/sysdep.h 2006-03-02 12:29:40.000000000 +0900 +@@ -0,0 +1,294 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, ++ Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#ifndef _LINUX_M32R_SYSDEP_H ++#define _LINUX_M32R_SYSDEP_H 1 ++ ++/* There is some commonality. */ ++#include "../../../m32r/sysdep.h" ++ ++/* Defines RTLD_PRIVATE_ERRNO. */ ++#include ++ ++/* For Linux we can use the system call table in the header file ++ /usr/include/asm/unistd.h ++ of the kernel. But these symbols do not follow the SYS_* syntax ++ so we have to redefine the `SYS_ify' macro here. */ ++#undef SYS_ify ++#define SYS_ify(syscall_name) __NR_##syscall_name ++ ++#ifdef __ASSEMBLER__ ++ ++/* Linux uses a negative return value to indicate syscall errors, ++ unlike most Unices, which use the condition codes' carry flag. ++ ++ Since version 2.1 the return value of a system call might be ++ negative even if the call succeeded. E.g., the `lseek' system call ++ might return a large offset. Therefore we must not anymore test ++ for < 0, but test for a real error by making sure the value in R0 ++ is a real error number. Linus said he will make sure the no syscall ++ returns a value in -1 .. -4095 as a valid result so we can savely ++ test with -4095. */ ++ ++#define SYSCALL_INST trap #2 || nop ++#define SYSCALL_INST_0 trap #2 || nop ++#define SYSCALL_INST_1 trap #2 || nop ++#define SYSCALL_INST_2 trap #2 || nop ++#define SYSCALL_INST_3 trap #2 || nop ++#define SYSCALL_INST_4 trap #2 || nop ++#define SYSCALL_INST_5 \ ++ ld r4,@sp ! \ ++ trap #2 || nop ++#define SYSCALL_INST_STR_6 \ ++ ld r4,@sp ! \ ++ ld r5,@(4,sp) ! \ ++ trap #2 || nop ++#define SYSCALL_INST_STR_7 \ ++ ld r4,@sp ! \ ++ ld r5,@(4,sp) ! \ ++ ld r6,@(8,sp) ! \ ++ trap #2 || nop ++ ++#define DO_CALL( syscall_name, args ) \ ++ ldi r7,SYS_ify(syscall_name) ! \ ++ SYSCALL_INST_##args ++ ++#undef PSEUDO ++#define PSEUDO(name, syscall_name, args) \ ++ .text !\ ++ENTRY (name) !\ ++ DO_CALL (syscall_name, args) !\ ++ not r1,r0 !\ ++ srai r1,12 !\ ++ bnez r1,.Lpseudo_end !\ ++ SYSCALL_ERROR_HANDLER !\ ++ .fillinsn !\ ++ .Lpseudo_end: ++ ++#undef PSEUDO_END ++#define PSEUDO_END(name) \ ++ END (name) ++ ++#undef PSEUDO_NOERRNO ++#define PSEUDO_NOERRNO(name, syscall_name, args) \ ++ .text !\ ++ ENTRY (name) !\ ++ DO_CALL (syscall_name, args) ++ ++#undef PSEUDO_END_NOERRNO ++#define PSEUDO_END_NOERRNO(name) \ ++ END (name) ++ ++#define ret_NOERRNO ret ++ ++#define PSEUDO_ERRVAL(name, syscall_name, args) \ ++ .text !\ ++ ENTRY (name) !\ ++ DO_CALL (syscall_name, args) ++ ++#undef PSEUDO_END_ERRVAL ++#define PSEUDO_END_ERRVAL(name) \ ++ END (name) ++ ++#define ret_ERRVAL ret ++ ++#ifndef __PIC__ ++# define SYSCALL_ERROR_HANDLER \ ++ LDIMM (r1, C_SYMBOL_NAME(__syscall_error)) !\ ++ jmp r1 !\ ++ ++#else ++# if RTLD_PRIVATE_ERRNO ++# define SYSCALL_ERROR_HANDLER \ ++ neg r1,r0 !\ ++ mv r3,lr !\ ++ bl.s .+4 !\ ++ ld24 r2,#_GLOBAL_OFFSET_TABLE_ !\ ++ add r2,lr !\ ++ mv lr,r3 !\ ++ ld24 r0,#C_SYMBOL_NAME(rtld_errno@GOT) !\ ++ add r2,r0 !\ ++ ld r2,@r2 !\ ++ st r1,@r2 !\ ++ ldi r0,#-1 !\ ++ ret ++ ++# elif defined _LIBC_REENTRANT ++ ++# if USE___THREAD ++# ifndef NOT_IN_libc ++# define SYSCALL_ERROR_ERRNO __libc_errno@GOT ++# else ++# define SYSCALL_ERROR_ERRNO errno@GOT ++# endif ++# define SYSCALL_ERROR_HANDLER \ ++ neg r1,r0 !\ ++ mv r3,lr !\ ++ bl.s .+4 !\ ++ ld24 r2,#_GLOBAL_OFFSET_TABLE_ !\ ++ add r2,lr !\ ++ mv lr,r3 !\ ++ ld24 r0,#C_SYMBOL_NAME(SYSCALL_ERROR_ERRNO) !\ ++ add r2,r0 !\ ++ ld r2,@r2 !\ ++ st r1,@r2 !\ ++ ldi r0,#-1 !\ ++ ret ++ ++# else ++# define SYSCALL_ERROR_HANDLER \ ++ neg r1,r0 !\ ++ push r12 !\ ++ push lr !\ ++ push r1 !\ ++ bl.s .+4 !\ ++ ld24 r12,#_GLOBAL_OFFSET_TABLE_ !\ ++ add r12,lr !\ ++ ld24 r1,#C_SYMBOL_NAME(__errno_location@GOT) !\ ++ add r1,r12 !\ ++ ld r1,@r1 !\ ++ jl r1 !\ ++ pop r1 !\ ++ st r1,@r0 !\ ++ pop lr !\ ++ pop r12 !\ ++ ldi r0,#-1 !\ ++ ret !\ ++ ++# endif ++ ++# else ++/* Store (-r0) into errno through the GOT. */ ++# define SYSCALL_ERROR_HANDLER \ ++ neg r1,r0 !\ ++ mv r3,lr !\ ++ bl.s .+4 !\ ++ ld24 r2,#_GLOBAL_OFFSET_TABLE_ !\ ++ add r2,lr !\ ++ mv lr,r3 !\ ++ ld24 r0,#C_SYMBOL_NAME(errno@GOT) !\ ++ add r2,r0 !\ ++ ld r2,@r2 !\ ++ st r1,@r2 !\ ++ ldi r0,#-1 !\ ++ ret ++ ++# endif /* _LIBC_REENTRANT */ ++#endif /* __PIC__ */ ++ ++#define ret_ERRVAL ret ++ ++#else /* not __ASSEMBLER__ */ ++ ++#undef DO_CALL ++ ++#define SYSCALL_INST_STR "trap #2 || nop\n\t" ++ ++#define ASMFMT_0 \ ++ , "0" (r0) ++#define ASMFMT_1 \ ++ , "0" (r0) ++#define ASMFMT_2 \ ++ , "0" (r0), "r" (r1) ++#define ASMFMT_3 \ ++ , "0" (r0), "r" (r1), "r" (r2) ++#define ASMFMT_4 \ ++ , "0" (r0), "r" (r1), "r" (r2), "r" (r3) ++#define ASMFMT_5 \ ++ , "0" (r0), "r" (r1), "r" (r2), "r" (r3), "r" (r4) ++#define ASMFMT_6 \ ++ , "0" (r0), "r" (r1), "r" (r2), "r" (r3), "r" (r4), "r" (r5) ++#define ASMFMT_7 \ ++ , "0" (r0), "r" (r1), "r" (r2), "r" (r3), "r" (r4), "r" (r5), "r" (r6) ++ ++#define SUBSTITUTE_ARGS_0() \ ++ register long r0 asm ("r0") = 0 ++#define SUBSTITUTE_ARGS_1(arg1) \ ++ register long r0 asm ("r0") = (long)(arg1) ++#define SUBSTITUTE_ARGS_2(arg1, arg2) \ ++ register long r0 asm ("r0") = (long)(arg1); \ ++ register long r1 asm ("r1") = (long)(arg2) ++#define SUBSTITUTE_ARGS_3(arg1, arg2, arg3) \ ++ register long r0 asm ("r0") = (long)(arg1); \ ++ register long r1 asm ("r1") = (long)(arg2); \ ++ register long r2 asm ("r2") = (long)(arg3) ++#define SUBSTITUTE_ARGS_4(arg1, arg2, arg3, arg4) \ ++ register long r0 asm ("r0") = (long)(arg1); \ ++ register long r1 asm ("r1") = (long)(arg2); \ ++ register long r2 asm ("r2") = (long)(arg3); \ ++ register long r3 asm ("r3") = (long)(arg4) ++#define SUBSTITUTE_ARGS_5(arg1, arg2, arg3, arg4, arg5) \ ++ register long r0 asm ("r0") = (long)(arg1); \ ++ register long r1 asm ("r1") = (long)(arg2); \ ++ register long r2 asm ("r2") = (long)(arg3); \ ++ register long r3 asm ("r3") = (long)(arg4); \ ++ register long r4 asm ("r4") = (long)(arg5) ++#define SUBSTITUTE_ARGS_6(arg1, arg2, arg3, arg4, arg5, arg6) \ ++ register long r0 asm ("r0") = (long)(arg1); \ ++ register long r1 asm ("r1") = (long)(arg2); \ ++ register long r2 asm ("r2") = (long)(arg3); \ ++ register long r3 asm ("r3") = (long)(arg4); \ ++ register long r4 asm ("r4") = (long)(arg5); \ ++ register long r5 asm ("r5") = (long)(arg6) ++#define SUBSTITUTE_ARGS_7(arg1, arg2, arg3, arg4, arg5, arg6, arg7) \ ++ register long r0 asm ("r0") = (long)(arg1); \ ++ register long r1 asm ("r1") = (long)(arg2); \ ++ register long r2 asm ("r2") = (long)(arg3); \ ++ register long r3 asm ("r3") = (long)(arg4); \ ++ register long r4 asm ("r4") = (long)(arg5); \ ++ register long r5 asm ("r5") = (long)(arg6); \ ++ register long r6 asm ("r6") = (long)(arg7) ++ ++#undef INLINE_SYSCALL ++#define INLINE_SYSCALL(name, nr, args...) \ ++ ({ \ ++ unsigned int resultvar = INTERNAL_SYSCALL (name, , nr, args); \ ++ if (__builtin_expect (INTERNAL_SYSCALL_ERROR_P (resultvar, ), 0)) \ ++ { \ ++ __set_errno (INTERNAL_SYSCALL_ERRNO (resultvar, )); \ ++ resultvar = 0xffffffff; \ ++ } \ ++ (int) resultvar; }) ++ ++#undef INTERNAL_SYSCALL ++#define INTERNAL_SYSCALL(name, err, nr, args...) \ ++ ({ \ ++ register long r7 asm ("r7") = SYS_ify (name); \ ++ SUBSTITUTE_ARGS_##nr(args); \ ++ \ ++ asm volatile (SYSCALL_INST_STR "\n\t" \ ++ : "=r" (r0) \ ++ : "r" (r7) ASMFMT_##nr \ ++ : "memory"); \ ++ \ ++ (int) r0; }) ++ ++#undef INTERNAL_SYSCALL_DECL ++#define INTERNAL_SYSCALL_DECL(err) do { } while (0) ++ ++#undef INTERNAL_SYSCALL_ERROR_P ++#define INTERNAL_SYSCALL_ERROR_P(val, err) \ ++ ((unsigned int) (val) >= 0xfffff001u) ++ ++#undef INTERNAL_SYSCALL_ERRNO ++#define INTERNAL_SYSCALL_ERRNO(val, err) (-(val)) ++ ++#endif /* __ASSEMBLER__ */ ++ ++#endif /* linux/m32r/sysdep.h */ +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/vfork.S ports/sysdeps/unix/sysv/linux/m32r/vfork.S +--- ports/sysdeps/unix/sysv/linux/m32r/vfork.S 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/vfork.S 2006-03-02 11:43:35.000000000 +0900 +@@ -0,0 +1,48 @@ ++/* Copyright (C) 2003, 2004 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public License as ++ published by the Free Software Foundation; either version 2 of the ++ License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ ++ You should have received a copy of the GNU Library General Public ++ License along with the GNU C Library; see the file COPYING.LIB. If not, ++ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, ++ Boston, MA 02111-1307, USA. */ ++ ++#include ++#define _ERRNO_H 1 ++#include ++ ++/* Clone the calling process, but without copying the whole address space. ++ The calling process is suspended until the new process exits or is ++ replaced by a call to `execve'. Return -1 for errors, 0 to the new process, ++ and the process ID of the new process to the old process. */ ++ ++ENTRY (__vfork) ++ ++#ifdef __NR_vfork ++ ldi r7, #__NR_vfork ++ SYSCALL_INST ++ not r1, r0 ++ srai r1, #12 // r1=0 means r0 = -1 to -4095 ++ bnez r1, 1f // i.e. error in linux ++ ++#endif ++ ++ SYSCALL_ERROR_HANDLER ++ ++ .fillinsn ++1: ++ ret ++ ++PSEUDO_END (__vfork) ++libc_hidden_def(__vfork) ++ ++weak_alias (__vfork, vfork) +diff --exclude=CVS -upNr ports/sysdeps/unix/sysv/linux/m32r/xstat.c ports/sysdeps/unix/sysv/linux/m32r/xstat.c +--- ports/sysdeps/unix/sysv/linux/m32r/xstat.c 1970-01-01 09:00:00.000000000 +0900 ++++ ports/sysdeps/unix/sysv/linux/m32r/xstat.c 2005-10-31 17:17:34.000000000 +0900 +@@ -0,0 +1 @@ ++#include --- glibc-2.5.orig/debian/patches/m68k/local-mathinline_h.diff +++ glibc-2.5/debian/patches/m68k/local-mathinline_h.diff @@ -0,0 +1,51 @@ +Index: glibc-2.5/ports/sysdeps/m68k/fpu/bits/mathinline.h +=================================================================== +--- glibc-2.5.orig/ports/sysdeps/m68k/fpu/bits/mathinline.h ++++ glibc-2.5/ports/sysdeps/m68k/fpu/bits/mathinline.h +@@ -100,7 +100,7 @@ + /* Define a const math function. */ + #define __m81_defun(rettype, func, args) \ + __m81_inline rettype __attribute__((__const__)) \ +- __m81_u(func) args ++ __NTH(__m81_u(func) args) + + /* Define the three variants of a math function that has a direct + implementation in the m68k fpu. FUNC is the name for C (which will be +@@ -313,8 +313,8 @@ + } \ + \ + __m81_inline float_type \ +-__m81_u(__CONCAT(__fma,s))(float_type __x, float_type __y, \ +- float_type __z) \ ++__NTH(__m81_u(__CONCAT(__fma,s))(float_type __x, float_type __y, \ ++ float_type __z)) \ + { \ + return (__x * __y) + __z; \ + } +@@ -330,8 +330,8 @@ + + # define __inline_functions(float_type, s) \ + __m81_inline void \ +-__m81_u(__CONCAT(__sincos,s))(float_type __x, float_type *__sinx, \ +- float_type *__cosx) \ ++__NTH(__m81_u(__CONCAT(__sincos,s))(float_type __x, float_type *__sinx, \ ++ float_type *__cosx)) \ + { \ + __asm ("fsincos%.x %2,%1:%0" \ + : "=f" (*__sinx), "=f" (*__cosx) : "f" (__x)); \ +@@ -352,13 +352,13 @@ + NAME, to make token pasting work correctly with -traditional. */ + # define __inline_forward_c(rettype, name, args1, args2) \ + extern __inline rettype __attribute__((__const__)) \ +- name args1 \ ++ __NTH(name args1) \ + { \ + return __CONCAT(__,name) args2; \ + } + + # define __inline_forward(rettype, name, args1, args2) \ +-extern __inline rettype name args1 \ ++extern __inline rettype __NTH(name args1) \ + { \ + return __CONCAT(__,name) args2; \ + } --- glibc-2.5.orig/debian/patches/m68k/local-compat.diff +++ glibc-2.5/debian/patches/m68k/local-compat.diff @@ -0,0 +1,22 @@ +# DP: Fixes some old compatibility issues with m68k and lchown/chown + +--- ports/sysdeps/unix/sysv/linux/m68k/chown.c 2006-01-08 09:21:17.000000000 +0100 ++++ ports/sysdeps/unix/sysv/linux/m68k/chown.c 2006-06-01 11:36:57.000000000 +0200 +@@ -67,3 +67,8 @@ + } + libc_hidden_def (__chown) + weak_alias (__chown, chown) ++ ++#include ++#if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_2) ++compat_symbol (libc, __chown, chown, GLIBC_2_1); ++#endif +--- ports/sysdeps/unix/sysv/linux/m68k/lchown.c 2000-01-17 06:20:35.000000000 +0100 ++++ ports/sysdeps/unix/sysv/linux/m68k/lchown.c 2006-06-01 11:36:57.000000000 +0200 +@@ -1 +1,6 @@ + #include ++ ++#include ++#if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_2) ++compat_symbol (libc, __lchown, lchown, GLIBC_2_1); ++#endif --- glibc-2.5.orig/debian/patches/m68k/submitted-gcc34-seccomment.diff +++ glibc-2.5/debian/patches/m68k/submitted-gcc34-seccomment.diff @@ -0,0 +1,31 @@ +# DP: Description: Make glibc-2.3.5 compile with gcc-3.4/4.0 + binutils 2.16 +# on m68k fixed by adding #APP. +# DP: Related bugs: +# DP: Dpatch author: GOTO Masanori +# DP: Patch author: Andreas Schwab +# DP: Upstream status: Pending +# DP: Status Details: +# DP: Date: 2005-08-03 + +From: Andreas Schwab + +Index: include/libc-symbols.h +=================================================================== +--- include/libc-symbols.h.orig 2006-08-05 13:29:40.000000000 -0400 ++++ include/libc-symbols.h 2006-08-05 13:31:37.000000000 -0400 +@@ -232,12 +232,12 @@ + # define __make_section_unallocated(section_string) + # endif + +-/* Tacking on "\n\t#" to the section name makes gcc put it's bogus ++/* Tacking on "\n#APP\n\t#" to the section name makes gcc put it's bogus + section attributes on what looks like a comment to the assembler. */ + # ifdef HAVE_SECTION_QUOTES +-# define __sec_comment "\"\n\t#\"" ++# define __sec_comment "\"\n#APP\n\t#\"" + # else +-# define __sec_comment "\n\t#" ++# define __sec_comment "\n#APP\n\t#" + # endif + # define link_warning(symbol, msg) \ + __make_section_unallocated (".gnu.warning." #symbol) \ --- glibc-2.5.orig/debian/patches/m68k/local-dwarf2-buildfix.diff +++ glibc-2.5/debian/patches/m68k/local-dwarf2-buildfix.diff @@ -0,0 +1,34 @@ +# DP: Description: Adding empty m68k framestate.c not to build for dwarf2. +# DP: Related bugs: +# DP: Dpatch author: GOTO Masanori +# DP: Patch author: GOTO Masanori +# DP: Upstream status: Debian-Specific +# DP: Status Details: m68k uses sjlj exceptions, not dwarf2 unwind. +# DP: This patch adds empty framestate.c for m68k to avoid +# DP: dwarf2 build failure. +# DP: Date: 2003-07-19 (Update 2005-03-16 gotom) + +2005-03-16 GOTO Masanori + + * sysdeps/m68k/unwind-pe.c: Update to fix compilation failure. + +2003-07-19 GOTO Masanori + + * sysdeps/m68k/framestate.c: Add to fix compilation failure + with sjlj exception, suggested by Philip Blundell. + + +--- /dev/null 2003-01-13 18:16:28.000000000 +0900 ++++ sysdeps/m68k/framestate.c 2003-07-16 23:21:34.000000000 +0900 +@@ -0,0 +1,2 @@ ++ ++ +--- /dev/null 2004-12-05 06:07:48.000000000 +0000 ++++ sysdeps/m68k/unwind-pe.c 2005-03-14 05:14:16.000000000 +0000 +@@ -0,0 +1,6 @@ ++#include ++#include ++ ++#define _LIBC_DEFINITIONS ++#define NO_BASE_OF_ENCODED_VALUE ++#include "unwind-pe.h" --- glibc-2.5.orig/debian/patches/m68k/local-reloc.diff +++ glibc-2.5/debian/patches/m68k/local-reloc.diff @@ -0,0 +1,21 @@ +# DP: Description: binutils bug workaround +# DP: Related bugs: #263601: m68k: workaround for binutils problem +# DP: Dpatch author: Roman Zippel +# DP: Patch author: Richard Zidlicky +# DP: Upstream status: Debian-Specific +# DP: Status Details: Actual fix is to modify m68k binutils. +# DP: Date: 2004-08-09 + +Index: ports/sysdeps/m68k/dl-machine.h +=================================================================== +--- ports/sysdeps/m68k/dl-machine.h.orig ++++ ports/sysdeps/m68k/dl-machine.h +@@ -283,6 +283,8 @@ + Elf32_Addr *const reloc_addr = (void *) (l_addr + reloc->r_offset); + if (ELF32_R_TYPE (reloc->r_info) == R_68K_JMP_SLOT) + *reloc_addr += l_addr; ++ else if (ELF32_R_TYPE (reloc->r_info) == R_68K_NONE) ++ return; + else + _dl_reloc_bad_type (map, ELF32_R_TYPE (reloc->r_info), 1); + } --- glibc-2.5.orig/debian/patches/m68k/local-fpic.diff +++ glibc-2.5/debian/patches/m68k/local-fpic.diff @@ -0,0 +1,14 @@ +# DP: Make sure libc_nonshared.a is compiled with -fPIC on m68k + +Index: ports/sysdeps/m68k/Makefile +=================================================================== +--- ports/sysdeps/m68k/Makefile.orig ++++ ports/sysdeps/m68k/Makefile +@@ -36,3 +36,7 @@ + ifeq ($(subdir),elf) + CFLAGS-rtld.c += -Wno-uninitialized -Wno-unused + endif ++ ++# Build objects in libc_nonshared.a with -fPIC (instead of -fpic) to avoid ++# possible linkage problems. ++CFLAGS-.oS += -fPIC --- glibc-2.5.orig/debian/patches/m68k/cvs-m68k-update.diff +++ glibc-2.5/debian/patches/m68k/cvs-m68k-update.diff @@ -0,0 +1,449 @@ +diff -Nurd ports/ChangeLog.m68k ports/ChangeLog.m68k +--- ports/ChangeLog.m68k 2006-02-28 11:12:50.000000000 +0100 ++++ ports/ChangeLog.m68k 2007-02-10 13:35:42.000000000 +0100 +@@ -1,3 +1,30 @@ ++2006-11-28 Andreas Schwab ++ ++ * sysdeps/unix/sysv/linux/m68k/sysdep.h (DOARGS_6, _DOARGS_6) ++ (UNDOARGS_6): Define for 6-argument syscall stubs. ++ ++2006-10-03 Richard Sandiford ++ ++ * sysdeps/m68k/dl-trampoline.S (_dl_runtime_profile): Round up the ++ frame size to longword rather than word alignment. Add missing ++ initialization of lrv_a0 and restore a0 from it after calling ++ _dl_call_pltexit. Adjust the stack offsets of later data accordingly, ++ fixing a previously incorrect offset for the inregs parameter. ++ * sysdeps/m68k/fpu/feholdexcpt.c (feholdexcept): Add missing ++ libm_hidden_def. ++ * sysdeps/m68k/fpu/fesetround.c (fesetround): Add missing ++ libm_hidden_def. ++ * sysdeps/unix/sysv/linux/m68k/sysdep.h: Guard against multiple ++ inclusion. ++ * sysdeps/m68k/ldsodefs.h: New file. ++ * sysdeps/m68k/tst-audit.h: New file. ++ * sysdeps/m68k/wcpcpy.c: Likewise. ++ * sysdeps/m68k/wcpcpy_chk.c: Likewise. ++ * sysdeps/unix/sysv/linux/m68k/sys/ucontext.h (fpregset): Sync field ++ order with linux. ++ (ucontext): Sync field order with linux. ++ * sysdeps/unix/sysv/linux/m68k/bits/siginfo.h: New file. ++ + 2006-02-28 Roland McGrath + + * sysdeps/m68k/preconfigure: New file. +diff -Nurd ports/sysdeps/m68k/dl-trampoline.S ports/sysdeps/m68k/dl-trampoline.S +--- ports/sysdeps/m68k/dl-trampoline.S 2005-01-16 03:07:28.000000000 +0100 ++++ ports/sysdeps/m68k/dl-trampoline.S 2007-02-10 13:21:53.000000000 +0100 +@@ -79,14 +79,14 @@ + move.l %sp, %a2 + move.l %sp, %a0 + lea 28(%sp), %a1 +- | Round framesize up to even +- addq.l #1, %d1 +- lsr #1, %d1 +- sub.l %d1, %a0 ++ | Round framesize up to longword alignment ++ addq.l #3, %d1 ++ and.l #-3, %d1 + sub.l %d1, %a0 + move.l %a0, %sp ++ lsr.l #2,%d1 + jra 2f +-1: move.w (%a1)+, (%a0)+ ++1: move.l (%a1)+, (%a0)+ + 2: dbra %d1,1b + /* + %a2+24 return address +@@ -113,16 +113,18 @@ + %sp %a0 + */ + fmove.x %fp0, -(%sp) ++ move.l %a0, -(%sp) + move.l %d1, -(%sp) + move.l %d0, -(%sp) + pea (%sp) +- pea 20(%sp) +- move.l 40(%sp), -(%sp) +- move.l 40(%sp), -(%sp) ++ pea 28(%sp) ++ move.l 44(%sp), -(%sp) ++ move.l 44(%sp), -(%sp) + jbsr _dl_call_pltexit + lea 16(%sp), %sp + move.l (%sp)+, %d0 + move.l (%sp)+, %d1 ++ move.l (%sp)+, %a0 + fmove.x (%sp)+, %fp0 + lea 20(%sp), %sp + rts +diff -Nurd ports/sysdeps/m68k/fpu/feholdexcpt.c ports/sysdeps/m68k/fpu/feholdexcpt.c +--- ports/sysdeps/m68k/fpu/feholdexcpt.c 2001-07-06 06:55:55.000000000 +0200 ++++ ports/sysdeps/m68k/fpu/feholdexcpt.c 2007-02-10 13:15:01.000000000 +0100 +@@ -37,3 +37,4 @@ + + return 0; + } ++libm_hidden_def (feholdexcept); +diff -Nurd ports/sysdeps/m68k/fpu/fesetround.c ports/sysdeps/m68k/fpu/fesetround.c +--- ports/sysdeps/m68k/fpu/fesetround.c 2001-07-06 06:55:55.000000000 +0200 ++++ ports/sysdeps/m68k/fpu/fesetround.c 2007-02-10 13:13:37.000000000 +0100 +@@ -36,3 +36,4 @@ + + return 0; + } ++libm_hidden_def (fesetround); +diff -Nurd ports/sysdeps/m68k/ldsodefs.h ports/sysdeps/m68k/ldsodefs.h +--- ports/sysdeps/m68k/ldsodefs.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/m68k/ldsodefs.h 2007-02-10 13:26:21.000000000 +0100 +@@ -0,0 +1,43 @@ ++/* Run-time dynamic linker data structures for loaded ELF shared objects. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef __LDSODEFS_H ++ ++#include ++ ++struct La_m68k_regs; ++struct La_m68k_retval; ++ ++#define ARCH_PLTENTER_MEMBERS \ ++ Elf32_Addr (*m68k_gnu_pltenter) (Elf32_Sym *, unsigned int, \ ++ uintptr_t *, uintptr_t *, \ ++ const struct La_m68k_regs *, \ ++ unsigned int *, const char *name, \ ++ long int *framesizep); ++ ++#define ARCH_PLTEXIT_MEMBERS \ ++ unsigned int (*m68k_gnu_pltexit) (Elf32_Sym *, unsigned int, \ ++ uintptr_t *, uintptr_t *, \ ++ const struct La_m68k_regs *, \ ++ struct La_m68k_retval *, \ ++ const char *); ++ ++#include_next ++ ++#endif +diff -Nurd ports/sysdeps/m68k/setjmp.c ports/sysdeps/m68k/setjmp.c +--- ports/sysdeps/m68k/setjmp.c 2003-09-15 10:43:12.000000000 +0200 ++++ ports/sysdeps/m68k/setjmp.c 2007-02-10 13:16:22.000000000 +0100 +@@ -54,10 +54,14 @@ + asm volatile ("fmovem%.x %/fp0-%/fp7, %0" + : : "m" (env[0].__jmpbuf[0].__fpregs[0])); + #endif +- ++#if defined NOT_IN_libc && defined IS_IN_rtld ++ /* In ld.so we never save the signal mask. */ ++ return 0; ++#else + /* Save the signal mask if requested. */ + return __sigjmp_save (env, savemask); ++#endif + } + #if !defined BSD_SETJMP && !defined BSD__SETJMP +-hidden_def (__sigsetjmp) ++libc_hidden_def (__sigsetjmp) + #endif +diff -Nurd ports/sysdeps/m68k/tst-audit.h ports/sysdeps/m68k/tst-audit.h +--- ports/sysdeps/m68k/tst-audit.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/m68k/tst-audit.h 2007-02-10 13:26:18.000000000 +0100 +@@ -0,0 +1,25 @@ ++/* Definitions for testing PLT entry/exit auditing. m68k version. ++ Copyright (C) 2006 Free Software Foundation, Inc. ++ ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#define pltenter la_m68k_gnu_pltenter ++#define pltexit la_m68k_gnu_pltexit ++#define La_regs La_m68k_regs ++#define La_retval La_m68k_retval ++#define int_retval lrv_d0 +diff -Nurd ports/sysdeps/m68k/wcpcpy.c ports/sysdeps/m68k/wcpcpy.c +--- ports/sysdeps/m68k/wcpcpy.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/m68k/wcpcpy.c 2007-02-10 13:26:35.000000000 +0100 +@@ -0,0 +1,37 @@ ++/* Copyright (C) 1996, 1997, 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Ulrich Drepper , 1996. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* The generic version of this file assumes that __alignof__(wchar_t) == ++ sizeof (wchar_t). We therefore use this port-specific implementation ++ instead. */ ++#include ++ ++/* Copy SRC to DEST, returning the address of the terminating L'\0' in ++ DEST. */ ++wchar_t * ++__wcpcpy (wchar_t *dest, const wchar_t *src) ++{ ++ do ++ ; ++ while ((*dest++ = *src++)); ++ ++ return dest - 1; ++} ++ ++weak_alias (__wcpcpy, wcpcpy) +diff -Nurd ports/sysdeps/m68k/wcpcpy_chk.c ports/sysdeps/m68k/wcpcpy_chk.c +--- ports/sysdeps/m68k/wcpcpy_chk.c 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/m68k/wcpcpy_chk.c 2007-02-10 13:26:35.000000000 +0100 +@@ -0,0 +1,36 @@ ++/* Copyright (C) 1996, 1997, 2005, 2006 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ Contributed by Ulrich Drepper , 1996. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* The generic version of this file assumes that __alignof__(wchar_t) == ++ sizeof (wchar_t). We therefore use this port-specific implementation ++ instead. */ ++#include ++ ++/* Copy SRC to DEST, returning the address of the terminating L'\0' in ++ DEST. Check for overflows. */ ++wchar_t * ++__wcpcpy_chk (wchar_t *dest, const wchar_t *src, size_t destlen) ++{ ++ do ++ if (destlen-- == 0) ++ __chk_fail (); ++ while ((*dest++ = *src++)); ++ ++ return dest - 1; ++} +diff -Nurd ports/sysdeps/unix/sysv/linux/m68k/bits/ucontext.h ports/sysdeps/unix/sysv/linux/m68k/bits/ucontext.h +--- ports/sysdeps/unix/sysv/linux/m68k/bits/ucontext.h 1970-01-01 01:00:00.000000000 +0100 ++++ ports/sysdeps/unix/sysv/linux/m68k/bits/ucontext.h 2007-02-10 13:32:41.000000000 +0100 +@@ -0,0 +1,113 @@ ++/* Copyright (C) 1997, 1999, 2001 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++/* System V/m68k ABI compliant context switching support. */ ++ ++#ifndef _SYS_UCONTEXT_H ++#define _SYS_UCONTEXT_H 1 ++ ++#include ++#include ++ ++/* Type for general register. */ ++typedef int greg_t; ++ ++/* Number of general registers. */ ++#define NGREG 18 ++ ++/* Container for all general registers. */ ++typedef greg_t gregset_t[NGREG]; ++ ++/* Number of each register is the `gregset_t' array. */ ++enum ++{ ++ R_D0 = 0, ++#define R_D0 R_D0 ++ R_D1 = 1, ++#define R_D1 R_D1 ++ R_D2 = 2, ++#define R_D2 R_D2 ++ R_D3 = 3, ++#define R_D3 R_D3 ++ R_D4 = 4, ++#define R_D4 R_D4 ++ R_D5 = 5, ++#define R_D5 R_D5 ++ R_D6 = 6, ++#define R_D6 R_D6 ++ R_D7 = 7, ++#define R_D7 R_D7 ++ R_A0 = 8, ++#define R_A0 R_A0 ++ R_A1 = 9, ++#define R_A1 R_A1 ++ R_A2 = 10, ++#define R_A2 R_A2 ++ R_A3 = 11, ++#define R_A3 R_A3 ++ R_A4 = 12, ++#define R_A4 R_A4 ++ R_A5 = 13, ++#define R_A5 R_A5 ++ R_A6 = 14, ++#define R_A6 R_A6 ++ R_A7 = 15, ++#define R_A7 R_A7 ++ R_SP = 15, ++#define R_SP R_SP ++ R_PC = 16, ++#define R_PC R_PC ++ R_PS = 17 ++#define R_PS R_PS ++}; ++ ++/* Structure to describe FPU registers. */ ++typedef struct fpregset ++{ ++ int f_pcr; ++ int f_psr; ++ int f_fpiaddr; ++#ifdef __mcoldfire__ ++ int f_fpregs[8][2]; ++#else ++ int f_fpregs[8][3]; ++#endif ++} fpregset_t; ++ ++/* Context to describe whole processor state. */ ++typedef struct ++{ ++ int version; ++ gregset_t gregs; ++ fpregset_t fpregs; ++} mcontext_t; ++ ++#define MCONTEXT_VERSION 2 ++ ++/* Userlevel context. */ ++typedef struct ucontext ++{ ++ unsigned long uc_flags; ++ struct ucontext *uc_link; ++ stack_t uc_stack; ++ mcontext_t uc_mcontext; ++ unsigned long uc_filler[80]; ++ __sigset_t uc_sigmask; ++} ucontext_t; ++ ++#endif /* sys/ucontext.h */ +diff -Nurd ports/sysdeps/unix/sysv/linux/m68k/sys/ucontext.h ports/sysdeps/unix/sysv/linux/m68k/sys/ucontext.h +--- ports/sysdeps/unix/sysv/linux/m68k/sys/ucontext.h 2001-07-15 17:30:50.000000000 +0200 ++++ ports/sysdeps/unix/sysv/linux/m68k/sys/ucontext.h 2007-02-10 13:29:59.000000000 +0100 +@@ -79,10 +79,10 @@ + /* Structure to describe FPU registers. */ + typedef struct fpregset + { +- int f_fpregs[8][3]; + int f_pcr; + int f_psr; + int f_fpiaddr; ++ int f_fpregs[8][3]; + } fpregset_t; + + /* Context to describe whole processor state. */ +@@ -98,12 +98,12 @@ + /* Userlevel context. */ + typedef struct ucontext + { +- unsigned long int uc_flags; ++ unsigned long uc_flags; + struct ucontext *uc_link; +- __sigset_t uc_sigmask; + stack_t uc_stack; + mcontext_t uc_mcontext; +- long int uc_filler[174]; ++ unsigned long uc_filler[80]; ++ __sigset_t uc_sigmask; + } ucontext_t; + + #endif /* sys/ucontext.h */ +diff -Nurd ports/sysdeps/unix/sysv/linux/m68k/sysdep.h ports/sysdeps/unix/sysv/linux/m68k/sysdep.h +--- ports/sysdeps/unix/sysv/linux/m68k/sysdep.h 2004-10-04 22:59:37.000000000 +0200 ++++ ports/sysdeps/unix/sysv/linux/m68k/sysdep.h 2007-02-10 13:07:18.000000000 +0100 +@@ -18,6 +18,9 @@ + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + ++#ifndef _LINUX_M68K_SYSDEP_H ++#define _LINUX_M68K_SYSDEP_H 1 ++ + #include + #include + +@@ -192,6 +195,10 @@ + #define _DOARGS_5(n) move.l %d5, -(%sp); move.l n+4(%sp), %d5; _DOARGS_4 (n) + #define UNDOARGS_5 UNDOARGS_4; move.l (%sp)+, %d5 + ++#define DOARGS_6 _DOARGS_6 (24) ++#define _DOARGS_6(n) _DOARGS_5 (n-4); move.l %a0, -(%sp); move.l n+12(%sp), %a0; ++#define UNDOARGS_6 move.l (%sp)+, %a0; UNDOARGS_5 ++ + + #define ret rts + #if 0 /* Not used by Linux */ +@@ -293,3 +300,4 @@ + #define ASM_ARGS_6 ASM_ARGS_5, "a" (_a0) + + #endif /* not __ASSEMBLER__ */ ++#endif --- glibc-2.5.orig/debian/patches/m68k/local-pthread_lock.diff +++ glibc-2.5/debian/patches/m68k/local-pthread_lock.diff @@ -0,0 +1,22 @@ +Index: glibc-2.3.6/linuxthreads/sysdeps/m68k/pspinlock.c +=================================================================== +--- glibc-2.3.6/linuxthreads/sysdeps/m68k/pspinlock.c ++++ glibc-2.3.6/linuxthreads/sysdeps/m68k/pspinlock.c +@@ -25,7 +25,7 @@ + int + __pthread_spin_lock (pthread_spinlock_t *lock) + { +- unsigned int val; ++ unsigned char val; + + do + asm volatile ("tas %1; sne %0" +@@ -42,7 +42,7 @@ weak_alias (__pthread_spin_lock, pthread + int + __pthread_spin_trylock (pthread_spinlock_t *lock) + { +- unsigned int val; ++ unsigned char val; + + asm volatile ("tas %1; sne %0" + : "=dm" (val), "=m" (*lock) --- glibc-2.5.orig/debian/patches/mips/local-lazy-eval.diff +++ glibc-2.5/debian/patches/mips/local-lazy-eval.diff @@ -0,0 +1,36 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: Workaround invalid resolving of lazy evaluation stubs +# DP: Related bugs: #265678 +# DP: Dpatch author: Thiemo Seufer +# DP: Patch author: Thiemo Seufer +# DP: Upstream status: Debian-Specific +# DP: Status Details: The correct fix will be done to modify toolchains in etch. +# DP: Date: 2005-04-11, 2005-04-16 updated by gotom + +2005-04-16 GOTO Masanori + + * sysdeps/mips/dl-machine.h: Drop due to _dl_lookup_versioned_symbol + and _dl_lookup_symbol are changed into _dl_lookup_symbol_x. + +2005-04-11 Thiemo Seufer + + * first version. + +Index: elf/do-lookup.h +=================================================================== +--- elf/do-lookup.h.orig ++++ elf/do-lookup.h +@@ -240,6 +240,13 @@ + } + /* FALLTHROUGH */ + case STB_GLOBAL: ++#ifdef __mips__ ++ /* HACK: MIPS marks its lazy evaluation stubs with SHN_UNDEF ++ symbols, we skip them. */ ++ if (sym->st_shndx == SHN_UNDEF) ++ break; ++#endif ++ + /* Global definition. Just what we need. */ + result->s = sym; + result->m = (struct link_map *) map; --- glibc-2.5.orig/debian/patches/mips/cvs-ldsodefs_h.diff +++ glibc-2.5/debian/patches/mips/cvs-ldsodefs_h.diff @@ -0,0 +1,15 @@ +2007-01-08 Daniel Jacobowitz + + * sysdeps/mips/ldsodefs.h: Correct multiple inclusion guard. + +--- ports/sysdeps/mips/ldsodefs.h.orig 2007-04-20 01:07:43.000000000 +0200 ++++ ports/sysdeps/mips/ldsodefs.h 2007-04-20 01:07:55.000000000 +0200 +@@ -17,7 +17,7 @@ + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + +-#ifndef __LDSODEFS_H \ ++#ifndef __LDSODEFS_H + #define _MIPS_LDSODEFS_H 1 + + #include --- glibc-2.5.orig/debian/patches/mips/submitted-msq.diff +++ glibc-2.5/debian/patches/mips/submitted-msq.diff @@ -0,0 +1,49 @@ +# DP: Description: fix msqs on mips +# DP: Related bugs: 215273 +# DP: Author: Thiemo Seufer +# DP: Upstream status: Pending + +Index: ports/sysdeps/unix/sysv/linux/mips/bits/msq.h +=================================================================== +RCS file: /cvs/glibc/libc/ports/sysdeps/unix/sysv/linux/mips/bits/msq.h,v +retrieving revision 1.1 +diff -a -d -u -p -r1.1 msq.h +--- ports/sysdeps/unix/sysv/linux/mips/bits/msq.h 26 Aug 2002 01:49:55 -0000 1.1 ++++ ports/sysdeps/unix/sysv/linux/mips/bits/msq.h 7 Oct 2003 18:30:30 -0000 +@@ -38,16 +38,34 @@ typedef unsigned long int msglen_t; + struct msqid_ds + { + struct ipc_perm msg_perm; /* structure describing operation permission */ ++#if __WORDSIZE == 32 && defined (__MIPSEB__) ++ unsigned long int __unused1; ++#endif + __time_t msg_stime; /* time of last msgsnd command */ ++#if __WORDSIZE == 32 && defined (__MIPSEL__) ++ unsigned long int __unused1; ++#endif ++#if __WORDSIZE == 32 && defined (__MIPSEB__) ++ unsigned long int __unused2; ++#endif + __time_t msg_rtime; /* time of last msgrcv command */ ++#if __WORDSIZE == 32 && defined (__MIPSEL__) ++ unsigned long int __unused2; ++#endif ++#if __WORDSIZE == 32 && defined (__MIPSEB__) ++ unsigned long int __unused3; ++#endif + __time_t msg_ctime; /* time of last change */ ++#if __WORDSIZE == 32 && defined (__MIPSEL__) ++ unsigned long int __unused3; ++#endif + unsigned long int __msg_cbytes; /* current number of bytes on queue */ + msgqnum_t msg_qnum; /* number of messages currently on queue */ + msglen_t msg_qbytes; /* max number of bytes allowed on queue */ + __pid_t msg_lspid; /* pid of last msgsnd() */ + __pid_t msg_lrpid; /* pid of last msgrcv() */ +- unsigned long int __unused1; +- unsigned long int __unused2; ++ unsigned long int __unused4; ++ unsigned long int __unused5; + }; + + #ifdef __USE_MISC --- glibc-2.5.orig/debian/patches/powerpc/cvs-tls-debug.diff +++ glibc-2.5/debian/patches/powerpc/cvs-tls-debug.diff @@ -0,0 +1,15 @@ +2006-10-26 Pete Eberlein + + * nptl_db/db_info.c [TLS_DTV_AT_TP]: Fixed size init for dtvp + to sizeof a pointer, instead of sizeof the union. + + +--- glibc/nptl_db/db_info.c 2004-03-13 22:39:57.000000000 -0500 ++++ glibc-new/nptl_db/db_info.c 2006-10-20 19:29:34.000000000 -0400 +@@ -59,7 +59,7 @@ + i.e. at the very end of the area covered by TLS_PRE_TCB_SIZE. */ + DESC (_thread_db_pthread_dtvp, + TLS_PRE_TCB_SIZE + offsetof (tcbhead_t, dtv) +- - (TLS_TCB_SIZE == 0 ? sizeof (tcbhead_t) : 0), union dtv) ++ - (TLS_TCB_SIZE == 0 ? sizeof (tcbhead_t) : 0), union dtv*) + #endif --- glibc-2.5.orig/debian/patches/powerpc/local-sysconf.diff +++ glibc-2.5/debian/patches/powerpc/local-sysconf.diff @@ -0,0 +1,42 @@ +# DP: Add /proc/cpuinfo handling on Linux/PowerPC + +diff -urN glibc-2.2.4/sysdeps/unix/sysv/linux/powerpc/getsysstats.c glibc-2.2.4-ds/sysdeps/unix/sysv/linux/powerpc/getsysstats.c +--- glibc-2.2.4/sysdeps/unix/sysv/linux/powerpc/getsysstats.c Wed Dec 31 16:00:00 1969 ++++ glibc-2.2.4-ds/sysdeps/unix/sysv/linux/powerpc/getsysstats.c Wed Jan 2 05:01:46 2002 +@@ -0,0 +1,36 @@ ++/* Determine various system internal values, Linux/PowerPC version. ++ Copyright (C) 2001,2002 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++ ++/* We need to define a special parser for /proc/cpuinfo. */ ++#define GET_NPROCS_PARSER(FP, BUFFER, RESULT) \ ++ do \ ++ { \ ++ (RESULT) = 0; \ ++ /* Read all lines and count the lines starting with the string \ ++ "cpu model". We don't have to fear extremely long lines since \ ++ the kernel will not generate them. 8192 bytes are really \ ++ enough. */ \ ++ while (fgets_unlocked (BUFFER, sizeof (BUFFER), FP) != NULL) \ ++ if (strncmp (BUFFER, "cpu\t\t:", 6) == 0) \ ++ ++(RESULT); \ ++ } \ ++ while (0) ++ ++#include --- glibc-2.5.orig/debian/patches/series +++ glibc-2.5/debian/patches/series @@ -0,0 +1,160 @@ +#localedata/locale-de_CH.diff -p1 +#localedata/locale-eo_EO.diff -p0 +#localedata/locale-no_NO.diff -p0 +#localedata/locale-eu_FR.diff -p0 +#locale/iso3166-RS.diff +#localedata/locale-ku_TR.diff -p0 +locale/fix-exhausted-memory.diff -p0 +#locale/check-unknown-symbols.diff # locales have to be fixed first +#locale/fix-LC_COLLATE-rules.diff -p0 +#locale/preprocessor-collate.diff -p0 +#locale/LC_IDENTIFICATION-optional-fields.diff -p0 +#locale/LC_COLLATE-keywords-ordering.diff -p0 +#locale/locale-print-LANGUAGE.diff -p0 +locale/fix-C-first_weekday.diff -p0 +#localedata/tl_PH-yesexpr.diff +#localedata/fo_FO-date_fmt.diff +#localedata/locales_CH.diff +#localedata/locales-fr.diff +#localedata/locales_GB.diff -p0 +#localedata/supported.diff -p0 +#localedata/locale-sa_IN.diff -p0 +#localedata/locale-en_DK.diff -p0 +#localedata/locale-hy_AM.diff +#localedata/locale-pl_PL.diff -p0 +#localedata/locale-wo_SN.diff -p0 +#localedata/locale-csb_PL.diff +#localedata/dz_BT-collation.diff -p0 +#localedata/locale-ia.diff -p0 +#localedata/locale-zh_TW.diff -p0 +#localedata/new-valencian-locale.diff -p0 +#localedata/locale-se_NO.diff -p0 +#localedata/locales-sr.diff -p0 +#localedata/tailor-iso14651_t1.diff -p0 +#localedata/fix-lang.diff -p0 +#localedata/fix-unknown-symbols.diff -p0 +#localedata/first_weekday.diff -p0 +#localedata/sort-UTF8-first.diff -p0 +#localedata/local-all-no-archive.diff -p0 + +#alpha/submitted-pic.diff -p0 # g: suspended +#alpha/cvs-sigsuspend.diff -p1 +#alpha/local-gcc4.1.diff -p0 +#alpha/submitted-xstat.diff -p0 + +amd64/local-biarch.diff -p1 + +#arm/cvs-check_pf.c -p0 +#arm/cvs-gcc4-inline.diff -p0 +#arm/local-ioperm.diff -p0 +#arm/local-no-hwcap.diff -p0 + +hppa/cvs-hppa-update.diff -p0 +hppa/local-Rminkernel.diff -p0 +hppa/submitted-lt.diff -p0 +hppa/submitted-nptl-carlos.diff -p0 +hppa/local-inlining.diff -p0 +hppa/submitted-ustat.diff -p0 +hppa/submitted-nptl-carlos2.diff -p0 + +#hurd-i386/cvs-futimes.diff -p1 +#hurd-i386/cvs-getsid.diff -p0 +#hurd-i386/local-dl-dynamic-weak.diff -p1 +#hurd-i386/local-enable-ldconfig.diff -p0 +#hurd-i386/local-mlock.diff -p1 +#hurd-i386/local-msg-nosignal.diff -p0 +#hurd-i386/local-sigsuspend-nocancel.diff -p0 +#hurd-i386/local-tls.diff -p1 +#hurd-i386/submitted-ioctl-decode-argument.diff -p0 +#hurd-i386/submitted-libc_once.diff -p0 +#hurd-i386/submitted-stat.diff -p0 +#hurd-i386/submitted-sysvshm.diff -p1 +#hurd-i386/submitted-trivial.diff -p0 + +i386/local-biarch.diff -p1 +i386/local-cmov.diff -p0 +i386/submitted-i686-timing.diff -p0 + +#m68k/cvs-m68k-update.diff -p0 +#m68k/local-compat.diff -p0 +#m68k/local-dwarf2-buildfix.diff -p0 +#m68k/local-fpic.diff -p0 +#m68k/local-mathinline_h.diff -p1 +#m68k/local-reloc.diff -p0 +#m68k/local-pthread_lock.diff -p1 +#m68k/submitted-gcc34-seccomment.diff -p0 + +#mips/cvs-ldsodefs_h.diff -p0 +#mips/local-lazy-eval.diff -p0 +#mips/submitted-msq.diff -p0 + +powerpc/local-sysconf.diff -p1 + +sparc/local-fork.diff -p0 +sparc/local-sparcv8-target.diff -p0 +sparc/submitted-timing.diff -p1 +sparc/local-pthread-shlib.diff -p1 + +all/cvs-iconv-E13B.diff -p0 +#all/local-pthread-manpages.diff -p1 +#all/local-remove-manual.diff +#all/local-ru_RU.diff -p1 +#all/local-pt_BR.diff -p1 +#all/submitted-new-brf-encoding.diff -p0 + +any/cvs-2.5-branch-update.diff -p2 +any/cvs-pow.diff -p1 +any/cvs-printf_fp-c.diff -p1 +any/cvs-ftw-c.diff -p1 +any/cvs-bits_in_h-ipv6.diff -p1 +any/cvs-itoa-c.diff -p1 +any/cvs-lt-update.diff -p0 +any/cvs-realpath.diff -p1 +any/cvs-zdump-64-bit.diff -p1 +any/local-notls.diff -p0 +any/local-asserth-decls.diff -p0 +#any/local-base.diff -p0 # g: suspended +any/local-bashisms.diff -p0 +any/local-dl-execstack.diff -p0 +any/local-fhs-linux-paths.diff -p0 +any/local-forward-backward-collation.diff +any/local-gcc4-wcstol_l.diff -p1 +#any/local-globfree-clear.diff -p1 # g: suspended +any/local-iconv-fix-trampoline.diff -p1 +any/local-ld-multiarch.diff -p0 +any/local-ldd.diff -p0 +any/local-ldso-disable-hwcap.diff -p0 +any/local-ldconfig.diff -p0 +any/local-ldconfig-fsync.diff -p1 +any/local-ldconfig-timestamps.diff -p0 +any/local-libgcc-compat-main.diff -p0 +#any/local-libgcc-compat-ports.diff -p0 +any/local-linuxthreads-semaphore_h.diff -p1 +any/local-linuxthreads-tst-sighandler.diff -p1 +any/local-localedef-fix-trampoline.diff -p0 +any/local-makeconfig.diff -p0 +any/local-mktemp.diff -p0 +any/local-no-pagesize.diff -p1 +any/local-nss-upgrade.diff -p0 +any/local-rtld.diff -p0 +#any/local-sysctl.diff -p0 +any/local-stubs_h.diff -p1 +any/local-tcsetaddr.diff -p0 +any/local-version-sanity.diff -p0 +any/local-dynamic-resolvconf.diff -p0 +any/submitted-nis-netgrp.diff -p0 +any/submitted-getcwd-sys_param_h.diff -p0 +any/submitted-clock-settime.diff -p0 +any/submitted-date-and-unknown-tz.diff -p0 +any/submitted-gethostbyname_r.diff -p0 +any/submitted-iconv-colon.diff -p0 +any/submitted-strfry.diff -p0 +any/submitted-unistd_XOPEN_VERSION.diff +any/cvs-glob-c.diff +any/cvs-scanf_hexfloat.diff +any/local-disable-nscd-host-caching.diff +any/local-2.6.19-linux-libc-dev.diff -p0 + +# Ubuntu-specific patches. These are things that we don't expect to wind up +# in Debian. +ubuntu/local-altlocaledir.diff -p1 --- glibc-2.5.orig/debian/patches/series.kfreebsd-amd64 +++ glibc-2.5/debian/patches/series.kfreebsd-amd64 @@ -0,0 +1,8 @@ +kfreebsd/local-ftw.diff -p0 +kfreebsd/local-memusage_no_mremap.diff -p0 +kfreebsd/local-pthread_at_fork.diff -p0 +kfreebsd/local-readdir_r.diff -p0 +kfreebsd/local-scripts.diff -p0 +kfreebsd/local-sys_queue_h.diff -p0 +kfreebsd/local-sysdeps.diff -p0 +kfreebsd/local-undef-glibc.diff -p0 --- glibc-2.5.orig/debian/patches/series.kfreebsd-i386 +++ glibc-2.5/debian/patches/series.kfreebsd-i386 @@ -0,0 +1,8 @@ +kfreebsd/local-ftw.diff -p0 +kfreebsd/local-memusage_no_mremap.diff -p0 +kfreebsd/local-pthread_at_fork.diff -p0 +kfreebsd/local-readdir_r.diff -p0 +kfreebsd/local-scripts.diff -p0 +kfreebsd/local-sys_queue_h.diff -p0 +kfreebsd/local-sysdeps.diff -p0 +kfreebsd/local-undef-glibc.diff -p0 --- glibc-2.5.orig/debian/patches/sparc/local-sparcv8-target.diff +++ glibc-2.5/debian/patches/sparc/local-sparcv8-target.diff @@ -0,0 +1,38 @@ +# DP: Description: Optimizes the build for sparcv8 +# DP: Author: Ben Collins +# DP: Upstream status: Debian-Specific +# DP: Status Details: +# DP: Date: June 17, 2003 + +Index: configure +=================================================================== +--- configure.orig ++++ configure +@@ -1798,6 +1798,11 @@ + machine="powerpc" + fi + ++# Force v8 ++if test "$machine" = sparc; then ++ machine="sparcv8" ++fi ++ + # Braindead PowerPC box with absolutely no FPU. + case "$machine-$host_os" in + powerpc*-*soft) +Index: configure.in +=================================================================== +--- configure.in.orig ++++ configure.in +@@ -307,6 +307,11 @@ + machine="powerpc" + fi + ++# Force v8 ++if test "$machine" = sparc; then ++ machine="sparcv8" ++fi ++ + # Braindead PowerPC box with absolutely no FPU. + case "$machine-$host_os" in + powerpc*-*soft) --- glibc-2.5.orig/debian/patches/sparc/local-fork.diff +++ glibc-2.5/debian/patches/sparc/local-fork.diff @@ -0,0 +1,39 @@ +2006-05-28 Aurelien Jarno + + * sysdeps/unix/sysv/linux/sparc/fork.S: remove, so that fork.c is + used instead. + + +--- sysdeps/unix/sysv/linux/sparc/fork.S 2002-12-31 21:37:31.000000000 +0100 ++++ /dev/null 2006-05-24 08:39:47.042929312 +0200 +@@ -1,30 +0,0 @@ +-/* Copyright (C) 1997, 1999, 2002 Free Software Foundation, Inc. +- This file is part of the GNU C Library. +- Contributed by Miguel de Icaza , 1997. +- +- The GNU C Library is free software; you can redistribute it and/or +- modify it under the terms of the GNU Lesser General Public +- License as published by the Free Software Foundation; either +- version 2.1 of the License, or (at your option) any later version. +- +- The GNU C Library is distributed in the hope that it will be useful, +- but WITHOUT ANY WARRANTY; without even the implied warranty of +- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +- Lesser General Public License for more details. +- +- You should have received a copy of the GNU Lesser General Public +- License along with the GNU C Library; if not, write to the Free +- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA +- 02111-1307 USA. */ +- +-#include +- +-PSEUDO (__libc_fork, fork, 0) +- sub %o1, 1, %o1 +- retl +- and %o0, %o1, %o0 +-PSEUDO_END (__libc_fork) +- +-weak_alias (__libc_fork, __fork) +-libc_hidden_def (__fork) +-weak_alias (__libc_fork, fork) --- glibc-2.5.orig/debian/patches/sparc/local-pthread-shlib.diff +++ glibc-2.5/debian/patches/sparc/local-pthread-shlib.diff @@ -0,0 +1,29 @@ +[ Jeff, when people try to link 64-bit pthread applications on + sparc on Niagara or UltraSPARC-III boxes, they get link errors + because glibc doesn't set the symbol versions correctly in + libpthread.so in these cases... ] + +The bug here is an error in the regular expressions used +in linuxthreads/shlib-versions and nptl/shlib-versions + +They both use "sparc64-.*-linux.*" but it should be using +"sparc64.*-.*-linux.*" + +The other shlib-versions files in the glibc tree get this +right. + +Here is a patch against the current dapper glibc tree. + +- davem + +diff -Naurd glibc-2.5.orig/linuxthreads/shlib-versions glibc-2.5/linuxthreads/shlib-versions +--- glibc-2.5.orig/linuxthreads/shlib-versions 2002-09-05 12:14:32.000000000 +0200 ++++ glibc-2.5/linuxthreads/shlib-versions 2007-01-04 08:41:09.000000000 +0100 +@@ -1,6 +1,6 @@ + # Xavier Leroy's Linux clone based thread library. + mips.*-.*-linux.* libpthread=0 GLIBC_2.0 GLIBC_2.2 +-sparc64-.*-linux.* libpthread=0 GLIBC_2.2 ++sparc64.*-.*-linux.* libpthread=0 GLIBC_2.2 + sh.*-.*-linux.* libpthread=0 GLIBC_2.2 + ia64.*-.*-linux.* libpthread=0 GLIBC_2.2 + hppa.*-.*-linux.* libpthread=0 GLIBC_2.2 --- glibc-2.5.orig/debian/patches/sparc/submitted-timing.diff +++ glibc-2.5/debian/patches/sparc/submitted-timing.diff @@ -0,0 +1,48 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: sparc/sparcv9 libraries fix +# DP: Author: Daniel Jacobowitz , Jeff Bailey +# DP: Upstream status: Not Submitted +# DP: Status Details: +# DP: Date: 2003-12-31 + +2003-12-31 Jeff Bailey + + * sysdeps/sparc/hp-timing.h: New file. + +--- /dev/null 1969-12-31 19:00:00.000000000 -0500 ++++ glibc-2.3.2/sysdeps/sparc/sparc32/hp-timing.h 2003-10-03 11:50:30.000000000 -0400 +@@ -0,0 +1,34 @@ ++/* High precision, low overhead timing functions. i386 version. ++ Copyright (C) 2003 Free Software Foundation, Inc. ++ This file is part of the GNU C Library. ++ ++ The GNU C Library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ ++ The GNU C Library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ ++ You should have received a copy of the GNU Lesser General Public ++ License along with the GNU C Library; if not, write to the Free ++ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA ++ 02111-1307 USA. */ ++ ++#ifndef _SPARC_HP_TIMING_H ++#define _SPARC_HP_TIMING_H 1 ++ ++#define hp_timing_t hp_timing_t__ ++#include ++#undef hp_timing_t ++ ++/* We don't use high-precision timers, but we might load an sparcv9 libpthread ++ which does. */ ++#define HP_TIMING_PAD 1 ++ ++/* sparcv9 uses 64bit values for the times. */ ++typedef unsigned long long int hp_timing_t; ++ ++#endif /* hp-timing.h */ --- glibc-2.5.orig/debian/patches/ubuntu/README +++ glibc-2.5/debian/patches/ubuntu/README @@ -0,0 +1,3 @@ +Patches in this directory are hacks done for Ubuntu directly. These might +include things like splitting out langpacks or launchpad/rosetta integration. + --- glibc-2.5.orig/debian/patches/ubuntu/local-altlocaledir.diff +++ glibc-2.5/debian/patches/ubuntu/local-altlocaledir.diff @@ -0,0 +1,35 @@ +# All lines beginning with `# DP:' are a description of the patch. +# DP: Description: support alternative gettext tree in +# DP: /usr/share/locale-langpack +# DP: Dpatch author: Martin Pitt +# DP: Patch author: Martin Pitt +# DP: Upstream status: Ubuntu-Specific +# DP: Date: 2004-12-06 20:44:10 CET + +--- glibc-2.3.5.orig/intl/l10nflist.c ++++ glibc-2.3.5/intl/l10nflist.c +@@ -267,7 +267,7 @@ _nl_make_l10nflist (l10nfile_list, dirli + + retval = (struct loaded_l10nfile *) + malloc (sizeof (*retval) + (__argz_count (dirlist, dirlist_len) +- * (1 << pop (mask)) ++ * 2 * (1 << pop (mask)) + * sizeof (struct loaded_l10nfile *))); + if (retval == NULL) + return NULL; +@@ -310,6 +310,15 @@ _nl_make_l10nflist (l10nfile_list, dirli + language, territory, codeset, + normalized_codeset, modifier, filename, 1); + } ++ const char* langpack_dir = "/usr/share/locale-langpack"; ++ for (cnt = mask; cnt >= 0; --cnt) ++ if ((cnt & ~mask) == 0) ++ { ++ retval->successor[entries++] ++ = _nl_make_l10nflist (l10nfile_list, langpack_dir, strlen (langpack_dir) + 1, cnt, ++ language, territory, codeset, ++ normalized_codeset, modifier, filename, 1); ++ } + retval->successor[entries] = NULL; + + return retval; --- glibc-2.5.orig/debian/po/zh_CN.po +++ glibc-2.5/debian/po/zh_CN.po @@ -0,0 +1,118 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Hiei Xu , 2004. +# Carlos Z.F. Liu , 2004. +# +# +msgid "" +msgstr "" +"Project-Id-Version: glibc 2.3.2.ds1\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-02-05 05:41+0100\n" +"PO-Revision-Date: 2004-02-10 04:25+1300\n" +"Last-Translator: Hiei Xu \n" +"Language-Team: Chinese/Simplified \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +#, fuzzy +msgid "Locales to be generated:" +msgstr "请选择需要生成的区域设置(locale)。" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locale is a framework to switch between multiple languages for users who can " +"select to use their language, country, characters, collation order, etc." +msgstr "" +"区域设置(locale)是一种在多种语言之间切换的框架,用户可以通过它来设定自己的语" +"言、国家、字符集、字符串排序方式等。" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Choose which locales to generate. The selection will be saved to `/etc/" +"locale.gen', which you can also edit manually (you need to run `locale-gen' " +"afterwards)." +msgstr "" +"请选择需要生成的区域设置(locale)。选择结果将被保存在“/etc/locale.gen”,您可以" +"对其进行手工编辑(您需要在编辑结束后运行“locale-gen”)。" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"When `All locales' is selected, /etc/locale.gen will be set as a symlink to /" +"usr/share/i18n/SUPPORTED." +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"UTF-8 locales should be chosen by default. If you are a performing a new " +"installation, or are unsure which character set to use, UTF-8 is usually the " +"best choice. Other character sets are useful for backwards compatibility " +"with older systems and software." +msgstr "" + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "无" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +#, fuzzy +msgid "Default locale for the system environment:" +msgstr "哪个将作为系统环境默认的区域设置(locale)?" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for users. You can change the default locale if you're not a native English " +"speaker. These choices are based on which locales you have chosen to " +"generate." +msgstr "" +"Debian 里的很多软件包都使用区域设置(locale)来以正确的语言向用户显示文本。如果" +"您不是以英语为母语,也可以改变默认的区域设置(locale)。但您只能在要生成的区域" +"设置(locale)中选择其一。" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Note: This will select the language for your whole system. If you're running " +"a multi-user system where not all of your users speak the language of your " +"choice, then they will run into difficulties and you might want not to set a " +"default locale." +msgstr "" +"注意:这将会把整个系统都设置为这种语言。如果您运行的是一个多用户系统,而且并" +"不是系统内的所有用户都使用您选择的语言,那么他们将会遇到一些麻烦。或许您不想" +"设置一个默认的区域设置(locale)。" --- glibc-2.5.orig/debian/po/el.po +++ glibc-2.5/debian/po/el.po @@ -0,0 +1,124 @@ +# translation of el.po to Greek +# translation of templates.po to Greek +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# Konstantinos Margaritis , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: el\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-02-05 05:41+0100\n" +"PO-Revision-Date: 2004-01-21 22:44EEST\n" +"Last-Translator: Konstantinos Margaritis \n" +"Language-Team: Greek \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.0.2\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +#, fuzzy +msgid "Locales to be generated:" +msgstr "Επιλέξτε τα γλωσσικά περιβάλλοντα που θέλετε να δημιουργηθούν." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locale is a framework to switch between multiple languages for users who can " +"select to use their language, country, characters, collation order, etc." +msgstr "" +"Το γλωσσικό περιβάλλον (locale) είναι ένα πλαίσιο υποστήριξης εναλλαγής " +"πολλαπλών γλωσσών, ώστε οι χρήστες να μπορούν να χρησιμοποιούν τη γλώσσα " +"τους, με όλα τα συνεπακόλουθα, χαρακτήρες, νόμισμα, τοπικές ρυθμίσεις, κλπ." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Choose which locales to generate. The selection will be saved to `/etc/" +"locale.gen', which you can also edit manually (you need to run `locale-gen' " +"afterwards)." +msgstr "" +"Επιλέξτε ποια γλωσσικά περιβάλλοντα θέλετε να δημιουργηθούν. Η επιλογή θα " +"αποθηκευτεί στο αρχείο '/etc/locale.gen', το οποίο μπορείτε να " +"επεξεργαστείτε και χειροκίνητα (έπειτα θα πρέπει να εκτελέσετε την εντολή " +"'locale-gen')." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"When `All locales' is selected, /etc/locale.gen will be set as a symlink to /" +"usr/share/i18n/SUPPORTED." +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"UTF-8 locales should be chosen by default. If you are a performing a new " +"installation, or are unsure which character set to use, UTF-8 is usually the " +"best choice. Other character sets are useful for backwards compatibility " +"with older systems and software." +msgstr "" + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Κανένα" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +#, fuzzy +msgid "Default locale for the system environment:" +msgstr "Ποιο γλωσσικό περιβάλλον επιθυμείτε ως προκαθορισμένο για το σύστημα;" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for users. You can change the default locale if you're not a native English " +"speaker. These choices are based on which locales you have chosen to " +"generate." +msgstr "" +"Πολλά πακέτα στο Debiaν χρησιμοποιούν τη δυνατότητα των γλωσσικών " +"περιβάλλοντων για να εμφανίζουν κείμενο στην επιλεγμένη γλώσσα του κάθε " +"χρήστη. Μπορείτε να αλλάξετε το προκαθορισμένο γλωσσικό περιβάλλον αν η " +"Αγγλική δεν είναι η μητρική σας γλώσσα. Αυτές οι επιλογές βασίζονται στα " +"γλωσσικά περιβάλλοντα που επιλέξατε να δημιουργηθούν." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Note: This will select the language for your whole system. If you're running " +"a multi-user system where not all of your users speak the language of your " +"choice, then they will run into difficulties and you might want not to set a " +"default locale." +msgstr "" +"Σημείωση: Αυτή η επιλογή θα επιλέξει τη γλώσσα για ολόκληρο το σύστημά σας. " +"Αν έχετε ένα πολυχρηστικό σύστημα, στο οποίο οι χρήστες δε μιλούν όλοι την " +"γλώσσα που εσείς επιλέξατε, τότε πιθανόν να συναντήσουν δυσκολίες και για το " +"λόγο αυτό ίσως να μη πρέπει να ορίσετε ένα προκαθορισμένο γλωσσικό " +"περιβάλλον." --- glibc-2.5.orig/debian/po/POTFILES.in +++ glibc-2.5/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] debhelper.in/locales.templates --- glibc-2.5.orig/debian/po/fi.po +++ glibc-2.5/debian/po/fi.po @@ -0,0 +1,118 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: glibc\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-02-05 05:41+0100\n" +"PO-Revision-Date: 2005-04-09 01:47+0300\n" +"Last-Translator: Matti Pöllä \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +#, fuzzy +msgid "Locales to be generated:" +msgstr "Valitse muodostettavat lokaalit." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locale is a framework to switch between multiple languages for users who can " +"select to use their language, country, characters, collation order, etc." +msgstr "" +"Lokaalien avulla on mahdollista käyttää useita kieliä siten, että\n" +"käyttäjät voivat itse valita käyttämänsä kielen, maan, merkistön\n" +"jne. " + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Choose which locales to generate. The selection will be saved to `/etc/" +"locale.gen', which you can also edit manually (you need to run `locale-gen' " +"afterwards)." +msgstr "" +"Valitse lokaalit, jotka haluat muodostaa. Valinta talletetaan tiedostoon\n" +"\"/etc/locale.gen\", jota voit myös itse muokata. (Muokkaamisen jälkeen\n" +"tulee ajaa komento \"locale-gen\".)" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"When `All locales' is selected, /etc/locale.gen will be set as a symlink to /" +"usr/share/i18n/SUPPORTED." +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"UTF-8 locales should be chosen by default. If you are a performing a new " +"installation, or are unsure which character set to use, UTF-8 is usually the " +"best choice. Other character sets are useful for backwards compatibility " +"with older systems and software." +msgstr "" + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Ei mitään" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +#, fuzzy +msgid "Default locale for the system environment:" +msgstr "Minkä lokaalin tulisi olla järjestelmän oletus?" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for users. You can change the default locale if you're not a native English " +"speaker. These choices are based on which locales you have chosen to " +"generate." +msgstr "" +"Monet Debianin paketit käyttävät lokaaleja näyttämään käyttäjälle\n" +"tekstit oikealla kielellä. Voit muuttaa oletusarvoisen lokaalin, jos\n" +"et puhu suomea äidinkielenäsi. Nämä valinnat perustuvat lokaaleihin,\n" +"jotka valitsit muodostaa." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Note: This will select the language for your whole system. If you're running " +"a multi-user system where not all of your users speak the language of your " +"choice, then they will run into difficulties and you might want not to set a " +"default locale." +msgstr "" +"Huomaa: Tämä valitsee koko järjestelmän kielen. Jos kyseessä on monen\n" +"käyttäjän ympäristö, jossa kaikki käyttäjät eivät puhu valitsemaasi\n" +"kieltä, oletuskielen valitseminen ei ehkä ole järkevää." --- glibc-2.5.orig/debian/po/ca.po +++ glibc-2.5/debian/po/ca.po @@ -0,0 +1,106 @@ +# +# Catalan translations for glibc package. +# Copyright (C) 2007 GNU Libc Maintainers. +# This file is distributed under the same license as the glibc package. +# +# Jordi Mallach , 2002. +# Jordà Polo , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: 2.3.6.ds1-13\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-04-24 04:31+0200\n" +"PO-Revision-Date: 2007-04-24 23:39+0200\n" +"Last-Translator: Jordi Mallach \n" +"Language-Team: Català \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Tots els locales" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Locales a generar:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"Locales és un entorn que permet que els usuaris canviïn l'idioma, el país, " +"els caràcters, la classificació alfabètica, etc." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Si us plau, trieu els locales que vulgueu generar. Els locales UTF-8 haurien " +"de ser l'opció predeterminada, especialment en noves instal·lacions. Altres " +"jocs de caràcters us poden ser útils per motius de compatibilitat amb " +"sistemes i programari antic." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Cap" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Locale predeterminat del sistema:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"A Debian, molts paquets fan servir els locales per mostrar el text en " +"l'idioma dels usuaris. Podeu canviar el locale predeterminat del sistema " +"triant entre els locales generats." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Amb aquesta opció seleccioneu l'idioma predeterminat de tot el sistema. Si " +"aquest és un entorn multiusuari on no tothom parla la mateixa llengua, " +"alguns usuaris poden tindre dificultats." + +#~ msgid "" +#~ "Choose which locales to generate. The selection will be saved to `/etc/" +#~ "locale.gen', which you can also edit manually (you need to run `locale-" +#~ "gen' afterwards)." +#~ msgstr "" +#~ "Trieu els locales que vulgueu generar. La selecció es desarà al fitxer «/" +#~ "etc/locale.gen», que també podeu editar manualment (si ho feu, recordeu " +#~ "que cal executar «locale-gen» tot seguit)." + +#~ msgid "" +#~ "When `All locales' is selected, /etc/locale.gen will be set as a symlink " +#~ "to /usr/share/i18n/SUPPORTED." +#~ msgstr "" +#~ "Si seleccioneu «Tots els locales», s'establirà un enllaç simbòlic de /etc/" +#~ "locale.gen a /usr/share/i18n/SUPPORTED." --- glibc-2.5.orig/debian/po/ja.po +++ glibc-2.5/debian/po/ja.po @@ -0,0 +1,116 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: locales 2.3.6-1\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-02-05 05:41+0100\n" +"PO-Revision-Date: 2006-02-11 02:00+0900\n" +"Last-Translator: GOTO Masanori \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=EUC-JP\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr ":" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locale is a framework to switch between multiple languages for users who can " +"select to use their language, country, characters, collation order, etc." +msgstr "" +"ȤϡʣθĶ椫桼Ȥ졦̲ߵ桦ʸ" +"¤ؤʤɤؤ뤿λȤߤǤ" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Choose which locales to generate. The selection will be saved to `/etc/" +"locale.gen', which you can also edit manually (you need to run `locale-gen' " +"afterwards)." +msgstr "" +"ʥ򤷤뤳ȤǤޤ򤵤줿ξ" +"ե `/etc/locale.gen' ¸ޤΥեԽѹ" +"ȤǤޤѹϡ`locale-gen'ޥɤ¹ԤƤ" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"When `All locales' is selected, /etc/locale.gen will be set as a symlink to /" +"usr/share/i18n/SUPPORTED." +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"UTF-8 locales should be chosen by default. If you are a performing a new " +"installation, or are unsure which character set to use, UTF-8 is usually the " +"best choice. Other character sets are useful for backwards compatibility " +"with older systems and software." +msgstr "" + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "ʤ" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "ƥɸδĶѿȤꤹǥեȥ:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for users. You can change the default locale if you're not a native English " +"speaker. These choices are based on which locales you have chosen to " +"generate." +msgstr "" +"͡ʸʸϤɽ뤿ᡢDebian Ǥ¿Υѥå" +"ѤޤѸʳθɸǻѤϡΥǤʤ" +"Ѹѹ뤳ȤǤޤ" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Note: This will select the language for your whole system. If you're running " +"a multi-user system where not all of your users speak the language of your " +"choice, then they will run into difficulties and you might want not to set a " +"default locale." +msgstr "" +": ϥƥΤˤĤơɸθѹƤޤޤ⤷" +"ΥƥʣѼԤΤʤ顢ˤϤʤɤ" +"ͤ뤫⤷ޤ󡣤ξˤϥƥѤˤʤäƤޤޤ" +"顢餯ǥեȤΥꤷʤޤޤˤƤɤǤ" +"" --- glibc-2.5.orig/debian/po/cs.po +++ glibc-2.5/debian/po/cs.po @@ -0,0 +1,109 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: glibc\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-11 19:22+0200\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Všechny locales" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Locales, které se mají vygenerovat:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"Locales je systém pro přepínání mezi různými jazyky. Uživatelé si pak mohou " +"zvolit svůj jazyk, zemi, znaky, způsob porovnávání, atd." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Vyberte, které locales se mají vygenerovat. Přednostně byste měli vybírat " +"locales v kódování UTF-8 (obzvláště u nových instalací). Ostatní znakové " +"sady jsou užitečné pro zpětnou kompatibilitu se staršími systémy a programy." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Žádné" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Výchozí locale pro tento systém:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"Mnoho balíků v Debianu používá locales k zobrazení textu ve správném jazyce. " +"Z vygenerovaných locales si můžete vybrat to, které bude v systému použito " +"jako výchozí." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Tímto vyberete výchozí jazyk pro celý systém. Pokud se na počítač " +"přihlašují i uživatelé nemluvící vybraným jazykem, zaznamenají jisté problémy." + +#~ msgid "" +#~ "Choose which locales to generate. The selection will be saved to `/etc/" +#~ "locale.gen', which you can also edit manually (you need to run `locale-" +#~ "gen' afterwards)." +#~ msgstr "" +#~ "Vyberte, které locales se mají vygenerovat. Vaše volba se zaznamená do " +#~ "souboru '/etc/locale.gen', který můžete upravovat i ručně (pak ale musíte " +#~ "spustit 'locale-gen')." + +#~ msgid "" +#~ "When `All locales' is selected, /etc/locale.gen will be set as a symlink " +#~ "to /usr/share/i18n/SUPPORTED." +#~ msgstr "" +#~ "Vyberete-li 'Všechny locales', ze souboru /etc/locale.gen se stane " +#~ "symbolický odkaz na /usr/share/i18n/SUPPORTED." --- glibc-2.5.orig/debian/po/sv.po +++ glibc-2.5/debian/po/sv.po @@ -0,0 +1,87 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# Developers do not need to manually edit POT or PO files. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: glibc 2.3.6-1\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-10 15:00+0100\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Alla lokalanpassningar" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Vlj lokalanpassningar att generera:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales are a framework to switch between multiple languages and allow users to use their language, country, characters, collation order, etc." +msgstr "Lokalanpassning (locale) r ett ramverk fr att vxla mellan flera sprk fr att lta anvndare anvnda sitt sprk, land, tecken och sorteringsordning, etc." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Please choose which locales to generate. UTF-8 locales should be chosen by default, particularly for new installations. Other character sets may be useful for backwards compatibility with older systems and software." +msgstr "Vlj vilka lokalanpassningar som ska genereras. UTF-8-lokaler br vljas som standard, speciellt fr nya installationer. Andra teckenuppsttningar kan vara anvndbara fr baktkompatibilitet med ldre system och programvara." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Ingen" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Vlj lokalanpassning som ska vara standard i systemet:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Many packages in Debian use locales to display text in the correct language for the user. You can choose a default locale for the system from the generated locales." +msgstr "Mnga paket i Debian anvnder lokalanpassningar fr att visa text i det korrekta sprket fr anvndaren. Du kan vlja en standardlokal fr systemet frn de genererade lokalerna." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "This will select the default language for the entire system. If this system is a multi-user system where not all users are able to speak the default language, they will experience difficulties." +msgstr "Detta kommer att vlja standardsprket fr hela systemet. Om du kr ett system med flera anvndare dr inte alla talar det valda sprket, kan de f problem." + +#~ msgid "" +#~ "Choose which locales to generate. The selection will be saved to `/etc/" +#~ "locale.gen', which you can also edit manually (you need to run `locale-" +#~ "gen' afterwards)." +#~ msgstr "" +#~ "Vlj vilka lokalanpassningar som ska genereras. Valet kommer att sparas " +#~ "i \"/etc/locale.gen\" som du ocks kan redigera manuellt (du behver kra " +#~ "\"locale-gen\" eftert)." +#~ msgid "" +#~ "When `All locales' is selected, /etc/locale.gen will be set as a symlink " +#~ "to /usr/share/i18n/SUPPORTED." +#~ msgstr "" +#~ "Nr \"Alla lokaler\" vljs, kommer /etc/locale.gen att stlla in som en " +#~ "symbolisk lnk till /usr/share/i18n/SUPPORTED." + --- glibc-2.5.orig/debian/po/da.po +++ glibc-2.5/debian/po/da.po @@ -0,0 +1,117 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: glibc-2.3.2.ds1\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-02-05 05:41+0100\n" +"PO-Revision-Date: 2006-02-20 21:33+0200\n" +"Last-Translator: Morten Brix Pedersen \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Alle lokalitetsfiler" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Lokalitetsfiler der skal genereres:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locale is a framework to switch between multiple languages for users who can " +"select to use their language, country, characters, collation order, etc." +msgstr "" +"Lokalitetsfilerne er lavet så du kan skifte imellem forskellige sprog til " +"til dit Debian system." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Choose which locales to generate. The selection will be saved to `/etc/" +"locale.gen', which you can also edit manually (you need to run `locale-gen' " +"afterwards)." +msgstr "" +"Vælg hvilke lokaliteter der skal genereres. Dine valg vil blive gemt til '/" +"etc/locale.gen', som du også kan redigere manuelt (du skal køre 'locale-gen' " +"bagefter." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"When `All locales' is selected, /etc/locale.gen will be set as a symlink to /" +"usr/share/i18n/SUPPORTED." +msgstr "" +"Når 'Alle lokalitetsfiler' er valgt, vil /etc/locale.gen blive oprettet som " +"en symbolsk henvisning til /usr/share/i18n/SUPPORTED." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"UTF-8 locales should be chosen by default. If you are a performing a new " +"installation, or are unsure which character set to use, UTF-8 is usually the " +"best choice. Other character sets are useful for backwards compatibility " +"with older systems and software." +msgstr "" + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Ingen" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Standard lokalitet til systemmiljøet:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for users. You can change the default locale if you're not a native English " +"speaker. These choices are based on which locales you have chosen to " +"generate." +msgstr "" +"Mange pakker i Debian bruger lokaliteter til at vise tekst i det korrekt " +"sprog til brugerne. Du kan ændre standard-lokaliteten hvis engelsk ikke er " +"dit modersmåls sprog. Dine valg er baseret på hvilke lokalitetsfiler du " +"valgte at generere." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Note: This will select the language for your whole system. If you're running " +"a multi-user system where not all of your users speak the language of your " +"choice, then they will run into difficulties and you might want not to set a " +"default locale." +msgstr "" +"Bemærk: Dette vil sætte sproget for hele systemet. Hvis ikke alle brugerne " +"på dit system kan forstå det sprog som du vælger, kan de løbe ind i " +"problemer." --- glibc-2.5.orig/debian/po/de.po +++ glibc-2.5/debian/po/de.po @@ -0,0 +1,104 @@ +# Translation of glibc debconf templates to German +# Copyright (C) Helge Kreutzmann , 2006, 2007. +# This file is distributed under the same license as the glibc package. +# +msgid "" +msgstr "" +"Project-Id-Version: glibc 2.5-0exp6\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-09 19:38+0200\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: de \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Alle Standorteinstellungen" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Zu generierende Standorteinstellungen (locales):" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"Standorteinstellungen ist ein System, um zwischen verschiedenen Sprachen " +"umzuschalten. Benutzer knnen damit ihre Sprache, ihr Land, ihren " +"Zeichensatz, Ihre Sortierreihenfolge und anderes mehr festlegen." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Bitte whlen Sie aus, welche Standorteinstellungen generiert werden sollen. " +"UTF-8-Standorteinstellungen sollten standardmig ausgewhlt werden, " +"insbesondere fr neue Installationen. Andere Zeichenstze knnten fr " +"Rckkompatibilitt mit lteren Systemen und Software ntzlich sein." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Keine" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Standard-Standorteinstellung fr die Systemumgebung?" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"Viele Debian-Pakete benutzen Standorteinstellungen, um Text in der fr die " +"Benutzer korrekten Sprache anzuzeigen. Sie knnen aus den generierten " +"Standorteinstellungen einen Standard fr Ihr System auswhlen." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Bemerkung: Dies whlt die Standardsprache fr das gesamte System. Falls dies " +"ein Mehrbenutzer-System ist und nicht alle Benutzer die Standardsprache " +"sprechen, dann werden diese in Schwierigkeiten geraten." + +#~ msgid "" +#~ "Choose which locales to generate. The selection will be saved to `/etc/" +#~ "locale.gen', which you can also edit manually (you need to run `locale-" +#~ "gen' afterwards)." +#~ msgstr "" +#~ "Sie knnen hier Standorteinstellungen auswhlen, die jetzt generiert " +#~ "werden sollen. Diese Einstellung wird in /etc/locale-gen gespeichert. " +#~ "Sie knnen diese Datei auch manuell ndern. Starten Sie nach der nderung " +#~ "locale-gen." + +#~ msgid "" +#~ "When `All locales' is selected, /etc/locale.gen will be set as a symlink " +#~ "to /usr/share/i18n/SUPPORTED." +#~ msgstr "" +#~ "Wenn Alle Standorteinstellungen gewhlt ist, wird /etc/locale.gen als " +#~ "Symlink auf /usr/share/i18n/SUPPORTED eingerichtet." --- glibc-2.5.orig/debian/po/ru.po +++ glibc-2.5/debian/po/ru.po @@ -0,0 +1,105 @@ +# translation of glibc_2.3.6-15_debconf_ru.po to Russian +# This file is distributed under the same license as the PACKAGE package. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER. +# Yuri Kozlov , 2006. +# Sergey Alyoshin , 2007. +# + +msgid "" +msgstr "" +"Project-Id-Version: glibc_2.5-0exp6_ru\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-09 10:02+0300\n" +"Last-Translator: Sergey Alyoshin \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.9.1\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Все локали" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Локали, которые будут созданы:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"Локаль -- это инфраструктура для поддержки в системе нескольких языков; " +"она позволяет пользователю настроить язык сообщений, страну, алфавит, " +"порядок сортировки и т.п." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Пожалуйста выберите создаваемые локали. Локаль UTF-8 должна быть выбрана по " +"умолчанию, особенно при новой инсталляции. Другие кодировки локали могут быть " +"полезны для обратной совместимости со старыми системами и программами." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Нет" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Локаль по умолчанию в системном окружении:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"Многие пакеты в Debian используют локали для отображения сообщений на языке " +"пользователя. Вы можете выбрать системную локаль по умолчанию из созданных." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Эта настройка устанавливает язык по умолчанию для всей системы. Если это " +"многопользовательская система, где не все пользователи говорят на " +"выбранном языке по умолчанию, то у них возникнут трудности." + +#~ msgid "" +#~ "Choose which locales to generate. The selection will be saved to `/etc/" +#~ "locale.gen', which you can also edit manually (you need to run `locale-" +#~ "gen' afterwards)." +#~ msgstr "" +#~ "Выберите локали, которые нужно сгенерировать. Выбор будет сохранён в " +#~ "файле `/etc/locale.gen', который вы можете редактировать вручную (после " +#~ "редактирования нужно запустить `locale-gen')." + +#~ msgid "" +#~ "When `All locales' is selected, /etc/locale.gen will be set as a symlink " +#~ "to /usr/share/i18n/SUPPORTED." +#~ msgstr "" +#~ "Если выбрано `Все локали', то будет создана символическая ссылка /etc/" +#~ "locale.gen, указывающая на /usr/share/i18n/SUPPORTED." --- glibc-2.5.orig/debian/po/tr.po +++ glibc-2.5/debian/po/tr.po @@ -0,0 +1,97 @@ +# Turkish translation of locales. +# This file is distributed under the same license as the locales package. +# Erçin EKER , 2004,2007. +# +msgid "" +msgstr "" +"Project-Id-Version: locales\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-09 11:02+0300\n" +"Last-Translator: Erçin EKER \n" +"Language-Team: Türkçe \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Tüm yereller" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Oluşturulacak yereller: " + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"Yerel (locale), kullanıcıların kullanmak istediği dil, ülke, karakter, " +"sıralama şekli gibi dile özgü ayarlar arasında kolayca geçiş yapmasını " +"sağlayan bir yapıdır." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Lütfen hangi yerellerin oluşturulacağını seçin. Yeni kurulum için UTF-8 " +"yereller öntanımlı olarak seçilecektir. Diğer karakter setleri daha eski " +"sistemler ve yazılımlar ile uyumluluk için yararlı olabilir." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Hiçbiri" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Sistem için öntanımlı yerel:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"Çoğu Debian paketi mesajları göstermekte kullanacağı dili belirlemek için " +"yerelleri kullanır. Oluşturulmak üzere seçtikleriniz arasından sistem için " +"öntanımlı bir yerel seçebilirsiniz." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Bu ayar, sisteminizin bütününde kullanılacak dili belirleyecektir. Eğer " +"farklı dilleri konuşan kullanıcıların da bulunduğu çok kullanıcılı bir " +"sistem çalıştırıyorsanız, bu kullanıcılar bazı zorluklarla karşılaşabilir. " + + +#~ msgid "" +#~ "Choose which locales to generate. The selection will be saved to `/etc/" +#~ "locale.gen', which you can also edit manually (you need to run `locale-" +#~ "gen' afterwards)." +#~ msgstr "" +#~ "Oluşturulacak yerelleri seçiniz. Yapılan seçim '/etc/locale.gen' dosyası " +#~ "içinde saklanacaktır. Daha sonra bu dosyayı elle değiştirebilirsiniz " +#~ "(bunu yaptıktan sonra `locale-gen' komutunu çalıştırmanız gerekecektir)." --- glibc-2.5.orig/debian/po/pt.po +++ glibc-2.5/debian/po/pt.po @@ -0,0 +1,88 @@ +# Portuguese translation of glibc's debconf messages. +# Copyright (C) 2007 +# This file is distributed under the same license as the glibc package. +# Ricardo Silva , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: glibc\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-08 23:51+0100\n" +"Last-Translator: Ricardo Silva \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Todos os locales" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Locales a serem gerados:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"Locales é uma framework para alternar entre várias línguas e permitir aos " +"utilizadores usar a sua língua, país, caracteres, etc." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Por favor escolha quais os locales a gerar. Deve escolher os locales UTF-8 " +"por omissão, especialmente em instalações de raiz. Outros conjuntos de " +"caracteres podem ser úteis para compatibilidade com sistemas e software " +"antigo." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Nenhum" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Locale por omissão para o ambiente do sistema:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"Muitos pacotes na Debian usam locales para mostrar texto na língua correcta " +"do utilizador. Pode escolher, de entre os locales gerados, o locale por " +"omissão do sistema." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Isto irá escolher a língua por omissão para todo o sistema. Se este é um " +"sistema multi-utilizador em que nem todos os utilizadores são capazes de " +"a falar, eles irão ter dificuldades." + --- glibc-2.5.orig/debian/po/templates.pot +++ glibc-2.5/debian/po/templates.pot @@ -0,0 +1,96 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-02-05 05:41+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locale is a framework to switch between multiple languages for users who can " +"select to use their language, country, characters, collation order, etc." +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Choose which locales to generate. The selection will be saved to `/etc/" +"locale.gen', which you can also edit manually (you need to run `locale-gen' " +"afterwards)." +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"When `All locales' is selected, /etc/locale.gen will be set as a symlink to /" +"usr/share/i18n/SUPPORTED." +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"UTF-8 locales should be chosen by default. If you are a performing a new " +"installation, or are unsure which character set to use, UTF-8 is usually the " +"best choice. Other character sets are useful for backwards compatibility " +"with older systems and software." +msgstr "" + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for users. You can change the default locale if you're not a native English " +"speaker. These choices are based on which locales you have chosen to " +"generate." +msgstr "" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Note: This will select the language for your whole system. If you're running " +"a multi-user system where not all of your users speak the language of your " +"choice, then they will run into difficulties and you might want not to set a " +"default locale." +msgstr "" --- glibc-2.5.orig/debian/po/lt.po +++ glibc-2.5/debian/po/lt.po @@ -0,0 +1,111 @@ +# translation of glibc_2.3.6-15_templates.po to Lithuanian +# Copyright (C) 2006 The Free Software Foundation +# This file is distributed under the same license as the glibc package. +# +# Gintautas Miliauskas , 2006. +msgid "" +msgstr "" +"Project-Id-Version: glibc_2.3.6-15_templates\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-02-05 05:41+0100\n" +"PO-Revision-Date: 2006-06-19 01:26+0300\n" +"Last-Translator: Gintautas Miliauskas \n" +"Language-Team: Lithuanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.2\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" +"100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Visos lokalės" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Lokalės, kurios bus sugeneruotos:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locale is a framework to switch between multiple languages for users who can " +"select to use their language, country, characters, collation order, etc." +msgstr "" +"Lokalė yra karkasas, kuriuo naudotojai gali nustatyti savo kalbą, " +"informaciją apie savo šalį, simbolius, valiutą, rikiavimo tvarką, etc." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Choose which locales to generate. The selection will be saved to `/etc/" +"locale.gen', which you can also edit manually (you need to run `locale-gen' " +"afterwards)." +msgstr "" +"Pasirinkite, kurias lokales norite generuoti. Pasirinkimas bus išsaugotas " +"faile „/etc/locale.gen“, kurį taip pat galite redaguoti rankiniu būdu (po to " +"reikės paleisti „locale-gen“)." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"When `All locales' is selected, /etc/locale.gen will be set as a symlink to /" +"usr/share/i18n/SUPPORTED." +msgstr "" +"Jei pasirinktas variantas „Visos lokalės“, /etc/locale.gen bus simbolinė " +"nuoroda į /usr/share/i18n/SUPPORTED." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"UTF-8 locales should be chosen by default. If you are a performing a new " +"installation, or are unsure which character set to use, UTF-8 is usually the " +"best choice. Other character sets are useful for backwards compatibility " +"with older systems and software." +msgstr "" + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Jokia" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Sistemos lokalė pagal nutylėjimą" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for users. You can change the default locale if you're not a native English " +"speaker. These choices are based on which locales you have chosen to " +"generate." +msgstr "" +"Daug Debian paketų naudoja lokales tekstui reikiama kalba rodyti. Galite " +"pakeisti standartinę lokalę, jei anglų kalba jums nėra gimtoji. Galite " +"pasirinkti iš lokalių, kurias nusprendėte sugeneruoti." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Note: This will select the language for your whole system. If you're running " +"a multi-user system where not all of your users speak the language of your " +"choice, then they will run into difficulties and you might want not to set a " +"default locale." +msgstr "" +"Pastaba: bus nustatyta kalba visai sistemai. Jei sistemą naudoja keletas " +"naudotojų ir ne visi kalba pasirinkta kalba, gali kilti nepatogumų, todėl " +"tokiu atveju geriau nenustatinėti sistemos lokalės." --- glibc-2.5.orig/debian/po/es.po +++ glibc-2.5/debian/po/es.po @@ -0,0 +1,102 @@ +# glibc debconf translation to spanish +# Copyright (C) 2003, 2006, 2007 Software in the Public Interest +# This file is distributed under the same license as the glibc package. +# +# Changes: +# - Initial translation +# Carlos Valdivia Yagüe , 2003, 2006, 2007 +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: glibc 2.5-0exp6\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-09 14:30+0200\n" +"Last-Translator: Carlos Valdivia Yagüe \n" +"Language-Team: Debian L10n Spanish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Todos los «locales»" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Seleccione los «locales» que desea generar:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"Los «locales» son un sistema para cambiar entre varios idiomas y permite a " +"los usuarios utilizar su idioma, país, juego de caracteres, ordenación " +"alfanumérica, etc." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Por favor, elija qué «locales» desea generar. Se recomiendan los «locales» " +"UTF-8, especialmente para instalaciones nuevas. Otros juegos de caracteres " +"pueden resultar útiles por compatibilidad con sistemas y software antiguo." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Ninguno" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "¿Cuál quiere que sea el «locale» predeterminado del sistema?" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"Muchos paquetes en Debian utilizan «locales» para mostrar el texto en el " +"idioma de los usuarios. Puede elegir la opción predeterminada de entre " +"los «locales» que ha generado." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Esto seleccionará el idioma predeterminado de todo el sistema. Si se trata " +"de un sistema con varios usuarios en el que no todos hablan el idioma " +"elegido, pueden tener problemas." --- glibc-2.5.orig/debian/po/uk.po +++ glibc-2.5/debian/po/uk.po @@ -0,0 +1,122 @@ +# translation of uk.po to Ukrainian +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +# Eugeniy Meshcheryakov , 2004, 2006. +msgid "" +msgstr "" +"Project-Id-Version: uk\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-02-05 05:41+0100\n" +"PO-Revision-Date: 2006-02-21 10:12+0200\n" +"Last-Translator: Eugeniy Meshcheryakov \n" +"Language-Team: Ukrainian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.2\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Всі локалі" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Локалі які потрібно згенерувати:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locale is a framework to switch between multiple languages for users who can " +"select to use their language, country, characters, collation order, etc." +msgstr "" +"Локаль -- це механізм, що дозволяє перемикатися між кількома мовами для " +"користувачів, які можуть використовувати свою мову, країну, символи порядок " +"сортування і т.п." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Choose which locales to generate. The selection will be saved to `/etc/" +"locale.gen', which you can also edit manually (you need to run `locale-gen' " +"afterwards)." +msgstr "" +"Вкажіть, які локалі потрібно створити. Ваш вибір буде збережений у файлі \"/" +"etc/locale.gen\", який ви також можете редагувати вручну (після цього " +"потрібно запускати \"locale-gen\")." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"When `All locales' is selected, /etc/locale.gen will be set as a symlink to /" +"usr/share/i18n/SUPPORTED." +msgstr "" +"Коли обрано „Всі локалі“, /etc/locale.gen буде символьним посиланням на /usr/" +"share/i18n/SUPPORTED." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"UTF-8 locales should be chosen by default. If you are a performing a new " +"installation, or are unsure which character set to use, UTF-8 is usually the " +"best choice. Other character sets are useful for backwards compatibility " +"with older systems and software." +msgstr "" + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Не встановлювати" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Локаль за замовчанням в системному оточенні:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for users. You can change the default locale if you're not a native English " +"speaker. These choices are based on which locales you have chosen to " +"generate." +msgstr "" +"В Debian багато пакунків використовують локалі для відображення тексту на " +"вибраній користувачем мові. Якщо ваша рідна мова не англійська, то ви можете " +"змінити локаль за замовчанням. Список складений із локалей які ви вирішили " +"згенерувати." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Note: This will select the language for your whole system. If you're running " +"a multi-user system where not all of your users speak the language of your " +"choice, then they will run into difficulties and you might want not to set a " +"default locale." +msgstr "" +"Примітка: цей пункт вибирає мову для всієї системи. Якщо в вашій системі " +"працюють декілька користувачів, які не розмовляють мовою, яку ви вибрали, то " +"вони можуть зіткнутися із труднощами, і тому, можливо, вам краще не " +"встановлювати локаль за замовчанням." --- glibc-2.5.orig/debian/po/vi.po +++ glibc-2.5/debian/po/vi.po @@ -0,0 +1,110 @@ +# Vietnamese Translation for glibc. +# Copyright © 2005-2006 Free Software Foundation, Inc. +# Clytie Siddall , 2005-2006. +# +msgid "" +msgstr "" +"Project-Id-Version: glibc 2.3.2.ds1-22\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-02-05 05:41+0100\n" +"PO-Revision-Date: 2006-01-27 21:41+1030\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" +"X-Generator: LocFactoryEditor 1.6b34\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Những miền địa phương cần tạo ra." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locale is a framework to switch between multiple languages for users who can " +"select to use their language, country, characters, collation order, etc." +msgstr "" +"Miền địa phương (locale) là một khuôn khổ để chuyển đổi giữa nhiều ngôn ngữ " +"khác nhau, để cho phép người dùng chọn dùng ngôn ngữ, quốc gia, ký tự, thứ " +"tự sắp xếp v.v. của mình." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Choose which locales to generate. The selection will be saved to `/etc/" +"locale.gen', which you can also edit manually (you need to run `locale-gen' " +"afterwards)." +msgstr "" +"Hãy chọn những miền địa phương nào cần tạo ra. Lựa chọn này sẽ được lưu vào " +"tập tin , mà bạn cũng có thể tự sửa đổi (miễn là bạn chạy " +"lệnh « locale-gen » sau đó)." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"When `All locales' is selected, /etc/locale.gen will be set as a symlink to /" +"usr/share/i18n/SUPPORTED." +msgstr "" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"UTF-8 locales should be chosen by default. If you are a performing a new " +"installation, or are unsure which character set to use, UTF-8 is usually the " +"best choice. Other character sets are useful for backwards compatibility " +"with older systems and software." +msgstr "" + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Không có" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Miền địa phương mặc định cho môi trường hệ thống:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for users. You can change the default locale if you're not a native English " +"speaker. These choices are based on which locales you have chosen to " +"generate." +msgstr "" +"Nhiều gói tin trong Debian dùng miền địa phương để hiển thị chữ bằng ngôn " +"ngữ đúng cho người dùng. Bạn có thể thay đổi miền địa phương mặc định, nếu " +"bạn không phải muốn dùng tiếng Anh. Những tùy chọn này đựa vào những miền " +"địa phương do bạn chọn." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Note: This will select the language for your whole system. If you're running " +"a multi-user system where not all of your users speak the language of your " +"choice, then they will run into difficulties and you might want not to set a " +"default locale." +msgstr "" +"Ghi chú : hành động này sẽ chọn ngôn ngữ cho toàn hệ thống. Nếu bạn đang " +"chạy một hệ thông đa người dùng mà không phải mọi người dùng nói cùng ngôn " +"ngữ bạn muốn chọn ở đây, họ sẽ gặp khó khăn, vậy có lẽ bạn không muốn đặt " +"một miền địa phương mặc định." --- glibc-2.5.orig/debian/po/it.po +++ glibc-2.5/debian/po/it.po @@ -0,0 +1,88 @@ +# Italian (it) translation of debconf templates for glibc +# Copyright (C) 2006 Free Software Foundation, Inc. +# This file is distributed under the same license as the glibc package. +# Luca Monducci , 2005-2007. +# +msgid "" +msgstr "" +"Project-Id-Version: glibc 2.5.0exp6 debconf templates\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-14 10:21+0200\n" +"Last-Translator: Luca Monducci \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Tutti i locale" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "«Locale» da generare:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"I «Locale» sono l'infrastruttura che permette di cambiare la lingua e " +"consente agli utenti di utilizzare la propria lingua, paese, caratteri, " +"criteri di ordinamento, ecc." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Scegliere quali «locale» generare. I «locale» UTF-8 dovrebbero essere già " +"prescelti, in particolare sulle nuove installazioni. Gli altri set di " +"caratteri potrebbero essere utili per risolvere problemi di compatibilità " +"all'indietro con sistemi o programmi più vecchi." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Nessuno" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "«Locale» predefinito sul sistema:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"Molti pacchetti Debian usano i «locale» per mostrare messaggi nella lingua " +"dell'utente. È possibile scegliere, fra quelli generati, un «locale» come " +"predefinito per il sistema." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Questo imposta la lingua predefinita per l'intero sistema. Se questo è un " +"sistema multi-utente e non tutti gli utenti parlano la lingua predefinita " +"alcuni di essi potrebbero avere delle difficoltà." --- glibc-2.5.orig/debian/po/pl.po +++ glibc-2.5/debian/po/pl.po @@ -0,0 +1,109 @@ +# +msgid "" +msgstr "" +"Project-Id-Version: debconf-glibc-locales-pl\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-02-05 05:41+0100\n" +"PO-Revision-Date: 2006-02-21 00:39+0100\n" +"Last-Translator: Emilian Nowak \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Wszystkie dostępne" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Wybierz ustawienia lokalne, które chcesz wygenerować:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locale is a framework to switch between multiple languages for users who can " +"select to use their language, country, characters, collation order, etc." +msgstr "" +"Wybierane tutaj ustawienia lokalne stanowią podstawową strukturę dającą " +"możliwość pracy systemu w specyficznym dla danego kraju środowisku (język, " +"zestaw znaków, kolejność sortowania itp.)" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Choose which locales to generate. The selection will be saved to `/etc/" +"locale.gen', which you can also edit manually (you need to run `locale-gen' " +"afterwards)." +msgstr "" +"Wybierz, który zestaw ustawień lokalnych chcesz wygenerować. Twój wybór " +"zostanie zapisany do pliku `/etc/locale.gen', który można później edytować " +"dowolnym edytorem tekstu (w tym przypadku konieczne będzie późniejsze " +"uruchomienie 'locale-gen')." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"When `All locales' is selected, /etc/locale.gen will be set as a symlink to /" +"usr/share/i18n/SUPPORTED." +msgstr "" +"Po wybraniu `Wszystkie dostępne', plik /etc/locale.gen będzie dowiązaniem " +"symbolicznym do/usr/share/i18n/SUPPORTED." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"UTF-8 locales should be chosen by default. If you are a performing a new " +"installation, or are unsure which character set to use, UTF-8 is usually the " +"best choice. Other character sets are useful for backwards compatibility " +"with older systems and software." +msgstr "" + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Brak" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Wybierz domyślne ustawienia lokalne, dla swojego systemu:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for users. You can change the default locale if you're not a native English " +"speaker. These choices are based on which locales you have chosen to " +"generate." +msgstr "" +"Wiele programów dostarczanych w pakietach Debiana wykorzystuje ustawienia " +"lokalne, aby wyświetlać tekst we właściwym dla użytkownika języku. Możesz " +"zmienić domyślne ustawienia lokalne jeżeli nie chcesz posługiwać się " +"językiem angielskim. Można wybrać tylko te ustawienia lokalne, które " +"wcześniej zostały wygenerowane." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Note: This will select the language for your whole system. If you're running " +"a multi-user system where not all of your users speak the language of your " +"choice, then they will run into difficulties and you might want not to set a " +"default locale." +msgstr "" +"Zwróć uwagę na to, że wybrany tutaj język ma wpływ na na cały system i " +"większość działających w nim programów. Jeżeli z tego systemu korzysta " +"więcej użytkowników posłujących się różnymi językami najlepiej będzie " +"pozostawić domyślne (angielskie) ustawiania lokalne." --- glibc-2.5.orig/debian/po/fr.po +++ glibc-2.5/debian/po/fr.po @@ -0,0 +1,101 @@ +# translation of fr.po to French +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +# Denis Barbier 2001-2006. +# Christian Perrier , 2007. +msgid "" +msgstr "" +"Project-Id-Version: glibc\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-09 00:18+0200\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Tous les choix possibles" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Jeux de paramètres régionaux à créer :" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"Les jeux de paramètres régionaux (aussi appelés « locales ») permettent de " +"gérer des langues multiples et offrent aux utilisateurs la possibilité de " +"choisir la langue, le pays, le jeu de caractères, l'ordre de tri, etc." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Veuillez choisir les paramètres régionaux à créer. Des paramètres régionaux " +"utilisant l'encodage UTF-8 devraient être le choix par défaut, notamment " +"pour de nouvelles installations. Les autres jeux de caractères peuvent être " +"utiles pour conserver la compatibilité avec d'anciens systèmes ou logiciels." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Aucun" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Jeu de paramètres régionaux actif par défaut :" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"De nombreux paquets utilisent le mécanisme de localisation pour afficher les " +"messages destinés aux utilisateurs dans la langue adéquate. Vous pouvez " +"changer la valeur par défaut de l'ensemble du système pour utiliser un des " +"jeux de paramètres régionaux qui seront créés." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Veuillez noter que cette valeur fixera la langue utilisée par le système. Si " +"l'environnement est multi-utilisateurs et que certains utilisateurs ne " +"parlent pas votre langue, ils risquent d'avoir des difficultés." --- glibc-2.5.orig/debian/po/nl.po +++ glibc-2.5/debian/po/nl.po @@ -0,0 +1,89 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: glibc\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-09 16:21+0100\n" +"Last-Translator: Bart Cornelis \n" +"Language-Team: debian-l10n-dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Dutch\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Alle lokalisaties" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Te genereren lokalisaties:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales are a framework to switch between multiple languages and allow users to use their language, country, characters, collation order, etc." +msgstr "Lokalisatie is het raamwerk om om te schakelen tussen verschillende talen en laat gebruikers toe om hun eigen taal, land, karakterset, enzovoort te gebruiken." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Please choose which locales to generate. UTF-8 locales should be chosen by default, particularly for new installations. Other character sets may be useful for backwards compatibility with older systems and software." +msgstr "Welke lokalisaties wilt u laten genereren? Standaard kiest u, zeker voor nieuwe installaties, best UTF-8 lokalisaties. Andere karaktersets kunnen nuttig zijn voor compatibiliteit met oudere systemen of software." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Geen" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Standaardlokalisatie voor dit systeem:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Many packages in Debian use locales to display text in the correct language for the user. You can choose a default locale for the system from the generated locales." +msgstr "Veel Debian-pakketten gebruiken lokalisaties om de tekst in de voor de gebruiker juiste taal weer te geven. U kunt u de standaardlokalisatie voor het systeem kiezen uit de gegeneerde lokalisaties." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "This will select the default language for the entire system. If this system is a multi-user system where not all users are able to speak the default language, they will experience difficulties." +msgstr "Dit bepaalt de standaardtaal voor het volledige systeem. Op systemen met meerdere gebruikers kunt u problemen krijgen als niet alle gebruikers de gekozen taal spreken; in dat geval kunt u misschien beter de standaardlokalisatie niet veranderen." + +#~ msgid "" +#~ "Choose which locales to generate. The selection will be saved to `/etc/" +#~ "locale.gen', which you can also edit manually (you need to run `locale-" +#~ "gen' afterwards)." +#~ msgstr "" +#~ "Kies de te genereren localisaties. Uw keuze wordt opgeslagen in `/etc/" +#~ "locale.gen', dit bestand kunt u handmatig aanpassen (vergeet niet dat u " +#~ "na elke aanpassing `locale-gen' dient uit te voeren)." +#~ msgid "" +#~ "When `All locales' is selected, /etc/locale.gen will be set as a symlink " +#~ "to /usr/share/i18n/SUPPORTED." +#~ msgstr "" +#~ "Wanneer 'Alle Localisaties' geselecteerd is, dan wordt /etc/locale.gen " +#~ "een symbolische link naar /usr/share/i18n/SUPPORTED." + --- glibc-2.5.orig/debian/po/gl.po +++ glibc-2.5/debian/po/gl.po @@ -0,0 +1,103 @@ +# Galician translation of glibc's templates +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the glibc package. +# Jacobo Tarrio , 2006, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: glibc\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-09 14:06+0200\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Todas as configuracións locais" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Configuracións locais a xerar:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"O sistema de configuracións locais permite ter varios idiomas, e que os " +"usuarios poidan empregar o seu idioma, país, alfabeto, orde alfabética, etc." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Escolla as configuracións locais a xerar. Debería escoller configuracións " +"locais UTF-8 por defecto, especialmente en instalacións novas. Os outros " +"xogos de caracteres poden ser útiles para a compatibilidade con sistemas e " +"software antigos." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Ningunha" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Configuración local por defecto para o ambiente:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"Moitos paquetes de Debian empregan configuracións locais para amosar texto " +"aos usuarios no idioma correcto. Pode escoller unha configuración local por " +"defecto para o sistema entre as configuracións locais xeradas." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Con isto hase escoller o idioma de todo o sistema. Se este sistema ten " +"varios usuarios e non todos coñecen o idioma por defecto, han ter " +"dificultades." + +#~ msgid "" +#~ "Choose which locales to generate. The selection will be saved to `/etc/" +#~ "locale.gen', which you can also edit manually (you need to run `locale-" +#~ "gen' afterwards)." +#~ msgstr "" +#~ "Escolla as configuracións locais que quere xerar. As súas eleccións hanse " +#~ "gravar no ficheiro \"/etc/locale.gen\", que tamén pode editar a man (ha " +#~ "ter que executar \"locale-gen\" despois)." + +#~ msgid "" +#~ "When `All locales' is selected, /etc/locale.gen will be set as a symlink " +#~ "to /usr/share/i18n/SUPPORTED." +#~ msgstr "" +#~ "Ao escoller \"Todas as configuracións locais\" hase estabrecer /etc/" +#~ "locale.gen coma unha ligazón simbólica a /usr/share/i18n/SUPPORTED." --- glibc-2.5.orig/debian/po/ko.po +++ glibc-2.5/debian/po/ko.po @@ -0,0 +1,88 @@ +# Korean translations for glibc package +# glibc 패키지에 대한 한국어 번역문. +# Copyright (C) 2007 THE glibc'S COPYRIGHT HOLDER +# This file is distributed under the same license as the glibc package. +# Sunjae Park , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: glibc\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-09 00:18-0400\n" +"Last-Translator: Sunjae Park \n" +"Language-Team: Korean \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "모든 로케일" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "생성할 로케일 목록:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"로케일이란 여러 언어 중에서 선택하여 사용자들이 자신의 언어, 국가, 문자, 정렬" +"순서 등을 사용할 수 있도록 해주는 구성틀입니다." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"생성하고자 하는 로케일을 선택하여 주십시오. 기본적으로는 UTF-8 로케일을 선택" +"하시고, 특히 새로 설치하는 시스템에서는 더더욱 이를 선택하십시오. 기존 시스템" +"이나 소프트웨어와의 역호환성을 위해서는 다른 문제셋을 선택하셔도 됩니다." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "없음" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "시스템 환경의 기본 로케일:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"데비안에 있는 많은 꾸러미들은 사용자에게 맞는 언어로 출력하기 위해 로케일을 " +"사용합니다. 생성된 로케일 중에서 시스템의 기본 로케일로 사용할 로케일을 " +"선택하실 수 있습니다." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"이 선택은 시스템 전체의 기본 언어를 결정합니다. 기본 언어를 사용할 수 없는 " +"사용자도 있는 복수 사용자 시스템일 경우에는 그 사용자들이 시스템 사용에 " +"어려움을 겪으실 수 있습니다." --- glibc-2.5.orig/debian/po/pt_BR.po +++ glibc-2.5/debian/po/pt_BR.po @@ -0,0 +1,104 @@ +# Brazilian Portuguese translation (glibc) +# Copyright (C) 2007 THE glibc'S COPYRIGHT HOLDER +# This file is distributed under the same license as the glibc package. +# Felipe Augusto van de Wiel (faw) , 2007. +# +msgid "" +msgstr "pt_BR utf-8\n" +"Project-Id-Version: libc6\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-09 00:14-0300\n" +"Last-Translator: Felipe Augusto van de Wiel (faw) \n" +"Language-Team: l10n portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Todos os \"locales\"" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "\"Locales\" a serem gerados:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"Locales são uma infra-estrutura para alternar entre múltiplos idiomas e " +"permite aos usuários utilizar o seu idioma, país, caracteres, ordem de " +"colação, etc." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Por favor, escolha quais locales serão gerados. Locales UTF-8 deveriam ser " +"escolhidos por padrão, particularmente para novas instalações. Outros " +"conjuntos de caracteres podem ser úteis para compatibilidade com sistemas " +"e softwares antigos." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Nenhum" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Locale padrão para o ambiente do sistema:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"Muitos pacotes no Debian usam locales para exibir texto aos usuários no " +"idioma correto. Você pode escolher um locale padrão para o sistema a partir " +"dos locales gerados." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Isto selecionará o idioma padrão para o sistema inteiro. Se este sistema é " +"um sistema multiusuário no qual nem todos os usuários são capazes de falar o " +"idioma padrão, eles vão enfrentar dificuldades." + +#~ msgid "" +#~ "Choose which locales to generate. The selection will be saved to `/etc/" +#~ "locale.gen', which you can also edit manually (you need to run `locale-" +#~ "gen' afterwards)." +#~ msgstr "" +#~ "Escolha quais locales gerar. Sua escolha será gravada no arquivo `/etc/" +#~ "locale.gen', o qual você também pode editar manualmente (nesse caso, você " +#~ "precisará excutar `locale-gen' após a edição manual)." + +#~ msgid "" +#~ "When `All locales' is selected, /etc/locale.gen will be set as a symlink " +#~ "to /usr/share/i18n/SUPPORTED." +#~ msgstr "" +#~ "Quando `Todos os \"locales\"' for selecionado, /etc/locale.gen será " +#~ "configurado como uma ligação simbólica para /usr/share/i18n/SUPPORTED." --- glibc-2.5.orig/debian/po/ro.po +++ glibc-2.5/debian/po/ro.po @@ -0,0 +1,87 @@ +# translation of po-debconf://kdebase.po to romanian +# Romanian translation of glibc. +# Copyright (C) 2006 THE glibc'S COPYRIGHT HOLDER +# This file is distributed under the same license as the glibc package. +# +# Stan Ioan-Eugen , 2006. +# stan ioan-eugen , 2007. +msgid "" +msgstr "" +"Project-Id-Version: po-debconf://kdebase\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-09 08:59+0300\n" +"Last-Translator: stan ioan-eugen \n" +"Language-Team: romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Toate localele" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Localele ce vor fi generate:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"Locale este un cadru de lucru pentru utilizatori, care le permite acestora " +"să schimbe între mai multe limbi pentru a folosi propria lor limbă, ţară, " +"caractere, formatare a datei, etc." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "Trebuie să alegeţi ce locale se generează. Localele UTF-8 ar trebui alese implicit, în special pentru instalări noi. Din motive de compatibilitate cu soft sau sisteme mai vechi, puteţi alege să se genereze şi alte seturi de caractere." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Nici una" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Locale implicite pentru sistem:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"Multe pachete din Debian folosesc locale pentru a afişa text în limba " +"corectă pentru utilizatori. Puteţi alege o valoarea pentru locale, implicită pentru sistem, din localele generate." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Această opţiune va stabili limba pentru tot sistemul. Dacă aveţi un " +"sistem multi-utilizator unde nu toţi utilizatorii vorbesc limba aleasă, " +"atunci ei vor întâmpina dificultăţi." + --- glibc-2.5.orig/debian/po/eu.po +++ glibc-2.5/debian/po/eu.po @@ -0,0 +1,105 @@ +# translation of eu.po to librezale +# Piarres Beobide , 2006. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +msgid "" +msgstr "" +"Project-Id-Version: eu\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2006-11-16 23:57+0100\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: librezale \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "locale guztiak" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Sortu behar diren locale-ak:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"Locale-ak hizkuntza anitz artean aldatzeko ingurugiroa da erabiltzaileek " +"beren hizkuntza, herrialdea, karaktere-jokoa erabiltzeko gaitasuna ematen " +"dute" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"Mesedez zein locale sortuko diren hautatu. Lehenespen bezala UTF-8 locale-ak " +"hautau beharko lirateke, bereiziki instalazio berri batetan. Beste karaktere " +"joko batzuek sortzea erabilgarri izan liteke sistema eta software zaharragoekin " +"bateragarritasuna mantentzeko" + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Batez" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Sistema inguruneko locale lehenetsia:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"Debian pakete anitzek locale-ak erabiltzen dituzte erabiltzaileari dagokion " +"hizkuntzan testuak bistaratzeko. Locale lehenetsia sortutako locale-en artean " +"hautatu dezakezu." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"Honek zure sistemako hizkuntza aukeratuko du. Hautatutako hizkuntza " +"denek erabiltzen ez duten erabiltzaile anitzeko sistema bat bada, agian " +"erabiltzaile horiek arazoetan aurki daitezke." + +#~ msgid "" +#~ "Choose which locales to generate. The selection will be saved to `/etc/" +#~ "locale.gen', which you can also edit manually (you need to run `locale-" +#~ "gen' afterwards)." +#~ msgstr "" +#~ "Hautatu zein locale sortu behar diren. Hautapena `/etc/locale.gen'-en " +#~ "gordeko da, zein eskuz editatu dezakezu (editatu ondoren `locale-gen' " +#~ "exekutatu." + +#~ msgid "" +#~ "When `All locales' is selected, /etc/locale.gen will be set as a symlink " +#~ "to /usr/share/i18n/SUPPORTED." +#~ msgstr "" +#~ "`locale guztiak' hautatu ezkero, /etc/locale.gen /usr/share/i18n/" +#~ "SUPPORTED-ra lotura sinboliko bat bezala ezarriko da." --- glibc-2.5.orig/debian/po/ar.po +++ glibc-2.5/debian/po/ar.po @@ -0,0 +1,89 @@ +# translation of templates.po to Arabic +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Ossama M. Khayat , 2007. +msgid "" +msgstr "" +"Project-Id-Version: templates\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-09 16:20+0300\n" +"Last-Translator: Ossama M. Khayat \n" +"Language-Team: Arabic \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=6; plural=n==1 ? 0 : n==0 ? 1 : n==2 ? 2" +": n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "جميع المحليات" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "المحليات التي سيتم توليدها:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "" +"المحليات هي إطار عمل يمكنك من التبديل بين اللغات المتعددة وتمكن المستخدمين " +"من اختيار لغتهم، وبلدهم، ومجموعة الأحرف الخاصة بهم، إلخ." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "" +"الرجاء اختيار المحليات التي تريد توليدها. يجب اختيار محليات UTF-8 " +"بشكل افتراضي، وبالتحديد لعمليات التثبيت الجديدة. يمكن الاستفادة من " +"مجموعات المحارف الأخرى للتوافق مع الأنظمة والبرامج القديمة." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "لا شيء" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "المحلية الافتراضية لبيئة النظام:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "" +"في نظام ديبيان، تستخدم العديد من الحزم المحليات لعرض النصوص باللغة الصحيحة " +"للمستخدم. يمكنك اختيار المحلية الافتراضية للنظام من هذه المحليات." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "" +"سيحدد هذا الخيار اللغة الافتراضية للنظام بأكمله. إن كان هذا النظام " +"مستخدماً من قبل عدة مستخدمين لا يستخدمون اللغة ذاتها، " +"فسوف يواجهون بعض الصعوبات." + --- glibc-2.5.orig/debian/po/nb.po +++ glibc-2.5/debian/po/nb.po @@ -0,0 +1,100 @@ +# translation of glibc_nb.po to Norwegian Bokmål +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Bjørn Steensrud , 2007. +msgid "" +msgstr "" +"Project-Id-Version: glibc_nb\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2007-02-22 04:31+0100\n" +"PO-Revision-Date: 2007-02-26 20:05+0100\n" +"Last-Translator: Bjørn Steensrud \n" +"Language-Team: Norwegian Bokmål \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.2\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Alle lokaler" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Lokaler (stedstilpasninger) som skal opprettes:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locale is a framework to switch between multiple languages for users who can " +"select to use their language, country, characters, collation order, etc." +msgstr "" +"«Lokale» er et rammeverk som kan veksle mellom flere språk, slik at brukere " +"kan velge sitt språk, land, tegnsett, sorteringsrekkefølge osv." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Choose which locales to generate. The selection will be saved to `/etc/" +"locale.gen', which you can also edit manually (you need to run `locale-gen' " +"afterwards)." +msgstr "" +"Velg hvilke lokaler som skal opprettes. Valget blir lagret til fila " +"«/etc/locale.gen», som også kan redigeres manuelt («locale-gen» må kjøres " +"etterpå)." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"When `All locales' is selected, /etc/locale.gen will be set as a symlink to /" +"usr/share/i18n/SUPPORTED." +msgstr "" +"Hvis «Alle lokaler» blir valgt, så blir /etc/locale.gen satt som symbolsk " +"lenke til /usr/share/i18n/SUPPORTED." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Ingen" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "Standardlokale for systemmiljøet:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for users. You can change the default locale if you're not a native English " +"speaker. These choices are based on which locales you have chosen to " +"generate." +msgstr "" +"Mange pakker i Debian bruker lokaler for å vise tekst i det riktige språket " +"for brukerne. Du kan endre standardlokalet om det ikke er ditt førstespråk. " +"Disse valgene er basert på hvilke lokaler som er valgt ut til å bli opprettet." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Note: This will select the language for your whole system. If you're running " +"a multi-user system where not all of your users speak the language of your " +"choice, then they will run into difficulties and you might want not to set a " +"default locale." +msgstr "" +"Merk: Dette velger språk for hele systemet. Hvis dette er et flerbrukersystem " +"der ikke alle brukerne forstår det valgte språket, så kan de komme opp i " +"vansker, så kanskje det ikke bør velges et standardlokale." + --- glibc-2.5.orig/debian/po/ta.po +++ glibc-2.5/debian/po/ta.po @@ -0,0 +1,77 @@ +# translation of glibc.po to TAMIL +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Dr.T.Vasudevan , 2007. +msgid "" +msgstr "" +"Project-Id-Version: glibc\n" +"Report-Msgid-Bugs-To: debian-glibc@lists.debian.org\n" +"POT-Creation-Date: 2007-04-09 00:10+0200\n" +"PO-Revision-Date: 2007-04-24 19:42+0530\n" +"Last-Translator: Dr.T.Vasudevan \n" +"Language-Team: TAMIL \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "எல்லா உள்ளார்ந்த இடங்களும்" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "உருவாக்க வேண்டிய உள்ளார்ந்த இடங்கள்" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Locales are a framework to switch between multiple languages and allow users " +"to use their language, country, characters, collation order, etc." +msgstr "உள்ளார்ந்த இடங்கள் என்பது பல மொழிகளுக்கிடையே மாறவும் பயனர்களை அவரவர் மொழி, நாடு, குறிகள், முறைமைகள் ஆகியவற்றை பயன்படுத்தவும் பயனாகும் சட்ட அமைப்பு" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "" +"Please choose which locales to generate. UTF-8 locales should be chosen by " +"default, particularly for new installations. Other character sets may be " +"useful for backwards compatibility with older systems and software." +msgstr "எந்த உள்ளார்ந்த இடத்தை உருவாக்க வேண்டும் என தேர்வு செய்க. முன்னிருப்பாக UTF-8 உள்ளார்ந்த இடங்கள் தேர்வு செய்யபட வேண்டும். குறிப்பாக புதிய நிறுவல்களுக்கு. மற்ற குறியாக்க தொகுப்புகள் பழைய கணினிகள் மற்றும் மென்பொருட்களுடன் பின் நோக்கு இசைவுக்கு பயன்படும்." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "ஒன்றுமில்லை" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "கணினி சூழலுக்கு முன்னிருப்பு உள்ளார்ந்த இடம்" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"Many packages in Debian use locales to display text in the correct language " +"for the user. You can choose a default locale for the system from the " +"generated locales." +msgstr "பயனருக்கு சரியான மொழியில் உரையை காட்ட டெபியனின் பல பொதிகள் உள்ளார்ந்த இடத்தை பயன்படுத்துகின்றன. உருவாக்கப்பட்டவற்றிலிருந்து கணினிக்கு முன்னிருப்பு உள்ளார்ந்த இடத்தை தேர்வு செய்யவும்." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "" +"This will select the default language for the entire system. If this system " +"is a multi-user system where not all users are able to speak the default " +"language, they will experience difficulties." +msgstr "இது முழு கணினிக்கு முன்னிருப்பு மொழியை தேர்வு செய்யும். இது பலர் பயன் படுத்தும் கணினியானால் எல்லா பயனர்களும் முன்னிருப்பு மொழியை அறிந்திராவிடில் அவர்கள் துன்புறுவர்." + --- glibc-2.5.orig/debian/po/hu.po +++ glibc-2.5/debian/po/hu.po @@ -0,0 +1,62 @@ +msgid "" +msgstr "" +"Project-Id-Version: glibc\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2007-04-20 10:55+0100\n" +"Last-Translator: SZERVÁC Attila \n" +"Language-Team: Hungarian\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Poedit-Language: Hungarian\n" +"X-Poedit-Country: HUNGARY\n" + +#. Type: multiselect +#. Choices +#: ../debhelper.in/locales.templates:1001 +msgid "All locales" +msgstr "Minden helyi beállítás" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales to be generated:" +msgstr "Létrehozandó helyi beállítások:" + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Locales are a framework to switch between multiple languages and allow users to use their language, country, characters, collation order, etc." +msgstr "A helyi beállítások (locales) egy nyelveket váltó keretrendszer, mely lehetővé teszi, hogy a felhasználó saját nyelvét, országát, karaktereit használhassa." + +#. Type: multiselect +#. Description +#: ../debhelper.in/locales.templates:1002 +msgid "Please choose which locales to generate. UTF-8 locales should be chosen by default, particularly for new installations. Other character sets may be useful for backwards compatibility with older systems and software." +msgstr "Válaszd ki, milyen helyi beállításokat hozzunk létre. UTF-8 helyi beállításokat érdemes alapértelmezetten választani. Más karakter-készletek elavult rendszerekhez és szoftverekhez való kapcsolódáskor lehetnek jók." + +#. Type: select +#. Choices +#: ../debhelper.in/locales.templates:2001 +msgid "None" +msgstr "Semmi" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Default locale for the system environment:" +msgstr "A rendszer alap helyi beállítása:" + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "Many packages in Debian use locales to display text in the correct language for the user. You can choose a default locale for the system from the generated locales." +msgstr "A Debian számos csomagja helyi beállításokat használ a szövegek a felhasználó számára megfelelő nyelvű megjelenítésére . Választhatsz egy alapértelmezett." + +#. Type: select +#. Description +#: ../debhelper.in/locales.templates:2002 +msgid "This will select the default language for the entire system. If this system is a multi-user system where not all users are able to speak the default language, they will experience difficulties." +msgstr "Ez kiválasztja az egész rendszer alapértelmezett nyelvét. Több nyelvű rendszeren, ahol nem minden felhasználó beszéli az alapértelmezett nyelvet további beállítások kellenek." + --- glibc-2.5.orig/debian/rules.d/control.mk +++ glibc-2.5/debian/rules.d/control.mk @@ -0,0 +1,47 @@ +control_deps := $(addprefix debian/control.in/, libc6 libc6.1 libc0.1 libc0.3 sparc64 s390x powerpc ppc64 opt amd64 mipsn32 mips64) + +threads_archs := alpha amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc ia64 hppa s390 sh3 sh4 sh3eb sh4eb kfreebsd-i386 kfreebsd-amd64 + +debian/control.in/libc6: debian/control.in/libc debian/rules.d/control.mk + sed -e 's%@libc@%libc6%g' \ + -e 's%@archs@%amd64 arm armeb armel i386 m32r m68k mips mipsel powerpc ppc64 sparc s390 hppa sh3 sh4 sh3eb sh4eb%g' < $< > $@ + +debian/control.in/libc6.1: debian/control.in/libc debian/rules.d/control.mk + sed -e 's%@libc@%libc6.1%g;s%@archs@%alpha ia64%g' < $< > $@ + +debian/control.in/libc0.3: debian/control.in/libc debian/rules.d/control.mk + sed -e 's%@libc@%libc0.3%g;s%@archs@%hurd-i386%g;s/nscd, //' < $< > $@ + +debian/control.in/libc0.1: debian/control.in/libc debian/rules.d/control.mk + sed -e 's%@libc@%libc0.1%g;s%@archs@%kfreebsd-i386 kfreebsd-amd64%g' < $< > $@ + +debian/control: $(stamp)control +$(stamp)control: debian/control.in/main $(control_deps) \ + debian/rules.d/control.mk # debian/sysdeps/depflags.pl + + # Check that all files end with a new line + set -e ; for i in debian/control.in/* ; do \ + tail -n1 $$i | grep -q "^$$" ; \ + done + + cat debian/control.in/main > $@T + cat debian/control.in/libc6 >> $@T + cat debian/control.in/libc6.1 >> $@T + cat debian/control.in/libc0.3 >> $@T + cat debian/control.in/libc0.1 >> $@T + cat debian/control.in/i386 >> $@T + cat debian/control.in/sparc64 >> $@T + cat debian/control.in/s390x >> $@T + cat debian/control.in/amd64 >> $@T + cat debian/control.in/powerpc >> $@T + cat debian/control.in/ppc64 >> $@T + cat debian/control.in/mipsn32 >> $@T + cat debian/control.in/mips64 >> $@T + cat debian/control.in/kfreebsd-i386 >> $@T + cat debian/control.in/opt >> $@T + cat debian/control.in/libnss-dns-udeb >> $@T + cat debian/control.in/libnss-files-udeb >> $@T + sed -e 's%@libc@%$(libc)%g;s%@glibc@%glibc%g' \ + -e 's%@threads_archs@%$(threads_archs)%g' < $@T > debian/control + rm $@T + touch $@ --- glibc-2.5.orig/debian/rules.d/build.mk +++ glibc-2.5/debian/rules.d/build.mk @@ -0,0 +1,173 @@ +# Because variables can be masked at anypoint by declaring +# PASS_VAR, we need to call all variables as $(call xx,VAR) +# This little bit of magic makes it possible: +xx=$(if $($(curpass)_$(1)),$($(curpass)_$(1)),$($(1))) + +# We want to log output to a logfile but we also need to preserve the +# return code of the command being run. +# This little bit of magic makes it possible: +# $(call logme, [-a] , ) +define logme +(exec 3>&1; exit `( ( ( $(2) ) 2>&1 3>&-; echo $$? >&4) | tee $(1) >&3) 4>&1`) +endef + + +$(patsubst %,mkbuilddir_%,$(GLIBC_PASSES)) :: mkbuilddir_% : $(stamp)mkbuilddir_% +$(stamp)mkbuilddir_%: $(stamp)patch-stamp $(KERNEL_HEADER_DIR) + @echo Making builddir for $(curpass) + test -d $(DEB_BUILDDIR) || mkdir $(DEB_BUILDDIR) + touch $@ + +$(patsubst %,configure_%,$(GLIBC_PASSES)) :: configure_% : $(stamp)configure_% +$(stamp)configure_%: $(stamp)mkbuilddir_% + + @echo Configuring $(curpass) + rm -f $(DEB_BUILDDIR)/configparms + echo "CC = $(call xx,CC)" >> $(DEB_BUILDDIR)/configparms + echo "BUILD_CC = $(BUILD_CC)" >> $(DEB_BUILDDIR)/configparms + echo "CXX = $(call xx,CXX)" >> $(DEB_BUILDDIR)/configparms + echo "CFLAGS = $(HOST_CFLAGS)" >> $(DEB_BUILDDIR)/configparms + echo "BUILD_CFLAGS = $(BUILD_CFLAGS)" >> $(DEB_BUILDDIR)/configparms + echo "BASH := /bin/bash" >> $(DEB_BUILDDIR)/configparms + echo "KSH := /bin/bash" >> $(DEB_BUILDDIR)/configparms + echo "mandir = $(mandir)" >> $(DEB_BUILDDIR)/configparms + echo "infodir = $(infodir)" >> $(DEB_BUILDDIR)/configparms + echo "libexecdir = $(libexecdir)" >> $(DEB_BUILDDIR)/configparms + echo "LIBGD = no" >> $(DEB_BUILDDIR)/configparms + echo "sysconfdir = /etc" >> $(DEB_BUILDDIR)/configparms + echo "rootsbindir = /sbin" >> $(DEB_BUILDDIR)/configparms + libdir="$(call xx,libdir)" ; if test -n "$$libdir" ; then \ + echo "libdir = $$libdir" >> $(DEB_BUILDDIR)/configparms ; \ + fi + slibdir="$(call xx,slibdir)" ; if test -n "$$slibdir" ; then \ + echo "slibdir = $$slibdir" >> $(DEB_BUILDDIR)/configparms ; \ + fi + rtlddir="$(call xx,rtlddir)" ; if test -n "$$rtlddir" ; then \ + echo "rtlddir = $$rtlddir" >> $(DEB_BUILDDIR)/configparms ; \ + fi + + # Prevent autoconf from running unexpectedly by setting it to false. + # Also explicitly pass CC down - this is needed to get -m64 on + # Sparc, et cetera. + + configure_build=$(call xx,configure_build); \ + if [ $(call xx,configure_target) = $$configure_build ]; then \ + echo "Checking that we're running at least kernel version: $(call xx,MIN_KERNEL_SUPPORTED)"; \ + if ! $(call kernel_check,$(call xx,MIN_KERNEL_SUPPORTED)); then \ + configure_build=`echo $$configure_build | sed 's/^\([^-]*\)-\([^-]*\)$$/\1-dummy-\2/'`; \ + echo "No. Forcing cross-compile by setting build to $$configure_build."; \ + fi; \ + fi; \ + $(call logme, -a $(log_build), echo -n "Build started: " ; date --rfc-2822 ; echo "---------------") ; \ + $(call logme, -a $(log_build), \ + cd $(DEB_BUILDDIR) && \ + CC="$(call xx,CC)" \ + CXX="$(call xx,CXX)" \ + AUTOCONF=false \ + $(CURDIR)/$(DEB_SRCDIR)/configure \ + --host=$(call xx,configure_target) \ + --build=$$configure_build --prefix=/usr --without-cvs \ + --enable-add-ons=$(standard-add-ons)"$(call xx,add-ons)" \ + --without-selinux \ + $(call xx,with_headers) $(call xx,extra_config_options)) + touch $@ + +$(patsubst %,build_%,$(GLIBC_PASSES)) :: build_% : $(stamp)build_% +$(stamp)build_%: $(stamp)configure_% + @echo Building $(curpass) + $(call logme, -a $(log_build), $(MAKE) -C $(DEB_BUILDDIR) -j $(NJOBS)) + $(call logme, -a $(log_build), echo "---------------" ; echo -n "Build ended: " ; date --rfc-2822) + touch $@ + +$(patsubst %,check_%,$(GLIBC_PASSES)) :: check_% : $(stamp)check_% +$(stamp)check_%: $(stamp)build_% + if [ -n "$(findstring nocheck,$(DEB_BUILD_OPTIONS))" ]; then \ + echo "DEB_BUILD_OPTIONS contains nocheck, skipping tests."; \ + echo "Tests have been disabled via DEB_BUILD_OPTIONS." > $(log_test) ; \ + elif [ $(call xx,configure_build) != $(call xx,configure_target) ] && \ + ! $(DEB_BUILDDIR)/elf/ld.so $(DEB_BUILDDIR)/libc.so >/dev/null 2>&1 ; then \ + echo "Cross compiling, skipping tests."; \ + echo "Flavour cross-compiled, tests have been skipped." > $(log_test) ; \ + elif ! $(call kernel_check,$(call xx,MIN_KERNEL_SUPPORTED)); then \ + echo "Kernel too old, skipping tests."; \ + echo "Kernel too old, tests have been skipped." > $(log_test) ; \ + elif grep -q "cpu model.*SiByte SB1" /proc/cpuinfo ; then \ + echo "MIPS SB1 platform detected, skipping tests."; \ + echo "MIPS SB1 platform detected, skipping tests." > $(log_test) ; \ + elif [ $(call xx,RUN_TESTSUITE) != "yes" ]; then \ + echo "Testsuite disabled for $(curpass), skipping tests."; \ + echo "Tests have been disabled." > $(log_test) ; \ + else \ + echo Testing $(curpass); \ + echo -n "Testsuite started: " | tee -a $(log_test); \ + date --rfc-2822 | tee -a $(log_test); \ + echo "--------------" | tee -a $(log_test); \ + $(MAKE) -C $(DEB_BUILDDIR) -j $(NJOBS) -k check 2>&1 | tee -a $(log_test); \ + echo "--------------" | tee -a $(log_test); \ + echo -n "Testsuite ended: " | tee -a $(log_test); \ + date --rfc-2822 | tee -a $(log_test); \ + fi + touch $@ + +$(patsubst %,install_%,$(GLIBC_PASSES)) :: install_% : $(stamp)install_% +$(stamp)install_%: $(stamp)check_% + @echo Installing $(curpass) + rm -rf $(CURDIR)/debian/tmp-$(curpass) + $(MAKE) -C $(DEB_BUILDDIR) \ + install_root=$(CURDIR)/debian/tmp-$(curpass) install + + if [ $(curpass) = libc ]; then \ + $(MAKE) -f debian/generate-supported.mk IN=$(DEB_SRCDIR)/localedata/SUPPORTED \ + OUT=debian/tmp-$(curpass)/usr/share/i18n/SUPPORTED; \ + $(MAKE) -C $(DEB_BUILDDIR) -j $(NJOBS) \ + objdir=$(DEB_BUILDDIR) install_root=$(CURDIR)/debian/tmp-$(curpass) \ + localedata/install-locales; \ + rm -rf $(CURDIR)/debian/locales-all/usr/lib; \ + install -d $(CURDIR)/debian/locales-all/usr/lib; \ + mv $(CURDIR)/debian/tmp-libc/usr/lib/locale $(CURDIR)/debian/locales-all/usr/lib/locales-all; \ + (cd $(DEB_SRCDIR)/manual && texi2html -split_chapter libc.texinfo); \ + fi + + # Remove ld.so from optimized libraries + if echo $(call xx,slibdir) | grep -q "/lib/.\+" ; then \ + rm -f debian/tmp-$(curpass)/$(call xx,slibdir)/ld*.so* ; \ + fi + + # /usr/include/nptl and /usr/lib/nptl. It assumes tmp-libc is already installed. + if [ $(curpass) = nptl ]; then \ + for file in `find debian/tmp-$(curpass)/usr/include -type f | sed 's/^debian\/tmp-nptl\///'`; do \ + if ! [ -f debian/tmp-$(curpass)/$$file ] || \ + ! cmp -s debian/tmp-$(curpass)/$$file debian/tmp-libc/$$file; then \ + target=`echo $$file | sed 's/^usr\/include\///'`; \ + install -d `dirname debian/tmp-libc/usr/include/nptl/$$target`; \ + install -m 644 debian/tmp-$(curpass)/usr/include/$$target \ + debian/tmp-libc/usr/include/nptl/$$target; \ + fi; \ + done; \ + install -d debian/tmp-libc/usr/lib/nptl; \ + for file in libc.a libc_nonshared.a libpthread.a libpthread_nonshared.a librt.a ; do \ + install -m 644 debian/tmp-$(curpass)/usr/lib/$$file \ + debian/tmp-libc/usr/lib/nptl/$$file; \ + done; \ + for file in libc.so libpthread.so; do \ + sed 's/\/usr\/lib\//\/usr\/lib\/nptl\//g' < debian/tmp-$(curpass)/usr/lib/$$file \ + > debian/tmp-libc/usr/lib/nptl/$$file; \ + done; \ + ln -sf /lib/tls/librt.so.1 debian/tmp-libc/usr/lib/nptl/; \ + fi + + # Create the multidir directories, and the configuration file in /etc/ld.so.conf.d + if [ $(curpass) = libc ]; then \ + mkdir -p debian/tmp-$(curpass)/etc/ld.so.conf.d; \ + machine=`sed '/^ *config-machine *=/!d;s/.*= *//g' $(DEB_BUILDDIR)/config.make`; \ + os=`sed '/^ *config-os *=/!d;s/.*= *//g' $(DEB_BUILDDIR)/config.make`; \ + triplet="$$machine-$$os"; \ + mkdir -p debian/tmp-$(curpass)/lib/$$triplet debian/tmp-$(curpass)/usr/lib/$$triplet; \ + conffile="debian/tmp-$(curpass)/etc/ld.so.conf.d/$$triplet"; \ + echo "# Multiarch support" > $$conffile; \ + echo /lib/$$triplet >> $$conffile; \ + echo /usr/lib/$$triplet >> $$conffile; \ + fi + + $(call xx,extra_install) + touch $@ --- glibc-2.5.orig/debian/rules.d/debhelper.mk +++ glibc-2.5/debian/rules.d/debhelper.mk @@ -0,0 +1,288 @@ +# This is so horribly wrong. libc-pic does a whole pile of gratuitous +# renames. There's very little we can do for now. Maybe after +# Sarge releases we can consider breaking packages, but certainly not now. + +$(stamp)binaryinst_$(libc)-pic:: $(stamp)debhelper + @echo Running special kludge for $(libc)-pic + dh_testroot + dh_installdirs -p$(curpass) + install --mode=0644 build-tree/$(DEB_HOST_ARCH)-libc/libc_pic.a debian/$(libc)-pic/usr/lib/. + install --mode=0644 build-tree/$(DEB_HOST_ARCH)-libc/libc.map debian/$(libc)-pic/usr/lib/libc_pic.map + install --mode=0644 build-tree/$(DEB_HOST_ARCH)-libc/elf/soinit.os debian/$(libc)-pic/usr/lib/libc_pic/soinit.o + install --mode=0644 build-tree/$(DEB_HOST_ARCH)-libc/elf/sofini.os debian/$(libc)-pic/usr/lib/libc_pic/sofini.o + + install --mode=0644 build-tree/$(DEB_HOST_ARCH)-libc/math/libm_pic.a debian/$(libc)-pic/usr/lib/. + install --mode=0644 build-tree/$(DEB_HOST_ARCH)-libc/libm.map debian/$(libc)-pic/usr/lib/libm_pic.map + install --mode=0644 build-tree/$(DEB_HOST_ARCH)-libc/resolv/libresolv_pic.a debian/$(libc)-pic/usr/lib/. + install --mode=0644 build-tree/$(DEB_HOST_ARCH)-libc/libresolv.map debian/$(libc)-pic/usr/lib/libresolv_pic.map + +# Some per-package extra files to install. +define $(libc)_extra_debhelper_pkg_install + install --mode=0644 $(DEB_SRCDIR)/ChangeLog debian/$(curpass)/usr/share/doc/$(curpass)/changelog + install --mode=0644 $(DEB_SRCDIR)/linuxthreads/README debian/$(curpass)/usr/share/doc/$(curpass)/README.linuxthreads + install --mode=0644 $(DEB_SRCDIR)/linuxthreads/ChangeLog debian/$(curpass)/usr/share/doc/$(curpass)/ChangeLog.linuxthreads + install --mode=0644 $(DEB_SRCDIR)/nptl/ChangeLog debian/$(curpass)/usr/share/doc/$(curpass)/ChangeLog.nptl + sed -e "/KERNEL_VERSION_CHECK/r debian/script.in/kernelcheck.sh" \ + debian/local/etc_init.d/glibc.sh | \ + sed -e "s/EXIT_CHECK/sleep 5/" -e "s/DEB_HOST_ARCH/$(DEB_HOST_ARCH)/" > debian/glibc.sh.generated + install --mode=0755 debian/glibc.sh.generated debian/$(curpass)/etc/init.d/glibc.sh + # dh_installmanpages thinks that .so is a language. + install --mode=0644 debian/local/manpages/ld.so.8 debian/$(curpass)/usr/share/man/man8/ld.so.8 + + install --mode=0644 debian/FAQ debian/$(curpass)/usr/share/doc/$(curpass)/README.Debian +endef + +define locales_extra_debhelper_pkg_install + install --mode=0644 $(DEB_SRCDIR)/localedata/ChangeLog debian/$(curpass)/usr/share/doc/$(curpass)/changelog + install --mode=0644 debian/locales.NEWS.Debian debian/$(curpass)/usr/share/doc/locales/NEWS.Debian +endef + +define glibc-doc_extra_debhelper_pkg_install + install --mode=0644 $(DEB_SRCDIR)/ChangeLog debian/$(curpass)/usr/share/doc/$(curpass)/changelog + install --mode=0644 $(DEB_SRCDIR)/linuxthreads/FAQ.html debian/$(curpass)/usr/share/doc/$(curpass)/FAQ.linuxthreads.html +endef + +# Should each of these have per-package options? + +$(patsubst %,binaryinst_%,$(DEB_ARCH_REGULAR_PACKAGES) $(DEB_INDEP_REGULAR_PACKAGES)) :: binaryinst_% : $(stamp)binaryinst_% + +# Make sure the debug packages are built last, since other packages may add +# files to them. +debug-packages = $(filter %-dbg,$(DEB_ARCH_REGULAR_PACKAGES)) +non-debug-packages = $(filter-out %-dbg,$(DEB_ARCH_REGULAR_PACKAGES)) +$(patsubst %,$(stamp)binaryinst_%,$(debug-packages)):: $(patsubst %,$(stamp)binaryinst_%,$(non-debug-packages)) + +$(patsubst %,$(stamp)binaryinst_%,$(DEB_ARCH_REGULAR_PACKAGES) $(DEB_INDEP_REGULAR_PACKAGES)):: $(stamp)debhelper + @echo Running debhelper for $(curpass) + dh_testroot + dh_installdirs -p$(curpass) + dh_install -p$(curpass) + dh_installman -p$(curpass) + dh_installinfo -p$(curpass) + dh_installdebconf -p$(curpass) + dh_installchangelogs -p$(curpass) + dh_installinit -p$(curpass) + dh_installdocs -p$(curpass) + dh_link -p$(curpass) + + # extra_debhelper_pkg_install is used for debhelper.mk only. + # when you want to install extra packages, use extra_pkg_install. + $(call xx,extra_debhelper_pkg_install) + $(call xx,extra_pkg_install) + +ifeq ($(filter nostrip,$(DEB_BUILD_OPTIONS)),) + # libpthread must be stripped specially; GDB needs the + # non-dynamic symbol table in order to load the thread + # debugging library. We keep a full copy of the symbol + # table in libc6-dbg but basic thread debugging should + # work even without that package installed. + + # We use a wrapper script so that we only include the bare + # minimum in /usr/lib/debug/lib for backtraces; anything + # else takes too long to load in GDB. + + if test "$(NOSTRIP_$(curpass))" != 1; then \ + chmod a+x debian/wrapper/objcopy; \ + export PATH=$(shell pwd)/debian/wrapper:$$PATH; \ + dh_strip -p$(curpass) -Xlibpthread --keep-debug; \ + mkdir -p debian/$(libc)-dbg/usr/lib/debug; \ + if test -d debian/$(curpass)/usr/lib/debug; then \ + cd debian/$(curpass)/usr/lib/debug; \ + find . -type f -name \*.so\* \ + | cpio -pd $(shell pwd)/debian/$(libc)-dbg/usr/lib/debug; \ + cd ../../../../..; \ + rm -rf debian/$(curpass)/usr/lib/debug; \ + fi; \ + (cd debian/$(curpass); \ + find . -name libpthread-\*.so -exec \ + ../../debian/wrapper/objcopy --only-keep-debug '{}' \ + ../$(libc)-dbg/usr/lib/debug/'{}' ';' || true; \ + find . -name libpthread-\*.so -exec objcopy \ + --add-gnu-debuglink=../$(libc)-dbg/usr/lib/debug/'{}' \ + '{}' ';' || true); \ + find debian/$(curpass) -name libpthread-\*.so -exec \ + strip --strip-debug --remove-section=.comment \ + --remove-section=.note '{}' ';' || true; \ + fi +endif + + dh_compress -p$(curpass) + dh_fixperms -p$(curpass) -Xpt_chown + # Use this instead of -X to dh_fixperms so that we can use + # an unescaped regular expression. ld.so must be executable; + # libc.so and NPTL's libpthread.so print useful version + # information when executed. + find debian/$(curpass) -type f \( -regex '.*lib[0-9]*/ld.*so' \ + -o -regex '.*lib[0-9]*/libpthread-.*so' \ + -o -regex '.*lib[0-9]*/libc-.*so' \) \ + -exec chmod a+x '{}' ';' + dh_makeshlibs -p$(curpass) -V "$(call xx,shlib_dep)" + + if [ -f debian/$(curpass).lintian ] ; then \ + install -d -m 755 -o root -g root debian/$(curpass)/usr/share/lintian/overrides/ ; \ + install -m 644 -o root -g root debian/$(curpass).lintian \ + debian/$(curpass)/usr/share/lintian/overrides/$(curpass) ; \ + fi + + if [ -f debian/$(curpass).linda ] ; then \ + install -d -m 755 -o root -g root debian/$(curpass)/usr/share/linda/overrides/ ; \ + install -m 644 -o root -g root debian/$(curpass).linda \ + debian/$(curpass)/usr/share/linda/overrides/$(curpass) ; \ + fi + + dh_installdeb -p$(curpass) + if [ $(curpass) = nscd ] ; then \ + dh_shlibdeps -p$(curpass) ; \ + fi + dh_gencontrol -p$(curpass) -- $($(curpass)_control_flags) + dh_md5sums -p$(curpass) + dh_builddeb -p$(curpass) + + touch $@ + +$(patsubst %,binaryinst_%,$(DEB_UDEB_PACKAGES)) :: binaryinst_% : $(stamp)binaryinst_% +$(patsubst %,$(stamp)binaryinst_%,$(DEB_UDEB_PACKAGES)): $(stamp)debhelper + @echo Running debhelper for $(curpass) + dh_testroot + dh_installdirs -p$(curpass) + dh_install -p$(curpass) + dh_strip -p$(curpass) + + # when you want to install extra packages, use extra_pkg_install. + $(call xx,extra_pkg_install) + + dh_compress -p$(curpass) + dh_fixperms -p$(curpass) + find debian/$(curpass) -type f \( -regex '.*lib[0-9]*/ld.*so.*' \ + -o -regex '.*lib[0-9]*/.*libpthread.*so.*' \ + -o -regex '.*lib[0-9]*/libc[.-].*so.*' \) \ + -exec chmod a+x '{}' ';' + # dh_makeshlibs -p$(curpass) -V "$(call xx,shlib_dep)" + dh_installdeb -p$(curpass) + # dh_shlibdeps -p$(curpass) + dh_gencontrol -p$(curpass) + dh_builddeb -p$(curpass) + + touch $@ + +OPT_PASSES = $(filter-out libc, $(GLIBC_PASSES)) +OPT_DIRS = $(foreach pass,$(OPT_PASSES),$($(pass)_slibdir) $($(pass)_libdir)) +NPTL = $(filter nptl,$(GLIBC_PASSES)) + +debhelper: $(stamp)debhelper +$(stamp)debhelper: + + for x in `find debian/debhelper.in -type f -maxdepth 1`; do \ + y=debian/`basename $$x`; \ + z=`echo $$y | sed -e 's#/libc#/$(libc)#'`; \ + cp $$x $$z; \ + sed -e "s#DEB_SRCDIR#$(DEB_SRCDIR)#" -i $$z; \ + sed -e "/KERNEL_VERSION_CHECK/r debian/script.in/kernelcheck.sh" -i $$z; \ + sed -e "/NOHWCAP/r debian/script.in/nohwcap.sh" -i $$z; \ + sed -e "s#LIBC#$(libc)#" -i $$z; \ + sed -e "s#CURRENT_VER#$(DEB_VERSION)#" -i $$z; \ + sed -e "s#EXIT_CHECK##" -i $$z; \ + sed -e "s#DEB_HOST_ARCH#$(DEB_HOST_ARCH)#" -i $$z; \ + case $$z in \ + *.install) \ + sed -e "s/^#.*//" -i $$z ; \ + if [ $(DEB_HOST_ARCH) != $(DEB_BUILD_ARCH) ]; then \ + sed -i "/^.*librpcsvc.a.*/d" $$z ; \ + fi ; \ + ;; \ + debian/$(libc).preinst) \ + rtld=`LANG=C LC_ALL=C readelf -l debian/tmp-libc/usr/bin/iconv | grep "interpreter" | sed -e 's/.*interpreter: \(.*\)]/\1/g'`; \ + c_so=`ls debian/tmp-libc/lib/ | grep "libc\.so\."` ; \ + m_so=`ls debian/tmp-libc/lib/ | grep "libm\.so\."` ; \ + pthread_so=`ls debian/tmp-libc/lib/ | grep "libpthread\.so\."` ; \ + rt_so=`ls debian/tmp-libc/lib/ | grep "librt\.so\."` ; \ + dl_so=`ls debian/tmp-libc/lib/ | grep "libdl\.so\."` ; \ + sed -e "s#RTLD#$$rtld#" -e "s#C_SO#$$c_so#" -e "s#M_SO#$$m_so#" -e "s#PTHREAD_SO#$$pthread_so#" -e "s#RT_SO#$$rt_so#" -e "s#DL_SO#$$dl_so#" -i $$z ; \ + ;; \ + esac; \ + done + + # Hack: special-case passes whose destdir is a biarch directory + # to use a different install template, which includes more + # libraries. Also generate a -dev. Other libraries get scripts + # to temporarily disable hwcap. This needs some cleaning up. + set -- $(OPT_DIRS); \ + for x in $(OPT_PASSES); do \ + slibdir=$$1; \ + shift; \ + case $$slibdir in \ + /lib32 | /lib64 | /emul/ia32-linux/lib) \ + suffix="alt"; \ + libdir=$$1; \ + shift; \ + ;; \ + *) \ + suffix="otherbuild"; \ + ;; \ + esac; \ + for y in debian/$(libc)*-$$suffix.* ; do \ + z=`echo $$y | sed -e "s/$$suffix/$$x/"` ; \ + cp $$y $$z ; \ + sed -e "s#TMPDIR#debian/tmp-$$x#g" -i $$z; \ + sed -e "s#SLIBDIR#$$slibdir#g" -i $$z; \ + sed -e "s#LIBDIR#$$libdir#g" -i $$z; \ + sed -e "s#FLAVOR#$$x#g" -i $$z; \ + done ; \ + done + + # We use libc-otherbuild for this, since it's just a special case of + # an optimised library that needs to wind up in /lib/tls + # FIXME: We do not cover the case of processor optimised + # nptl libraries, like /lib/i686/tls + # We probably don't care for now. + for x in $(NPTL); do \ + z=debian/$(libc).install; \ + cat debian/debhelper.in/libc-otherbuild.install >>$$z; \ + sed -e "s#TMPDIR#debian/tmp-$$x#g" -i $$z; \ + sed -e "s#DEB_SRCDIR#$(DEB_SRCDIR)#g" -i $$z; \ + sed -e "s#LIBC-FLAVOR#$(libc)#g" -i $$z; \ + sed -e "s#FLAVOR#nptl#g" -i $$z; \ + sed -e "s#SLIBDIR#/lib/tls#g" -i $$z; \ + case $$z in \ + *.install) sed -e "s/^#.*//g" -i $$z ;; \ + esac; \ + done + + # Substitute __SUPPORTED_LOCALES__. + perl -i -pe 'BEGIN {undef $$/; open(IN, "debian/tmp-libc/usr/share/i18n/SUPPORTED"); $$j=;} s/__SUPPORTED_LOCALES__/$$j/g;' debian/locales.config + + # Generate common substvars files. + echo "locale:Depends=$(shell perl debian/debver2localesdep.pl $(LOCALES_DEP_VER))" > tmp.substvars + echo "locale-compat:Depends=$(shell perl debian/debver2localesdep.pl $(LOCALES_COMPAT_VER))" >> tmp.substvars + + for pkg in $(DEB_ARCH_REGULAR_PACKAGES) $(DEB_INDEP_REGULAR_PACKAGES) $(DEB_UDEB_PACKAGES); do \ + cp tmp.substvars debian/$$pkg.substvars; \ + done + rm -f tmp.substvars + + touch $(stamp)debhelper + +debhelper-clean: + dh_clean + + rm -f debian/*.install* + rm -f debian/*.install.* + rm -f debian/*.manpages + rm -f debian/*.links + rm -f debian/*.postinst + rm -f debian/*.preinst + rm -f debian/*.postinst + rm -f debian/*.prerm + rm -f debian/*.postrm + rm -f debian/*.info + rm -f debian/*.init + rm -f debian/*.config + rm -f debian/*.templates + rm -f debian/*.dirs + rm -f debian/*.docs + rm -f debian/*.doc-base + rm -f debian/*.generated + rm -f debian/*.lintian + rm -f debian/*.linda + + rm -f $(stamp)binaryinst* --- glibc-2.5.orig/debian/rules.d/quilt.mk +++ glibc-2.5/debian/rules.d/quilt.mk @@ -0,0 +1,60 @@ +# Implements the patch and unpatch targets, called when building packages. + +# -*- Makefile -*-, you silly Emacs! +# vim: set ft=make: + +DEBQUILTRC = debian/quiltrc +QUILTOPT = --quiltrc $(DEBQUILTRC) +QUILT = quilt $(QUILTOPT) + +patch: $(stamp)patch-stamp +$(stamp)patch-stamp: $(stamp)unpack quilt + @cd $(DEB_SRCDIR); \ + if $(QUILT) next >/dev/null 2>&1; then \ + echo -n "Applying patches..."; \ + if $(QUILT) push -a -v > ${stamp}patch-log 2>&1; then \ + echo "successful."; \ + mv ${stamp}patch-log $@; \ + else \ + echo "failed! (check ${stamp}patch-log for details)"; \ + exit 1; \ + fi; \ + else \ + echo "No patches to apply"; \ + fi + +# By default, quilt looks for patches in the patches/ directory. +# Debian maintainers often set QUILT_PATCHES="debian/patches" +# in their $HOME/.quiltrc +# These symbolic links are useful when running quilt interactively +# from $(DEB_SRCDIR), or from the patch/unpatch targets. +# Patches specific to a certain architecture are applied first. +quilt: + @if test -n "$(DEB_SRCDIR)" && test -d $(DEB_SRCDIR); then \ + test -L $(DEB_SRCDIR)/debian || ln -s . $(DEB_SRCDIR)/debian; \ + test -L $(DEB_SRCDIR)/patches || ln -s $(shell pwd)/debian/patches $(DEB_SRCDIR)/patches; \ + if test -r debian/patches/series.$(DEB_HOST_ARCH); then \ + pc=".pc.$(DEB_HOST_ARCH)"; \ + test -d "$(DEB_SRCDIR)/$$pc" || mkdir "$(DEB_SRCDIR)/$$pc"; \ + cp debian/patches/series.$(DEB_HOST_ARCH) $(DEB_SRCDIR)/$$pc/series; \ + cd $(DEB_SRCDIR); \ + QUILT_PC="$$pc" quilt upgrade || true; \ + QUILT_PC="$$pc" quilt push -a || true; \ + fi; \ + fi + +unpatch: quilt + @echo -n "Unapplying patches..." + @cd $(DEB_SRCDIR); \ + if $(QUILT) top >/dev/null 2>&1; then \ + if $(QUILT) pop -a -v > $(stamp)unpatch-log 2>&1; then \ + echo "successful."; \ + else \ + echo "failed! (check $(stamp)unpatch-log for details)"; \ + exit 1; \ + fi; \ + else \ + echo "nothing to do."; \ + fi + -rm -f $(stamp)patch-stamp $(stamp)patch-log $(stamp)unpatch-log + --- glibc-2.5.orig/debian/rules.d/tarball.mk +++ glibc-2.5/debian/rules.d/tarball.mk @@ -0,0 +1,21 @@ +unpack: $(stamp)unpack +$(stamp)unpack: $(DEB_TARBALL) $(patsubst %,$(stamp)%,$(GLIBC_OVERLAYS)) + touch $(stamp)unpack + +# FIXME: Support gzip as well! +$(DEB_TARBALL): $(stamp)$(DEB_TARBALL) +$(stamp)$(DEB_TARBALL): + mkdir -p $(build-tree) + cd $(build-tree) && tar -xjf $(CURDIR)/$(DEB_TARBALL) + touch $@ + +$(patsubst %,$(stamp)%,$(GLIBC_OVERLAYS)): + cd $(DEB_SRCDIR) && tar -xjf $(CURDIR)/$(notdir $@) + a=`echo $(notdir $@) | sed -e 's/^glibc-//' -e 's/-[^-]*$$//'`; \ + d=`echo $(notdir $@) | sed -e 's/\.tar\.bz2$$//'`; \ + if test -d $(DEB_SRCDIR)/$$d; then \ + cd $(DEB_SRCDIR) && mv $$d $$a; \ + fi + touch $@ + + --- glibc-2.5.orig/debian/script.in/kernelcheck.sh +++ glibc-2.5/debian/script.in/kernelcheck.sh @@ -0,0 +1,92 @@ +kernel_compare_versions () { + verA=$(($(echo "$1" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 10000 + \2 \* 100 + \3/'))) + verB=$(($(echo "$3" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 10000 + \2 \* 100 + \3/'))) + + test $verA -$2 $verB +} + +exit_check () { + EXIT_CHECK + exit 1 +} + + # Test to make sure z < 255, in x.y.z-n form of kernel version + # Also make sure we don't trip on x.y.zFOO-n form + #kernel_rev=$(uname -r | tr -- - . | cut -d. -f3 | tr -d '[:alpha:]') + kernel_rev=$(uname -r | sed 's/\([0-9]*\.[0-9]*\.\)\([0-9]*\)\(.*\)/\2/') + if [ "$kernel_rev" -ge 255 ] + then + echo WARNING: Your kernel version indicates a revision number + echo of 255 or greater. Glibc has a number of built in + echo assumptions that this revision number is less than 255. + echo If you\'ve built your own kernel, please make sure that any + echo custom version numbers are appended to the upstream + echo kernel number with a dash or some other delimiter. + + exit_check + fi + + # sanity checking for the appropriate kernel on each architecture. + realarch=`uname -m` + kernel_ver=`uname -r` + + # convert "armv4l" and similar to just "arm", and "mips64" and similar + # to just "mips" + case $realarch in + arm*) realarch="arm";; + mips*) realarch="mips";; + esac + + + # From glibc 2.3.5-7 real-i386 is dropped. + if [ "$realarch" = i386 ] + then + echo WARNING: This machine has real i386 class processor. + echo Debian etch and later does not support such old hardware + echo any longer. + echo The reason is that \"bswap\" instruction is not supported + echo on i386 class processors, and some core libraries have + echo such instruction. You\'ll see illegal instruction error + echo when you upgrade your Debian system. + exit_check + fi + + # The GNU libc requires 2.6 kernel (except on m68k) because we drop to + # support linuxthreads + if [ "$realarch" != m68k ] + then + if kernel_compare_versions "$kernel_ver" lt 2.6.1 + then + echo WARNING: POSIX threads library NPTL requires kernel version + echo 2.6.1 or later. If you use a kernel 2.4, please upgrade it + echo before installing glibc. + exit_check + fi + fi + + # HPPA boxes require latest fixes in the kernel to function properly. + if [ "$realarch" = parisc ] + then + if kernel_compare_versions "$kernel_ver" lt 2.6.9 + then + echo WARNING: This version of glibc requires that you be running + echo kernel version 2.6.9 or later. Earlier kernels contained + echo bugs that may render the system unusable if a modern version + echo of glibc is installed. + exit_check + fi + fi + + # The GNU libc is now built with --with-kernel= >= 2.4.1 on m68k + if [ "$realarch" = m68k ] + then + if kernel_compare_versions "$kernel_ver" lt 2.4.1 + then + echo WARNING: This version of glibc requires that you be running + echo kernel version 2.4.1 or later. Earlier kernels contained + echo bugs that may render the system unusable if a modern version + echo of glibc is installed. + exit_check + fi + fi + --- glibc-2.5.orig/debian/script.in/nohwcap.sh +++ glibc-2.5/debian/script.in/nohwcap.sh @@ -0,0 +1,39 @@ + # Handle upgrades when libc-opt package has been installed. + # When a /etc/ld.so.nohwcap file exists, ld.so only use libraries + # from /lib, and ignore all optimised libraries. This file is + # inconditionaly created in the preinst script of libc. + + # Get the list of optimized packages for a given architecture + # Before removing a package from this list, make sure it appears + # in the Conflicts: line of libc. + case $(dpkg --print-architecture) in + i386) + hwcappkgs="libc6-i686 libc6-xen" + ;; + kfreebsd-i386) + hwcappkgs="libc0.1-i686" + ;; + sparc) + hwcappkgs="libc6-sparcv9 libc6-sparcv9b" + ;; + esac + + # We check the version between the current installed libc and + # all optimized packages (on architectures where such packages + # exists). + all_upgraded=yes + if [ -n "$hwcappkgs" ]; then + for pkg in $hwcappkgs ; do + ver=$(dpkg -l $pkg 2>/dev/null | sed -e '/^i/!d;' -e "s/^i.\s\+$pkg\s\+//;s/\s.*//g") + if [ -n "$ver" ] && [ "$ver" != "CURRENT_VER" ]; then + all_upgraded=no + fi + done + fi + + # If the versions of all optimized packages are the same as the libc + # one, we could remove /etc/ld.so.nohwcap. Otherwise, it will be removed + # when all optimized packages are upgraded or removed. + if [ "$all_upgraded" = yes ] ; then + rm -f /etc/ld.so.nohwcap + fi --- glibc-2.5.orig/debian/shlibver +++ glibc-2.5/debian/shlibver @@ -0,0 +1 @@ +shlib_dep_ver = 2.5-5 --- glibc-2.5.orig/debian/sysdeps/s390.mk +++ glibc-2.5/debian/sysdeps/s390.mk @@ -0,0 +1,24 @@ +# build 64-bit (s390x) alternative library +GLIBC_PASSES += s390x +DEB_ARCH_REGULAR_PACKAGES += libc6-s390x libc6-dev-s390x +s390x_add-ons = nptl $(add-ons) +s390x_configure_target = s390x-linux +s390x_CC = $(CC) -m64 +libc6-s390x_shlib_dep = libc6-s390x (>= $(shlib_dep_ver)) +s390x_extra_cflags = -g -O3 +s390x_slibdir = /lib64 +s390x_libdir = /usr/lib64 +s390x_extra_config_options := $(extra_config_options) --disable-profile \ + --includedir=/usr/include/s390x-linux-gnu + +define libc6-dev-s390x_extra_pkg_install +mkdir -p debian/libc6-dev-s390x/usr/include/gnu +cp -af debian/tmp-s390x/usr/include/s390x-linux-gnu/gnu/stubs-64.h \ + debian/libc6-dev-s390x/usr/include/gnu +ln -sf . debian/libc6-dev-s390x/usr/include/s390x-linux-gnu +endef + +define libc6-s390x_extra_pkg_install +mkdir -p debian/$(curpass)/lib +ln -s /lib64/ld64.so.1 debian/$(curpass)/lib +endef --- glibc-2.5.orig/debian/sysdeps/alpha.mk +++ glibc-2.5/debian/sysdeps/alpha.mk @@ -0,0 +1,5 @@ +libc = libc6.1 + +# disabled because alpha linuxthreads ex7, ex9, ex10, ex18 stopps eternally +# even if TIMEOUTSCALE is set - SIGALRM from the program is just ignored. +#RUN_TESTSUITE = no --- glibc-2.5.orig/debian/sysdeps/depflags.pl +++ glibc-2.5/debian/sysdeps/depflags.pl @@ -0,0 +1,198 @@ +#!/usr/bin/perl + +# These get export by debian/sysdeps/depflags.mk +$DEB_HOST_GNU_SYSTEM = $ENV{'DEB_HOST_GNU_SYSTEM'}; +$DEB_HOST_GNU_TYPE = $ENV{'DEB_HOST_GNU_TYPE'}; +$libc = $ENV{'libc'}; +$glibc = $ENV{'glibc'}; +@deptypes = ('Depends', 'Replaces', 'Conflicts', 'Provides', + 'Suggests'); + +# Let's make sure we are sane +if (!defined($DEB_HOST_GNU_SYSTEM) or !defined($DEB_HOST_GNU_TYPE) or + !defined($libc) or !defined($glibc)) { + die "Could not get all parameters"; +} + +@ARGV == 1 or die "Usage: depflags "; +$type = $ARGV[0]; + +# OS specific stuff +if ($DEB_HOST_GNU_SYSTEM eq "gnu") { + push @{$libc_dev_c{'Depends'}}, ('gnumach-dev', 'hurd-dev'); + push @{$libc_dev_c{'Replaces'}}, 'glibc2-dev'; + push @{$libc_dev_c{'Conflicts'}}, 'glibc2-dev'; + push @{$libc_c{'Replaces'}}, 'glibc2'; + push @{$libc_c{'Conflicts'}}, 'glibc2'; + push @{$libc_c{'Depends'}}, 'hurd (>= 20010718-1)'; +} +if ($DEB_HOST_GNU_SYSTEM eq "linux-gnu") { + push @{$libc_c{'Suggests'}}, 'locales'; + push @{$libc_dev_c{'Recommends'}}, 'c-compiler'; + push @{$libc_dev_c{'Replaces'}}, ('man-db (<= 2.3.10-41)', 'gettext (<= 0.10.26-1)', + 'ppp (<= 2.2.0f-24)', 'libgdbmg1-dev (<= 1.7.3-24)'); + push @{$libc_dev_c{'Depends'}}, 'linux-libc-dev | linux-kernel-headers'; +} +if ($DEB_HOST_GNU_SYSTEM eq "kfreebsd-gnu") { + push @{$libc_c{'Suggests'}}, 'locales'; + push @{$libc_c{'Replaces'}}, 'libc0.1-dev (<< 2.3.2.ds1-14)'; + push @{$libc_dev_c{'Recommends'}}, 'c-compiler'; + push @{$libc_dev_c{'Replaces'}}, 'kfreebsd-kernel-headers (<< 0.11)'; + push @{$libc_dev_c{'Depends'}}, 'kfreebsd-kernel-headers (>= 0.11)'; +} + +# ${glibc}-doc is suggested by $libc_c and $libc_dev_c. +push @{$libc_c{'Suggests'}}, "${glibc}-doc"; +push @{$libc_dev_c{'Suggests'}}, "${glibc}-doc"; +push @{$libc_dev_c{'Suggests'}}, "manpages-dev"; + +# nss-db is now seperate +push @{$libc_c{'Recommends'}}, 'libnss-db'; + +# tzdata is now separate +# In Ubuntu, it's a recommends. +push @{$libc_c{'Recommends'}}, 'tzdata'; + +# Old strace doesn't work with current libc6 +push @{$libc_c{'Conflicts'}}, 'strace (<< 4.0-0)'; + +# 2.1.94 required a patch, applied in gcc -15, so c++ compiles will work again +push @{$libc_dev_c{'Conflicts'}}, 'libstdc++2.10-dev (<< 1:2.95.2-15)'; + +# 2.2.2+CVS requires a newer gcc. For non-i386, we just worry about the +# weak-sym patch, since on i386 we need an even newer one because of the +# pic-kludge that breaks libc_nonshared.a inclusion. +if ($DEB_HOST_GNU_TYPE =~ m/^i486-linux-gnu$/) { + push @{$libc_dev_c{'Conflicts'}}, 'gcc-2.95 (<< 1:2.95.3-9)'; +} else { + push @{$libc_dev_c{'Conflicts'}}, 'gcc-2.95 (<< 1:2.95.3-8)'; +} + +# The db2 changes left libnss-db broken, except for the newer version +# which uses db3 +push @{$libc_c{'Conflicts'}}, 'libnss-db (<= 2.2-6.1.1)'; + +# From now on we provide our own ldconfig and ldd, so we don't need ldso +push @{$libc_dev_c{'Replaces'}}, 'ldso (<= 1.9.11-9)'; +push @{$libc_c{'Replaces'}}, 'ldso (<= 1.9.11-9)'; + +# Some old packages from glibc that don't get built, but need to be handled +push @{$libc_c{'Replaces'}}, ('timezone', 'timezones', 'gconv-modules', + 'libtricks'); +push @{$libc_c{'Conflicts'}}, ('timezone', 'timezones', 'gconv-modules', + 'libtricks', "${libc}-doc"); + +# conflicts from libc5 days +if ($DEB_HOST_GNU_TYPE =~ m/^(i486|m68k)-linux-gnu$/) { + push @{$libc_c{'Conflicts'}}, ('libc5 (<< 5.4.33-7)', 'libpthread0 (<< 0.7-10)'); +} elsif ($DEB_HOST_GNU_TYPE eq 'sparc-linux-gnu') { + push @{$libc_c{'Conflicts'}}, ('libc5 (<< 5.3.12-2)', 'libpthread0 (<< 0.7-10)'); +} +if ($DEB_HOST_GNU_TYPE =~ m/^(alpha|i486|m68k|sparc)-linux-gnu$/) { + push @{$libc_dev_c{'Conflicts'}}, ('libpthread0-dev', 'libdl1-dev', + 'libdb1-dev', 'libgdbm1-dev'); + # Add this here too, old package + push @{$libc_c{'Conflicts'}}, ("${libc}-bin", 'libwcsmbs'); + push @{$libc_c{'Replaces'}}, "${libc}-bin"; +} + +# Old, Pre glibc 2.1 +if ($DEB_HOST_GNU_TYPE =~ m/^(alpha|i486|m68k|sparc|powerpc|arm)-linux-gnu$/) { + push @{$libc_dev_c{'Conflicts'}}, ("${libc}-dev (<< 2.0.110-1)", + 'locales (<< 2.1.3-5)'); +} + +# XXX: Not sure why this conflict is here, maybe broken c++? +if ($DEB_HOST_GNU_TYPE =~ m/^(i486|m68k|alpha)-linux-gnu$/) { + push @{$libc_c{'Conflicts'}}, ('apt (<< 0.3.0)', 'libglib1.2 (<< 1.2.1-2)'); +} + +# Some old c++ libs +if ($DEB_HOST_GNU_TYPE =~ m/^(alpha|i486)-linux-gnu$/) { + push @{$libc_dev_c{'Conflicts'}}, 'libstdc++2.9-dev'; +} elsif ($DEB_HOST_GNU_TYPE eq "powerpc-linux-gnu") { + push @{$libc_dev_c{'Conflicts'}}, ('libstdc++2.9 (<< 2.91.58-2.1)', + 'libstdc++2.8 (<< 2.90.29-1)'); +} elsif ($DEB_HOST_GNU_TYPE eq "m68k-linux-gnu") { + push @{$libc_dev_c{'Conflicts'}}, 'libstdc++2.9-dev'; +} + +# XXX: What is this!? +if ($DEB_HOST_GNU_TYPE eq "alpha-linux-gnu") { + push @{$libc_dev_c{'Conflicts'}}, ('libncurses4-dev (<< 4.2-3.1)', + 'libreadlineg2-dev (<< 2.1-13.1)'); +} + +# Conflict/Replace netkit-rpc, and its manpages +push @{$libc_c{'Conflicts'}}, 'netkit-rpc'; +push @{$libc_c{'Replaces'}}, 'netkit-rpc'; +push @{$libc_dev_c{'Conflicts'}}, 'netkit-rpc'; +push @{$libc_dev_c{'Replaces'}}, 'netkit-rpc'; +push @{$libc_c{'Replaces'}}, 'netbase (<< 4.0)'; +push @{$libc_dev_c{'Replaces'}}, 'netbase (<< 4.0)'; + +# Conflict old wine - didn't like NPTL +push @{$libc_c{'Conflicts'}}, 'wine (<< 0.0.20031118-1)'; + +# Conflict some packages because of bad errno handling +push @{$libc_c{'Conflicts'}}, 'cyrus-imapd (<< 1.5.19-15)'; + +# Conflict old gcc because they have /usr/hppa64-linux/include symlink +# (Bug#239020) +if ($DEB_HOST_GNU_TYPE eq "hppa-linux-gnu") { + push @{$libc_dev_c{'Conflicts'}}, ('gcc-3.3-hppa64 (<= 1:3.3.3-6)', + 'gcc-3.4-hppa64 (<= 3.4-0pre4)'); +} + +# Replace kerberos4kth-dev (<< 1.2.2-10) for fixing #234347. +push @{$libc_dev_c{'Replaces'}}, 'kerberos4kth-dev (<< 1.2.2-10)'; + +# Replace libc-dev (<< 2.3.2.ds1-14) for fixing #239170. +# Replace libc-dev (<< 2.3.5-2) for fixing #280030. +push @{$libc_dev_c{'Replaces'}}, "${libc}-prof (<< 2.3.5-2)"; + +# Conflict e2fsprogs (<< 1.35-7) that cannot work with new ldd. +push @{$libc_c{'Conflicts'}}, 'e2fsprogs (<< 1.35-7)'; + +# Conflict old initrd-tools (<< 0.1.84.1) that cannot work with +# new libc. +push @{$libc_c{'Conflicts'}}, 'initrd-tools (<< 0.1.84.1)'; + +# Ubuntu hack until Dapper releases: Hard depend on locales to make sure +# # that timezones pieces get pulled in for upgrades +push @{$libc_c{'Depends'}}, 'locales (>= 2.3.11)'; + +# Ubuntu hack to cope with the fact that we shipped /lib64 and /usr/lib64 +# in base-files for a while, and now they're in libc6, same as Debian +if ($DEB_HOST_GNU_TYPE eq "x86_64-linux-gnu") { + push @{$libc_c{'Replaces'}}, 'base-files (<< 3.1.9ubuntu8)'; +} + +## Depends on a binutils version that supports DT_GNU_HASH +#push @{$libc_dev_c{'Depends'}}, 'binutils (>= 2.17.50)'; + +# Make sure we only have one version of libc-dev installed +push @{$libc_dev_c{'Provides'}}, 'libc-dev'; +push @{$libc_dev_c{'Conflicts'}}, 'libc-dev'; +if ($libc ne "libc6") { + push @{$libc_dev_c{'Provides'}}, 'libc6-dev'; +} + +# Conflict with broken libterm-readline-gnu-perl to avoid #326856. +push @{$libc_c{'Conflicts'}}, 'libterm-readline-gnu-perl (<< 1.15-2)'; + +# Conflict with older versions of tzdata that need tzconfig. +push @{$libc_c{'Conflicts'}}, 'tzdata (<< 2007e-2)'; + +if ($type eq "libc") { + %pkg = %libc_c; +} elsif ($type eq "libc_dev") { + %pkg = %libc_dev_c; +} else { + die "Unknown package $type"; +} + +foreach $dep (@deptypes) { + next if not defined($pkg{$dep}); + print "-D${dep}=\"" . join(', ', @{$pkg{$dep}}) . "\" "; +} --- glibc-2.5.orig/debian/sysdeps/amd64.mk +++ glibc-2.5/debian/sysdeps/amd64.mk @@ -0,0 +1,42 @@ +libc_add-ons = nptl $(add-ons) +libc_extra_cflags = -O3 -g +libc_slibdir = /lib +libc_libdir = /usr/lib +libc_rtlddir = /lib64 + +# /lib64 and /usr/lib64 are provided by glibc instead base-files: #259302. +define libc6_extra_pkg_install +ln -sf /lib debian/$(curpass)/lib64 +ln -sf lib debian/$(curpass)/usr/lib64 +endef + +# build 32-bit (i386) alternative library +GLIBC_PASSES += i386 +DEB_ARCH_REGULAR_PACKAGES += libc6-i386 libc6-dev-i386 +libc6-i386_shlib_dep = libc6-i386 (>= $(shlib_dep_ver)) + +# This section is quite different in Ubuntu. +# +# This only looks like i386. It's really i686, fine for compatability +i386_add-ons = nptl $(add-ons) +i386_configure_target = i686-linux +i386_CC = $(BUILD_CC) -m32 +i386_CXX = $(BUILD_CXX) -m32 +i386_MAKEFLAGS = MAKEFLAGS="gconvdir=/usr/lib32/gconv" +i386_extra_cflags = -march=i686 -mtune=generic -g -O3 +i386_extra_config_options = $(extra_config_options) --includedir=/usr/include/i486-linux-gnu --disable-profile +#i386_rtlddir = /lib +i386_slibdir = /lib32 +i386_libdir = /usr/lib32 + +define libc6-dev-i386_extra_pkg_install +mkdir -p debian/libc6-dev-i386/usr/include +cp -af debian/tmp-i386/usr/include/i486-linux-gnu \ + debian/libc6-dev-i386/usr/include +endef + +define libc6-i386_extra_pkg_install +mkdir -p debian/libc6-i386/lib +ln -s /lib32/ld-linux.so.2 debian/libc6-i386/lib/ld-linux.so.2 +endef + --- glibc-2.5.orig/debian/sysdeps/sparc.mk +++ glibc-2.5/debian/sysdeps/sparc.mk @@ -0,0 +1,78 @@ +# build 64-bit (sparc64) alternative library +GLIBC_PASSES += sparc64 +DEB_ARCH_REGULAR_PACKAGES += libc6-sparc64 libc6-dev-sparc64 +sparc64_add-ons = nptl $(add-ons) +sparc64_configure_target=sparc64-linux +sparc64_CC = $(BUILD_CC) -m64 +sparc64_CXX = $(BUILD_CXX) -m64 +sparc64_extra_cflags = -g -O3 +libc6-sparc64_shlib_dep = libc6-sparc64 (>= $(shlib_dep_ver)) +sparc64_slibdir = /lib64 +sparc64_libdir = /usr/lib64 +sparc64_extra_config_options = $(extra_config_options) --disable-profile \ + --includedir=/usr/include/sparc64-linux-gnu + +define libc6-dev-sparc64_extra_pkg_install +mkdir -p debian/libc6-dev-sparc64/usr/include/gnu +cp -af debian/tmp-sparc64/usr/include/sparc64-linux-gnu/gnu/stubs-64.h \ + debian/libc6-dev-sparc64/usr/include/gnu +mkdir -p debian/libc6-dev-sparc64/usr/include/sparc64-linux-gnu +cp -af debian/tmp-sparc64/usr/include/* \ + debian/libc6-dev-sparc64/usr/include/sparc64-linux-gnu/ +endef + +GLIBC_PASSES += sparc64b +DEB_ARCH_REGULAR_PACKAGES += libc6-sparc64b +sparc64b_add-ons = nptl $(add-ons) +sparc64b_configure_build=sparc64-linux +sparc64b_configure_target=sparc64b-linux +sparc64b_CC = $(BUILD_CC) -m64 -mcpu=ultrasparc3 +sparc64b_CXX = $(BUILD_CXX) -m64 -mcpu=ultrasparc3 +sparc64b_extra_cflags = -g2 -O3 +sparc64b_extra_config_options = $(extra_config_options) --disable-profile +libc6-sparc64b_shlib_dep = libc6-sparc64b (>= $(shlib_dep_ver)) +sparc64b_slibdir = /lib64/ultra3 + +GLIBC_PASSES += sparc64v +DEB_ARCH_REGULAR_PACKAGES += libc6-sparc64v +sparc64v_add-ons = nptl $(add-ons) +sparc64v_configure_build=sparc64-linux +sparc64v_configure_target=sparc64v-linux +sparc64v_CC = $(BUILD_CC) -m64 -mcpu=niagara +sparc64v_CXX = $(BUILD_CXX) -m64 -mcpu=niagara +sparc64v_extra_cflags = -g2 -O3 +sparc64v_extra_config_options = $(extra_config_options) --disable-profile +libc6-sparc64v_shlib_dep = libc6-sparc64v (>= $(shlib_dep_ver)) +sparc64v_slibdir = /lib64/v9v + +# build a sparcv9 optimized library +#GLIBC_PASSES += sparcv9 +#DEB_ARCH_REGULAR_PACKAGES += libc6-sparcv9 +sparcv9_add-ons = nptl $(add-ons) +sparcv9_configure_target=sparcv9-linux +sparcv9_configure_build=sparcv9-linux +sparcv9_extra_cflags = -g -O3 +sparcv9_extra_config_options = $(extra_config_options) --disable-profile +sparcv9_rtlddir = /lib +sparcv9_slibdir = /lib/v9 + +# build a sparcv9b optimized library +GLIBC_PASSES += sparcv9b +DEB_ARCH_REGULAR_PACKAGES += libc6-sparcv9b +sparcv9b_add-ons = nptl $(add-ons) +sparcv9b_configure_target=sparcv9b-linux +sparcv9b_configure_build=sparcv9b-linux +sparcv9b_extra_cflags = -mtune=ultrasparc3 -g -O3 +sparcv9b_extra_config_options = $(extra_config_options) --disable-profile +sparcv9b_rtlddir = /lib +sparcv9b_slibdir = /lib/ultra3 + +GLIBC_PASSES += sparcv9v +DEB_ARCH_REGULAR_PACKAGES += libc6-sparcv9v +sparcv9v_add-ons = nptl $(add-ons) +sparcv9v_configure_target=sparcv9v-linux +sparcv9v_extra_cflags = -O3 -mtune=niagara +sparcv9v_extra_config_options = $(extra_config_options) --disable-profile --with-tls --with-__thread +sparcv9v_rtlddir = /lib +sparcv9v_slibdir = /lib/v9v + --- glibc-2.5.orig/debian/sysdeps/hurd.mk +++ glibc-2.5/debian/sysdeps/hurd.mk @@ -0,0 +1,32 @@ +# This is for the GNU OS. Commonly known as the Hurd. + +GLIBC_OVERLAYS ?= $(shell ls glibc-linuxthreads* glibc-ports* glibc-libidn*) + +threads = no +libc = libc0.3 +slibdir = /lib + +# Glibc should really do this for us. +define libc_extra_install +mkdir -p debian/tmp-$(curpass)/lib +ln -s ld.so.1 debian/tmp-$(curpass)/lib/ld.so +endef + +# Do not care about kernel versions for now. +define kernel_check +true +endef + +# TLS is broken currently and results in Mach panicing. +# ld.so is broken currently if z_relro is used. +libc_extra_config_options := $(extra_config_options) --without-__thread --without-tls libc_cv_z_relro=no + +# Build with gcc-4.1 is not yet supported. +CC = gcc-4.0 +BUILD_CC = gcc-4.0 + +# Only use libidn as add-on. +standard-add-ons = libidn + +# disabled because the testsuite is known to provoke build abortions. +RUN_TESTSUITE = no --- glibc-2.5.orig/debian/sysdeps/arm.mk +++ glibc-2.5/debian/sysdeps/arm.mk @@ -0,0 +1 @@ +libc_add-ons = ports nptl $(add-ons) --- glibc-2.5.orig/debian/sysdeps/hppa.mk +++ glibc-2.5/debian/sysdeps/hppa.mk @@ -0,0 +1,21 @@ +# To build the NPTL version of the glibc on hppa, uncomment the following line +# and comment the two next ones. Note that you need TLS support, which means a +# recent binutils (> 2.17) and a gcc (>= 4.1) built against this binutils. +libc_add-ons = ports nptl $(add-ons) +#libc_add-ons = ports linuxthreads $(add-ons) +#libc_extra_config_options = $(extra_config_options) --disable-sanity-checks + +# We need LWS CAS support +libc_MIN_KERNEL_SUPPORTED = 2.6.9 + +# hppa64 needs symlink /usr/hppa64-linux/include to /usr/include +# (See: Bug#239020) In future we may drop this file with supporting hppa64. + +define libc6-dev_extra_pkg_install +mkdir -p debian/$(curpass)/usr +mkdir -p debian/$(curpass)/usr/hppa64-linux +ln -sf /usr/include debian/$(curpass)/usr/hppa64-linux/include +mkdir -p debian/$(curpass)/usr/hppa64-linux-gnu +ln -sf /usr/include debian/$(curpass)/usr/hppa64-linux-gnu/include +endef + --- glibc-2.5.orig/debian/sysdeps/i386.mk +++ glibc-2.5/debian/sysdeps/i386.mk @@ -0,0 +1,82 @@ +# We use -mno-tls-direct-seg-refs to not wrap-around segments, as it +# greatly reduce the speed when running under the Xen hypervisor. +# libc_extra_config_options = $(extra_config_options) --without-__thread --disable-sanity-checks +libc_extra_cflags = -mno-tls-direct-seg-refs + +define libc6_extra_pkg_install +mkdir -p debian/$(curpass)/usr/lib +ln -sf /lib/i486-linux-gnu debian/$(curpass)/lib/i386-linux-gnu +ln -sf /usr/lib/i486-linux-gnu debian/$(curpass)/usr/lib/i386-linux-gnu +endef + +# NPTL requires at least i486 assembly. We don't need to take +# special measures for i386 systems, since Debian kernel images now +# emulate the missing instructions on the i386. +nptl_configure_target=i486-linux +nptl_configure_build=i486-linux +nptl_extra_cflags = -march=i486 -mtune=i686 -g -O3 + +# We use -march=i686 and glibc's i686 routines use cmov, so require it. +# A Debian-local glibc patch adds cmov to the search path. +# The optimized libraries also use NPTL! +GLIBC_PASSES += i686 +DEB_ARCH_REGULAR_PACKAGES += libc6-i686 +i686_add-ons = nptl $(add-ons) +i686_configure_target=i686-linux +i686_extra_cflags = -march=i686 -mtune=i686 -g -O3 +i686_rtlddir = /lib +i686_slibdir = /lib/tls/i686/cmov +i686_extra_config_options = $(extra_config_options) --disable-profile + +# We use -mno-tls-direct-seg-refs to not wrap-around segments, as it +# greatly increase the speed when running under the Xen hypervisor. +GLIBC_PASSES += xen +DEB_ARCH_REGULAR_PACKAGES += libc6-xen +xen_add-ons = nptl $(add-ons) +xen_configure_target=i686-linux +xen_extra_cflags = -march=i686 -mtune=i686 -g -O3 -mno-tls-direct-seg-refs +xen_rtlddir = /lib +xen_slibdir = /lib/tls/i686/nosegneg +xen_extra_config_options = $(extra_config_options) --disable-profile + +define xen_extra_install +mkdir -p debian/libc6-xen/etc/ld.so.conf.d +echo '# This directive teaches ldconfig to search in nosegneg subdirectories' > debian/libc6-xen/etc/ld.so.conf.d/xen.conf +echo '# and cache the DSOs there with extra bit 0 set in their hwcap match' >> debian/libc6-xen/etc/ld.so.conf.d/xen.conf +echo '# fields. In Xen guest kernels, the vDSO tells the dynamic linker to' >> debian/libc6-xen/etc/ld.so.conf.d/xen.conf +echo '# search in nosegneg subdirectories and to match this extra hwcap bit' >> debian/libc6-xen/etc/ld.so.conf.d/xen.conf +echo '# in the ld.so.cache file.' >> debian/libc6-xen/etc/ld.so.conf.d/xen.conf +echo 'hwcap 0 nosegneg' >> debian/libc6-xen/etc/ld.so.conf.d/xen.conf +endef + +# build 64-bit (amd64) alternative library +GLIBC_PASSES += amd64 +DEB_ARCH_REGULAR_PACKAGES += libc6-amd64 libc6-dev-amd64 +libc6-amd64_shlib_dep = libc6-amd64 (>= $(shlib_dep_ver)) +amd64_add-ons = nptl $(add-ons) +amd64_configure_target = x86_64-linux +# __x86_64__ is defined here because Makeconfig uses -undef and the +# /usr/include/asm wrappers need that symbol. +amd64_CC = $(CC) -m64 -D__x86_64__ +amd64_CXX = $(CXX) -m64 -D__x86_64__ +amd64_extra_cflags = -O3 -g +amd64_extra_config_options = $(extra_config_options) --disable-profile \ + --includedir=/usr/include/x86_64-linux-gnu +amd64_slibdir = /lib64 +amd64_libdir = /usr/lib64 + +define amd64_extra_install +cp debian/tmp-amd64/usr/bin/ldd debian/tmp-libc/usr/bin +endef + +define libc6-dev_extra_pkg_install +mkdir -p debian/libc6-dev/usr/lib/xen +cp -af debian/tmp-xen/usr/lib/*.a \ + debian/libc6-dev/usr/lib/xen +endef + +define libc6-dev-amd64_extra_pkg_install +mkdir -p debian/libc6-dev-amd64/usr/include +cp -af debian/tmp-amd64/usr/include/x86_64-linux-gnu \ + debian/libc6-dev-amd64/usr/include +endef --- glibc-2.5.orig/debian/sysdeps/depflags.mk +++ glibc-2.5/debian/sysdeps/depflags.mk @@ -0,0 +1,25 @@ +depflags = libc=$(libc) glibc=glibc \ + DEB_HOST_GNU_SYSTEM=$(DEB_HOST_GNU_SYSTEM) \ + DEB_HOST_GNU_TYPE=$(DEB_HOST_GNU_TYPE) \ + perl debian/sysdeps/depflags.pl + +libc_control_flags = $(shell $(depflags) libc) +libc_dev_control_flags = $(shell $(depflags) libc_dev) + +# If there's a -DDepends for libc-dev, add this to it. If there isn't +# then the control file's depends line (which contains this) will be used. +# This is gross and another reason why depflags.pl must die. +libc_dev_dep = $(libc) (= $(DEB_VERSION)), +libc_dev_control_flags := $(subst Depends=",Depends="$(libc_dev_dep) ,$(libc_dev_control_flags)) + +$(libc)_control_flags = $(libc_control_flags) +$(libc)-dev_control_flags = $(libc_dev_control_flags) + +test_depflags: + @echo + @echo "$(libc):" + @echo ' $(libc_control_flags)' + @echo + @echo "$(libc)-dev:" + @echo ' $(libc_dev_control_flags)' + @echo --- glibc-2.5.orig/debian/sysdeps/mipsel.mk +++ glibc-2.5/debian/sysdeps/mipsel.mk @@ -0,0 +1,34 @@ +libc_add-ons = ports nptl $(add-ons) + +# build 32-bit (n32) alternative library +# GLIBC_PASSES += mipsn32 +# DEB_ARCH_REGULAR_PACKAGES += libc6-mipsn32 libc6-dev-mipsn32 +mipsn32_add-ons = ports nptl $(add-ons) +mipsn32_configure_target = mips32-linux +mipsn32_CC = $(CC) -mabi=n32 +libc6-mipsn32_shlib_dep = libc6-mipsn32 (>= $(shlib_dep_ver)) +mipsn32_extra_cflags = -O3 -g +mipsn32_slibdir = /lib32 +mipsn32_libdir = /usr/lib32 +mipsn32_extra_config_options := $(extra_config_options) --disable-profile + +# build 64-bit alternative library +# GLIBC_PASSES += mips64 +# DEB_ARCH_REGULAR_PACKAGES += libc6-mips64 libc6-dev-mips64 +mips64_add-ons = ports nptl $(add-ons) +mips64_configure_target = mips64-linux +mips64_CC = $(CC) -mabi=64 +libc6-mips64_shlib_dep = libc6-mips64 (>= $(shlib_dep_ver)) +mips64_extra_cflags = -O3 -g +mips64_slibdir = /lib64 +mips64_libdir = /usr/lib64 +mips64_extra_config_options := $(extra_config_options) --disable-profile + +# Need to put a tri-arch aware version of ldd in the base package +define mipsn32_extra_install +cp debian/tmp-mipsn32/usr/bin/ldd debian/tmp-libc/usr/bin +endef + +# This is needed to keep binutils (ar & ranlib) from getting confused about +# the file format being used. +#export GNUTARGET=elf64-tradlittlemips --- glibc-2.5.orig/debian/sysdeps/mips.mk +++ glibc-2.5/debian/sysdeps/mips.mk @@ -0,0 +1,34 @@ +libc_add-ons = ports nptl $(add-ons) + +# build 32-bit (n32) alternative library +# GLIBC_PASSES += mipsn32 +# DEB_ARCH_REGULAR_PACKAGES += libc6-mipsn32 libc6-dev-mipsn32 +mipsn32_add-ons = ports nptl $(add-ons) +mipsn32_configure_target = mips32-linux +mipsn32_CC = $(CC) -mabi=n32 +libc6-mipsn32_shlib_dep = libc6-mipsn32 (>= $(shlib_dep_ver)) +mipsn32_extra_cflags = -O3 -g +mipsn32_slibdir = /lib32 +mipsn32_libdir = /usr/lib32 +mipsn32_extra_config_options := $(extra_config_options) --disable-profile + +# build 64-bit (64) alternative library +# GLIBC_PASSES += mips64 +# DEB_ARCH_REGULAR_PACKAGES += libc6-mips64 libc6-dev-mips64 +mips64_add-ons = ports nptl $(add-ons) +mips64_configure_target = mips64-linux +mips64_CC = $(CC) -mabi=64 +libc6-mips64_shlib_dep = libc6-mips64 (>= $(shlib_dep_ver)) +mips64_extra_cflags = -O3 -g +mips64_slibdir = /lib64 +mips64_libdir = /usr/lib64 +mips64_extra_config_options := $(extra_config_options) --disable-profile + +# Need to put a tri-arch aware version of ldd in the base package +define mipsn32_extra_install +cp debian/tmp-mipsn32/usr/bin/ldd debian/tmp-libc/usr/bin +endef + +# This is needed to keep binutils (ar & ranlib) from getting confused about +# the file format being used. +#export GNUTARGET=elf64-tradbigmips --- glibc-2.5.orig/debian/sysdeps/linux.mk +++ glibc-2.5/debian/sysdeps/linux.mk @@ -0,0 +1,60 @@ +GLIBC_OVERLAYS ?= $(shell ls glibc-linuxthreads* glibc-ports* glibc-libidn*) +MIN_KERNEL_SUPPORTED := 2.6.1 +libc = libc6 + +# In Ubuntu, we only do NPTL. +# Linuxthreads Config +threads = yes +libc_add-ons = nptl $(add-ons) +libc_extra_config_options = $(extra_config_options) + +ifndef LINUX_SOURCE + ifeq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) + LINUX_HEADERS := /usr/include + else + LINUX_HEADERS := /usr/$(DEB_HOST_GNU_TYPE)/include + endif +else + LINUX_HEADERS := $(LINUX_SOURCE)/include +endif + +# Minimum Kernel supported +with_headers = --with-headers=$(shell pwd)/debian/include --enable-kernel=$(call xx,MIN_KERNEL_SUPPORTED) + +# NPTL Config +nptl_add-ons = nptl $(add-ons) +nptl_extra_config_options = $(extra_config_options) --disable-profile +nptl_extra_cflags = -g1 -O3 +nptl_rtlddir = /lib +nptl_slibdir = /lib/tls +nptl_MIN_KERNEL_SUPPORTED = 2.6.0 + +KERNEL_HEADER_DIR = $(stamp)mkincludedir +$(stamp)mkincludedir: + rm -rf debian/include + mkdir debian/include + ln -s $(LINUX_HEADERS)/linux debian/include + # Link all asm directories. We can't just link asm and asm-generic + # because of explicit references to and + # . + find $(LINUX_HEADERS) -maxdepth 1 -xtype d -name asm\* \ + -exec ln -s '{}' debian/include ';' + + # To make configure happy if libc6-dev is not installed. + touch debian/include/assert.h + + touch $@ + +# Also to make configure happy. +export CPPFLAGS = -isystem $(shell pwd)/debian/include + +# This round of ugliness decomposes the Linux kernel version number +# into an integer so it can be easily compared and then does so. +CURRENT_KERNEL_VERSION=$(shell uname -r) +define kernel_check +(minimum=$$((`echo $(1) | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 65536 + \2 \* 256 + \3/'`)); \ +current=$$((`echo $(CURRENT_KERNEL_VERSION) | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 65536 + \2 \* 256 + \3/'`)); \ +if [ $$current -lt $$minimum ]; then \ + false; \ +fi) +endef --- glibc-2.5.orig/debian/sysdeps/kfreebsd-amd64.mk +++ glibc-2.5/debian/sysdeps/kfreebsd-amd64.mk @@ -0,0 +1,36 @@ +libc_slibdir = /lib +libc_libdir = /usr/lib +libc_rtlddir = /lib + +# /lib64 and /usr/lib64 are provided by glibc instead base-files: #259302. +define libc0.1_extra_pkg_install +ln -sf /lib debian/$(curpass)/lib64 +ln -sf lib debian/$(curpass)/usr/lib64 +endef + +# build 32-bit (i386) alternative library +GLIBC_PASSES += i386 +DEB_ARCH_REGULAR_PACKAGES += libc0.1-i386 libc0.1-dev-i386 +libc0.1-i386_shlib_dep = libc0.1-i386 (>= $(shlib_dep_ver)) + +i386_configure_target = i486-kfreebsd +i386_CC = $(CC) -m32 +i386_add-ons = ports linuxthreads $(add-ons) +i386_extra_cflags = -march=pentium4 -g -O3 +i386_extra_config_options = $(extra_config_options) --disable-compatible-utmp --includedir=/usr/include/i486-kfreebsd-gnu +i386_rtlddir = /lib +i386_slibdir = /lib32 +i386_libdir = /usr/lib32 +i386_MIN_KERNEL_SUPPORTED = 5.4.0 + +define libc0.1-dev-i386_extra_pkg_install +mkdir -p debian/libc0.1-dev-i386/usr/include +cp -af debian/tmp-i386/usr/include/i486-kfreebsd-gnu \ + debian/libc0.1-dev-i386/usr/include +endef + +define libc0.1-i386_extra_pkg_install +mkdir -p debian/libc0.1-i386/lib +ln -sf /lib32/ld.so.1 debian/libc0.1-i386/lib +ln -sf /lib32 debian/libc0.1-i386/lib32 +endef --- glibc-2.5.orig/debian/sysdeps/ppc64.mk +++ glibc-2.5/debian/sysdeps/ppc64.mk @@ -0,0 +1,37 @@ +libc_extra_cflags = -O3 -1 +libc_slibdir = /lib +libc_libdir = /usr/lib +libc_rtlddir = /lib64 + +# /lib64 and /usr/lib64 are provided as symlinks +define libc6_extra_pkg_install +ln -sf /lib debian/$(curpass)/lib64 +ln -sf lib debian/$(curpass)/usr/lib64 +endef + +# build 32-bit (powerpc) alternative library +GLIBC_PASSES += powerpc +DEB_ARCH_REGULAR_PACKAGES += libc6-powerpc libc6-dev-powerpc +libc6-powerpc_shlib_dep = libc6-powerpc (>= $(shlib_dep_ver)) +powerpc_add-ons = nptl $(add-ons) +powerpc_configure_target = powerpc-linux +powerpc_CC = $(CC) -m32 +powerpc_extra_cflags = -O3 -g +powerpc_rtlddir = /lib +powerpc_slibdir = /lib32 +powerpc_libdir = /usr/lib32 +powerpc_extra_config_options := $(extra_config_options) --disable-profile \ + --includedir=/usr/include/powerpc-linux-gnu + +define libc6-dev-powerpc_extra_pkg_install +mkdir -p debian/libc6-dev-powerpc/usr/include/gnu +cp -af debian/tmp-powerpc/usr/include/powerpc-linux-gnu/gnu/stubs-32.h \ + debian/libc6-dev-powerpc/usr/include/gnu +ln -sf /usr/include/ debian/libc6-dev-powerpc/usr/include/powerpc-linux-gnu +endef + +# create a symlink for the 32 bit dynamic linker in /lib +define libc6-powerpc_extra_pkg_install +mkdir -p debian/$(curpass)/lib +ln -s /lib32/ld.so.1 debian/$(curpass)/lib +endef --- glibc-2.5.orig/debian/sysdeps/ia64.mk +++ glibc-2.5/debian/sysdeps/ia64.mk @@ -0,0 +1 @@ +libc = libc6.1 --- glibc-2.5.orig/debian/sysdeps/m68k.mk +++ glibc-2.5/debian/sysdeps/m68k.mk @@ -0,0 +1,3 @@ +libc_MIN_KERNEL_SUPPORTED = 2.4.1 +libc_add-ons = ports linuxthreads $(add-ons) +libc_extra_config_options = $(extra_config_options) --disable-sanity-checks --without-__thread --without-tls --- glibc-2.5.orig/debian/sysdeps/powerpc.mk +++ glibc-2.5/debian/sysdeps/powerpc.mk @@ -0,0 +1,20 @@ +# build 64-bit (ppc64) alternative library +GLIBC_PASSES += ppc64 +DEB_ARCH_REGULAR_PACKAGES += libc6-ppc64 libc6-dev-ppc64 +ppc64_add-ons = nptl $(add-ons) +ppc64_configure_target = powerpc64-linux +ppc64_CC = $(CC) -m64 +ppc64_CXX = $(CXX) -m64 +libc6-ppc64_shlib_dep = libc6-ppc64 (>= $(shlib_dep_ver)) +ppc64_extra_cflags = -O3 -g +ppc64_slibdir = /lib64 +ppc64_libdir = /usr/lib64 +ppc64_extra_config_options := $(extra_config_options) --disable-profile \ + --includedir=/usr/include/powerpc64-linux-gnu + +define libc6-dev-ppc64_extra_pkg_install +mkdir -p debian/libc6-dev-ppc64/usr/include/powerpc64-linux-gnu +cp -af debian/tmp-ppc64/usr/include/powerpc64-linux-gnu/* \ + debian/libc6-dev-ppc64/usr/include/powerpc64-linux-gnu +endef + --- glibc-2.5.orig/debian/sysdeps/armeb.mk +++ glibc-2.5/debian/sysdeps/armeb.mk @@ -0,0 +1 @@ +libc_add-ons = ports nptl $(add-ons) --- glibc-2.5.orig/debian/sysdeps/kfreebsd-i386.mk +++ glibc-2.5/debian/sysdeps/kfreebsd-i386.mk @@ -0,0 +1,11 @@ +GLIBC_PASSES += i686 +DEB_ARCH_REGULAR_PACKAGES += libc0.1-i686 + +# We use -march=i686 and glibc's i686 routines use cmov, so require it. +# A Debian-local glibc patch adds cmov to the search path. +i686_add-ons = ports linuxthreads $(add-ons) +i686_configure_target=i686-kfreebsd +i686_extra_cflags = -march=i686 -mtune=i686 -g -O3 +i686_rtlddir = /lib +i686_slibdir = /lib/i686/cmov +i686_extra_config_options = $(extra_config_options) --disable-profile --disable-compatible-utmp --- glibc-2.5.orig/debian/sysdeps/armel.mk +++ glibc-2.5/debian/sysdeps/armel.mk @@ -0,0 +1 @@ +libc_add-ons = ports nptl $(add-ons) --- glibc-2.5.orig/debian/sysdeps/kfreebsd.mk +++ glibc-2.5/debian/sysdeps/kfreebsd.mk @@ -0,0 +1,59 @@ +GLIBC_OVERLAYS ?= $(shell ls glibc-linuxthreads* glibc-ports* glibc-libidn*) +MIN_KERNEL_SUPPORTED := 5.4.0 +libc = libc0.1 + +# Linuxthreads Config +threads = yes +libc_add-ons = ports linuxthreads $(add-ons) +libc_extra_config_options = $(extra_config_options) --disable-compatible-utmp + +ifndef KFREEBSD_SOURCE + ifeq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE)) + KFREEBSD_HEADERS := /usr/include + else + KFREEBSD_HEADERS := /usr/$(DEB_HOST_GNU_TYPE)/include + endif +else + KFREEBSD_HEADERS := $(KFREEBSD_SOURCE)/sys +endif + +# Minimum Kernel supported +with_headers = --with-headers=$(shell pwd)/debian/include --enable-kernel=$(call xx,MIN_KERNEL_SUPPORTED) + +KERNEL_HEADER_DIR = $(stamp)mkincludedir +$(stamp)mkincludedir: + rm -rf debian/include + mkdir debian/include + ln -s $(KFREEBSD_HEADERS)/net debian/include + ln -s $(KFREEBSD_HEADERS)/netatalk debian/include + ln -s $(KFREEBSD_HEADERS)/netipx debian/include + ln -s $(KFREEBSD_HEADERS)/nfs debian/include + ln -s $(KFREEBSD_HEADERS)/osreldate.h debian/include + ln -s $(KFREEBSD_HEADERS)/sys debian/include + ln -s $(KFREEBSD_HEADERS)/vm debian/include + + # Link all machine directories. We can't just link machine + # because of explicit references to and + # . + find $(KFREEBSD_HEADERS) -maxdepth 1 -xtype d -name machine\* \ + -exec ln -s '{}' debian/include ';' + + # To make configure happy if libc0.1-dev is not installed. + touch debian/include/assert.h + + touch $@ + +# Also to make configure happy. +export CPPFLAGS = -isystem $(shell pwd)/debian/include + +# This round of ugliness decomposes the FreeBSD kernel version number +# into an integer so it can be easily compared and then does so. +CURRENT_KERNEL_VERSION=$(shell uname -r) +define kernel_check +(minimum=$$((`echo $(1) | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)/\1 \* 10000 + \2 \* 100 + \3/'`)); \ +current=$$((`echo $(CURRENT_KERNEL_VERSION) | sed 's/\([0-9]*\)\.\([0-9]*\).*/\1 \* 10000 + \2 \* 100/'`)); \ +if [ $$current -lt $$minimum ]; then \ + false; \ +fi) +endef + --- glibc-2.5.orig/debian/sysdeps/m32r.mk +++ glibc-2.5/debian/sysdeps/m32r.mk @@ -0,0 +1,3 @@ +libc_MIN_KERNEL_SUPPORTED = 2.6.9 +libc_add-ons = ports linuxthreads $(add-ons) +libc_extra_config_options = $(extra_config_options) --disable-sanity-checks --- glibc-2.5.orig/debian/wrapper/objcopy +++ glibc-2.5/debian/wrapper/objcopy @@ -0,0 +1,11 @@ +#!/bin/sh + +case " $* " in + *" --only-keep-debug "*) + exec /usr/bin/objcopy -R .debug_info -R .debug_aranges -R .debug_pubnames \ + -R .debug_abbrev -R .debug_line -R .debug_str -R .debug_ranges \ + -R .debug_loc -R .comment -R .note "$@" + ;; +esac + +exec /usr/bin/objcopy "$@" --- glibc-2.5.orig/debian/libc6.NEWS +++ glibc-2.5/debian/libc6.NEWS @@ -0,0 +1,15 @@ +glibc (2.5-1) unstable; urgency=low + + Starting with version 2.5-1, the glibc requires a 2.6.1 or later + kernel. If you use a 2.4 kernel, please upgrade it *before* + installing glibc. + + This also means that it is not possible to use LD_ASSUME_KERNEL with a + version lower than 2.6.1. If you have set such a thing in /etc/profile, + ~/.bashrc or any other initialization file (something you should have + never done!!!), please remove that *before* installing glibc. + + Note: This does not apply to the m68k architecture and to non-Linux + kernels. + + -- Aurelien Jarno Tue, 24 Apr 2007 00:26:48 +0200 --- glibc-2.5.orig/debian/nscd.NEWS.Debian +++ glibc-2.5/debian/nscd.NEWS.Debian @@ -0,0 +1,11 @@ +glibc (2.5-5) unstable; urgency=low + + Since this release, hosts caching in nscd is off by default: for some of the + libc calls (gethostby* calls) nscd does not respect the DNS TTLs. It can + lead to system lockups (e.g. if you are using pam-ldap and change the IP of + your authentication server) hence is not considered safe. + + See debian bug #335476 and how upstream answered to that in + http://sourceware.org/bugzilla/show_bug.cgi?id=4428. + + -- Pierre Habouzit Sat, 28 Apr 2007 11:10:56 +0200