From 2969f5ff6000e5507be750d6f95d4828325d29c0 Mon Sep 17 00:00:00 2001 From: Kibum Kim Date: Mon, 27 Feb 2012 21:16:40 +0900 Subject: [PATCH] tizen beta release --- ABOUT-NLS | 1101 +++++ AUTHORS | 3 + COPYING | 340 ++ ChangeLog | 543 +++ INSTALL | 236 + Makefile.am | 6 + Makefile.in | 633 +++ NEWS | 3 + README | 37 + aclocal.m4 | 870 ++++ config.h.in | 268 ++ config/config.guess | 1465 ++++++ config/config.rpath | 614 +++ config/config.sub | 1569 ++++++ config/depcomp | 529 +++ config/install-sh | 323 ++ config/missing | 357 ++ config/mkinstalldirs | 111 + configure | 12036 +++++++++++++++++++++++++++++++++++++++++++++++ configure.ac | 113 + debian/README.Debian | 8 + debian/changelog | 275 ++ debian/compat | 1 + debian/control | 18 + debian/copyright | 15 + debian/dirs | 3 + debian/docs | 1 + debian/menu | 9 + debian/rules | 82 + doc/Makefile.am | 4 + doc/Makefile.in | 384 ++ doc/fuser.1 | 174 + doc/killall.1 | 113 + doc/peekfd.1 | 55 + doc/pstree.1 | 108 + icons/Makefile.am | 2 + icons/Makefile.in | 328 ++ icons/psmisc16.gif | Bin 0 -> 243 bytes icons/psmisc32.gif | Bin 0 -> 513 bytes icons/pstree16.xpm | 50 + icons/pstree32.xpm | 66 + m4/gettext.m4 | 419 ++ m4/iconv.m4 | 101 + m4/lib-ld.m4 | 110 + m4/lib-link.m4 | 644 +++ m4/lib-prefix.m4 | 185 + m4/nls.m4 | 31 + m4/po.m4 | 428 ++ m4/progtest.m4 | 92 + packaging/psmisc.spec | 48 + po/ChangeLog | 53 + po/LINGUAS | 2 + po/Makefile.in.in | 403 ++ po/Makevars | 41 + po/POTFILES.in | 5 + po/Rules-quot | 47 + po/bg.gmo | Bin 0 -> 12113 bytes po/bg.po | 487 ++ po/boldquot.sed | 10 + po/ca.gmo | Bin 0 -> 1992 bytes po/ca.po | 512 ++ po/de.gmo | Bin 0 -> 1662 bytes po/de.po | 460 ++ po/en@boldquot.header | 25 + po/en@quot.header | 22 + po/eu.gmo | Bin 0 -> 1963 bytes po/eu.po | 601 +++ po/fi.gmo | Bin 0 -> 1270 bytes po/fi.po | 539 +++ po/fr.gmo | Bin 0 -> 829 bytes po/fr.po | 461 ++ po/hu.gmo | Bin 0 -> 9360 bytes po/hu.po | 477 ++ po/insert-header.sin | 23 + po/it.gmo | Bin 0 -> 10257 bytes po/it.po | 527 +++ po/ja.gmo | Bin 0 -> 9026 bytes po/ja.po | 479 ++ po/nb.gmo | Bin 0 -> 8769 bytes po/nb.po | 491 ++ po/nl.gmo | Bin 0 -> 10194 bytes po/nl.po | 487 ++ po/pl.gmo | Bin 0 -> 10304 bytes po/pl.po | 486 ++ po/psmisc.pot | 392 ++ po/pt.gmo | Bin 0 -> 837 bytes po/pt.po | 463 ++ po/quot.sed | 6 + po/remove-potcdate.sin | 19 + po/ro.gmo | Bin 0 -> 2086 bytes po/ro.po | 513 ++ po/ru.gmo | Bin 0 -> 1511 bytes po/ru.po | 516 ++ po/stamp-po | 1 + po/sv.gmo | Bin 0 -> 9066 bytes po/sv.po | 480 ++ po/vi.gmo | Bin 0 -> 11427 bytes po/vi.po | 491 ++ po/zh_CN.gmo | Bin 0 -> 9568 bytes po/zh_CN.po | 480 ++ src/Makefile.am | 50 + src/Makefile.in | 519 ++ src/comm.h | 18 + src/fuser.c | 1282 +++++ src/fuser.h | 90 + src/i18n.h | 26 + src/killall.c | 731 +++ src/loop.h | 37 + src/oldfuser.c | 1229 +++++ src/peekfd.c | 272 ++ src/pstree.c | 946 ++++ src/signals.c | 86 + src/signals.h | 19 + src/signames.c | 5 + 114 files changed, 40220 insertions(+) create mode 100644 ABOUT-NLS create mode 100644 AUTHORS create mode 100644 COPYING create mode 100644 ChangeLog create mode 100644 INSTALL create mode 100644 Makefile.am create mode 100644 Makefile.in create mode 100644 NEWS create mode 100644 README create mode 100644 aclocal.m4 create mode 100644 config.h.in create mode 100755 config/config.guess create mode 100755 config/config.rpath create mode 100755 config/config.sub create mode 100755 config/depcomp create mode 100755 config/install-sh create mode 100755 config/missing create mode 100755 config/mkinstalldirs create mode 100755 configure create mode 100644 configure.ac create mode 100644 debian/README.Debian create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/dirs create mode 100644 debian/docs create mode 100644 debian/menu create mode 100755 debian/rules create mode 100644 doc/Makefile.am create mode 100644 doc/Makefile.in create mode 100644 doc/fuser.1 create mode 100644 doc/killall.1 create mode 100644 doc/peekfd.1 create mode 100644 doc/pstree.1 create mode 100644 icons/Makefile.am create mode 100644 icons/Makefile.in create mode 100644 icons/psmisc16.gif create mode 100644 icons/psmisc32.gif create mode 100644 icons/pstree16.xpm create mode 100644 icons/pstree32.xpm create mode 100644 m4/gettext.m4 create mode 100644 m4/iconv.m4 create mode 100644 m4/lib-ld.m4 create mode 100644 m4/lib-link.m4 create mode 100644 m4/lib-prefix.m4 create mode 100644 m4/nls.m4 create mode 100644 m4/po.m4 create mode 100644 m4/progtest.m4 create mode 100644 packaging/psmisc.spec create mode 100644 po/ChangeLog create mode 100644 po/LINGUAS create mode 100644 po/Makefile.in.in create mode 100644 po/Makevars create mode 100644 po/POTFILES.in create mode 100644 po/Rules-quot create mode 100644 po/bg.gmo create mode 100644 po/bg.po create mode 100644 po/boldquot.sed create mode 100644 po/ca.gmo create mode 100644 po/ca.po create mode 100644 po/de.gmo create mode 100644 po/de.po create mode 100644 po/en@boldquot.header create mode 100644 po/en@quot.header create mode 100644 po/eu.gmo create mode 100644 po/eu.po create mode 100644 po/fi.gmo create mode 100644 po/fi.po create mode 100644 po/fr.gmo create mode 100644 po/fr.po create mode 100644 po/hu.gmo create mode 100644 po/hu.po create mode 100644 po/insert-header.sin create mode 100644 po/it.gmo create mode 100644 po/it.po create mode 100644 po/ja.gmo create mode 100644 po/ja.po create mode 100644 po/nb.gmo create mode 100644 po/nb.po create mode 100644 po/nl.gmo create mode 100644 po/nl.po create mode 100644 po/pl.gmo create mode 100644 po/pl.po create mode 100644 po/psmisc.pot create mode 100644 po/pt.gmo create mode 100644 po/pt.po create mode 100644 po/quot.sed create mode 100644 po/remove-potcdate.sin create mode 100644 po/ro.gmo create mode 100644 po/ro.po create mode 100644 po/ru.gmo create mode 100644 po/ru.po create mode 100644 po/stamp-po create mode 100644 po/sv.gmo create mode 100644 po/sv.po create mode 100644 po/vi.gmo create mode 100644 po/vi.po create mode 100644 po/zh_CN.gmo create mode 100644 po/zh_CN.po create mode 100644 src/Makefile.am create mode 100644 src/Makefile.in create mode 100644 src/comm.h create mode 100644 src/fuser.c create mode 100644 src/fuser.h create mode 100644 src/i18n.h create mode 100644 src/killall.c create mode 100644 src/loop.h create mode 100644 src/oldfuser.c create mode 100644 src/peekfd.c create mode 100644 src/pstree.c create mode 100644 src/signals.c create mode 100644 src/signals.h create mode 100644 src/signames.c diff --git a/ABOUT-NLS b/ABOUT-NLS new file mode 100644 index 0000000..ec20977 --- /dev/null +++ b/ABOUT-NLS @@ -0,0 +1,1101 @@ +1 Notes on the Free Translation Project +*************************************** + +Free software is going international! The Free Translation Project is +a way to get maintainers of free software, translators, and users all +together, so that free software will gradually become able to speak many +languages. A few packages already provide translations for their +messages. + + If you found this `ABOUT-NLS' file inside a distribution, you may +assume that the distributed package does use GNU `gettext' internally, +itself available at your nearest GNU archive site. But you do _not_ +need to install GNU `gettext' prior to configuring, installing or using +this package with messages translated. + + Installers will find here some useful hints. These notes also +explain how users should proceed for getting the programs to use the +available translations. They tell how people wanting to contribute and +work on translations can contact the appropriate team. + + When reporting bugs in the `intl/' directory or bugs which may be +related to internationalization, you should tell about the version of +`gettext' which is used. The information can be found in the +`intl/VERSION' file, in internationalized packages. + +1.1 Quick configuration advice +============================== + +If you want to exploit the full power of internationalization, you +should configure it using + + ./configure --with-included-gettext + +to force usage of internationalizing routines provided within this +package, despite the existence of internationalizing capabilities in the +operating system where this package is being installed. So far, only +the `gettext' implementation in the GNU C library version 2 provides as +many features (such as locale alias, message inheritance, automatic +charset conversion or plural form handling) as the implementation here. +It is also not possible to offer this additional functionality on top +of a `catgets' implementation. Future versions of GNU `gettext' will +very likely convey even more functionality. So it might be a good idea +to change to GNU `gettext' as soon as possible. + + So you need _not_ provide this option if you are using GNU libc 2 or +you have installed a recent copy of the GNU gettext package with the +included `libintl'. + +1.2 INSTALL Matters +=================== + +Some packages are "localizable" when properly installed; the programs +they contain can be made to speak your own native language. Most such +packages use GNU `gettext'. Other packages have their own ways to +internationalization, predating GNU `gettext'. + + By default, this package will be installed to allow translation of +messages. It will automatically detect whether the system already +provides the GNU `gettext' functions. If not, the included GNU +`gettext' library will be used. This library is wholly contained +within this package, usually in the `intl/' subdirectory, so prior +installation of the GNU `gettext' package is _not_ required. +Installers may use special options at configuration time for changing +the default behaviour. The commands: + + ./configure --with-included-gettext + ./configure --disable-nls + +will, respectively, bypass any pre-existing `gettext' to use the +internationalizing routines provided within this package, or else, +_totally_ disable translation of messages. + + When you already have GNU `gettext' installed on your system and run +configure without an option for your new package, `configure' will +probably detect the previously built and installed `libintl.a' file and +will decide to use this. This might not be desirable. You should use +the more recent version of the GNU `gettext' library. I.e. if the file +`intl/VERSION' shows that the library which comes with this package is +more recent, you should use + + ./configure --with-included-gettext + +to prevent auto-detection. + + The configuration process will not test for the `catgets' function +and therefore it will not be used. The reason is that even an +emulation of `gettext' on top of `catgets' could not provide all the +extensions of the GNU `gettext' library. + + Internationalized packages usually have many `po/LL.po' files, where +LL gives an ISO 639 two-letter code identifying the language. Unless +translations have been forbidden at `configure' time by using the +`--disable-nls' switch, all available translations are installed +together with the package. However, the environment variable `LINGUAS' +may be set, prior to configuration, to limit the installed set. +`LINGUAS' should then contain a space separated list of two-letter +codes, stating which languages are allowed. + +1.3 Using This Package +====================== + +As a user, if your language has been installed for this package, you +only have to set the `LANG' environment variable to the appropriate +`LL_CC' combination. Here `LL' is an ISO 639 two-letter language code, +and `CC' is an ISO 3166 two-letter country code. For example, let's +suppose that you speak German and live in Germany. At the shell +prompt, merely execute `setenv LANG de_DE' (in `csh'), +`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash'). +This can be done from your `.login' or `.profile' file, once and for +all. + + You might think that the country code specification is redundant. +But in fact, some languages have dialects in different countries. For +example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The +country code serves to distinguish the dialects. + + The locale naming convention of `LL_CC', with `LL' denoting the +language and `CC' denoting the country, is the one use on systems based +on GNU libc. On other systems, some variations of this scheme are +used, such as `LL' or `LL_CC.ENCODING'. You can get the list of +locales supported by your system for your language by running the +command `locale -a | grep '^LL''. + + Not all programs have translations for all languages. By default, an +English message is shown in place of a nonexistent translation. If you +understand other languages, you can set up a priority list of languages. +This is done through a different environment variable, called +`LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG' +for the purpose of message handling, but you still need to have `LANG' +set to the primary language; this is required by other parts of the +system libraries. For example, some Swedish users who would rather +read translations in German than English for when Swedish is not +available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'. + + Special advice for Norwegian users: The language code for Norwegian +bokma*l changed from `no' to `nb' recently (in 2003). During the +transition period, while some message catalogs for this language are +installed under `nb' and some older ones under `no', it's recommended +for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and +older translations are used. + + In the `LANGUAGE' environment variable, but not in the `LANG' +environment variable, `LL_CC' combinations can be abbreviated as `LL' +to denote the language's main dialect. For example, `de' is equivalent +to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT' +(Portuguese as spoken in Portugal) in this context. + +1.4 Translating Teams +===================== + +For the Free Translation Project to be a success, we need interested +people who like their own language and write it well, and who are also +able to synergize with other translators speaking the same language. +Each translation team has its own mailing list. The up-to-date list of +teams can be found at the Free Translation Project's homepage, +`http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams" +area. + + If you'd like to volunteer to _work_ at translating messages, you +should become a member of the translating team for your own language. +The subscribing address is _not_ the same as the list itself, it has +`-request' appended. For example, speakers of Swedish can send a +message to `sv-request@li.org', having this message body: + + subscribe + + Keep in mind that team members are expected to participate +_actively_ in translations, or at solving translational difficulties, +rather than merely lurking around. If your team does not exist yet and +you want to start one, or if you are unsure about what to do or how to +get started, please write to `translation@iro.umontreal.ca' to reach the +coordinator for all translator teams. + + The English team is special. It works at improving and uniformizing +the terminology in use. Proven linguistic skills are praised more than +programming skills, here. + +1.5 Available Packages +====================== + +Languages are not equally supported in all packages. The following +matrix shows the current state of internationalization, as of October +2006. The matrix shows, in regard of each package, for which languages +PO files have been submitted to translation coordination, with a +translation percentage of at least 50%. + + Ready PO files af am ar az be bg bs ca cs cy da de el en en_GB eo + +----------------------------------------------------+ + GNUnet | [] | + a2ps | [] [] [] [] [] | + aegis | () | + ant-phone | () | + anubis | [] | + ap-utils | | + aspell | [] [] [] [] [] | + bash | [] [] [] | + batchelor | [] | + bfd | | + bibshelf | [] | + binutils | [] | + bison | [] [] | + bison-runtime | | + bluez-pin | [] [] [] [] [] | + cflow | [] | + clisp | [] [] | + console-tools | [] [] | + coreutils | [] [] [] | + cpio | | + cpplib | [] [] [] | + cryptonit | [] | + darkstat | [] () [] | + dialog | [] [] [] [] [] [] | + diffutils | [] [] [] [] [] [] | + doodle | [] | + e2fsprogs | [] [] | + enscript | [] [] [] [] | + error | [] [] [] [] | + fetchmail | [] [] () [] | + fileutils | [] [] | + findutils | [] [] [] | + flex | [] [] [] | + fslint | [] | + gas | | + gawk | [] [] [] | + gbiff | [] | + gcal | [] | + gcc | [] | + gettext-examples | [] [] [] [] [] | + gettext-runtime | [] [] [] [] [] | + gettext-tools | [] [] | + gimp-print | [] [] [] [] | + gip | [] | + gliv | [] | + glunarclock | [] | + gmult | [] [] | + gnubiff | () | + gnucash | () () [] | + gnucash-glossary | [] () | + gnuedu | | + gnulib | [] [] [] [] [] [] | + gnunet-gtk | | + gnutls | | + gpe-aerial | [] [] | + gpe-beam | [] [] | + gpe-calendar | | + gpe-clock | [] [] | + gpe-conf | [] [] | + gpe-contacts | | + gpe-edit | [] | + gpe-filemanager | | + gpe-go | [] | + gpe-login | [] [] | + gpe-ownerinfo | [] [] | + gpe-package | | + gpe-sketchbook | [] [] | + gpe-su | [] [] | + gpe-taskmanager | [] [] | + gpe-timesheet | [] | + gpe-today | [] [] | + gpe-todo | | + gphoto2 | [] [] [] [] | + gprof | [] [] | + gpsdrive | () () | + gramadoir | [] [] | + grep | [] [] [] [] [] [] | + gretl | | + gsasl | | + gss | | + gst-plugins | [] [] [] [] | + gst-plugins-base | [] [] [] | + gst-plugins-good | [] [] [] [] [] [] [] | + gstreamer | [] [] [] [] [] [] [] | + gtick | () | + gtkam | [] [] [] | + gtkorphan | [] [] | + gtkspell | [] [] [] [] | + gutenprint | [] | + hello | [] [] [] [] [] | + id-utils | [] [] | + impost | | + indent | [] [] [] | + iso_3166 | [] [] | + iso_3166_2 | | + iso_4217 | [] | + iso_639 | [] [] | + jpilot | [] | + jtag | | + jwhois | | + kbd | [] [] [] [] | + keytouch | | + keytouch-editor | | + keytouch-keyboa... | | + latrine | () | + ld | [] | + leafpad | [] [] [] [] [] | + libc | [] [] [] [] [] | + libexif | [] | + libextractor | [] | + libgpewidget | [] [] [] | + libgpg-error | [] | + libgphoto2 | [] [] | + libgphoto2_port | [] [] | + libgsasl | | + libiconv | [] [] | + libidn | [] [] | + lifelines | [] () | + lilypond | [] | + lingoteach | | + lynx | [] [] [] [] | + m4 | [] [] [] [] | + mailutils | [] | + make | [] [] | + man-db | [] () [] [] | + minicom | [] [] [] | + mysecretdiary | [] [] | + nano | [] [] [] | + nano_1_0 | [] () [] [] | + opcodes | [] | + parted | | + pilot-qof | [] | + psmisc | [] | + pwdutils | | + python | | + qof | | + radius | [] | + recode | [] [] [] [] [] [] | + rpm | [] [] | + screem | | + scrollkeeper | [] [] [] [] [] [] [] [] | + sed | [] [] [] | + sh-utils | [] [] | + shared-mime-info | [] [] [] [] | + sharutils | [] [] [] [] [] [] | + shishi | | + silky | | + skencil | [] () | + sketch | [] () | + solfege | | + soundtracker | [] [] | + sp | [] | + stardict | [] | + system-tools-ba... | [] [] [] [] [] [] [] [] [] | + tar | [] | + texinfo | [] [] [] | + textutils | [] [] [] | + tin | () () | + tp-robot | [] | + tuxpaint | [] [] [] [] [] | + unicode-han-tra... | | + unicode-transla... | | + util-linux | [] [] [] [] | + vorbis-tools | [] [] [] [] | + wastesedge | () | + wdiff | [] [] [] [] | + wget | [] [] | + xchat | [] [] [] [] [] [] | + xkeyboard-config | | + xpad | [] [] | + +----------------------------------------------------+ + af am ar az be bg bs ca cs cy da de el en en_GB eo + 10 0 1 2 9 22 1 42 41 2 60 95 16 1 17 16 + + es et eu fa fi fr ga gl gu he hi hr hu id is it + +--------------------------------------------------+ + GNUnet | | + a2ps | [] [] [] () | + aegis | | + ant-phone | [] | + anubis | [] | + ap-utils | [] [] | + aspell | [] [] [] | + bash | [] [] [] | + batchelor | [] [] | + bfd | [] | + bibshelf | [] [] [] | + binutils | [] [] [] | + bison | [] [] [] [] [] [] | + bison-runtime | [] [] [] [] [] | + bluez-pin | [] [] [] [] [] | + cflow | [] | + clisp | [] [] | + console-tools | | + coreutils | [] [] [] [] [] [] | + cpio | [] [] [] | + cpplib | [] [] | + cryptonit | [] | + darkstat | [] () [] [] [] | + dialog | [] [] [] [] [] [] [] [] | + diffutils | [] [] [] [] [] [] [] [] [] | + doodle | [] [] | + e2fsprogs | [] [] [] | + enscript | [] [] [] | + error | [] [] [] [] [] | + fetchmail | [] | + fileutils | [] [] [] [] [] [] | + findutils | [] [] [] [] | + flex | [] [] [] | + fslint | [] | + gas | [] [] | + gawk | [] [] [] [] | + gbiff | [] | + gcal | [] [] | + gcc | [] | + gettext-examples | [] [] [] [] [] [] | + gettext-runtime | [] [] [] [] [] [] | + gettext-tools | [] [] [] | + gimp-print | [] [] | + gip | [] [] [] | + gliv | () | + glunarclock | [] [] [] | + gmult | [] [] [] | + gnubiff | () () | + gnucash | () () () | + gnucash-glossary | [] [] | + gnuedu | [] | + gnulib | [] [] [] [] [] [] [] [] | + gnunet-gtk | | + gnutls | | + gpe-aerial | [] [] | + gpe-beam | [] [] | + gpe-calendar | | + gpe-clock | [] [] [] [] | + gpe-conf | [] | + gpe-contacts | [] [] | + gpe-edit | [] [] [] [] | + gpe-filemanager | [] | + gpe-go | [] [] [] | + gpe-login | [] [] [] | + gpe-ownerinfo | [] [] [] [] [] | + gpe-package | [] | + gpe-sketchbook | [] [] | + gpe-su | [] [] [] [] | + gpe-taskmanager | [] [] [] | + gpe-timesheet | [] [] [] [] | + gpe-today | [] [] [] [] | + gpe-todo | [] | + gphoto2 | [] [] [] [] [] | + gprof | [] [] [] [] | + gpsdrive | () () [] () | + gramadoir | [] [] | + grep | [] [] [] [] [] [] [] [] [] [] [] [] | + gretl | [] [] [] | + gsasl | [] [] | + gss | [] | + gst-plugins | [] [] [] | + gst-plugins-base | [] [] | + gst-plugins-good | [] [] [] | + gstreamer | [] [] [] | + gtick | [] | + gtkam | [] [] [] [] | + gtkorphan | [] [] | + gtkspell | [] [] [] [] [] [] | + gutenprint | [] | + hello | [] [] [] [] [] [] [] [] [] [] [] [] [] | + id-utils | [] [] [] [] [] | + impost | [] [] | + indent | [] [] [] [] [] [] [] [] [] [] | + iso_3166 | [] [] [] | + iso_3166_2 | [] | + iso_4217 | [] [] [] [] | + iso_639 | [] [] [] [] [] | + jpilot | [] [] | + jtag | [] | + jwhois | [] [] [] [] [] | + kbd | [] [] | + keytouch | [] | + keytouch-editor | [] | + keytouch-keyboa... | [] | + latrine | [] [] [] | + ld | [] [] | + leafpad | [] [] [] [] [] [] | + libc | [] [] [] [] [] | + libexif | [] | + libextractor | [] | + libgpewidget | [] [] [] [] [] | + libgpg-error | | + libgphoto2 | [] [] [] | + libgphoto2_port | [] [] | + libgsasl | [] [] | + libiconv | [] [] | + libidn | [] [] | + lifelines | () | + lilypond | [] | + lingoteach | [] [] [] | + lynx | [] [] [] | + m4 | [] [] [] [] | + mailutils | [] [] | + make | [] [] [] [] [] [] [] [] | + man-db | () | + minicom | [] [] [] [] | + mysecretdiary | [] [] [] | + nano | [] [] [] [] [] [] | + nano_1_0 | [] [] [] [] [] | + opcodes | [] [] [] [] | + parted | [] [] [] [] | + pilot-qof | | + psmisc | [] [] [] | + pwdutils | | + python | | + qof | [] | + radius | [] [] | + recode | [] [] [] [] [] [] [] [] | + rpm | [] [] | + screem | | + scrollkeeper | [] [] [] | + sed | [] [] [] [] [] | + sh-utils | [] [] [] [] [] [] [] | + shared-mime-info | [] [] [] [] [] [] | + sharutils | [] [] [] [] [] [] [] [] | + shishi | | + silky | [] | + skencil | [] [] | + sketch | [] [] | + solfege | [] | + soundtracker | [] [] [] | + sp | [] | + stardict | [] | + system-tools-ba... | [] [] [] [] [] [] [] [] | + tar | [] [] [] [] [] [] [] | + texinfo | [] [] | + textutils | [] [] [] [] [] | + tin | [] () | + tp-robot | [] [] [] [] | + tuxpaint | [] [] | + unicode-han-tra... | | + unicode-transla... | [] [] | + util-linux | [] [] [] [] [] [] [] | + vorbis-tools | [] [] | + wastesedge | () | + wdiff | [] [] [] [] [] [] [] [] | + wget | [] [] [] [] [] [] [] [] | + xchat | [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] [] | + xpad | [] [] [] | + +--------------------------------------------------+ + es et eu fa fi fr ga gl gu he hi hr hu id is it + 88 22 14 2 40 115 61 14 1 8 1 6 59 31 0 52 + + ja ko ku ky lg lt lv mk mn ms mt nb ne nl nn no + +-------------------------------------------------+ + GNUnet | | + a2ps | () [] [] () | + aegis | () | + ant-phone | [] | + anubis | [] [] [] | + ap-utils | [] | + aspell | [] [] | + bash | [] | + batchelor | [] [] | + bfd | | + bibshelf | [] | + binutils | | + bison | [] [] [] | + bison-runtime | [] [] [] | + bluez-pin | [] [] [] | + cflow | | + clisp | [] | + console-tools | | + coreutils | [] | + cpio | | + cpplib | [] | + cryptonit | [] | + darkstat | [] [] | + dialog | [] [] | + diffutils | [] [] [] | + doodle | | + e2fsprogs | [] | + enscript | [] | + error | [] | + fetchmail | [] [] | + fileutils | [] [] | + findutils | [] | + flex | [] [] | + fslint | [] [] | + gas | | + gawk | [] [] | + gbiff | [] | + gcal | | + gcc | | + gettext-examples | [] [] | + gettext-runtime | [] [] [] | + gettext-tools | [] [] | + gimp-print | [] [] | + gip | [] [] | + gliv | [] | + glunarclock | [] [] | + gmult | [] [] | + gnubiff | | + gnucash | () () | + gnucash-glossary | [] | + gnuedu | | + gnulib | [] [] [] [] | + gnunet-gtk | | + gnutls | | + gpe-aerial | [] | + gpe-beam | [] | + gpe-calendar | [] | + gpe-clock | [] [] [] | + gpe-conf | [] [] | + gpe-contacts | [] | + gpe-edit | [] [] [] | + gpe-filemanager | [] [] | + gpe-go | [] [] [] | + gpe-login | [] [] [] | + gpe-ownerinfo | [] [] | + gpe-package | [] [] | + gpe-sketchbook | [] [] | + gpe-su | [] [] [] | + gpe-taskmanager | [] [] [] [] | + gpe-timesheet | [] | + gpe-today | [] [] | + gpe-todo | [] | + gphoto2 | [] [] | + gprof | | + gpsdrive | () () () | + gramadoir | () | + grep | [] [] [] [] | + gretl | | + gsasl | [] | + gss | | + gst-plugins | [] | + gst-plugins-base | | + gst-plugins-good | [] | + gstreamer | [] | + gtick | | + gtkam | [] | + gtkorphan | [] | + gtkspell | [] [] | + gutenprint | | + hello | [] [] [] [] [] [] | + id-utils | [] | + impost | | + indent | [] [] | + iso_3166 | [] | + iso_3166_2 | [] | + iso_4217 | [] [] [] | + iso_639 | [] [] | + jpilot | () () () | + jtag | | + jwhois | [] | + kbd | [] | + keytouch | [] | + keytouch-editor | | + keytouch-keyboa... | | + latrine | [] | + ld | | + leafpad | [] [] | + libc | [] [] [] [] [] | + libexif | | + libextractor | | + libgpewidget | [] | + libgpg-error | | + libgphoto2 | [] | + libgphoto2_port | [] | + libgsasl | [] | + libiconv | | + libidn | [] [] | + lifelines | [] | + lilypond | | + lingoteach | [] | + lynx | [] [] | + m4 | [] [] | + mailutils | | + make | [] [] [] | + man-db | () | + minicom | [] | + mysecretdiary | [] | + nano | [] [] [] | + nano_1_0 | [] [] [] | + opcodes | [] | + parted | [] [] | + pilot-qof | | + psmisc | [] [] [] | + pwdutils | | + python | | + qof | | + radius | | + recode | [] | + rpm | [] [] | + screem | [] | + scrollkeeper | [] [] [] [] | + sed | [] [] | + sh-utils | [] [] | + shared-mime-info | [] [] [] [] [] | + sharutils | [] [] | + shishi | | + silky | [] | + skencil | | + sketch | | + solfege | | + soundtracker | | + sp | () | + stardict | [] [] | + system-tools-ba... | [] [] [] [] | + tar | [] [] [] | + texinfo | [] [] [] | + textutils | [] [] [] | + tin | | + tp-robot | [] | + tuxpaint | [] | + unicode-han-tra... | | + unicode-transla... | | + util-linux | [] [] | + vorbis-tools | [] | + wastesedge | [] | + wdiff | [] [] | + wget | [] [] | + xchat | [] [] [] [] | + xkeyboard-config | [] | + xpad | [] [] [] | + +-------------------------------------------------+ + ja ko ku ky lg lt lv mk mn ms mt nb ne nl nn no + 52 24 2 2 1 3 0 2 3 21 0 15 1 97 5 1 + + nso or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv ta + +------------------------------------------------------+ + GNUnet | | + a2ps | () [] [] [] [] [] [] | + aegis | () () | + ant-phone | [] [] | + anubis | [] [] [] | + ap-utils | () | + aspell | [] [] | + bash | [] [] [] | + batchelor | [] [] | + bfd | | + bibshelf | [] | + binutils | [] [] | + bison | [] [] [] [] [] | + bison-runtime | [] [] [] [] | + bluez-pin | [] [] [] [] [] [] [] [] [] | + cflow | [] | + clisp | [] | + console-tools | [] | + coreutils | [] [] [] [] | + cpio | [] [] [] | + cpplib | [] | + cryptonit | [] [] | + darkstat | [] [] [] [] [] [] | + dialog | [] [] [] [] [] [] [] [] [] | + diffutils | [] [] [] [] [] [] | + doodle | [] [] | + e2fsprogs | [] [] | + enscript | [] [] [] [] [] | + error | [] [] [] [] | + fetchmail | [] [] [] | + fileutils | [] [] [] [] [] | + findutils | [] [] [] [] [] [] | + flex | [] [] [] [] [] | + fslint | [] [] [] [] | + gas | | + gawk | [] [] [] [] | + gbiff | [] | + gcal | [] | + gcc | [] | + gettext-examples | [] [] [] [] [] [] [] [] | + gettext-runtime | [] [] [] [] [] [] [] [] | + gettext-tools | [] [] [] [] [] [] [] | + gimp-print | [] [] | + gip | [] [] [] [] | + gliv | [] [] [] [] | + glunarclock | [] [] [] [] [] [] | + gmult | [] [] [] [] | + gnubiff | () | + gnucash | () [] | + gnucash-glossary | [] [] [] | + gnuedu | | + gnulib | [] [] [] [] [] | + gnunet-gtk | [] | + gnutls | [] [] | + gpe-aerial | [] [] [] [] [] [] [] | + gpe-beam | [] [] [] [] [] [] [] | + gpe-calendar | [] | + gpe-clock | [] [] [] [] [] [] [] [] | + gpe-conf | [] [] [] [] [] [] [] | + gpe-contacts | [] [] [] [] [] | + gpe-edit | [] [] [] [] [] [] [] [] | + gpe-filemanager | [] [] | + gpe-go | [] [] [] [] [] [] | + gpe-login | [] [] [] [] [] [] [] [] | + gpe-ownerinfo | [] [] [] [] [] [] [] [] | + gpe-package | [] [] | + gpe-sketchbook | [] [] [] [] [] [] [] [] | + gpe-su | [] [] [] [] [] [] [] [] | + gpe-taskmanager | [] [] [] [] [] [] [] [] | + gpe-timesheet | [] [] [] [] [] [] [] [] | + gpe-today | [] [] [] [] [] [] [] [] | + gpe-todo | [] [] [] [] | + gphoto2 | [] [] [] [] [] | + gprof | [] [] [] | + gpsdrive | [] [] [] | + gramadoir | [] [] | + grep | [] [] [] [] [] [] [] [] | + gretl | [] | + gsasl | [] [] [] | + gss | [] [] [] | + gst-plugins | [] [] [] [] | + gst-plugins-base | [] | + gst-plugins-good | [] [] [] [] | + gstreamer | [] [] [] | + gtick | [] | + gtkam | [] [] [] [] | + gtkorphan | [] | + gtkspell | [] [] [] [] [] [] [] [] | + gutenprint | [] | + hello | [] [] [] [] [] [] [] [] | + id-utils | [] [] [] [] | + impost | [] | + indent | [] [] [] [] [] [] | + iso_3166 | [] [] [] [] [] [] | + iso_3166_2 | | + iso_4217 | [] [] [] [] | + iso_639 | [] [] [] [] | + jpilot | | + jtag | [] | + jwhois | [] [] [] [] | + kbd | [] [] [] | + keytouch | [] | + keytouch-editor | [] | + keytouch-keyboa... | [] | + latrine | [] [] | + ld | [] | + leafpad | [] [] [] [] [] [] | + libc | [] [] [] [] [] | + libexif | [] | + libextractor | [] [] | + libgpewidget | [] [] [] [] [] [] [] | + libgpg-error | [] [] | + libgphoto2 | [] | + libgphoto2_port | [] [] [] | + libgsasl | [] [] [] [] | + libiconv | [] [] | + libidn | [] [] () | + lifelines | [] [] | + lilypond | | + lingoteach | [] | + lynx | [] [] [] | + m4 | [] [] [] [] [] | + mailutils | [] [] [] [] | + make | [] [] [] [] | + man-db | [] [] | + minicom | [] [] [] [] [] | + mysecretdiary | [] [] [] [] | + nano | [] [] [] | + nano_1_0 | [] [] [] [] | + opcodes | [] [] | + parted | [] | + pilot-qof | [] | + psmisc | [] [] | + pwdutils | [] [] | + python | | + qof | [] [] | + radius | [] [] | + recode | [] [] [] [] [] [] [] | + rpm | [] [] [] [] | + screem | | + scrollkeeper | [] [] [] [] [] [] [] | + sed | [] [] [] [] [] [] [] [] [] | + sh-utils | [] [] [] | + shared-mime-info | [] [] [] [] [] | + sharutils | [] [] [] [] | + shishi | [] | + silky | [] | + skencil | [] [] [] | + sketch | [] [] [] | + solfege | [] | + soundtracker | [] [] | + sp | | + stardict | [] [] [] | + system-tools-ba... | [] [] [] [] [] [] [] [] [] | + tar | [] [] [] [] [] | + texinfo | [] [] [] [] | + textutils | [] [] [] | + tin | () | + tp-robot | [] | + tuxpaint | [] [] [] [] [] | + unicode-han-tra... | | + unicode-transla... | | + util-linux | [] [] [] [] | + vorbis-tools | [] [] | + wastesedge | | + wdiff | [] [] [] [] [] [] | + wget | [] [] [] [] | + xchat | [] [] [] [] [] [] [] | + xkeyboard-config | [] [] | + xpad | [] [] [] | + +------------------------------------------------------+ + nso or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv ta + 0 2 3 58 30 54 5 73 72 4 40 46 11 50 128 2 + + tg th tk tr uk ven vi wa xh zh_CN zh_HK zh_TW zu + +---------------------------------------------------+ + GNUnet | [] | 2 + a2ps | [] [] [] | 19 + aegis | | 0 + ant-phone | [] [] | 6 + anubis | [] [] [] | 11 + ap-utils | () [] | 4 + aspell | [] [] [] | 15 + bash | [] | 11 + batchelor | [] [] | 9 + bfd | | 1 + bibshelf | [] | 7 + binutils | [] [] [] | 9 + bison | [] [] [] | 19 + bison-runtime | [] [] [] | 15 + bluez-pin | [] [] [] [] [] [] | 28 + cflow | [] [] | 5 + clisp | | 6 + console-tools | [] [] | 5 + coreutils | [] [] | 16 + cpio | [] [] [] | 9 + cpplib | [] [] [] [] | 11 + cryptonit | | 5 + darkstat | [] () () | 15 + dialog | [] [] [] [] [] | 30 + diffutils | [] [] [] [] | 28 + doodle | [] | 6 + e2fsprogs | [] [] | 10 + enscript | [] [] [] | 16 + error | [] [] [] [] | 18 + fetchmail | [] [] | 12 + fileutils | [] [] [] | 18 + findutils | [] [] [] | 17 + flex | [] [] | 15 + fslint | [] | 9 + gas | [] | 3 + gawk | [] [] | 15 + gbiff | [] | 5 + gcal | [] | 5 + gcc | [] [] [] | 6 + gettext-examples | [] [] [] [] [] [] | 27 + gettext-runtime | [] [] [] [] [] [] | 28 + gettext-tools | [] [] [] [] [] | 19 + gimp-print | [] [] | 12 + gip | [] [] | 12 + gliv | [] [] | 8 + glunarclock | [] [] [] | 15 + gmult | [] [] [] [] | 15 + gnubiff | [] | 1 + gnucash | () | 2 + gnucash-glossary | [] [] | 9 + gnuedu | [] | 2 + gnulib | [] [] [] [] [] | 28 + gnunet-gtk | | 1 + gnutls | | 2 + gpe-aerial | [] [] | 14 + gpe-beam | [] [] | 14 + gpe-calendar | [] | 3 + gpe-clock | [] [] [] [] | 21 + gpe-conf | [] [] | 14 + gpe-contacts | [] [] | 10 + gpe-edit | [] [] [] [] | 20 + gpe-filemanager | [] | 6 + gpe-go | [] [] | 15 + gpe-login | [] [] [] [] [] | 21 + gpe-ownerinfo | [] [] [] [] | 21 + gpe-package | [] | 6 + gpe-sketchbook | [] [] | 16 + gpe-su | [] [] [] | 20 + gpe-taskmanager | [] [] [] | 20 + gpe-timesheet | [] [] [] [] | 18 + gpe-today | [] [] [] [] [] | 21 + gpe-todo | [] | 7 + gphoto2 | [] [] [] [] | 20 + gprof | [] [] | 11 + gpsdrive | | 4 + gramadoir | [] | 7 + grep | [] [] [] [] | 34 + gretl | | 4 + gsasl | [] [] | 8 + gss | [] | 5 + gst-plugins | [] [] [] | 15 + gst-plugins-base | [] [] [] | 9 + gst-plugins-good | [] [] [] [] [] | 20 + gstreamer | [] [] [] | 17 + gtick | [] | 3 + gtkam | [] | 13 + gtkorphan | [] | 7 + gtkspell | [] [] [] [] [] [] | 26 + gutenprint | | 3 + hello | [] [] [] [] [] | 37 + id-utils | [] [] | 14 + impost | [] | 4 + indent | [] [] [] [] | 25 + iso_3166 | [] [] [] [] | 16 + iso_3166_2 | | 2 + iso_4217 | [] [] | 14 + iso_639 | [] | 14 + jpilot | [] [] [] [] | 7 + jtag | [] | 3 + jwhois | [] [] [] | 13 + kbd | [] [] | 12 + keytouch | [] | 4 + keytouch-editor | | 2 + keytouch-keyboa... | [] | 3 + latrine | [] [] | 8 + ld | [] [] [] [] | 8 + leafpad | [] [] [] [] | 23 + libc | [] [] [] | 23 + libexif | [] | 4 + libextractor | [] | 5 + libgpewidget | [] [] [] | 19 + libgpg-error | [] | 4 + libgphoto2 | [] | 8 + libgphoto2_port | [] [] [] | 11 + libgsasl | [] | 8 + libiconv | [] | 7 + libidn | [] [] | 10 + lifelines | | 4 + lilypond | | 2 + lingoteach | [] | 6 + lynx | [] [] [] | 15 + m4 | [] [] [] | 18 + mailutils | [] | 8 + make | [] [] [] | 20 + man-db | [] | 6 + minicom | [] | 14 + mysecretdiary | [] [] | 12 + nano | [] [] | 17 + nano_1_0 | [] [] [] | 18 + opcodes | [] [] | 10 + parted | [] [] [] | 10 + pilot-qof | [] | 3 + psmisc | [] | 10 + pwdutils | [] | 3 + python | | 0 + qof | [] | 4 + radius | [] | 6 + recode | [] [] [] | 25 + rpm | [] [] [] [] | 14 + screem | [] | 2 + scrollkeeper | [] [] [] [] | 26 + sed | [] [] [] | 22 + sh-utils | [] | 15 + shared-mime-info | [] [] [] [] | 24 + sharutils | [] [] [] | 23 + shishi | | 1 + silky | [] | 4 + skencil | [] | 7 + sketch | | 6 + solfege | | 2 + soundtracker | [] [] | 9 + sp | [] | 3 + stardict | [] [] [] [] | 11 + system-tools-ba... | [] [] [] [] [] [] [] | 37 + tar | [] [] [] [] | 20 + texinfo | [] [] [] | 15 + textutils | [] [] [] | 17 + tin | | 1 + tp-robot | [] [] [] | 10 + tuxpaint | [] [] [] | 16 + unicode-han-tra... | | 0 + unicode-transla... | | 2 + util-linux | [] [] [] | 20 + vorbis-tools | [] [] | 11 + wastesedge | | 1 + wdiff | [] [] | 22 + wget | [] [] [] | 19 + xchat | [] [] [] [] | 29 + xkeyboard-config | [] [] [] [] | 11 + xpad | [] [] [] | 14 + +---------------------------------------------------+ + 77 teams tg th tk tr uk ven vi wa xh zh_CN zh_HK zh_TW zu + 170 domains 0 1 1 77 39 0 136 10 1 48 5 54 0 2028 + + Some counters in the preceding matrix are higher than the number of +visible blocks let us expect. This is because a few extra PO files are +used for implementing regional variants of languages, or language +dialects. + + For a PO file in the matrix above to be effective, the package to +which it applies should also have been internationalized and +distributed as such by its maintainer. There might be an observable +lag between the mere existence a PO file and its wide availability in a +distribution. + + If October 2006 seems to be old, you may fetch a more recent copy of +this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date +matrix with full percentage details can be found at +`http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'. + +1.6 Using `gettext' in new packages +=================================== + +If you are writing a freely available program and want to +internationalize it you are welcome to use GNU `gettext' in your +package. Of course you have to respect the GNU Library General Public +License which covers the use of the GNU `gettext' library. This means +in particular that even non-free programs can use `libintl' as a shared +library, whereas only free software can use `libintl' as a static +library or use modified versions of `libintl'. + + Once the sources are changed appropriately and the setup can handle +the use of `gettext' the only thing missing are the translations. The +Free Translation Project is also available for packages which are not +developed inside the GNU project. Therefore the information given above +applies also for every other Free Software Project. Contact +`translation@iro.umontreal.ca' to make the `.pot' files available to +the translation teams. + diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..5114799 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,3 @@ +Werner Almesberger +Craig Small +peekfd written by Trent Waddington diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..60549be --- /dev/null +++ b/COPYING @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + 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 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 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 + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..26e6b68 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,543 @@ +Changes in ?? +============= +2007-08-09 Craig Small + * killall.1 mentions you can use -SIGxxx as well as just -XXX for signal + Debian #431082 + +2007-07-04 Tomas Smetana + * Added support for PPC architecture for peekfd + +2007-06-25 Craig Small + * Updated the Chinese simplified po file + +2007-06-21 Tomas Smetana + * Added support for x86_64 architecture for peekfd + +2007-06-13 Craig Small + * Added Chinese simplified po file + +2007-05-31 Craig Small + * Updated Dutch, Vietnamese, Polish and Italian translations + * Patch for peekfd from Benno Schulenberg + +2007-04-30 Craig Small + * Fixed up NLS for fuser, patch from Benno Schulenberg + * killall asks for Signal (procname) if not SIGTERM + +Changes in 22.5 +=============== +2007-04-18 Craig Small + * Conditonally compile peekfd if the right registers are found + +Changes in 22.4 +=============== +2007-04-11 Craig Small + * fuser correctly parses remote tcp ports Debian #397033 + * Removed extra blank lines in fuser Debian #386564 + +2007-03-02 Karel Zak + * killall does textual path comparision with value of the + /proc//exe link when a comparision with inode number failed. + The old algorithme based on inode numbers doesn't work if since + the process was started, the file at has been replaced + (e.g due prelink process). + +2007-03-02 Craig Small + * Added peekfd + +2007-03-02 gettextize + + * m4/gettext.m4: Upgrade to gettext-0.16.1. + * m4/iconv.m4: Upgrade to gettext-0.16.1. + * m4/lib-ld.m4: Upgrade to gettext-0.16.1. + * m4/lib-link.m4: Upgrade to gettext-0.16.1. + * m4/lib-prefix.m4: Upgrade to gettext-0.16.1. + * m4/nls.m4: Upgrade to gettext-0.16.1. + * m4/po.m4: Upgrade to gettext-0.16.1. + * m4/progtest.m4: Upgrade to gettext-0.16.1. + * configure.ac (AM_GNU_GETTEXT_VERSION): Bump to 0.16.1. + +2006-09-28 Craig Small + * fuser tcp works on 64bit, after actually reading the submitted patch + and applying it, thankyou nigel_ding, SF# 1551731 + * Added Russian translation SF Patch #1288068 + +Changes in 22.3 +================ +2006-08-09 Craig Small + * Updated Hungarian PO file + +2006-05-25 Craig Small + * Updated Swedish PO file + * Fixed fuser man page ... Debian #358880 + +2006-04-05 Karel Zak + * fuser return code set correcly in silent mode Debian #361639 + * fuser -l doesnt complain but list signal names only + +2006-03-24 Craig Small + * Updated Bulgarian and Italian PO files + * Added Japanese and Hungarian PO files + * Moved some NEWS into README + * Removed killall flag from NEWS, its really OLDS + * fuser -n tcp port,host,host2 parses correctly + +Changes in 22.2 +=============== +2006-03-09 Craig Small + * Updated Nowegian and Vietnamese PO files + +2006-03-07 Craig Small + * Updated Polish and Dutch PO files + +2006-01-27 Craig Small + * Unix sockets work on all hosts now, including ones that don't have + network device set to 0. + * TCP/UDP6 sockets are found a bit better. + * Makefile changed so signames builds in all locales. Thanks to Mike + Frysinger for the patch. + * Return code works + + +2006-01-23 Craig Small + * Updated Swedish, Vietnamese and Italian PO files + * Minor fixes for some error messages, thanks to Benno. + + +2006-01-13 Craig Small + * Updated Polish and dutch PO files + * Added Bulgarian PO file + +Changes in 22.1 +=============== +2006-01-12 Craig Small + * Updated German PO file Debian #313934 + * Updated Swedish PO file + +2006-01-04 Craig Small + * fuser signals eg -INT work better + * removed space out of fuser man page for -signal + +2005-12-16 Craig Small + * fuser -s flag works Debian #344901 + * fix grep lines in Makefile for i386 arches Debian #344172 + * Updsated Polish PO file + +Changes in 21.9 +=============== +2005-12-16 Craig Small + * Fixed install-exec-hook so only symlink pstree.x11 if file does not + exist already. + * Updated Vietnamese PO file + +2005-12-02 Karel Zak + * buffer overflow in killall scanf removed + +2005-11-26 Paul Martin + * Fixed segfault in pstree -a Debian #338108 + +2005-11-22 Craig Small + * fuser can not use IPv6, for things like uClibc + * configure has --disable-ipv6 for above + +2005-11-15 Craig Small + * fuser finds unix sockets. Debian #338868 + +2005-11-05 Rene Rebe + * fixed print_matches to only print unmatched objects if -a is + specified and to output the header for -v + * Above patch fixes Debian #342765 + * fixed argument parsing to handle groups like -av again + +Changes in 21.8 +=============== + * fuser returns 1 if no match found like before. + * fuser.1 spells behavior correctly Debian: #337190 + + +Changes in 21.7 +=============== + * Upgraded SELinux code to new api, thanks to Chris PeBenito + * define rpmatch for libraries that dont have it + * Fixed small typos in help, thanks to Benno Schulenberg + fixes SF# 1150042 + * Completed change from Flask to SELinux, thanks to Benno Schulenberg + * pstree works better with uClibc, thanks Mike Frysinger + * fuser rewritten: possibly fixes Debian #312560 + * fuser prints F instead of f is access is write, thanks to Tet. + * pstree checks to see it is a real tty Debian #326500 + * pstree shows child threads with {commandname} Debian #230924 + * better capitalisation with usage SF# 1150042 + * Added warning about fuser and tcp/udp access Debian #327813 + * pstree defaults to ASCII not VT100 until problems with terminals + are fixed Debian #288856 + * fuser doesnt complain if it cannot scan some mount points Debian + #299153 + + * Applied psmisc-21.4-alt-progname to find pstrees name + * configure.in checks for tinfo library + * both above fixes from ALTLinux + + * Added -u option for killall to kill process by user + * Removed old FLASK_LINUX define in pstree + * Added -r for to killall for regex matching for proc names + * Thanks to Karel Zak from RedHat for the patches + + + +Changes in 21.6 +=============== + +2005-03-11 + * Minor typo (specificiation) fixed + * Added closing bracket in fuser help + * Added Finnish translation + * Localised the yes/no prompts with rpmatch() + * Fixed NLS problems and some double ))s - Thanks to Jakub Bogusz + * Added Basque translation + * More NLS related fixes - Thanks to Guillem Jover + * killall aborts if it gets unknown flags Debian #250794 + * Symbolic link created properly for pstree.x11 Debian #250096 + * Strange mount points handled better Debian #178972 + * Added Catalan translation + * killall can be case insenstive now + * Warning in killall.1 about process changing names Debian #187941 + * Removed include termcap.h to fix RH include problem. + * Added Vietnamese translation + * Fixed --enable-flask logic SF#1094205 + * Added Norwegian Bokmaal translation + * Fixed groff madness with fuser(1) Debian #298199 + * Added Dutch translation + +Changes in 21.5 +=============== +2004-05-25 Craig Small + * Sven Dahl provides a patch for using psmisc with uclibc + * Sid flag in options is d not S. SF#791537 + * Fixed typo in checking ss_family SF#845292 + * Lines not truncated using UTF-8 SF Patch: #757164 Debian: #151523 + * Case insensitve matching with -I flags SF Patch: #740662 + * inode and devices use ino_t and dev_t SF#: + * Allow pstree to use ASCII characters with -A flag, patch by + Branden Robinson Debian: #240973 + * Debug "here" statement removed + * POSIX -m option added, part of SF Bug: #901841 + * fuser sends PIDs only to stdout, the rest goes to stderr. + Changed for POSIX compatibility + * Silently ignore -f option, for POSIX + * Using automake 1.8 now + * Built source signames.h not distributed in tar Debian: #240986 + * Manual page for fuser explains -SIG is ignored with no -k + Debian: #222935 + +2004-04-05 gettextize + + * Makefile.am (SUBDIRS): Add m4. + (SUBDIRS): Remove intl. + (ACLOCAL_AMFLAGS): New variable. + (EXTRA_DIST): Add config.rpath. + * configure.in (AC_CONFIG_FILES): Add m4/Makefile. + +Changes in 21.4 +=============== +2003-11-28 Craig Small + * Typos in killall.1 fixed Closes Debian: #198189 + * fuser -ki now tells user default is N Closes Debian: #197356 + * pstree -a doesn't print space at end of line Closes Debian: #182099 + * Works with new sort flags +2 -> -k 3 Thankyou Andrew Walrond + * pstree.x11 now just pstree with a trick Closes Debian: #201042 + * Icons for pstree, thankyou Tatlin! Closes Debian: #192636 + * Removed message if no processes found, + * Excess blanks in fuser removed. + * Two lines above close Debian: #212795 + + +Changes in 21.3 +=============== +2003-04-03 Craig Small + * SELinux SID selection uses -d instead of -S to stop the confusion of + signal names, no flags with upper case letters ok? + Closes Debian: #193790, #163360 + * Doesnt segfault on long cmdnames, thanks Ben Low Closes Debian: #187241 + * Updated libtool and friends so it works on new coreutils + +2003-04-03 Craig Small + * More fixes for types, also some GCC 3.2 fixes, thanks to + Stefan at SuSE + +2002-09-27 Craig Small + * Changed a long to a long long in pstree. + +Changes in 21.2 +=============== +2002-09-27 Craig Small + * Big bug in pstree, pstree -a would often fail badly. swapped variable + not set. + * Removed pidof.1 and a variable not used. + * Thanks to Peter Breitenlohner for all this info and Adam Conrad for + the test ppc machine. + +Changes in 21.1 +=============== +2002-09-05 Craig Small + * Added SELINUX patches from Russell Coker + +2002-08-19 Craig Small + * Changed killall.1 to be less ambigous, Debian #127851 + +2002-08-18 + * Added patches from James Morrison so it works on Hurd + * Fixed UTF8 Problem. closes Debian #140960 + * Return for fuser -k will mean no. + +2002-08-17 + * Now has LFS support. Closes Debian #129157 and #156017 + * Fixed pstree -a extra bracket problem, Closes Debian #96791 + +2002-08-16 gettextize + + * Makefile.am (SUBDIRS): Add m4. + * Makefile.am (SUBDIRS): Remove intl. + (SUBDIRS): Remove intl. + (ACLOCAL_AMFLAGS): New variable. + (EXTRA_DIST): Add config.rpath. + * configure.in (AC_OUTPUT): Add po/Makefile.in, + (AC_OUTPUT): Remove intl/Makefile. + + * config.guess and config.sub are no longer syminks + + +Changes in 21 (15-MAY-2002) +=========================== + - signames.h is cleaned no more wrong signal types + - More translatable strings + - Added Portuguese Language (thanks to Edesio Costa e Silva) + - Added Italian Language (thanks to Daniele Pagano) + - Added French Language (thanks to Marc Léger) + - Added German Language (thanks to Wolfgang Schorer) + - Added Swedish Language (thanks to Joakim Mared) + +Changes in 20.2 (18-OCT-2001) +============================= + - Added NLS/gettext + - fuser no longer assume st_dev is 0 for sockets, needed for kernel 2.4.12 + and above, Thanks to Alexander Viro for the patch. + - Search both IPv4 and IPv6 namespaces. + - Added patch for pstree -u (SF Patch: #455932 ) + +Changes in 20.1 (31-MAR-2001) +============================= + - command line - put back in. + - got rid of annoying "sending signal #" debug message + - updated killall.1 + - updated killall usage + - verbose now tells you what signal it is killing with. + +Changes from 19 to 20 (14-DEC-2000) +=================================== + - New maintainer + - Uses automake/autoconf to determine things + - License changed to GPL + - signames.h generated better (suggested by Grant Erickson) + - uses getopt() for better command line stuff + - makes less assumptions about process name, closes Debian Bug #53337 + - Doesn't use losetup for loop devices in fuser. + - Better selection of process name (thanks to David desJardins) + +Changes from version 18 to 19 (25-OCT-1999) +=========================================== + + - pstree: "static int" was only "static" (fix by Jeremy Buhler) + - now uses cc -E instead of /lib/cpp (suggested by Kristofer Karas) + - fuser: -s conflicted with -k (reported by David Hinds) + - fuser: using -a with -s now yields an error + - added a sanity check for signames.h (suggested by John Summerfield) + - only "signals" < 100 are now added to signames.h, eliminating SIGSTKSZ + + +Changes from version 17 to 18 (1-NOV-1998) +========================================== + + - fuser: usage summary listed -s (silent) as -q + - fuser: fuser x/y yielded confusing error message if x/y doesn't exist + (reported by Tigran Aivazian) + - fuser: new option -i for interactive killing (like killall -i) + - killall: tried to print a NULL pointer if full process name was unavailable + and killing failed + - killall: new option -g to kill process group instead of process + - killall: cosmetic PROC_BASE changes (by Florian La Roche) + - pidof: new option -g to show PGID instead of PID (by Florian La Roche) + - pstree: new option -H to highlight process specified by PID + - added -D_GNU_SOURCE to CFLAGS for glibc 2 compatibility + - Makefile should now also work with bash-2 + + +Changes from version 16 to 17 (17-FEB-1998) +=========================================== + + - fuser: now also handles /proc of recent 2.1 kernels (fix by Andreas Schwab; + other fixed also proposed by Chris Wedgwood and Luca Berra) + - pstree now properly handles init with PID = PPID = 1 + - fuser: no longer changes the name space for relative paths ending with the + name of a name space (e.g. something/tcp) + - fuser: now also reports mount points, swap files, and loop mounts + - updated the fuser man page + - killall: new option -w to wait for the killed processes to die + - killall: didn't handle malloc failure + + +Changes from version 15 to 16 (28-JUL-1997) +=========================================== + + - killall: now gets the list of all PIDs before killing processes, thereby + avoiding race between readdir and /proc (found by Boris Zentner) + - make install no longer changes BINDIR and MANDIR if they already exist + - changed psmisc..lsm to psmisc-.lsm for consistency + + +Changes from version 14 to 15 (16-JUN-1997) +=========================================== + + - killall: killall -v didn't print the command name (fixed by Marty Leisner) + - fuser: fuser -a could crash (reported by Helmut Geyer) + - fuser: fuser -m didn't consider UNIX domain sockets (fix based on a patch by + Andries Brouwer) + - fuser: fuser -a /a /a /b no longer merges the first two entries + - changed package name format from psmisc. to psmisc- to + avoid annoyance messages from sunsite's archive scripts + + +Changes from version 13 to 14 (19-APR-1997) +=========================================== + + - killall: command-line parser didn't accept -signal (fixed by Chris Wedgwood) + - pidof: minor man page correction + - Makefile: pidof is now only installed when running make install-pidof + - added a file with installation instructions (INSTALL) + + +Changes from version 12 to 13 (16-APR-1997) +=========================================== + + - fuser: didn't check for out of memory condition after malloc (oops !) + - fuser: INET domain sockets can now be specified as + [local_port][,[remote_host][,[remote_port]]] + - fuser: now includes linux/kdev_t.h instead of linux/fs.h. This may break + compilation with some ancient kernels. + - killall: new option -q to suppress error message if no process was found + - killall: man page didn't reset font properly + - killall: now tries harder to handle very long names (> 15 characters) + (proposed by Erik Thiele) + - killall: new option -e to require exact name match + - killall: now lists PIDs if invoked as "pidof" (proposed by Peter Daum) + - minor Makefile change to eliminate need to patch for some versions of Linux + + +Changes from version 11 to 12 (7-APR-1996) +========================================== + + - fuser is now able to look up INET and UNIX domain sockets + - pstree: new option -n to sort its output by PID + - pstree: new option -G to use VT100 line drawing characters + + +Changes from version 10 to 11 (20-SEP-1995) +=========================================== + + - added VERSION file + - size of command name is now defined in comm.h - the old approach of + obtaining values from linux/sched.h:struct task_struct doesn't work anymore) + - signames.h is now generated from cpp output (linux/signals.h no longer + defines them) + - all commands now print the version number when invoked with the -V option + - signames.h added to make clean + - removed use of {,} expansion in mkdist + - various minor documentation fixes + + +Changes from version 9 to 10 (28-MAR-1995) +========================================== + + - fuser: now prints header before first path (used to be on same line) + - fuser: fixed line wrapping for long paths (used to wrap too early) + - fuser: fixed a NULL pointer dereference in add_file + - pstree: now outputs strings obtained from termcap with tputs + - some cosmetic changes (to avoid certain warnings if using -Wconversion) + - updated e-mail address in README + +Changes from version 8 to 9 (22-JAN-1995) +========================================= + + - fuser: now works with Plan 9 semantics (i.e. what recent kernels use; + reported by Harald Koenig, Nick Simicich, and others) + - fuser: now also scans /proc/*/maps + - fuser: fixed NULL pointer dereferencing when processes are created while + fuser is running (fix by Pauline Middelink) + - fuser: now resets effective uid to real uid before killing, thereby making + suid installation a smaller security risk + - pstree: fixed process tree truncation (fix by Andreas Schwab) + - pstree: added support for UTF-8 line drawing characters (adapted a patch by + Johan Myreen) + - killall.1 now warns about potential compatibility problems with killall + on other systems (proposed by Christos Ricudis) + - added a copyright notice + - updated e-mail address + +Changes from version 7 to 8 (11-OCT-1994) +========================================= + + - pstree: added -a to display command line arguments + - pstree, fuser and killall: display an error message if /proc has + no process entries (i.e. if it is not mounted) + - killall: more detailed usage output + - killall: added killing by file + - fuser and killall: fixed generation of signal list to include SIGUSR[12] + - fuser: now also accepts signal numbers + - "make install": now also installs man pages; executable permissions changed + from 755 to 555; now installs fuser in /bin, killall and pstree in /usr/bin + - "make spotless": fixed typo + - man pages: minor corrections and improvements + +Changes from version 6 to 7 +=========================== + + - pstree: -h didn't work because of incorrect termcap usage + - pstree: changed branch drawing from --- to -+- + \- `- + - pstree: fixed indentation inside compacted subtrees + - fuser and killall: don't kill themselves + - fuser: suppresses m(map) if file is e(xecuted) + - mkdist now includes itself + - minor updates on all man pages + +Changes from version 5 to 6 +=========================== + + - pstree: unknown display width expressed as zero width (TIOCGWINSZ) is + now correctly handled. + - fuser: added -s for silent operation. + - fuser: added non-zero return code if no processes using any file are + found. + - pstree and fuser: non-printable characters in command names (fuser: also + in file names) are now shown as \nnn (octal). \ is shown as \\. + - added "install" target to Makefile to install binaries in /usr/local/bin + - minor updates on all man pages. + +Changes from version 4 to 5 +=========================== + + - killall: added interactive and verbose modes (options -i and -v) + - fuser: added 0.99pl11 support (changed /proc/*/lib to /proc/*/mmap) + - fuser: mmap'ed files and shared libraries are now marked with "m" + (shlibs were marked with "s" and mmap'ed files weren't marked + at all) + +Changes from version 3 to 4 +=========================== + + - killall and fuser: now accept signal numbers too. + - pstree: added listing of process trees by user name. + - pstree: compaction sometimes generated wrong output. + - fuser: did only recognize the first occurrence of a file when using + the options -u or -v. + - changed Makefile to create stripped impure executables. diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..56b077d --- /dev/null +++ b/INSTALL @@ -0,0 +1,236 @@ +Installation Instructions +************************* + +Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free +Software Foundation, Inc. + +This file is free documentation; the Free Software Foundation gives +unlimited permission to copy, distribute and modify it. + +Basic Installation +================== + +These are generic installation instructions. + + The `configure' shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile' in each directory of the package. +It may also create one or more `.h' files containing system-dependent +definitions. Finally, it creates a shell script `config.status' that +you can run in the future to recreate the current configuration, and a +file `config.log' containing compiler output (useful mainly for +debugging `configure'). + + It can also use an optional file (typically called `config.cache' +and enabled with `--cache-file=config.cache' or simply `-C') that saves +the results of its tests to speed up reconfiguring. (Caching is +disabled by default to prevent problems with accidental use of stale +cache files.) + + If you need to do unusual things to compile the package, please try +to figure out how `configure' could check whether to do them, and mail +diffs or instructions to the address given in the `README' so they can +be considered for the next release. If you are using the cache, and at +some point `config.cache' contains results you don't want to keep, you +may remove or edit it. + + The file `configure.ac' (or `configure.in') is used to create +`configure' by a program called `autoconf'. You only need +`configure.ac' if you want to change it or regenerate `configure' using +a newer version of `autoconf'. + +The simplest way to compile this package is: + + 1. `cd' to the directory containing the package's source code and type + `./configure' to configure the package for your system. If you're + using `csh' on an old version of System V, you might need to type + `sh ./configure' instead to prevent `csh' from trying to execute + `configure' itself. + + Running `configure' takes awhile. While running, it prints some + messages telling which features it is checking for. + + 2. Type `make' to compile the package. + + 3. Optionally, type `make check' to run any self-tests that come with + the package. + + 4. Type `make install' to install the programs and any data files and + documentation. + + 5. You can remove the program binaries and object files from the + source code directory by typing `make clean'. To also remove the + files that `configure' created (so you can compile the package for + a different kind of computer), type `make distclean'. There is + also a `make maintainer-clean' target, but that is intended mainly + for the package's developers. If you use it, you may have to get + all sorts of other programs in order to regenerate files that came + with the distribution. + +Compilers and Options +===================== + +Some systems require unusual options for compilation or linking that the +`configure' script does not know about. Run `./configure --help' for +details on some of the pertinent environment variables. + + You can give `configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here +is an example: + + ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix + + *Note Defining Variables::, for more details. + +Compiling For Multiple Architectures +==================================== + +You can compile the package for more than one kind of computer at the +same time, by placing the object files for each architecture in their +own directory. To do this, you must use a version of `make' that +supports the `VPATH' variable, such as GNU `make'. `cd' to the +directory where you want the object files and executables to go and run +the `configure' script. `configure' automatically checks for the +source code in the directory that `configure' is in and in `..'. + + If you have to use a `make' that does not support the `VPATH' +variable, you have to compile the package for one architecture at a +time in the source code directory. After you have installed the +package for one architecture, use `make distclean' before reconfiguring +for another architecture. + +Installation Names +================== + +By default, `make install' will install the package's files in +`/usr/local/bin', `/usr/local/man', etc. You can specify an +installation prefix other than `/usr/local' by giving `configure' the +option `--prefix=PREFIX'. + + You can specify separate installation prefixes for +architecture-specific files and architecture-independent files. If you +give `configure' the option `--exec-prefix=PREFIX', the package will +use PREFIX as the prefix for installing programs and libraries. +Documentation and other data files will still use the regular prefix. + + In addition, if you use an unusual directory layout you can give +options like `--bindir=DIR' to specify different values for particular +kinds of files. Run `configure --help' for a list of the directories +you can set and what kinds of files go in them. + + If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure' the +option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. + +Optional Features +================= + +Some packages pay attention to `--enable-FEATURE' options to +`configure', where FEATURE indicates an optional part of the package. +They may also pay attention to `--with-PACKAGE' options, where PACKAGE +is something like `gnu-as' or `x' (for the X Window System). The +`README' should mention any `--enable-' and `--with-' options that the +package recognizes. + + For packages that use the X Window System, `configure' can usually +find the X include and library files automatically, but if it doesn't, +you can use the `configure' options `--x-includes=DIR' and +`--x-libraries=DIR' to specify their locations. + +Specifying the System Type +========================== + +There may be some features `configure' cannot figure out automatically, +but needs to determine by the type of machine the package will run on. +Usually, assuming the package is built to be run on the _same_ +architectures, `configure' can figure that out, but if it prints a +message saying it cannot guess the machine type, give it the +`--build=TYPE' option. TYPE can either be a short name for the system +type, such as `sun4', or a canonical name which has the form: + + CPU-COMPANY-SYSTEM + +where SYSTEM can have one of these forms: + + OS KERNEL-OS + + See the file `config.sub' for the possible values of each field. If +`config.sub' isn't included in this package, then this package doesn't +need to know the machine type. + + If you are _building_ compiler tools for cross-compiling, you should +use the `--target=TYPE' option to select the type of system they will +produce code for. + + If you want to _use_ a cross compiler, that generates code for a +platform different from the build platform, you should specify the +"host" platform (i.e., that on which the generated programs will +eventually be run) with `--host=TYPE'. + +Sharing Defaults +================ + +If you want to set default values for `configure' scripts to share, you +can create a site shell script called `config.site' that gives default +values for variables like `CC', `cache_file', and `prefix'. +`configure' looks for `PREFIX/share/config.site' if it exists, then +`PREFIX/etc/config.site' if it exists. Or, you can set the +`CONFIG_SITE' environment variable to the location of the site script. +A warning: not all `configure' scripts look for a site script. + +Defining Variables +================== + +Variables not defined in a site shell script can be set in the +environment passed to `configure'. However, some packages may run +configure again during the build, and the customized values of these +variables may be lost. In order to avoid this problem, you should set +them in the `configure' command line, using `VAR=value'. For example: + + ./configure CC=/usr/local2/bin/gcc + +causes the specified `gcc' to be used as the C compiler (unless it is +overridden in the site shell script). Here is a another example: + + /bin/bash ./configure CONFIG_SHELL=/bin/bash + +Here the `CONFIG_SHELL=/bin/bash' operand causes subsequent +configuration-related scripts to be executed by `/bin/bash'. + +`configure' Invocation +====================== + +`configure' recognizes the following options to control how it operates. + +`--help' +`-h' + Print a summary of the options to `configure', and exit. + +`--version' +`-V' + Print the version of Autoconf used to generate the `configure' + script, and exit. + +`--cache-file=FILE' + Enable the cache: use and save the results of the tests in FILE, + traditionally `config.cache'. FILE defaults to `/dev/null' to + disable caching. + +`--config-cache' +`-C' + Alias for `--cache-file=config.cache'. + +`--quiet' +`--silent' +`-q' + Do not print messages saying which checks are being made. To + suppress all normal output, redirect it to `/dev/null' (any error + messages will still be shown). + +`--srcdir=DIR' + Look for the package's source code in directory DIR. Usually + `configure' can determine that directory automatically. + +`configure' also accepts some other, not widely useful, options. Run +`configure --help' for more details. + diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..fc53aa9 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,6 @@ + +SUBDIRS = doc src po icons + +#EXTRA_DIST = config.rpath ABOUT-NLS mkinstalldirs + +ACLOCAL_AMFLAGS = -I m4 diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..5d6c2e6 --- /dev/null +++ b/Makefile.in @@ -0,0 +1,633 @@ +# Makefile.in generated by automake 1.10 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = . +DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(srcdir)/config.h.in \ + $(top_srcdir)/configure ABOUT-NLS AUTHORS COPYING ChangeLog \ + INSTALL NEWS config/config.guess config/config.rpath \ + config/config.sub config/depcomp config/install-sh \ + config/missing config/mkinstalldirs +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ + $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \ + $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ + $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + { test ! -d $(distdir) \ + || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -fr $(distdir); }; } +DIST_ARCHIVES = $(distdir).tar.gz +GZIP_ENV = --best +distuninstallcheck_listfiles = find . -type f -print +distcleancheck_listfiles = find . -type f -print +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GMSGFMT = @GMSGFMT@ +GMSGFMT_015 = @GMSGFMT_015@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INTLLIBS = @INTLLIBS@ +INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBINTL = @LIBINTL@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBINTL = @LTLIBINTL@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MSGFMT = @MSGFMT@ +MSGFMT_015 = @MSGFMT_015@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +POSUB = @POSUB@ +SELINUX_LIB = @SELINUX_LIB@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +TERMCAP_LIB = @TERMCAP_LIB@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +WITH_IPV6 = @WITH_IPV6@ +WITH_SELINUX = @WITH_SELINUX@ +XGETTEXT = @XGETTEXT@ +XGETTEXT_015 = @XGETTEXT_015@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = doc src po icons + +#EXTRA_DIST = config.rpath ABOUT-NLS mkinstalldirs +ACLOCAL_AMFLAGS = -I m4 +all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-recursive + +.SUFFIXES: +am--refresh: + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ + cd $(srcdir) && $(AUTOMAKE) --gnu \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + $(SHELL) ./config.status --recheck + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(srcdir) && $(AUTOCONF) +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) + +config.h: stamp-h1 + @if test ! -f $@; then \ + rm -f stamp-h1; \ + $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ + else :; fi + +stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status + @rm -f stamp-h1 + cd $(top_builddir) && $(SHELL) ./config.status config.h +$(srcdir)/config.h.in: $(am__configure_deps) + cd $(top_srcdir) && $(AUTOHEADER) + rm -f stamp-h1 + touch $@ + +distclean-hdr: + -rm -f config.h stamp-h1 + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + $(am__remove_distdir) + test -d $(distdir) || mkdir $(distdir) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ + (cd $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + distdir) \ + || exit 1; \ + fi; \ + done + -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ + ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ + ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r $(distdir) +dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) + +dist-bzip2: distdir + tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 + $(am__remove_distdir) + +dist-tarZ: distdir + tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z + $(am__remove_distdir) + +dist-shar: distdir + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__remove_distdir) + +dist dist-all: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) + +# This target untars the dist file and tries a VPATH configuration. Then +# it guarantees that the distribution is self-contained by making another +# tarfile. +distcheck: dist + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ + *.tar.bz2*) \ + bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac + chmod -R a-w $(distdir); chmod a+w $(distdir) + mkdir $(distdir)/_build + mkdir $(distdir)/_inst + chmod a-w $(distdir) + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && cd $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(DISTCHECK_CONFIGURE_FLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) \ + && $(MAKE) $(AM_MAKEFLAGS) dvi \ + && $(MAKE) $(AM_MAKEFLAGS) check \ + && $(MAKE) $(AM_MAKEFLAGS) install \ + && $(MAKE) $(AM_MAKEFLAGS) installcheck \ + && $(MAKE) $(AM_MAKEFLAGS) uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ + && $(MAKE) $(AM_MAKEFLAGS) dist \ + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck + $(am__remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ + sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' +distuninstallcheck: + @cd $(distuninstallcheck_dir) \ + && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 +check-am: all-am +check: check-recursive +all-am: Makefile config.h +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-hdr distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +info: info-recursive + +info-am: + +install-data-am: + +install-dvi: install-dvi-recursive + +install-exec-am: + +install-html: install-html-recursive + +install-info: install-info-recursive + +install-man: + +install-pdf: install-pdf-recursive + +install-ps: install-ps-recursive + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ + install-strip + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am am--refresh check check-am clean clean-generic \ + ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ + dist-shar dist-tarZ dist-zip distcheck distclean \ + distclean-generic distclean-hdr distclean-tags distcleancheck \ + distdir distuninstallcheck dvi dvi-am html html-am info \ + info-am install install-am install-data install-data-am \ + install-dvi install-dvi-am install-exec install-exec-am \ + install-html install-html-am install-info install-info-am \ + install-man install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs installdirs-am maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ + pdf-am ps ps-am tags tags-recursive uninstall uninstall-am + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..631231c --- /dev/null +++ b/NEWS @@ -0,0 +1,3 @@ +Important NEWS for psmisc package +================================= + diff --git a/README b/README new file mode 100644 index 0000000..2489b05 --- /dev/null +++ b/README @@ -0,0 +1,37 @@ +psmisc +====== + +This package contains five little utilities that use the proc FS: + + fuser identifies processes using files or sockets (similar to Sun's + or SGI's fuser) + killall kills processes by name, e.g. killall -HUP named + pidof like killall, buts lists PIDs instead of killing processes + pstree shows the currently running processes as a tree + peekfd shows the data travelling over a file descriptor + +They should work with most recent kernels. Man pages are included. + +- Werner Almesberger + +src/loop.h was stolen from util-linux package which in turn stole it from +the Linux kernel. + +Translations +------------ +My thanks for the various translators who have cheerfully given me the po +files to make psmisc speak different languages. If your language is not +supported then let me know, all it takes is translating one file in +a certain manner. + +Icons +----- +The pstree icons were drawn by Tatlin at Coresis who has given permission +for them to be used for psmisc. + +Copyright Change +---------------- + +The license has changed to GPL for version 20 onwards with permission +of the original authors. People who want to use these programs under +the previous license will have to look at psmisc 19 or below. diff --git a/aclocal.m4 b/aclocal.m4 new file mode 100644 index 0000000..7f66127 --- /dev/null +++ b/aclocal.m4 @@ -0,0 +1,870 @@ +# generated automatically by aclocal 1.10 -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006 Free Software Foundation, Inc. +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +m4_if(m4_PACKAGE_VERSION, [2.61],, +[m4_fatal([this file was generated for autoconf 2.61. +You have another version of autoconf. If you want to use that, +you should regenerate the build system entirely.], [63])]) + +# Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_AUTOMAKE_VERSION(VERSION) +# ---------------------------- +# Automake X.Y traces this macro to ensure aclocal.m4 has been +# generated from the m4 files accompanying Automake X.Y. +# (This private macro should not be called outside this file.) +AC_DEFUN([AM_AUTOMAKE_VERSION], +[am__api_version='1.10' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.10], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) + +# _AM_AUTOCONF_VERSION(VERSION) +# ----------------------------- +# aclocal traces this macro to find the Autoconf version. +# This is a private macro too. Using m4_define simplifies +# the logic in aclocal, which can simply ignore this definition. +m4_define([_AM_AUTOCONF_VERSION], []) + +# AM_SET_CURRENT_AUTOMAKE_VERSION +# ------------------------------- +# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. +# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. +AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +[AM_AUTOMAKE_VERSION([1.10])dnl +_AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)]) + +# AM_AUX_DIR_EXPAND -*- Autoconf -*- + +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets +# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to +# `$srcdir', `$srcdir/..', or `$srcdir/../..'. +# +# Of course, Automake must honor this variable whenever it calls a +# tool from the auxiliary directory. The problem is that $srcdir (and +# therefore $ac_aux_dir as well) can be either absolute or relative, +# depending on how configure is run. This is pretty annoying, since +# it makes $ac_aux_dir quite unusable in subdirectories: in the top +# source directory, any form will work fine, but in subdirectories a +# relative path needs to be adjusted first. +# +# $ac_aux_dir/missing +# fails when called from a subdirectory if $ac_aux_dir is relative +# $top_srcdir/$ac_aux_dir/missing +# fails if $ac_aux_dir is absolute, +# fails when called from a subdirectory in a VPATH build with +# a relative $ac_aux_dir +# +# The reason of the latter failure is that $top_srcdir and $ac_aux_dir +# are both prefixed by $srcdir. In an in-source build this is usually +# harmless because $srcdir is `.', but things will broke when you +# start a VPATH build or use an absolute $srcdir. +# +# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, +# iff we strip the leading $srcdir from $ac_aux_dir. That would be: +# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` +# and then we would define $MISSING as +# MISSING="\${SHELL} $am_aux_dir/missing" +# This will work as long as MISSING is not called from configure, because +# unfortunately $(top_srcdir) has no meaning in configure. +# However there are other variables, like CC, which are often used in +# configure, and could therefore not use this "fixed" $ac_aux_dir. +# +# Another solution, used here, is to always expand $ac_aux_dir to an +# absolute PATH. The drawback is that using absolute paths prevent a +# configured tree to be moved without reconfiguration. + +AC_DEFUN([AM_AUX_DIR_EXPAND], +[dnl Rely on autoconf to set up CDPATH properly. +AC_PREREQ([2.50])dnl +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` +]) + +# AM_CONDITIONAL -*- Autoconf -*- + +# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 8 + +# AM_CONDITIONAL(NAME, SHELL-CONDITION) +# ------------------------------------- +# Define a conditional. +AC_DEFUN([AM_CONDITIONAL], +[AC_PREREQ(2.52)dnl + ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 9 + +# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be +# written in clear, in which case automake, when reading aclocal.m4, +# will think it sees a *use*, and therefore will trigger all it's +# C support machinery. Also note that it means that autoscan, seeing +# CC etc. in the Makefile, will ask for an AC_PROG_CC use... + + +# _AM_DEPENDENCIES(NAME) +# ---------------------- +# See how the compiler implements dependency checking. +# NAME is "CC", "CXX", "GCJ", or "OBJC". +# We try a few techniques and use that to set a single cache variable. +# +# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was +# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular +# dependency, and given that the user is not expected to run this macro, +# just rely on AC_PROG_CC. +AC_DEFUN([_AM_DEPENDENCIES], +[AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +ifelse([$1], CC, [depcc="$CC" am_compiler_list=], + [$1], CXX, [depcc="$CXX" am_compiler_list=], + [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], UPC, [depcc="$UPC" am_compiler_list=], + [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + case $depmode in + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + none) break ;; + esac + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. + if depmode=$depmode \ + source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) + + +# AM_SET_DEPDIR +# ------------- +# Choose a directory name for dependency files. +# This macro is AC_REQUIREd in _AM_DEPENDENCIES +AC_DEFUN([AM_SET_DEPDIR], +[AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) + + +# AM_DEP_TRACK +# ------------ +AC_DEFUN([AM_DEP_TRACK], +[AC_ARG_ENABLE(dependency-tracking, +[ --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH])dnl +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +]) + +# Generate code to set up dependency tracking. -*- Autoconf -*- + +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +#serial 3 + +# _AM_OUTPUT_DEPENDENCY_COMMANDS +# ------------------------------ +AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], +[for mf in $CONFIG_FILES; do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done +done +])# _AM_OUTPUT_DEPENDENCY_COMMANDS + + +# AM_OUTPUT_DEPENDENCY_COMMANDS +# ----------------------------- +# This macro should only be invoked once -- use via AC_REQUIRE. +# +# This code is only required when automatic dependency tracking +# is enabled. FIXME. This creates each `.P' file that we will +# need in order to bootstrap the dependency handling code. +AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], +[AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +]) + +# Do all the work for Automake. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +# 2005, 2006 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 12 + +# This macro actually does too much. Some checks are only needed if +# your package does certain things. But this isn't really a big deal. + +# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) +# AM_INIT_AUTOMAKE([OPTIONS]) +# ----------------------------------------------- +# The call with PACKAGE and VERSION arguments is the old style +# call (pre autoconf-2.50), which is being phased out. PACKAGE +# and VERSION should now be passed to AC_INIT and removed from +# the call to AM_INIT_AUTOMAKE. +# We support both call styles for the transition. After +# the next Automake release, Autoconf can make the AC_INIT +# arguments mandatory, and then we can depend on a new Autoconf +# release and drop the old call support. +AC_DEFUN([AM_INIT_AUTOMAKE], +[AC_PREREQ([2.60])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) +AM_MISSING_PROG(AUTOCONF, autoconf) +AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) +AM_MISSING_PROG(AUTOHEADER, autoheader) +AM_MISSING_PROG(MAKEINFO, makeinfo) +AM_PROG_INSTALL_SH +AM_PROG_INSTALL_STRIP +AC_REQUIRE([AM_PROG_MKDIR_P])dnl +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES(OBJC)], + [define([AC_PROG_OBJC], + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl +]) +]) + + +# When config.status generates a header, we must update the stamp-h file. +# This file resides in the same directory as the config header +# that is generated. The stamp files are numbered to have different names. + +# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the +# loop where config.status creates the headers, so we can generate +# our stamp files there. +AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], +[# Compute $1's index in $config_headers. +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $1 | $1:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) + +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_SH +# ------------------ +# Define $install_sh. +AC_DEFUN([AM_PROG_INSTALL_SH], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} +AC_SUBST(install_sh)]) + +# Copyright (C) 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# Check whether the underlying file-system supports filenames +# with a leading dot. For instance MS-DOS doesn't. +AC_DEFUN([AM_SET_LEADING_DOT], +[rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) + +# Check to see how 'make' treats includes. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 3 + +# AM_MAKE_INCLUDE() +# ----------------- +# Check to see how make treats includes. +AC_DEFUN([AM_MAKE_INCLUDE], +[am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo done +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +AC_MSG_CHECKING([for style of include used by $am_make]) +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# We grep out `Entering directory' and `Leaving directory' +# messages which can occur if `w' ends up in MAKEFLAGS. +# In particular we don't look at `^make:' because GNU make might +# be invoked under some other name (usually "gmake"), in which +# case it prints its new name instead of `make'. +if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then + am__include=include + am__quote= + _am_result=GNU +fi +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then + am__include=.include + am__quote="\"" + _am_result=BSD + fi +fi +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) +rm -f confinc confmf +]) + +# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 5 + +# AM_MISSING_PROG(NAME, PROGRAM) +# ------------------------------ +AC_DEFUN([AM_MISSING_PROG], +[AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) + + +# AM_MISSING_HAS_RUN +# ------------------ +# Define MISSING if not defined so far and test if it supports --run. +# If it does, set am_missing_run to use it, otherwise, to nothing. +AC_DEFUN([AM_MISSING_HAS_RUN], +[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + AC_MSG_WARN([`missing' script is too old or missing]) +fi +]) + +# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_MKDIR_P +# --------------- +# Check for `mkdir -p'. +AC_DEFUN([AM_PROG_MKDIR_P], +[AC_PREREQ([2.60])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, +dnl while keeping a definition of mkdir_p for backward compatibility. +dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. +dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of +dnl Makefile.ins that do not define MKDIR_P, so we do our own +dnl adjustment using top_builddir (which is defined more often than +dnl MKDIR_P). +AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl +case $mkdir_p in + [[\\/$]]* | ?:[[\\/]]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac +]) + +# Helper functions for option handling. -*- Autoconf -*- + +# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 3 + +# _AM_MANGLE_OPTION(NAME) +# ----------------------- +AC_DEFUN([_AM_MANGLE_OPTION], +[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) + +# _AM_SET_OPTION(NAME) +# ------------------------------ +# Set option NAME. Presently that only means defining a flag for this option. +AC_DEFUN([_AM_SET_OPTION], +[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) + +# _AM_SET_OPTIONS(OPTIONS) +# ---------------------------------- +# OPTIONS is a space-separated list of Automake options. +AC_DEFUN([_AM_SET_OPTIONS], +[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) + +# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) +# ------------------------------------------- +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +AC_DEFUN([_AM_IF_OPTION], +[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) + +# Check to make sure that the build environment is sane. -*- Autoconf -*- + +# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 +# Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 4 + +# AM_SANITY_CHECK +# --------------- +AC_DEFUN([AM_SANITY_CHECK], +[AC_MSG_CHECKING([whether build environment is sane]) +# Just in case +sleep 1 +echo timestamp > conftest.file +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t $srcdir/configure conftest.file` + fi + rm -f conftest.file + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken +alias in your environment]) + fi + + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT(yes)]) + +# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# AM_PROG_INSTALL_STRIP +# --------------------- +# One issue with vendor `install' (even GNU) is that you can't +# specify the program used to strip binaries. This is especially +# annoying in cross-compiling environments, where the build's strip +# is unlikely to handle the host's binaries. +# Fortunately install-sh will honor a STRIPPROG variable, so we +# always use install-sh in `make install-strip', and initialize +# STRIPPROG with the value of the STRIP variable (set by the user). +AC_DEFUN([AM_PROG_INSTALL_STRIP], +[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be `maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) + +# Copyright (C) 2006 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# _AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Prevent Automake from outputing VARIABLE = @VARIABLE@ in Makefile.in. +# This macro is traced by Automake. +AC_DEFUN([_AM_SUBST_NOTMAKE]) + +# Check how to create a tarball. -*- Autoconf -*- + +# Copyright (C) 2004, 2005 Free Software Foundation, Inc. +# +# This file is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# serial 2 + +# _AM_PROG_TAR(FORMAT) +# -------------------- +# Check how to create a tarball in format FORMAT. +# FORMAT should be one of `v7', `ustar', or `pax'. +# +# Substitute a variable $(am__tar) that is a command +# writing to stdout a FORMAT-tarball containing the directory +# $tardir. +# tardir=directory && $(am__tar) > result.tar +# +# Substitute a variable $(am__untar) that extract such +# a tarball read from stdin. +# $(am__untar) < result.tar +AC_DEFUN([_AM_PROG_TAR], +[# Always define AMTAR for backward compatibility. +AM_MISSING_PROG([AMTAR], [tar]) +m4_if([$1], [v7], + [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], + [m4_case([$1], [ustar],, [pax],, + [m4_fatal([Unknown tar format])]) +AC_MSG_CHECKING([how to create a $1 tar archive]) +# Loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' +_am_tools=${am_cv_prog_tar_$1-$_am_tools} +# Do not fold the above two line into one, because Tru64 sh and +# Solaris sh will not grok spaces in the rhs of `-'. +for _am_tool in $_am_tools +do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; + do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break + fi +done +rm -rf conftest.dir + +AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) +AC_MSG_RESULT([$am_cv_prog_tar_$1])]) +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) # _AM_PROG_TAR + +m4_include([m4/gettext.m4]) +m4_include([m4/iconv.m4]) +m4_include([m4/lib-ld.m4]) +m4_include([m4/lib-link.m4]) +m4_include([m4/lib-prefix.m4]) +m4_include([m4/nls.m4]) +m4_include([m4/po.m4]) +m4_include([m4/progtest.m4]) diff --git a/config.h.in b/config.h.in new file mode 100644 index 0000000..9edf2d0 --- /dev/null +++ b/config.h.in @@ -0,0 +1,268 @@ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Define to 1 if the `closedir' function returns void instead of `int'. */ +#undef CLOSEDIR_VOID + +/* Define to 1 if translation of program messages to the user's native + language is requested. */ +#undef ENABLE_NLS + +/* Define to 1 if you have the header file. */ +#undef HAVE_ARPA_INET_H + +/* Define to 1 if you have the `atexit' function. */ +#undef HAVE_ATEXIT + +/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the + CoreFoundation framework. */ +#undef HAVE_CFLOCALECOPYCURRENT + +/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in + the CoreFoundation framework. */ +#undef HAVE_CFPREFERENCESCOPYAPPVALUE + +/* Define if the GNU dcgettext() function is already present or preinstalled. + */ +#undef HAVE_DCGETTEXT + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +#undef HAVE_DIRENT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_FCNTL_H + +/* Define to 1 if you have the `getmntent' function. */ +#undef HAVE_GETMNTENT + +/* Define if the GNU gettext() function is already present or preinstalled. */ +#undef HAVE_GETTEXT + +/* Define if you have the iconv() function. */ +#undef HAVE_ICONV + +/* Define to 1 if you have the header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_LANGINFO_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_LIBINTL_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_LIMITS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_LOCALE_H + +/* Define to 1 if `lstat' has the bug that it succeeds when given the + zero-length file name argument. */ +#undef HAVE_LSTAT_EMPTY_STRING_BUG + +/* Define to 1 if your system has a GNU libc compatible `malloc' function, and + to 0 otherwise. */ +#undef HAVE_MALLOC + +/* Define to 1 if you have the header file. */ +#undef HAVE_MEMORY_H + +/* Define to 1 if you have the `memset' function. */ +#undef HAVE_MEMSET + +/* Define to 1 if you have the header file. */ +#undef HAVE_MNTENT_H + +/* Define to 1 if you have the header file, and it defines `DIR'. */ +#undef HAVE_NDIR_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_NETDB_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_NETINET_IN_H + +/* Define to 1 if you have the `nl_langinfo' function. */ +#undef HAVE_NL_LANGINFO + +/* Define to 1 if your system has a GNU libc compatible `realloc' function, + and to 0 otherwise. */ +#undef HAVE_REALLOC + +/* Define to 1 if you have the `regcomp' function. */ +#undef HAVE_REGCOMP + +/* Define to 1 if you have the `rpmatch' function. */ +#undef HAVE_RPMATCH + +/* Define to 1 if you have the `setlocale' function. */ +#undef HAVE_SETLOCALE + +/* Define to 1 if you have the `socket' function. */ +#undef HAVE_SOCKET + +/* Define to 1 if `stat' has the bug that it succeeds when given the + zero-length file name argument. */ +#undef HAVE_STAT_EMPTY_STRING_BUG + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the `strcasecmp' function. */ +#undef HAVE_STRCASECMP + +/* Define to 1 if you have the `strchr' function. */ +#undef HAVE_STRCHR + +/* Define to 1 if you have the `strdup' function. */ +#undef HAVE_STRDUP + +/* Define to 1 if you have the `strerror' function. */ +#undef HAVE_STRERROR + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the `strpbrk' function. */ +#undef HAVE_STRPBRK + +/* Define to 1 if you have the `strrchr' function. */ +#undef HAVE_STRRCHR + +/* Define to 1 if you have the `strtoul' function. */ +#undef HAVE_STRTOUL + +/* Define to 1 if `gpr' is member of `struct pt_regs'. */ +#undef HAVE_STRUCT_PT_REGS_GPR + +/* Define to 1 if `orig_gpr3' is member of `struct pt_regs'. */ +#undef HAVE_STRUCT_PT_REGS_ORIG_GPR3 + +/* Define to 1 if `st_rdev' is member of `struct stat'. */ +#undef HAVE_STRUCT_STAT_ST_RDEV + +/* Define to 1 if `eax' is member of `struct user_regs_struct'. */ +#undef HAVE_STRUCT_USER_REGS_STRUCT_EAX + +/* Define to 1 if `ebx' is member of `struct user_regs_struct'. */ +#undef HAVE_STRUCT_USER_REGS_STRUCT_EBX + +/* Define to 1 if `ecx' is member of `struct user_regs_struct'. */ +#undef HAVE_STRUCT_USER_REGS_STRUCT_ECX + +/* Define to 1 if `edx' is member of `struct user_regs_struct'. */ +#undef HAVE_STRUCT_USER_REGS_STRUCT_EDX + +/* Define to 1 if `orig_eax' is member of `struct user_regs_struct'. */ +#undef HAVE_STRUCT_USER_REGS_STRUCT_ORIG_EAX + +/* Define to 1 if `orig_rax' is member of `struct user_regs_struct'. */ +#undef HAVE_STRUCT_USER_REGS_STRUCT_ORIG_RAX + +/* Define to 1 if `rax' is member of `struct user_regs_struct'. */ +#undef HAVE_STRUCT_USER_REGS_STRUCT_RAX + +/* Define to 1 if `rdi' is member of `struct user_regs_struct'. */ +#undef HAVE_STRUCT_USER_REGS_STRUCT_RDI + +/* Define to 1 if `rdx' is member of `struct user_regs_struct'. */ +#undef HAVE_STRUCT_USER_REGS_STRUCT_RDX + +/* Define to 1 if `rsi' is member of `struct user_regs_struct'. */ +#undef HAVE_STRUCT_USER_REGS_STRUCT_RSI + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +#undef HAVE_SYS_DIR_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_IOCTL_H + +/* Define to 1 if you have the header file, and it defines `DIR'. + */ +#undef HAVE_SYS_NDIR_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_SOCKET_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have that is POSIX.1 compatible. */ +#undef HAVE_SYS_WAIT_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_TERMIOS_H + +/* Define to 1 if you have the header file. */ +#undef HAVE_UNISTD_H + +/* Define to 1 if `lstat' dereferences a symlink specified with a trailing + slash. */ +#undef LSTAT_FOLLOWS_SLASHED_SYMLINK + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Define to 1 if you have the ANSI C header files. */ +#undef STDC_HEADERS + +/* Version number of package */ +#undef VERSION + +/* Use IPv6 checks */ +#undef WITH_IPV6 + +/* Use Security-Enhanced Linux features */ +#undef WITH_SELINUX + +/* Number of bits in a file offset, on hosts where this is settable. */ +#undef _FILE_OFFSET_BITS + +/* Define for large files, on AIX-style hosts. */ +#undef _LARGE_FILES + +/* Define to empty if `const' does not conform to ANSI C. */ +#undef const + +/* Define to `int' if doesn't define. */ +#undef gid_t + +/* Define to rpl_malloc if the replacement function should be used. */ +#undef malloc + +/* Define to `int' if does not define. */ +#undef pid_t + +/* Define to rpl_realloc if the replacement function should be used. */ +#undef realloc + +/* Define to `unsigned int' if does not define. */ +#undef size_t + +/* Define to `int' if doesn't define. */ +#undef uid_t diff --git a/config/config.guess b/config/config.guess new file mode 100755 index 0000000..45bee13 --- /dev/null +++ b/config/config.guess @@ -0,0 +1,1465 @@ +#! /bin/sh +# Attempt to guess a canonical system name. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. + +timestamp='2005-04-22' + +# This file 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. +# +# 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. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Per Bothner . +# Please send patches to . Submit a context +# diff and a properly formatted ChangeLog entry. +# +# This script attempts to guess a canonical system name similar to +# config.sub. If it succeeds, it prints the system name on stdout, and +# exits with 0. Otherwise, it exits with 1. +# +# The plan is that this can be called by configure scripts if you +# don't specify an explicit build system type. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 +Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit 0 ;; + --version | -v ) + echo "$version" ; exit 0 ;; + --help | --h* | -h ) + echo "$usage"; exit 0 ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep __ELF__ >/dev/null + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit 0 ;; + amd64:OpenBSD:*:*) + echo x86_64-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + amiga:OpenBSD:*:*) + echo m68k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + cats:OpenBSD:*:*) + echo arm-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + hp300:OpenBSD:*:*) + echo m68k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + luna88k:OpenBSD:*:*) + echo m88k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + mac68k:OpenBSD:*:*) + echo m68k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + macppc:OpenBSD:*:*) + echo powerpc-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + mvme68k:OpenBSD:*:*) + echo m68k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + mvme88k:OpenBSD:*:*) + echo m88k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + mvmeppc:OpenBSD:*:*) + echo powerpc-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + sgi:OpenBSD:*:*) + echo mips64-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + sun3:OpenBSD:*:*) + echo m68k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + *:OpenBSD:*:*) + echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit 0 ;; + macppc:MirBSD:*:*) + echo powerppc-unknown-mirbsd${UNAME_RELEASE} + exit 0 ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit 0 ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + exit 0 ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit 0 ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit 0 ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit 0;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit 0 ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit 0 ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit 0 ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit 0 ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit 0 ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit 0;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit 0;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit 0 ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit 0 ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit 0 ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7 && exit 0 ;; + esac ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit 0 ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit 0 ;; + i86pc:SunOS:5.*:*) + echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit 0 ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit 0 ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit 0 ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit 0 ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit 0 ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit 0 ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit 0 ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit 0 ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit 0 ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit 0 ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit 0 ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit 0 ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit 0 ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit 0 ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit 0 ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit 0 ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit 0 ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit 0 ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c \ + && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ + && exit 0 + echo mips-mips-riscos${UNAME_RELEASE} + exit 0 ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit 0 ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit 0 ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit 0 ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit 0 ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit 0 ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit 0 ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit 0 ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit 0 ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit 0 ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit 0 ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit 0 ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit 0 ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit 0 ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit 0 ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit 0 ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 + echo rs6000-ibm-aix3.2.5 + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit 0 ;; + *:AIX:*:[45]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit 0 ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit 0 ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit 0 ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit 0 ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit 0 ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit 0 ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit 0 ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit 0 ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + # avoid double evaluation of $set_cc_for_build + test -n "$CC_FOR_BUILD" || eval $set_cc_for_build + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit 0 ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit 0 ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 + echo unknown-hitachi-hiuxwe2 + exit 0 ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit 0 ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit 0 ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit 0 ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit 0 ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit 0 ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit 0 ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit 0 ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit 0 ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit 0 ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit 0 ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit 0 ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit 0 ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit 0 ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit 0 ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit 0 ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit 0 ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit 0 ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit 0 ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit 0 ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit 0 ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit 0 ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit 0 ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit 0 ;; + *:FreeBSD:*:*) + echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit 0 ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit 0 ;; + i*:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit 0 ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit 0 ;; + x86:Interix*:[34]*) + echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' + exit 0 ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit 0 ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit 0 ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit 0 ;; + amd64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit 0 ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit 0 ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit 0 ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit 0 ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit 0 ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit 0 ;; + arm*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + cris:Linux:*:*) + echo cris-axis-linux-gnu + exit 0 ;; + crisv32:Linux:*:*) + echo crisv32-axis-linux-gnu + exit 0 ;; + frv:Linux:*:*) + echo frv-unknown-linux-gnu + exit 0 ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + mips:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef mips + #undef mipsel + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=mipsel + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=mips + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` + test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 + ;; + mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef mips64 + #undef mips64el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=mips64el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=mips64 + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` + test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 + ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu + exit 0 ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit 0 ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit 0 ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; + esac + exit 0 ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit 0 ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux + exit 0 ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; + x86_64:Linux:*:*) + echo x86_64-unknown-linux-gnu + exit 0 ;; + i*86:Linux:*:*) + # The BFD linker knows what the default object file format is, so + # first see if it will tell us. cd to the root directory to prevent + # problems with other programs or directories called `ld' in the path. + # Set LC_ALL=C to ensure ld outputs messages in English. + ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ + | sed -ne '/supported targets:/!d + s/[ ][ ]*/ /g + s/.*supported targets: *// + s/ .*// + p'` + case "$ld_supported_targets" in + elf32-i386) + TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" + ;; + a.out-i386-linux) + echo "${UNAME_MACHINE}-pc-linux-gnuaout" + exit 0 ;; + coff-i386) + echo "${UNAME_MACHINE}-pc-linux-gnucoff" + exit 0 ;; + "") + # Either a pre-BFD a.out linker (linux-gnuoldld) or + # one that does not give us useful --help. + echo "${UNAME_MACHINE}-pc-linux-gnuoldld" + exit 0 ;; + esac + # Determine whether the default compiler is a.out or elf + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + #ifdef __ELF__ + # ifdef __GLIBC__ + # if __GLIBC__ >= 2 + LIBC=gnu + # else + LIBC=gnulibc1 + # endif + # else + LIBC=gnulibc1 + # endif + #else + #ifdef __INTEL_COMPILER + LIBC=gnu + #else + LIBC=gnuaout + #endif + #endif + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` + test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0 + test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 + ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit 0 ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit 0 ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit 0 ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit 0 ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit 0 ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit 0 ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit 0 ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit 0 ;; + i*86:*:5:[78]*) + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit 0 ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit 0 ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i386. + echo i386-pc-msdosdjgpp + exit 0 ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit 0 ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit 0 ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit 0 ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit 0 ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit 0 ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit 0 ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && echo i486-ncr-sysv4.3${OS_REL} && exit 0 + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && echo i486-ncr-sysv4 && exit 0 ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit 0 ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit 0 ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit 0 ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit 0 ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit 0 ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit 0 ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit 0 ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit 0 ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit 0 ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit 0 ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit 0 ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit 0 ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit 0 ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit 0 ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit 0 ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit 0 ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit 0 ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit 0 ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit 0 ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit 0 ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit 0 ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + *86) UNAME_PROCESSOR=i686 ;; + unknown) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit 0 ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit 0 ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit 0 ;; + NSE-?:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit 0 ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit 0 ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit 0 ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit 0 ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit 0 ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit 0 ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit 0 ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit 0 ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit 0 ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit 0 ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit 0 ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit 0 ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit 0 ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit 0 ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms && exit 0 ;; + I*) echo ia64-dec-vms && exit 0 ;; + V*) echo vax-dec-vms && exit 0 ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit 0 ;; +esac + +#echo '(No uname command or uname output not recognized.)' 1>&2 +#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 + +eval $set_cc_for_build +cat >$dummy.c < +# include +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0 + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit 0 ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit 0 ;; + c34*) + echo c34-convex-bsd + exit 0 ;; + c38*) + echo c38-convex-bsd + exit 0 ;; + c4*) + echo c4-convex-bsd + exit 0 ;; + esac +fi + +cat >&2 < in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/config/config.rpath b/config/config.rpath new file mode 100755 index 0000000..c492a93 --- /dev/null +++ b/config/config.rpath @@ -0,0 +1,614 @@ +#! /bin/sh +# Output a system dependent set of variables, describing how to set the +# run time search path of shared libraries in an executable. +# +# Copyright 1996-2006 Free Software Foundation, Inc. +# Taken from GNU libtool, 2001 +# Originally by Gordon Matzigkeit , 1996 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. +# +# The first argument passed to this file is the canonical host specification, +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld +# should be set by the caller. +# +# The set of defined variables is at the end of this script. + +# Known limitations: +# - On IRIX 6.5 with CC="cc", the run time search patch must not be longer +# than 256 bytes, otherwise the compiler driver will dump core. The only +# known workaround is to choose shorter directory names for the build +# directory and/or the installation directory. + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a +shrext=.so + +host="$1" +host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` +host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` +host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` + +# Code taken from libtool.m4's _LT_CC_BASENAME. + +for cc_temp in $CC""; do + case $cc_temp in + compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; + distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` + +# Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC. + +wl= +if test "$GCC" = yes; then + wl='-Wl,' +else + case "$host_os" in + aix*) + wl='-Wl,' + ;; + darwin*) + case $cc_basename in + xlc*) + wl='-Wl,' + ;; + esac + ;; + mingw* | pw32* | os2*) + ;; + hpux9* | hpux10* | hpux11*) + wl='-Wl,' + ;; + irix5* | irix6* | nonstopux*) + wl='-Wl,' + ;; + newsos6) + ;; + linux*) + case $cc_basename in + icc* | ecc*) + wl='-Wl,' + ;; + pgcc | pgf77 | pgf90) + wl='-Wl,' + ;; + ccc*) + wl='-Wl,' + ;; + como) + wl='-lopt=' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + wl='-Wl,' + ;; + esac + ;; + esac + ;; + osf3* | osf4* | osf5*) + wl='-Wl,' + ;; + sco3.2v5*) + ;; + solaris*) + wl='-Wl,' + ;; + sunos4*) + wl='-Qoption ld ' + ;; + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + wl='-Wl,' + ;; + sysv4*MP*) + ;; + unicos*) + wl='-Wl,' + ;; + uts4*) + ;; + esac +fi + +# Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS. + +hardcode_libdir_flag_spec= +hardcode_libdir_separator= +hardcode_direct=no +hardcode_minus_L=no + +case "$host_os" in + cygwin* | mingw* | pw32*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; +esac + +ld_shlibs=yes +if test "$with_gnu_ld" = yes; then + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + # Unlike libtool, we use -rpath here, not --rpath, since the documented + # option of GNU ld is called -rpath, not --rpath. + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + case "$host_os" in + aix3* | aix4* | aix5*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + ld_shlibs=no + fi + ;; + amigaos*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + # Samuel A. Falvo II reports + # that the semantics of dynamic libraries on AmigaOS, at least up + # to version 4, is to share data among multiple programs linked + # with the same dynamic library. Since this doesn't match the + # behavior of shared libraries on other platforms, we cannot use + # them. + ld_shlibs=no + ;; + beos*) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + cygwin* | mingw* | pw32*) + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec='-L$libdir' + if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + interix3*) + hardcode_direct=no + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + linux*) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + netbsd*) + ;; + solaris*) + if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then + ld_shlibs=no + elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) + ld_shlibs=no + ;; + *) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' + else + ld_shlibs=no + fi + ;; + esac + ;; + sunos4*) + hardcode_direct=yes + ;; + *) + if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then + : + else + ld_shlibs=no + fi + ;; + esac + if test "$ld_shlibs" = no; then + hardcode_libdir_flag_spec= + fi +else + case "$host_os" in + aix3*) + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + hardcode_minus_L=yes + if test "$GCC" = yes; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + hardcode_direct=unsupported + fi + ;; + aix4* | aix5*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + else + aix_use_runtimelinking=no + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[23]|aix4.[23].*|aix5*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + fi + hardcode_direct=yes + hardcode_libdir_separator=':' + if test "$GCC" = yes; then + case $host_os in aix4.[012]|aix4.[012].*) + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && \ + strings "$collect2name" | grep resolve_lib_name >/dev/null + then + # We have reworked collect2 + hardcode_direct=yes + else + # We have old collect2 + hardcode_direct=unsupported + hardcode_minus_L=yes + hardcode_libdir_flag_spec='-L$libdir' + hardcode_libdir_separator= + fi + ;; + esac + fi + # Begin _LT_AC_SYS_LIBPATH_AIX. + echo 'int main () { return 0; }' > conftest.c + ${CC} ${LDFLAGS} conftest.c -o conftest + aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } +}'` + if test -z "$aix_libpath"; then + aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } +}'` + fi + if test -z "$aix_libpath"; then + aix_libpath="/usr/lib:/lib" + fi + rm -f conftest.c conftest + # End _LT_AC_SYS_LIBPATH_AIX. + if test "$aix_use_runtimelinking" = yes; then + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + else + if test "$host_cpu" = ia64; then + hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' + else + hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" + fi + fi + ;; + amigaos*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + # see comment about different semantics on the GNU ld section + ld_shlibs=no + ;; + bsdi[45]*) + ;; + cygwin* | mingw* | pw32*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + hardcode_libdir_flag_spec=' ' + libext=lib + ;; + darwin* | rhapsody*) + hardcode_direct=no + if test "$GCC" = yes ; then + : + else + case $cc_basename in + xlc*) + ;; + *) + ld_shlibs=no + ;; + esac + fi + ;; + dgux*) + hardcode_libdir_flag_spec='-L$libdir' + ;; + freebsd1*) + ld_shlibs=no + ;; + freebsd2.2*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + freebsd2*) + hardcode_direct=yes + hardcode_minus_L=yes + ;; + freebsd* | kfreebsd*-gnu | dragonfly*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + hpux9*) + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + hpux10*) + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + hardcode_direct=yes + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + fi + ;; + hpux11*) + if test "$with_gnu_ld" = no; then + hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' + hardcode_libdir_separator=: + case $host_cpu in + hppa*64*|ia64*) + hardcode_direct=no + ;; + *) + hardcode_direct=yes + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + hardcode_minus_L=yes + ;; + esac + fi + ;; + irix5* | irix6* | nonstopux*) + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + netbsd*) + hardcode_libdir_flag_spec='-R$libdir' + hardcode_direct=yes + ;; + newsos6) + hardcode_direct=yes + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + openbsd*) + hardcode_direct=yes + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + else + case "$host_os" in + openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) + hardcode_libdir_flag_spec='-R$libdir' + ;; + *) + hardcode_libdir_flag_spec='${wl}-rpath,$libdir' + ;; + esac + fi + ;; + os2*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_minus_L=yes + ;; + osf3*) + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + ;; + osf4* | osf5*) + if test "$GCC" = yes; then + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + else + # Both cc and cxx compiler support -rpath directly + hardcode_libdir_flag_spec='-rpath $libdir' + fi + hardcode_libdir_separator=: + ;; + solaris*) + hardcode_libdir_flag_spec='-R$libdir' + ;; + sunos4*) + hardcode_libdir_flag_spec='-L$libdir' + hardcode_direct=yes + hardcode_minus_L=yes + ;; + sysv4) + case $host_vendor in + sni) + hardcode_direct=yes # is this really true??? + ;; + siemens) + hardcode_direct=no + ;; + motorola) + hardcode_direct=no #Motorola manual says yes, but my tests say they lie + ;; + esac + ;; + sysv4.3*) + ;; + sysv4*MP*) + if test -d /usr/nec; then + ld_shlibs=yes + fi + ;; + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7*) + ;; + sysv5* | sco3.2v5* | sco5v6*) + hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' + hardcode_libdir_separator=':' + ;; + uts4*) + hardcode_libdir_flag_spec='-L$libdir' + ;; + *) + ld_shlibs=no + ;; + esac +fi + +# Check dynamic linker characteristics +# Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER. +libname_spec='lib$name' +case "$host_os" in + aix3*) + ;; + aix4* | aix5*) + ;; + amigaos*) + ;; + beos*) + ;; + bsdi[45]*) + ;; + cygwin* | mingw* | pw32*) + shrext=.dll + ;; + darwin* | rhapsody*) + shrext=.dylib + ;; + dgux*) + ;; + freebsd1*) + ;; + kfreebsd*-gnu) + ;; + freebsd* | dragonfly*) + ;; + gnu*) + ;; + hpux9* | hpux10* | hpux11*) + case $host_cpu in + ia64*) + shrext=.so + ;; + hppa*64*) + shrext=.sl + ;; + *) + shrext=.sl + ;; + esac + ;; + interix3*) + ;; + irix5* | irix6* | nonstopux*) + case "$host_os" in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; + *) libsuff= shlibsuff= ;; + esac + ;; + esac + ;; + linux*oldld* | linux*aout* | linux*coff*) + ;; + linux*) + ;; + knetbsd*-gnu) + ;; + netbsd*) + ;; + newsos6) + ;; + nto-qnx*) + ;; + openbsd*) + ;; + os2*) + libname_spec='$name' + shrext=.dll + ;; + osf3* | osf4* | osf5*) + ;; + solaris*) + ;; + sunos4*) + ;; + sysv4 | sysv4.3*) + ;; + sysv4*MP*) + ;; + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + ;; + uts4*) + ;; +esac + +sed_quote_subst='s/\(["`$\\]\)/\\\1/g' +escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` +shlibext=`echo "$shrext" | sed -e 's,^\.,,'` +escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` + +LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <. Submit a context +# diff and a properly formatted ChangeLog entry. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.sub ($timestamp) + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 +Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit 0 ;; + --version | -v ) + echo "$version" ; exit 0 ;; + --help | --h* | -h ) + echo "$usage"; exit 0 ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit 0;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \ + kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray) + os= + basic_machine=$1 + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64vr | mips64vrel \ + | mips64orion | mips64orionel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | msp430 \ + | ns16k | ns32k \ + | openrisc | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ + | pyramid \ + | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b \ + | strongarm \ + | tahoe | thumb | tic4x | tic80 | tron \ + | v850 | v850e \ + | we32k \ + | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ + | z8k) + basic_machine=$basic_machine-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12) + # Motorola 68HC11/12. + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | msp430-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ + | pyramid-* \ + | romp-* | rs6000-* \ + | sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ + | tahoe-* | thumb-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tron-* \ + | v850-* | v850e-* | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ + | xstormy16-* | xtensa-* \ + | ymp-* \ + | z8k-*) + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16c) + basic_machine=cr16c-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; +# I'm not sure what "Sysv32" means. Should this be sysv3.2? + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + or32 | or32-*) + basic_machine=or32-unknown + os=-coff + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc) basic_machine=powerpc-unknown + ;; + ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tic54x | c54x*) + basic_machine=tic54x-unknown + os=-coff + ;; + tic55x | c55x*) + basic_machine=tic55x-unknown + os=-coff + ;; + tic6x | c6x*) + basic_machine=tic6x-unknown + os=-coff + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* \ + | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + # This also exists in the configure program, but was not the + # default. + # os=-sunos4 + ;; + m68*-cisco) + os=-aout + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit 0 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/config/depcomp b/config/depcomp new file mode 100755 index 0000000..ffcd540 --- /dev/null +++ b/config/depcomp @@ -0,0 +1,529 @@ +#! /bin/sh +# depcomp - compile a program generating dependencies as side-effects + +scriptversion=2005-02-09.22 + +# Copyright (C) 1999, 2000, 2003, 2004, 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. + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +# Originally written by Alexandre Oliva . + +case $1 in + '') + echo "$0: No command. Try \`$0 --help' for more information." 1>&2 + exit 1; + ;; + -h | --h*) + cat <<\EOF +Usage: depcomp [--help] [--version] PROGRAM [ARGS] + +Run PROGRAMS ARGS to compile a file, generating dependencies +as side-effects. + +Environment variables: + depmode Dependency tracking mode. + source Source file read by `PROGRAMS ARGS'. + object Object file output by `PROGRAMS ARGS'. + DEPDIR directory where to store dependencies. + depfile Dependency file to output. + tmpdepfile Temporary file to use when outputing dependencies. + libtool Whether libtool is used (yes/no). + +Report bugs to . +EOF + exit $? + ;; + -v | --v*) + echo "depcomp $scriptversion" + exit $? + ;; +esac + +if test -z "$depmode" || test -z "$source" || test -z "$object"; then + echo "depcomp: Variables source, object and depmode must be set" 1>&2 + exit 1 +fi + +# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. +depfile=${depfile-`echo "$object" | + sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} +tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} + +rm -f "$tmpdepfile" + +# Some modes work just like other modes, but use different flags. We +# parameterize here, but still list the modes in the big case below, +# to make depend.m4 easier to write. Note that we *cannot* use a case +# here, because this file can only contain one case statement. +if test "$depmode" = hp; then + # HP compiler uses -M and no extra arg. + gccflag=-M + depmode=gcc +fi + +if test "$depmode" = dashXmstdout; then + # This is just like dashmstdout with a different argument. + dashmflag=-xM + depmode=dashmstdout +fi + +case "$depmode" in +gcc3) +## gcc 3 implements dependency tracking that does exactly what +## we want. Yay! Note: for some reason libtool 1.4 doesn't like +## it if -MD -MP comes after the -MF stuff. Hmm. + "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + mv "$tmpdepfile" "$depfile" + ;; + +gcc) +## There are various ways to get dependency output from gcc. Here's +## why we pick this rather obscure method: +## - Don't want to use -MD because we'd like the dependencies to end +## up in a subdir. Having to rename by hand is ugly. +## (We might end up doing this anyway to support other compilers.) +## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like +## -MM, not -M (despite what the docs say). +## - Using -M directly means running the compiler twice (even worse +## than renaming). + if test -z "$gccflag"; then + gccflag=-MD, + fi + "$@" -Wp,"$gccflag$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + echo "$object : \\" > "$depfile" + alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz +## The second -e expression handles DOS-style file names with drive letters. + sed -e 's/^[^:]*: / /' \ + -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" +## This next piece of magic avoids the `deleted header file' problem. +## The problem is that when a header file which appears in a .P file +## is deleted, the dependency causes make to die (because there is +## typically no way to rebuild the header). We avoid this by adding +## dummy dependencies for each header file. Too bad gcc doesn't do +## this for us directly. + tr ' ' ' +' < "$tmpdepfile" | +## Some versions of gcc put a space before the `:'. On the theory +## that the space means something, we add a space to the output as +## well. +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +hp) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + +sgi) + if test "$libtool" = yes; then + "$@" "-Wp,-MDupdate,$tmpdepfile" + else + "$@" -MDupdate "$tmpdepfile" + fi + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + + if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files + echo "$object : \\" > "$depfile" + + # Clip off the initial element (the dependent). Don't try to be + # clever and replace this with sed code, as IRIX sed won't handle + # lines with more than a fixed number of characters (4096 in + # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; + # the IRIX cc adds comments like `#:fec' to the end of the + # dependency line. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ + tr ' +' ' ' >> $depfile + echo >> $depfile + + # The second pass generates a dummy entry for each header file. + tr ' ' ' +' < "$tmpdepfile" \ + | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ + >> $depfile + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +aix) + # The C for AIX Compiler uses -M and outputs the dependencies + # in a .u file. In older versions, this file always lives in the + # current directory. Also, the AIX compiler puts `$object:' at the + # start of each line; $object doesn't have directory information. + # Version 6 uses the directory in both cases. + stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'` + tmpdepfile="$stripped.u" + if test "$libtool" = yes; then + "$@" -Wc,-M + else + "$@" -M + fi + stat=$? + + if test -f "$tmpdepfile"; then : + else + stripped=`echo "$stripped" | sed 's,^.*/,,'` + tmpdepfile="$stripped.u" + fi + + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + + if test -f "$tmpdepfile"; then + outname="$stripped.o" + # Each line is of the form `foo.o: dependent.h'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" + sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" + else + # The sourcefile does not contain any dependencies, so just + # store a dummy comment line, to avoid errors with the Makefile + # "include basename.Plo" scheme. + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +icc) + # Intel's C compiler understands `-MD -MF file'. However on + # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c + # ICC 7.0 will fill foo.d with something like + # foo.o: sub/foo.c + # foo.o: sub/foo.h + # which is wrong. We want: + # sub/foo.o: sub/foo.c + # sub/foo.o: sub/foo.h + # sub/foo.c: + # sub/foo.h: + # ICC 7.1 will output + # foo.o: sub/foo.c sub/foo.h + # and will wrap long lines using \ : + # foo.o: sub/foo.c ... \ + # sub/foo.h ... \ + # ... + + "$@" -MD -MF "$tmpdepfile" + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile" + exit $stat + fi + rm -f "$depfile" + # Each line is of the form `foo.o: dependent.h', + # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. + # Do two passes, one to just change these to + # `$object: dependent.h' and one to simply `dependent.h:'. + sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" + # Some versions of the HPUX 10.20 sed can't process this invocation + # correctly. Breaking it into two sed invocations is a workaround. + sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | + sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +tru64) + # The Tru64 compiler uses -MD to generate dependencies as a side + # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. + # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put + # dependencies in `foo.d' instead, so we check for that too. + # Subdirectories are respected. + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` + + if test "$libtool" = yes; then + # With Tru64 cc, shared objects can also be used to make a + # static library. This mecanism is used in libtool 1.4 series to + # handle both shared and static libraries in a single compilation. + # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. + # + # With libtool 1.5 this exception was removed, and libtool now + # generates 2 separate objects for the 2 libraries. These two + # compilations output dependencies in in $dir.libs/$base.o.d and + # in $dir$base.o.d. We have to check for both files, because + # one of the two compilations can be disabled. We should prefer + # $dir$base.o.d over $dir.libs/$base.o.d because the latter is + # automatically cleaned when .libs/ is deleted, while ignoring + # the former would cause a distcleancheck panic. + tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 + tmpdepfile2=$dir$base.o.d # libtool 1.5 + tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 + tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 + "$@" -Wc,-MD + else + tmpdepfile1=$dir$base.o.d + tmpdepfile2=$dir$base.d + tmpdepfile3=$dir$base.d + tmpdepfile4=$dir$base.d + "$@" -MD + fi + + stat=$? + if test $stat -eq 0; then : + else + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" + exit $stat + fi + + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" + do + test -f "$tmpdepfile" && break + done + if test -f "$tmpdepfile"; then + sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" + else + echo "#dummy" > "$depfile" + fi + rm -f "$tmpdepfile" + ;; + +#nosideeffect) + # This comment above is used by automake to tell side-effect + # dependency tracking mechanisms from slower ones. + +dashmstdout) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout, regardless of -o. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test $1 != '--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + test -z "$dashmflag" && dashmflag=-M + # Require at least two characters before searching for `:' + # in the target name. This is to cope with DOS-style filenames: + # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. + "$@" $dashmflag | + sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + tr ' ' ' +' < "$tmpdepfile" | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +dashXmstdout) + # This case only exists to satisfy depend.m4. It is never actually + # run, as this mode is specially recognized in the preamble. + exit 1 + ;; + +makedepend) + "$@" || exit $? + # Remove any Libtool call + if test "$libtool" = yes; then + while test $1 != '--mode=compile'; do + shift + done + shift + fi + # X makedepend + shift + cleared=no + for arg in "$@"; do + case $cleared in + no) + set ""; shift + cleared=yes ;; + esac + case "$arg" in + -D*|-I*) + set fnord "$@" "$arg"; shift ;; + # Strip any option that makedepend may not understand. Remove + # the object too, otherwise makedepend will parse it as a source file. + -*|$object) + ;; + *) + set fnord "$@" "$arg"; shift ;; + esac + done + obj_suffix="`echo $object | sed 's/^.*\././'`" + touch "$tmpdepfile" + ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" + rm -f "$depfile" + cat < "$tmpdepfile" > "$depfile" + sed '1,2d' "$tmpdepfile" | tr ' ' ' +' | \ +## Some versions of the HPUX 10.20 sed can't process this invocation +## correctly. Breaking it into two sed invocations is a workaround. + sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" "$tmpdepfile".bak + ;; + +cpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout. + "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test $1 != '--mode=compile'; do + shift + done + shift + fi + + # Remove `-o $object'. + IFS=" " + for arg + do + case $arg in + -o) + shift + ;; + $object) + shift + ;; + *) + set fnord "$@" "$arg" + shift # fnord + shift # $arg + ;; + esac + done + + "$@" -E | + sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | + sed '$ s: \\$::' > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + cat < "$tmpdepfile" >> "$depfile" + sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +msvisualcpp) + # Important note: in order to support this mode, a compiler *must* + # always write the preprocessed file to stdout, regardless of -o, + # because we must use -o when running libtool. + "$@" || exit $? + IFS=" " + for arg + do + case "$arg" in + "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") + set fnord "$@" + shift + shift + ;; + *) + set fnord "$@" "$arg" + shift + shift + ;; + esac + done + "$@" -E | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" + rm -f "$depfile" + echo "$object : \\" > "$depfile" + . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" + echo " " >> "$depfile" + . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" + rm -f "$tmpdepfile" + ;; + +none) + exec "$@" + ;; + +*) + echo "Unknown depmode $depmode" 1>&2 + exit 1 + ;; +esac + +exit 0 + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-end: "$" +# End: diff --git a/config/install-sh b/config/install-sh new file mode 100755 index 0000000..1a83534 --- /dev/null +++ b/config/install-sh @@ -0,0 +1,323 @@ +#!/bin/sh +# install - install a program, script, or datafile + +scriptversion=2005-02-02.21 + +# This originates from X11R5 (mit/util/scripts/install.sh), which was +# later released in X11R6 (xc/config/util/install.sh) with the +# following copyright and license. +# +# Copyright (C) 1994 X Consortium +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the X Consortium shall not +# be used in advertising or otherwise to promote the sale, use or other deal- +# ings in this Software without prior written authorization from the X Consor- +# tium. +# +# +# FSF changes to this file are in the public domain. +# +# Calling this script install-sh is preferred over install.sh, to prevent +# `make' implicit rules from creating a file called install from it +# when there is no Makefile. +# +# This script is compatible with the BSD install script, but was written +# from scratch. It can only install one file at a time, a restriction +# shared with many OS's install programs. + +# set DOITPROG to echo to test this script + +# Don't use :- since 4.3BSD and earlier shells don't like it. +doit="${DOITPROG-}" + +# put in absolute paths if you don't have them in your path; or use env. vars. + +mvprog="${MVPROG-mv}" +cpprog="${CPPROG-cp}" +chmodprog="${CHMODPROG-chmod}" +chownprog="${CHOWNPROG-chown}" +chgrpprog="${CHGRPPROG-chgrp}" +stripprog="${STRIPPROG-strip}" +rmprog="${RMPROG-rm}" +mkdirprog="${MKDIRPROG-mkdir}" + +chmodcmd="$chmodprog 0755" +chowncmd= +chgrpcmd= +stripcmd= +rmcmd="$rmprog -f" +mvcmd="$mvprog" +src= +dst= +dir_arg= +dstarg= +no_target_directory= + +usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE + or: $0 [OPTION]... SRCFILES... DIRECTORY + or: $0 [OPTION]... -t DIRECTORY SRCFILES... + or: $0 [OPTION]... -d DIRECTORIES... + +In the 1st form, copy SRCFILE to DSTFILE. +In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. +In the 4th, create DIRECTORIES. + +Options: +-c (ignored) +-d create directories instead of installing files. +-g GROUP $chgrpprog installed files to GROUP. +-m MODE $chmodprog installed files to MODE. +-o USER $chownprog installed files to USER. +-s $stripprog installed files. +-t DIRECTORY install into DIRECTORY. +-T report an error if DSTFILE is a directory. +--help display this help and exit. +--version display version info and exit. + +Environment variables override the default commands: + CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG +" + +while test -n "$1"; do + case $1 in + -c) shift + continue;; + + -d) dir_arg=true + shift + continue;; + + -g) chgrpcmd="$chgrpprog $2" + shift + shift + continue;; + + --help) echo "$usage"; exit $?;; + + -m) chmodcmd="$chmodprog $2" + shift + shift + continue;; + + -o) chowncmd="$chownprog $2" + shift + shift + continue;; + + -s) stripcmd=$stripprog + shift + continue;; + + -t) dstarg=$2 + shift + shift + continue;; + + -T) no_target_directory=true + shift + continue;; + + --version) echo "$0 $scriptversion"; exit $?;; + + *) # When -d is used, all remaining arguments are directories to create. + # When -t is used, the destination is already specified. + test -n "$dir_arg$dstarg" && break + # Otherwise, the last argument is the destination. Remove it from $@. + for arg + do + if test -n "$dstarg"; then + # $@ is not empty: it contains at least $arg. + set fnord "$@" "$dstarg" + shift # fnord + fi + shift # arg + dstarg=$arg + done + break;; + esac +done + +if test -z "$1"; then + if test -z "$dir_arg"; then + echo "$0: no input file specified." >&2 + exit 1 + fi + # It's OK to call `install-sh -d' without argument. + # This can happen when creating conditional directories. + exit 0 +fi + +for src +do + # Protect names starting with `-'. + case $src in + -*) src=./$src ;; + esac + + if test -n "$dir_arg"; then + dst=$src + src= + + if test -d "$dst"; then + mkdircmd=: + chmodcmd= + else + mkdircmd=$mkdirprog + fi + else + # Waiting for this to be detected by the "$cpprog $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. + if test ! -f "$src" && test ! -d "$src"; then + echo "$0: $src does not exist." >&2 + exit 1 + fi + + if test -z "$dstarg"; then + echo "$0: no destination specified." >&2 + exit 1 + fi + + dst=$dstarg + # Protect names starting with `-'. + case $dst in + -*) dst=./$dst ;; + esac + + # If destination is a directory, append the input filename; won't work + # if double slashes aren't ignored. + if test -d "$dst"; then + if test -n "$no_target_directory"; then + echo "$0: $dstarg: Is a directory" >&2 + exit 1 + fi + dst=$dst/`basename "$src"` + fi + fi + + # This sed command emulates the dirname command. + dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'` + + # Make sure that the destination directory exists. + + # Skip lots of stat calls in the usual case. + if test ! -d "$dstdir"; then + defaultIFS=' + ' + IFS="${IFS-$defaultIFS}" + + oIFS=$IFS + # Some sh's can't handle IFS=/ for some reason. + IFS='%' + set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` + shift + IFS=$oIFS + + pathcomp= + + while test $# -ne 0 ; do + pathcomp=$pathcomp$1 + shift + if test ! -d "$pathcomp"; then + $mkdirprog "$pathcomp" + # mkdir can fail with a `File exist' error in case several + # install-sh are creating the directory concurrently. This + # is OK. + test -d "$pathcomp" || exit + fi + pathcomp=$pathcomp/ + done + fi + + if test -n "$dir_arg"; then + $doit $mkdircmd "$dst" \ + && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ + && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ + && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ + && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; } + + else + dstfile=`basename "$dst"` + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/_inst.$$_ + rmtmp=$dstdir/_rm.$$_ + + # Trap to clean up those temp files at exit. + trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 + trap '(exit $?); exit' 1 2 13 15 + + # Copy the file name to the temp name. + $doit $cpprog "$src" "$dsttmp" && + + # and set any options; do chmod last to preserve setuid bits. + # + # If any of these fail, we abort the whole thing. If we want to + # ignore errors from any of these, just make sure not to ignore + # errors from the above "$doit $cpprog $src $dsttmp" command. + # + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \ + && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \ + && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \ + && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } && + + # Now rename the file to the real destination. + { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \ + || { + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + if test -f "$dstdir/$dstfile"; then + $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \ + || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \ + || { + echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 + (exit 1); exit 1 + } + else + : + fi + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" + } + } + fi || { (exit 1); exit 1; } +done + +# The final little trick to "correctly" pass the exit status to the exit trap. +{ + (exit 0); exit 0 +} + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-end: "$" +# End: diff --git a/config/missing b/config/missing new file mode 100755 index 0000000..09edd88 --- /dev/null +++ b/config/missing @@ -0,0 +1,357 @@ +#! /bin/sh +# Common stub for a few missing GNU programs while installing. + +scriptversion=2005-02-08.22 + +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005 +# Free Software Foundation, Inc. +# Originally by Fran,cois Pinard , 1996. + +# 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. + +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + +if test $# -eq 0; then + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 +fi + +run=: + +# In the cases where this matters, `missing' is being run in the +# srcdir already. +if test -f configure.ac; then + configure_ac=configure.ac +else + configure_ac=configure.in +fi + +msg="missing on your system" + +case "$1" in +--run) + # Try to run requested program, and just exit if it succeeds. + run= + shift + "$@" && exit 0 + # Exit code 63 means version mismatch. This often happens + # when the user try to use an ancient version of a tool on + # a file that requires a minimum version. In this case we + # we should proceed has if the program had been absent, or + # if --run hadn't been passed. + if test $? = 63; then + run=: + msg="probably too old" + fi + ;; + + -h|--h|--he|--hel|--help) + echo "\ +$0 [OPTION]... PROGRAM [ARGUMENT]... + +Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an +error status if there is no known handling for PROGRAM. + +Options: + -h, --help display this help and exit + -v, --version output version information and exit + --run try to run the given command, and emulate it if it fails + +Supported PROGRAM values: + aclocal touch file \`aclocal.m4' + autoconf touch file \`configure' + autoheader touch file \`config.h.in' + automake touch all \`Makefile.in' files + bison create \`y.tab.[ch]', if possible, from existing .[ch] + flex create \`lex.yy.c', if possible, from existing .c + help2man touch the output file + lex create \`lex.yy.c', if possible, from existing .c + makeinfo touch the output file + tar try tar, gnutar, gtar, then tar without non-portable flags + yacc create \`y.tab.[ch]', if possible, from existing .[ch] + +Send bug reports to ." + exit $? + ;; + + -v|--v|--ve|--ver|--vers|--versi|--versio|--version) + echo "missing $scriptversion (GNU Automake)" + exit $? + ;; + + -*) + echo 1>&2 "$0: Unknown \`$1' option" + echo 1>&2 "Try \`$0 --help' for more information" + exit 1 + ;; + +esac + +# Now exit if we have it, but it failed. Also exit now if we +# don't have it and --version was passed (most likely to detect +# the program). +case "$1" in + lex|yacc) + # Not GNU programs, they don't have --version. + ;; + + tar) + if test -n "$run"; then + echo 1>&2 "ERROR: \`tar' requires --run" + exit 1 + elif test "x$2" = "x--version" || test "x$2" = "x--help"; then + exit 1 + fi + ;; + + *) + if test -z "$run" && ($1 --version) > /dev/null 2>&1; then + # We have it, but it failed. + exit 1 + elif test "x$2" = "x--version" || test "x$2" = "x--help"; then + # Could not run --version or --help. This is probably someone + # running `$TOOL --version' or `$TOOL --help' to check whether + # $TOOL exists and not knowing $TOOL uses missing. + exit 1 + fi + ;; +esac + +# If it does not exist, or fails to run (possibly an outdated version), +# try to emulate it. +case "$1" in + aclocal*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acinclude.m4' or \`${configure_ac}'. You might want + to install the \`Automake' and \`Perl' packages. Grab them from + any GNU archive site." + touch aclocal.m4 + ;; + + autoconf) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`${configure_ac}'. You might want to install the + \`Autoconf' and \`GNU m4' packages. Grab them from any GNU + archive site." + touch configure + ;; + + autoheader) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`acconfig.h' or \`${configure_ac}'. You might want + to install the \`Autoconf' and \`GNU m4' packages. Grab them + from any GNU archive site." + files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` + test -z "$files" && files="config.h" + touch_files= + for f in $files; do + case "$f" in + *:*) touch_files="$touch_files "`echo "$f" | + sed -e 's/^[^:]*://' -e 's/:.*//'`;; + *) touch_files="$touch_files $f.in";; + esac + done + touch $touch_files + ;; + + automake*) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. + You might want to install the \`Automake' and \`Perl' packages. + Grab them from any GNU archive site." + find . -type f -name Makefile.am -print | + sed 's/\.am$/.in/' | + while read f; do touch "$f"; done + ;; + + autom4te) + echo 1>&2 "\ +WARNING: \`$1' is needed, but is $msg. + You might have modified some files without having the + proper tools for further handling them. + You can get \`$1' as part of \`Autoconf' from any GNU + archive site." + + file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` + test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` + if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file + echo "#! /bin/sh" + echo "# Created by GNU Automake missing as a replacement of" + echo "# $ $@" + echo "exit 0" + chmod +x $file + exit 1 + fi + ;; + + bison|yacc) + echo 1>&2 "\ +WARNING: \`$1' $msg. You should only need it if + you modified a \`.y' file. You may need the \`Bison' package + in order for those modifications to take effect. You can get + \`Bison' from any GNU archive site." + rm -f y.tab.c y.tab.h + if [ $# -ne 1 ]; then + eval LASTARG="\${$#}" + case "$LASTARG" in + *.y) + SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` + if [ -f "$SRCFILE" ]; then + cp "$SRCFILE" y.tab.c + fi + SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` + if [ -f "$SRCFILE" ]; then + cp "$SRCFILE" y.tab.h + fi + ;; + esac + fi + if [ ! -f y.tab.h ]; then + echo >y.tab.h + fi + if [ ! -f y.tab.c ]; then + echo 'main() { return 0; }' >y.tab.c + fi + ;; + + lex|flex) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.l' file. You may need the \`Flex' package + in order for those modifications to take effect. You can get + \`Flex' from any GNU archive site." + rm -f lex.yy.c + if [ $# -ne 1 ]; then + eval LASTARG="\${$#}" + case "$LASTARG" in + *.l) + SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` + if [ -f "$SRCFILE" ]; then + cp "$SRCFILE" lex.yy.c + fi + ;; + esac + fi + if [ ! -f lex.yy.c ]; then + echo 'main() { return 0; }' >lex.yy.c + fi + ;; + + help2man) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a dependency of a manual page. You may need the + \`Help2man' package in order for those modifications to take + effect. You can get \`Help2man' from any GNU archive site." + + file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` + if test -z "$file"; then + file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` + fi + if [ -f "$file" ]; then + touch $file + else + test -z "$file" || exec >$file + echo ".ab help2man is required to generate this page" + exit 1 + fi + ;; + + makeinfo) + echo 1>&2 "\ +WARNING: \`$1' is $msg. You should only need it if + you modified a \`.texi' or \`.texinfo' file, or any other file + indirectly affecting the aspect of the manual. The spurious + call might also be the consequence of using a buggy \`make' (AIX, + DU, IRIX). You might want to install the \`Texinfo' package or + the \`GNU make' package. Grab either from any GNU archive site." + # The file to touch is that specified with -o ... + file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` + if test -z "$file"; then + # ... or it is the one specified with @setfilename ... + infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` + file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile` + # ... or it is derived from the source name (dir/f.texi becomes f.info) + test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info + fi + touch $file + ;; + + tar) + shift + + # We have already tried tar in the generic part. + # Look for gnutar/gtar before invocation to avoid ugly error + # messages. + if (gnutar --version > /dev/null 2>&1); then + gnutar "$@" && exit 0 + fi + if (gtar --version > /dev/null 2>&1); then + gtar "$@" && exit 0 + fi + firstarg="$1" + if shift; then + case "$firstarg" in + *o*) + firstarg=`echo "$firstarg" | sed s/o//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + case "$firstarg" in + *h*) + firstarg=`echo "$firstarg" | sed s/h//` + tar "$firstarg" "$@" && exit 0 + ;; + esac + fi + + echo 1>&2 "\ +WARNING: I can't seem to be able to run \`tar' with the given arguments. + You may want to install GNU tar or Free paxutils, or check the + command line arguments." + exit 1 + ;; + + *) + echo 1>&2 "\ +WARNING: \`$1' is needed, and is $msg. + You might have modified some files without having the + proper tools for further handling them. Check the \`README' file, + it often tells you about the needed prerequisites for installing + this package. You may also peek at any GNU archive site, in case + some other package would contain this missing \`$1' program." + exit 1 + ;; +esac + +exit 0 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-end: "$" +# End: diff --git a/config/mkinstalldirs b/config/mkinstalldirs new file mode 100755 index 0000000..d2d5f21 --- /dev/null +++ b/config/mkinstalldirs @@ -0,0 +1,111 @@ +#! /bin/sh +# mkinstalldirs --- make directory hierarchy +# Author: Noah Friedman +# Created: 1993-05-16 +# Public domain + +errstatus=0 +dirmode="" + +usage="\ +Usage: mkinstalldirs [-h] [--help] [-m mode] dir ..." + +# process command line arguments +while test $# -gt 0 ; do + case $1 in + -h | --help | --h*) # -h for help + echo "$usage" 1>&2 + exit 0 + ;; + -m) # -m PERM arg + shift + test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } + dirmode=$1 + shift + ;; + --) # stop option processing + shift + break + ;; + -*) # unknown option + echo "$usage" 1>&2 + exit 1 + ;; + *) # first non-opt arg + break + ;; + esac +done + +for file +do + if test -d "$file"; then + shift + else + break + fi +done + +case $# in + 0) exit 0 ;; +esac + +case $dirmode in + '') + if mkdir -p -- . 2>/dev/null; then + echo "mkdir -p -- $*" + exec mkdir -p -- "$@" + fi + ;; + *) + if mkdir -m "$dirmode" -p -- . 2>/dev/null; then + echo "mkdir -m $dirmode -p -- $*" + exec mkdir -m "$dirmode" -p -- "$@" + fi + ;; +esac + +for file +do + set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` + shift + + pathcomp= + for d + do + pathcomp="$pathcomp$d" + case $pathcomp in + -*) pathcomp=./$pathcomp ;; + esac + + if test ! -d "$pathcomp"; then + echo "mkdir $pathcomp" + + mkdir "$pathcomp" || lasterr=$? + + if test ! -d "$pathcomp"; then + errstatus=$lasterr + else + if test ! -z "$dirmode"; then + echo "chmod $dirmode $pathcomp" + lasterr="" + chmod "$dirmode" "$pathcomp" || lasterr=$? + + if test ! -z "$lasterr"; then + errstatus=$lasterr + fi + fi + fi + fi + + pathcomp="$pathcomp/" + done +done + +exit $errstatus + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# End: +# mkinstalldirs ends here diff --git a/configure b/configure new file mode 100755 index 0000000..0a6fc99 --- /dev/null +++ b/configure @@ -0,0 +1,12036 @@ +#! /bin/sh +# Guess values for system-dependent variables and create Makefiles. +# Generated by GNU Autoconf 2.61 for psmisc 22.6. +# +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This configure script is free software; the Free Software Foundation +# gives unlimited permission to copy, distribute and modify it. +## --------------------- ## +## M4sh Initialization. ## +## --------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in + *posix*) set -o posix ;; +esac + +fi + + + + +# PATH needs CR +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi + +# Support unset when possible. +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + as_unset=unset +else + as_unset=false +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +as_nl=' +' +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + { (exit 1); exit 1; } +fi + +# Work around bugs in pre-3.0 UWIN ksh. +for as_var in ENV MAIL MAILPATH +do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +for as_var in \ + LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ + LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ + LC_TELEPHONE LC_TIME +do + if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then + eval $as_var=C; export $as_var + else + ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var + fi +done + +# Required to use basename. +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + + +# Name of the executable. +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# CDPATH. +$as_unset CDPATH + + +if test "x$CONFIG_SHELL" = x; then + if (eval ":") 2>/dev/null; then + as_have_required=yes +else + as_have_required=no +fi + + if test $as_have_required = yes && (eval ": +(as_func_return () { + (exit \$1) +} +as_func_success () { + as_func_return 0 +} +as_func_failure () { + as_func_return 1 +} +as_func_ret_success () { + return 0 +} +as_func_ret_failure () { + return 1 +} + +exitcode=0 +if as_func_success; then + : +else + exitcode=1 + echo as_func_success failed. +fi + +if as_func_failure; then + exitcode=1 + echo as_func_failure succeeded. +fi + +if as_func_ret_success; then + : +else + exitcode=1 + echo as_func_ret_success failed. +fi + +if as_func_ret_failure; then + exitcode=1 + echo as_func_ret_failure succeeded. +fi + +if ( set x; as_func_ret_success y && test x = \"\$1\" ); then + : +else + exitcode=1 + echo positional parameters were not saved. +fi + +test \$exitcode = 0) || { (exit 1); exit 1; } + +( + as_lineno_1=\$LINENO + as_lineno_2=\$LINENO + test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && + test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } +") 2> /dev/null; then + : +else + as_candidate_shells= + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + case $as_dir in + /*) + for as_base in sh bash ksh sh5; do + as_candidate_shells="$as_candidate_shells $as_dir/$as_base" + done;; + esac +done +IFS=$as_save_IFS + + + for as_shell in $as_candidate_shells $SHELL; do + # Try only shells that exist, to save several forks. + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { ("$as_shell") 2> /dev/null <<\_ASEOF +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in + *posix*) set -o posix ;; +esac + +fi + + +: +_ASEOF +}; then + CONFIG_SHELL=$as_shell + as_have_required=yes + if { "$as_shell" 2> /dev/null <<\_ASEOF +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in + *posix*) set -o posix ;; +esac + +fi + + +: +(as_func_return () { + (exit $1) +} +as_func_success () { + as_func_return 0 +} +as_func_failure () { + as_func_return 1 +} +as_func_ret_success () { + return 0 +} +as_func_ret_failure () { + return 1 +} + +exitcode=0 +if as_func_success; then + : +else + exitcode=1 + echo as_func_success failed. +fi + +if as_func_failure; then + exitcode=1 + echo as_func_failure succeeded. +fi + +if as_func_ret_success; then + : +else + exitcode=1 + echo as_func_ret_success failed. +fi + +if as_func_ret_failure; then + exitcode=1 + echo as_func_ret_failure succeeded. +fi + +if ( set x; as_func_ret_success y && test x = "$1" ); then + : +else + exitcode=1 + echo positional parameters were not saved. +fi + +test $exitcode = 0) || { (exit 1); exit 1; } + +( + as_lineno_1=$LINENO + as_lineno_2=$LINENO + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } + +_ASEOF +}; then + break +fi + +fi + + done + + if test "x$CONFIG_SHELL" != x; then + for as_var in BASH_ENV ENV + do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var + done + export CONFIG_SHELL + exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} +fi + + + if test $as_have_required = no; then + echo This script requires a shell more modern than all the + echo shells that I found on your system. Please install a + echo modern shell, or manually run the script under such a + echo shell if you do have one. + { (exit 1); exit 1; } +fi + + +fi + +fi + + + +(eval "as_func_return () { + (exit \$1) +} +as_func_success () { + as_func_return 0 +} +as_func_failure () { + as_func_return 1 +} +as_func_ret_success () { + return 0 +} +as_func_ret_failure () { + return 1 +} + +exitcode=0 +if as_func_success; then + : +else + exitcode=1 + echo as_func_success failed. +fi + +if as_func_failure; then + exitcode=1 + echo as_func_failure succeeded. +fi + +if as_func_ret_success; then + : +else + exitcode=1 + echo as_func_ret_success failed. +fi + +if as_func_ret_failure; then + exitcode=1 + echo as_func_ret_failure succeeded. +fi + +if ( set x; as_func_ret_success y && test x = \"\$1\" ); then + : +else + exitcode=1 + echo positional parameters were not saved. +fi + +test \$exitcode = 0") || { + echo No shell found that supports shell functions. + echo Please tell autoconf@gnu.org about your system, + echo including any error possibly output before this + echo message +} + + + + as_lineno_1=$LINENO + as_lineno_2=$LINENO + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { + + # Create $as_me.lineno as a copy of $as_myself, but with $LINENO + # uniformly replaced by the line number. The first 'sed' inserts a + # line-number line after each line using $LINENO; the second 'sed' + # does the real work. The second script uses 'N' to pair each + # line-number line with the line containing $LINENO, and appends + # trailing '-' during substitution so that $LINENO is not a special + # case at line end. + # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the + # scripts with optimization help from Paolo Bonzini. Blame Lee + # E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 + { (exit 1); exit 1; }; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in +-n*) + case `echo 'x\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + *) ECHO_C='\c';; + esac;; +*) + ECHO_N='-n';; +esac + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir +fi +echo >conf$$.file +if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' +elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p=: +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + + +exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIBOBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= +SHELL=${CONFIG_SHELL-/bin/sh} + +# Identity of this package. +PACKAGE_NAME='psmisc' +PACKAGE_TARNAME='psmisc' +PACKAGE_VERSION='22.6' +PACKAGE_STRING='psmisc 22.6' +PACKAGE_BUGREPORT='' + +ac_unique_file="src/comm.h" +# Factoring default headers for most tests. +ac_includes_default="\ +#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif" + +gt_needs= +ac_subst_vars='SHELL +PATH_SEPARATOR +PACKAGE_NAME +PACKAGE_TARNAME +PACKAGE_VERSION +PACKAGE_STRING +PACKAGE_BUGREPORT +exec_prefix +prefix +program_transform_name +bindir +sbindir +libexecdir +datarootdir +datadir +sysconfdir +sharedstatedir +localstatedir +includedir +oldincludedir +docdir +infodir +htmldir +dvidir +pdfdir +psdir +libdir +localedir +mandir +DEFS +ECHO_C +ECHO_N +ECHO_T +LIBS +build_alias +host_alias +target_alias +INSTALL_PROGRAM +INSTALL_SCRIPT +INSTALL_DATA +am__isrc +CYGPATH_W +PACKAGE +VERSION +ACLOCAL +AUTOCONF +AUTOMAKE +AUTOHEADER +MAKEINFO +install_sh +STRIP +INSTALL_STRIP_PROGRAM +mkdir_p +AWK +SET_MAKE +am__leading_dot +AMTAR +am__tar +am__untar +CXX +CXXFLAGS +LDFLAGS +CPPFLAGS +ac_ct_CXX +EXEEXT +OBJEXT +DEPDIR +am__include +am__quote +AMDEP_TRUE +AMDEP_FALSE +AMDEPBACKSLASH +CXXDEPMODE +am__fastdepCXX_TRUE +am__fastdepCXX_FALSE +CC +CFLAGS +ac_ct_CC +CCDEPMODE +am__fastdepCC_TRUE +am__fastdepCC_FALSE +LN_S +WITH_SELINUX +SELINUX_LIB +WITH_IPV6 +TERMCAP_LIB +CPP +GREP +EGREP +WANT_PEEKFD_I386_TRUE +WANT_PEEKFD_I386_FALSE +WANT_PEEKFD_X86_64_TRUE +WANT_PEEKFD_X86_64_FALSE +WANT_PEEKFD_PPC_TRUE +WANT_PEEKFD_PPC_FALSE +USE_NLS +MSGFMT +GMSGFMT +MSGFMT_015 +GMSGFMT_015 +XGETTEXT +XGETTEXT_015 +MSGMERGE +build +build_cpu +build_vendor +build_os +host +host_cpu +host_vendor +host_os +INTL_MACOSX_LIBS +LIBICONV +LTLIBICONV +INTLLIBS +LIBINTL +LTLIBINTL +POSUB +LIBOBJS +LTLIBOBJS' +ac_subst_files='' + ac_precious_vars='build_alias +host_alias +target_alias +CXX +CXXFLAGS +LDFLAGS +LIBS +CPPFLAGS +CCC +CC +CFLAGS +CPP' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } + ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` + eval enable_$ac_feature=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } + ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` + eval enable_$ac_feature=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } + ac_package=`echo $ac_package | sed 's/[-.]/_/g'` + eval with_$ac_package=\$ac_optarg ;; + + -without-* | --without-*) + ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } + ac_package=`echo $ac_package | sed 's/[-.]/_/g'` + eval with_$ac_package=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) { echo "$as_me: error: unrecognized option: $ac_option +Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; } + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 + { (exit 1); exit 1; }; } + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + { echo "$as_me: error: missing argument to $ac_option" >&2 + { (exit 1); exit 1; }; } +fi + +# Be sure to have absolute directory names. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir +do + eval ac_val=\$$ac_var + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 + { (exit 1); exit 1; }; } +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used." >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + { echo "$as_me: error: Working directory cannot be determined" >&2 + { (exit 1); exit 1; }; } +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + { echo "$as_me: error: pwd does not report name of working directory" >&2 + { (exit 1); exit 1; }; } + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$0" || +$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$0" : 'X\(//\)[^/]' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +echo X"$0" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 + { (exit 1); exit 1; }; } +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 + { (exit 1); exit 1; }; } + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures psmisc 22.6 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + [$ac_default_prefix] + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + [PREFIX] + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/psmisc] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + +System types: + --build=BUILD configure for building on BUILD [guessed] + --host=HOST cross-compile to build programs to run on HOST [BUILD] +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of psmisc 22.6:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors + --enable-selinux Enable Security-Enhanced Linux features + --disable-ipv6 Disable IPv6 checks (for uClibc) + --disable-nls do not use Native Language Support + --disable-rpath do not hardcode runtime library paths + --disable-largefile omit support for large files + +Optional Packages: + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) + --with-gnu-ld assume the C compiler uses GNU ld default=no + --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib + --without-libiconv-prefix don't search for libiconv in includedir and libdir + --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib + --without-libintl-prefix don't search for libintl in includedir and libdir + +Some influential environment variables: + CXX C++ compiler command + CXXFLAGS C++ compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CC C compiler command + CFLAGS C compiler flags + CPP C preprocessor + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +psmisc configure 22.6 +generated by GNU Autoconf 2.61 + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by psmisc $as_me 22.6, which was +generated by GNU Autoconf 2.61. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + echo "PATH: $as_dir" +done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; + 2) + ac_configure_args1="$ac_configure_args1 '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + ac_configure_args="$ac_configure_args '$ac_arg'" + ;; + esac + done +done +$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } +$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + cat <<\_ASBOX +## ---------------- ## +## Cache variables. ## +## ---------------- ## +_ASBOX + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 +echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + *) $as_unset $ac_var ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + cat <<\_ASBOX +## ----------------- ## +## Output variables. ## +## ----------------- ## +_ASBOX + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + cat <<\_ASBOX +## ------------------- ## +## File substitutions. ## +## ------------------- ## +_ASBOX + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + cat <<\_ASBOX +## ----------- ## +## confdefs.h. ## +## ----------- ## +_ASBOX + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + echo "$as_me: caught signal $ac_signal" + echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer explicitly selected file to automatically selected ones. +if test -n "$CONFIG_SITE"; then + set x "$CONFIG_SITE" +elif test "x$prefix" != xNONE; then + set x "$prefix/share/config.site" "$prefix/etc/config.site" +else + set x "$ac_default_prefix/share/config.site" \ + "$ac_default_prefix/etc/config.site" +fi +shift +for ac_site_file +do + if test -r "$ac_site_file"; then + { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 +echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special + # files actually), so we avoid doing that. + if test -f "$cache_file"; then + { echo "$as_me:$LINENO: loading cache $cache_file" >&5 +echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { echo "$as_me:$LINENO: creating cache $cache_file" >&5 +echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +gt_needs="$gt_needs " +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 +echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 +echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 +echo "$as_me: former value: $ac_old_val" >&2;} + { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 +echo "$as_me: current value: $ac_new_val" >&2;} + ac_cache_corrupted=: + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 +echo "$as_me: error: changes in the environment can compromise the build" >&2;} + { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 +echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} + { (exit 1); exit 1; }; } +fi + + + + + + + + + + + + + + + + + + + + + + + + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + + +ac_config_headers="$ac_config_headers config.h" + +ac_aux_dir= +for ac_dir in config "$srcdir"/config; do + if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break + elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break + elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi +done +if test -z "$ac_aux_dir"; then + { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in config \"$srcdir\"/config" >&5 +echo "$as_me: error: cannot find install-sh or install.sh in config \"$srcdir\"/config" >&2;} + { (exit 1); exit 1; }; } +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + +am__api_version='1.10' + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 +echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } +if test -z "$INSTALL"; then +if test "${ac_cv_path_install+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in + ./ | .// | /cC/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + done + done + ;; +esac +done +IFS=$as_save_IFS + + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ echo "$as_me:$LINENO: result: $INSTALL" >&5 +echo "${ECHO_T}$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5 +echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } +# Just in case +sleep 1 +echo timestamp > conftest.file +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t $srcdir/configure conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken +alias in your environment" >&5 +echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken +alias in your environment" >&2;} + { (exit 1); exit 1; }; } + fi + + test "$2" = conftest.file + ) +then + # Ok. + : +else + { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! +Check your system clock" >&5 +echo "$as_me: error: newly created file is older than distributed files! +Check your system clock" >&2;} + { (exit 1); exit 1; }; } +fi +{ echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. echo might interpret backslashes. +# By default was `s,x,x', remove it if useless. +cat <<\_ACEOF >conftest.sed +s/[\\$]/&&/g;s/;s,x,x,$// +_ACEOF +program_transform_name=`echo $program_transform_name | sed -f conftest.sed` +rm -f conftest.sed + +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` + +test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 +echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} +fi + +{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 +echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } +if test -z "$MKDIR_P"; then + if test "${ac_cv_path_mkdir+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done +done +IFS=$as_save_IFS + +fi + + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + test -d ./--version && rmdir ./--version + MKDIR_P="$ac_install_sh -d" + fi +fi +{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5 +echo "${ECHO_T}$MKDIR_P" >&6; } + +mkdir_p="$MKDIR_P" +case $mkdir_p in + [\\/$]* | ?:[\\/]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_AWK+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { echo "$as_me:$LINENO: result: $AWK" >&5 +echo "${ECHO_T}$AWK" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } +set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + SET_MAKE= +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 +echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} + { (exit 1); exit 1; }; } + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE='psmisc' + VERSION='22.6' + + +cat >>confdefs.h <<_ACEOF +#define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +#define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} + +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_STRIP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { echo "$as_me:$LINENO: result: $STRIP" >&5 +echo "${ECHO_T}$STRIP" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 +echo "${ECHO_T}$ac_ct_STRIP" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. + +AMTAR=${AMTAR-"${am_missing_run}tar"} + +am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' + + + + + + +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +if test -z "$CXX"; then + if test -n "$CCC"; then + CXX=$CCC + else + if test -n "$ac_tool_prefix"; then + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CXX+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +CXX=$ac_cv_prog_CXX +if test -n "$CXX"; then + { echo "$as_me:$LINENO: result: $CXX" >&5 +echo "${ECHO_T}$CXX" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$CXX" && break + done +fi +if test -z "$CXX"; then + ac_ct_CXX=$CXX + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CXX="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_CXX=$ac_cv_prog_ac_ct_CXX +if test -n "$ac_ct_CXX"; then + { echo "$as_me:$LINENO: result: $ac_ct_CXX" >&5 +echo "${ECHO_T}$ac_ct_CXX" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$ac_ct_CXX" && break +done + + if test "x$ac_ct_CXX" = x; then + CXX="g++" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + CXX=$ac_ct_CXX + fi +fi + + fi +fi +# Provide some information about the compiler. +echo "$as_me:$LINENO: checking for C++ compiler version" >&5 +ac_compiler=`set X $ac_compile; echo $2` +{ (ac_try="$ac_compiler --version >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler --version >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (ac_try="$ac_compiler -v >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler -v >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (ac_try="$ac_compiler -V >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler -V >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ echo "$as_me:$LINENO: checking for C++ compiler default output file name" >&5 +echo $ECHO_N "checking for C++ compiler default output file name... $ECHO_C" >&6; } +ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` +# +# List of possible output files, starting from the most likely. +# The algorithm is not robust to junk in `.', hence go to wildcards (a.*) +# only as a last resort. b.out is created by i960 compilers. +ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' +# +# The IRIX 6 linker writes into existing files which may not be +# executable, retaining their permissions. Remove them first so a +# subsequent execution test works. +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { (ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi + +{ echo "$as_me:$LINENO: result: $ac_file" >&5 +echo "${ECHO_T}$ac_file" >&6; } +if test -z "$ac_file"; then + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { echo "$as_me:$LINENO: error: C++ compiler cannot create executables +See \`config.log' for more details." >&5 +echo "$as_me: error: C++ compiler cannot create executables +See \`config.log' for more details." >&2;} + { (exit 77); exit 77; }; } +fi + +ac_exeext=$ac_cv_exeext + +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ echo "$as_me:$LINENO: checking whether the C++ compiler works" >&5 +echo $ECHO_N "checking whether the C++ compiler works... $ECHO_C" >&6; } +# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 +# If not cross compiling, check that we can run a simple program. +if test "$cross_compiling" != yes; then + if { ac_try='./$ac_file' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { echo "$as_me:$LINENO: error: cannot run C++ compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." >&5 +echo "$as_me: error: cannot run C++ compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + fi + fi +fi +{ echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + +rm -f a.out a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 +echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } +{ echo "$as_me:$LINENO: result: $cross_compiling" >&5 +echo "${ECHO_T}$cross_compiling" >&6; } + +{ echo "$as_me:$LINENO: checking for suffix of executables" >&5 +echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." >&5 +echo "$as_me: error: cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +fi + +rm -f conftest$ac_cv_exeext +{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 +echo "${ECHO_T}$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +{ echo "$as_me:$LINENO: checking for suffix of object files" >&5 +echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } +if test "${ac_cv_objext+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. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile +See \`config.log' for more details." >&5 +echo "$as_me: error: cannot compute suffix of object files: cannot compile +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +fi + +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 +echo "${ECHO_T}$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ echo "$as_me:$LINENO: checking whether we are using the GNU C++ compiler" >&5 +echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6; } +if test "${ac_cv_cxx_compiler_gnu+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. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_compiler_gnu=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_cxx_compiler_gnu" >&5 +echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6; } +GXX=`test $ac_compiler_gnu = yes && echo yes` +ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_save_CXXFLAGS=$CXXFLAGS +{ echo "$as_me:$LINENO: checking whether $CXX accepts -g" >&5 +echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6; } +if test "${ac_cv_prog_cxx_g+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cxx_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + CXXFLAGS="" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cxx_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag +fi +{ echo "$as_me:$LINENO: result: $ac_cv_prog_cxx_g" >&5 +echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6; } +if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then + CXXFLAGS="-g -O2" + else + CXXFLAGS="-g" + fi +else + if test "$GXX" = yes; then + CXXFLAGS="-O2" + else + CXXFLAGS= + fi +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo done +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 +echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# We grep out `Entering directory' and `Leaving directory' +# messages which can occur if `w' ends up in MAKEFLAGS. +# In particular we don't look at `^make:' because GNU make might +# be invoked under some other name (usually "gmake"), in which +# case it prints its new name instead of `make'. +if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then + am__include=include + am__quote= + _am_result=GNU +fi +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then + am__include=.include + am__quote="\"" + _am_result=BSD + fi +fi + + +{ echo "$as_me:$LINENO: result: $_am_result" >&5 +echo "${ECHO_T}$_am_result" >&6; } +rm -f confinc confmf + +# Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + + +depcc="$CXX" am_compiler_list= + +{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } +if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CXX_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + case $depmode in + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + none) break ;; + esac + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. + if depmode=$depmode \ + source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CXX_dependencies_compiler_type=none +fi + +fi +{ echo "$as_me:$LINENO: result: $am_cv_CXX_dependencies_compiler_type" >&5 +echo "${ECHO_T}$am_cv_CXX_dependencies_compiler_type" >&6; } +CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= + am__fastdepCXX_FALSE='#' +else + am__fastdepCXX_TRUE='#' + am__fastdepCXX_FALSE= +fi + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { echo "$as_me:$LINENO: result: $CC" >&5 +echo "${ECHO_T}$CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 +echo "${ECHO_T}$ac_ct_CC" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&5 +echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools +whose name does not start with the host triplet. If you think this +configuration is useful to you, please write to autoconf@gnu.org." >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&5 +echo "$as_me: error: no acceptable C compiler found in \$PATH +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } + +# Provide some information about the compiler. +echo "$as_me:$LINENO: checking for C compiler version" >&5 +ac_compiler=`set X $ac_compile; echo $2` +{ (ac_try="$ac_compiler --version >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler --version >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (ac_try="$ac_compiler -v >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler -v >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +{ (ac_try="$ac_compiler -V >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compiler -V >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + +{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 +echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } +if test "${ac_cv_c_compiler_gnu+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. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_compiler_gnu=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 +echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } +GCC=`test $ac_compiler_gnu = yes && echo yes` +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 +echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } +if test "${ac_cv_prog_cc_g+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + CFLAGS="" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 +echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } +if test "${ac_cv_prog_cc_c89+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include +#include +#include +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_c89=$ac_arg +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { echo "$as_me:$LINENO: result: none needed" >&5 +echo "${ECHO_T}none needed" >&6; } ;; + xno) + { echo "$as_me:$LINENO: result: unsupported" >&5 +echo "${ECHO_T}unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 +echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; +esac + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CC" am_compiler_list= + +{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + case $depmode in + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + none) break ;; + esac + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. + if depmode=$depmode \ + source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 +echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + +#AC_PROG_CPP +{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } +set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } + SET_MAKE= +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +{ echo "$as_me:$LINENO: checking whether ln -s works" >&5 +echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; } +LN_S=$as_ln_s +if test "$LN_S" = "ln -s"; then + { echo "$as_me:$LINENO: result: yes" >&5 +echo "${ECHO_T}yes" >&6; } +else + { echo "$as_me:$LINENO: result: no, using $LN_S" >&5 +echo "${ECHO_T}no, using $LN_S" >&6; } +fi + + + +# Check whether --enable-selinux was given. +if test "${enable_selinux+set}" = set; then + enableval=$enable_selinux; enable_selinux=$enableval +else + enable_selinux="no" +fi + +if test "$enable_selinux" = "yes"; then + +cat >>confdefs.h <<\_ACEOF +#define WITH_SELINUX 1 +_ACEOF + + +{ echo "$as_me:$LINENO: checking for getfilecon in -lselinux" >&5 +echo $ECHO_N "checking for getfilecon in -lselinux... $ECHO_C" >&6; } +if test "${ac_cv_lib_selinux_getfilecon+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lselinux $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char getfilecon (); +int +main () +{ +return getfilecon (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_selinux_getfilecon=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_selinux_getfilecon=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_selinux_getfilecon" >&5 +echo "${ECHO_T}$ac_cv_lib_selinux_getfilecon" >&6; } +if test $ac_cv_lib_selinux_getfilecon = yes; then + SELINUX_LIB=-lselinux +else + + { { echo "$as_me:$LINENO: error: Cannot find selinux static library" >&5 +echo "$as_me: error: Cannot find selinux static library" >&2;} + { (exit 1); exit 1; }; } +fi + +fi + + + +# Check whether --enable-ipv6 was given. +if test "${enable_ipv6+set}" = set; then + enableval=$enable_ipv6; enable_ipv6=$enableval +else + enable_ipv6="yes" +fi + +if test "$enable_ipv6" = "yes"; then + +cat >>confdefs.h <<\_ACEOF +#define WITH_IPV6 1 +_ACEOF + +fi + +{ echo "$as_me:$LINENO: checking for tgetent in -ltinfo" >&5 +echo $ECHO_N "checking for tgetent in -ltinfo... $ECHO_C" >&6; } +if test "${ac_cv_lib_tinfo_tgetent+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ltinfo $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char tgetent (); +int +main () +{ +return tgetent (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_tinfo_tgetent=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_tinfo_tgetent=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_tinfo_tgetent" >&5 +echo "${ECHO_T}$ac_cv_lib_tinfo_tgetent" >&6; } +if test $ac_cv_lib_tinfo_tgetent = yes; then + TERMCAP_LIB=-ltinfo +else + { echo "$as_me:$LINENO: checking for tgetent in -lncurses" >&5 +echo $ECHO_N "checking for tgetent in -lncurses... $ECHO_C" >&6; } +if test "${ac_cv_lib_ncurses_tgetent+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-lncurses $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char tgetent (); +int +main () +{ +return tgetent (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_ncurses_tgetent=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_ncurses_tgetent=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_ncurses_tgetent" >&5 +echo "${ECHO_T}$ac_cv_lib_ncurses_tgetent" >&6; } +if test $ac_cv_lib_ncurses_tgetent = yes; then + TERMCAP_LIB=-lncurses +else + { echo "$as_me:$LINENO: checking for tgetent in -ltermcap" >&5 +echo $ECHO_N "checking for tgetent in -ltermcap... $ECHO_C" >&6; } +if test "${ac_cv_lib_termcap_tgetent+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_check_lib_save_LIBS=$LIBS +LIBS="-ltermcap $LIBS" +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char tgetent (); +int +main () +{ +return tgetent (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_lib_termcap_tgetent=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_lib_termcap_tgetent=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +LIBS=$ac_check_lib_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_lib_termcap_tgetent" >&5 +echo "${ECHO_T}$ac_cv_lib_termcap_tgetent" >&6; } +if test $ac_cv_lib_termcap_tgetent = yes; then + TERMCAP_LIB=-ltermcap +else + { { echo "$as_me:$LINENO: error: Cannot find tinfo, ncurses or termcap libraries" >&5 +echo "$as_me: error: Cannot find tinfo, ncurses or termcap libraries" >&2;} + { (exit 1); exit 1; }; } + +fi + + +fi + + +fi + + + + + + + + +ac_header_dirent=no +for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do + as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` +{ echo "$as_me:$LINENO: checking for $ac_hdr that defines DIR" >&5 +echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+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 +#include <$ac_hdr> + +int +main () +{ +if ((DIR *) 0) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "$as_ac_Header=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_Header=no" +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 +_ACEOF + +ac_header_dirent=$ac_hdr; break +fi + +done +# Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. +if test $ac_header_dirent = dirent.h; then + { echo "$as_me:$LINENO: checking for library containing opendir" >&5 +echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6; } +if test "${ac_cv_search_opendir+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_func_search_save_LIBS=$LIBS +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char opendir (); +int +main () +{ +return opendir (); + ; + return 0; +} +_ACEOF +for ac_lib in '' dir; do + if test -z "$ac_lib"; then + ac_res="none required" + else + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi + rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_search_opendir=$ac_res +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_opendir+set}" = set; then + break +fi +done +if test "${ac_cv_search_opendir+set}" = set; then + : +else + ac_cv_search_opendir=no +fi +rm conftest.$ac_ext +LIBS=$ac_func_search_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5 +echo "${ECHO_T}$ac_cv_search_opendir" >&6; } +ac_res=$ac_cv_search_opendir +if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + +fi + +else + { echo "$as_me:$LINENO: checking for library containing opendir" >&5 +echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6; } +if test "${ac_cv_search_opendir+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_func_search_save_LIBS=$LIBS +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char opendir (); +int +main () +{ +return opendir (); + ; + return 0; +} +_ACEOF +for ac_lib in '' x; do + if test -z "$ac_lib"; then + ac_res="none required" + else + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi + rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_search_opendir=$ac_res +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_opendir+set}" = set; then + break +fi +done +if test "${ac_cv_search_opendir+set}" = set; then + : +else + ac_cv_search_opendir=no +fi +rm conftest.$ac_ext +LIBS=$ac_func_search_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5 +echo "${ECHO_T}$ac_cv_search_opendir" >&6; } +ac_res=$ac_cv_search_opendir +if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + +fi + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 +echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if test "${ac_cv_prog_CPP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +continue +fi + +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + # Broken: success on invalid input. +continue +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +ac_preproc_ok=: +break +fi + +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ echo "$as_me:$LINENO: result: $CPP" >&5 +echo "${ECHO_T}$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#ifdef __STDC__ +# include +#else +# include +#endif + Syntax error +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + : +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Broken: fails on valid input. +continue +fi + +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + # Broken: success on invalid input. +continue +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + # Passes both tests. +ac_preproc_ok=: +break +fi + +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then + : +else + { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." >&5 +echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 +echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } +if test "${ac_cv_path_GREP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + # Extract the first word of "grep ggrep" to use in msg output +if test -z "$GREP"; then +set dummy grep ggrep; ac_prog_name=$2 +if test "${ac_cv_path_GREP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_path_GREP_found=false +# Loop through the user's path and test for each of PROGNAME-LIST +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue + # Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + ac_count=`expr $ac_count + 1` + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + + $ac_path_GREP_found && break 3 + done +done + +done +IFS=$as_save_IFS + + +fi + +GREP="$ac_cv_path_GREP" +if test -z "$GREP"; then + { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} + { (exit 1); exit 1; }; } +fi + +else + ac_cv_path_GREP=$GREP +fi + + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 +echo "${ECHO_T}$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ echo "$as_me:$LINENO: checking for egrep" >&5 +echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } +if test "${ac_cv_path_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_path_EGREP="$GREP -E" + else + # Extract the first word of "egrep" to use in msg output +if test -z "$EGREP"; then +set dummy egrep; ac_prog_name=$2 +if test "${ac_cv_path_EGREP+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_path_EGREP_found=false +# Loop through the user's path and test for each of PROGNAME-LIST +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue + # Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + ac_count=`expr $ac_count + 1` + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + + $ac_path_EGREP_found && break 3 + done +done + +done +IFS=$as_save_IFS + + +fi + +EGREP="$ac_cv_path_EGREP" +if test -z "$EGREP"; then + { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 +echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} + { (exit 1); exit 1; }; } +fi + +else + ac_cv_path_EGREP=$EGREP +fi + + + fi +fi +{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 +echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5 +echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } +if test "${ac_cv_header_stdc+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 +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_header_stdc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_header_stdc=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then + : +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then + : +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then + : +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + : +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +fi +fi +{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 +echo "${ECHO_T}$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +cat >>confdefs.h <<\_ACEOF +#define STDC_HEADERS 1 +_ACEOF + +fi + +{ echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5 +echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6; } +if test "${ac_cv_header_sys_wait_h+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 +#include +#ifndef WEXITSTATUS +# define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8) +#endif +#ifndef WIFEXITED +# define WIFEXITED(stat_val) (((stat_val) & 255) == 0) +#endif + +int +main () +{ + int s; + wait (&s); + s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_header_sys_wait_h=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_header_sys_wait_h=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5 +echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6; } +if test $ac_cv_header_sys_wait_h = yes; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_SYS_WAIT_H 1 +_ACEOF + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. + + + + + + + + + +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+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. */ +$ac_includes_default + +#include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + eval "$as_ac_Header=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_Header=no" +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + + + + + + + + + + + + + + + + +for ac_header in arpa/inet.h fcntl.h langinfo.h libintl.h limits.h locale.h mntent.h netdb.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h termios.h unistd.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + { echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +else + # Is the header compilable? +{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +#include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6; } + +# Is the header present? +{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <$ac_header> +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi + +rm -f conftest.err conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + + ;; +esac +{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + eval "$as_ac_Header=\$ac_header_preproc" +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } + +fi +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +{ echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 +echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6; } +if test "${ac_cv_c_const+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. */ + +int +main () +{ +/* FIXME: Include the comments suggested by Paul. */ +#ifndef __cplusplus + /* Ultrix mips cc rejects this. */ + typedef int charset[2]; + const charset cs; + /* SunOS 4.1.1 cc rejects this. */ + char const *const *pcpcc; + char **ppc; + /* NEC SVR4.0.2 mips cc rejects this. */ + struct point {int x, y;}; + static struct point const zero = {0,0}; + /* AIX XL C 1.02.0.0 rejects this. + It does not let you subtract one const X* pointer from another in + an arm of an if-expression whose if-part is not a constant + expression */ + const char *g = "string"; + pcpcc = &g + (g ? g-g : 0); + /* HPUX 7.0 cc rejects these. */ + ++pcpcc; + ppc = (char**) pcpcc; + pcpcc = (char const *const *) ppc; + { /* SCO 3.2v4 cc rejects this. */ + char *t; + char const *s = 0 ? (char *) 0 : (char const *) 0; + + *t++ = 0; + if (s) return 0; + } + { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ + int x[] = {25, 17}; + const int *foo = &x[0]; + ++foo; + } + { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ + typedef const int *iptr; + iptr p = 0; + ++p; + } + { /* AIX XL C 1.02.0.0 rejects this saying + "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ + struct s { int j; const int *ap[3]; }; + struct s *b; b->j = 5; + } + { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ + const int foo = 10; + if (!foo) return 0; + } + return !cs[0] && !zero.x; +#endif + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_c_const=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_c_const=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 +echo "${ECHO_T}$ac_cv_c_const" >&6; } +if test $ac_cv_c_const = no; then + +cat >>confdefs.h <<\_ACEOF +#define const +_ACEOF + +fi + +{ echo "$as_me:$LINENO: checking for pid_t" >&5 +echo $ECHO_N "checking for pid_t... $ECHO_C" >&6; } +if test "${ac_cv_type_pid_t+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. */ +$ac_includes_default +typedef pid_t ac__type_new_; +int +main () +{ +if ((ac__type_new_ *) 0) + return 0; +if (sizeof (ac__type_new_)) + return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_type_pid_t=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_type_pid_t=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_type_pid_t" >&5 +echo "${ECHO_T}$ac_cv_type_pid_t" >&6; } +if test $ac_cv_type_pid_t = yes; then + : +else + +cat >>confdefs.h <<_ACEOF +#define pid_t int +_ACEOF + +fi + +{ echo "$as_me:$LINENO: checking for size_t" >&5 +echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } +if test "${ac_cv_type_size_t+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. */ +$ac_includes_default +typedef size_t ac__type_new_; +int +main () +{ +if ((ac__type_new_ *) 0) + return 0; +if (sizeof (ac__type_new_)) + return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_type_size_t=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_type_size_t=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 +echo "${ECHO_T}$ac_cv_type_size_t" >&6; } +if test $ac_cv_type_size_t = yes; then + : +else + +cat >>confdefs.h <<_ACEOF +#define size_t unsigned int +_ACEOF + +fi + +{ echo "$as_me:$LINENO: checking for struct stat.st_rdev" >&5 +echo $ECHO_N "checking for struct stat.st_rdev... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_stat_st_rdev+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. */ +$ac_includes_default +int +main () +{ +static struct stat ac_aggr; +if (ac_aggr.st_rdev) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_stat_st_rdev=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ +static struct stat ac_aggr; +if (sizeof ac_aggr.st_rdev) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_stat_st_rdev=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_stat_st_rdev=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_stat_st_rdev" >&5 +echo "${ECHO_T}$ac_cv_member_struct_stat_st_rdev" >&6; } +if test $ac_cv_member_struct_stat_st_rdev = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_STAT_ST_RDEV 1 +_ACEOF + + +fi + +{ echo "$as_me:$LINENO: checking for uid_t in sys/types.h" >&5 +echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6; } +if test "${ac_cv_type_uid_t+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 + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "uid_t" >/dev/null 2>&1; then + ac_cv_type_uid_t=yes +else + ac_cv_type_uid_t=no +fi +rm -f conftest* + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_type_uid_t" >&5 +echo "${ECHO_T}$ac_cv_type_uid_t" >&6; } +if test $ac_cv_type_uid_t = no; then + +cat >>confdefs.h <<\_ACEOF +#define uid_t int +_ACEOF + + +cat >>confdefs.h <<\_ACEOF +#define gid_t int +_ACEOF + +fi + +{ echo "$as_me:$LINENO: checking for struct user_regs_struct.orig_eax" >&5 +echo $ECHO_N "checking for struct user_regs_struct.orig_eax... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_user_regs_struct_orig_eax+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 + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (ac_aggr.orig_eax) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_orig_eax=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (sizeof ac_aggr.orig_eax) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_orig_eax=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_user_regs_struct_orig_eax=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_user_regs_struct_orig_eax" >&5 +echo "${ECHO_T}$ac_cv_member_struct_user_regs_struct_orig_eax" >&6; } +if test $ac_cv_member_struct_user_regs_struct_orig_eax = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_USER_REGS_STRUCT_ORIG_EAX 1 +_ACEOF + + +fi +{ echo "$as_me:$LINENO: checking for struct user_regs_struct.eax" >&5 +echo $ECHO_N "checking for struct user_regs_struct.eax... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_user_regs_struct_eax+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 + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (ac_aggr.eax) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_eax=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (sizeof ac_aggr.eax) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_eax=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_user_regs_struct_eax=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_user_regs_struct_eax" >&5 +echo "${ECHO_T}$ac_cv_member_struct_user_regs_struct_eax" >&6; } +if test $ac_cv_member_struct_user_regs_struct_eax = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_USER_REGS_STRUCT_EAX 1 +_ACEOF + + +fi +{ echo "$as_me:$LINENO: checking for struct user_regs_struct.ebx" >&5 +echo $ECHO_N "checking for struct user_regs_struct.ebx... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_user_regs_struct_ebx+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 + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (ac_aggr.ebx) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_ebx=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (sizeof ac_aggr.ebx) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_ebx=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_user_regs_struct_ebx=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_user_regs_struct_ebx" >&5 +echo "${ECHO_T}$ac_cv_member_struct_user_regs_struct_ebx" >&6; } +if test $ac_cv_member_struct_user_regs_struct_ebx = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_USER_REGS_STRUCT_EBX 1 +_ACEOF + + +fi +{ echo "$as_me:$LINENO: checking for struct user_regs_struct.ecx" >&5 +echo $ECHO_N "checking for struct user_regs_struct.ecx... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_user_regs_struct_ecx+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 + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (ac_aggr.ecx) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_ecx=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (sizeof ac_aggr.ecx) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_ecx=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_user_regs_struct_ecx=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_user_regs_struct_ecx" >&5 +echo "${ECHO_T}$ac_cv_member_struct_user_regs_struct_ecx" >&6; } +if test $ac_cv_member_struct_user_regs_struct_ecx = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_USER_REGS_STRUCT_ECX 1 +_ACEOF + + +fi +{ echo "$as_me:$LINENO: checking for struct user_regs_struct.edx" >&5 +echo $ECHO_N "checking for struct user_regs_struct.edx... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_user_regs_struct_edx+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 + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (ac_aggr.edx) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_edx=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (sizeof ac_aggr.edx) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_edx=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_user_regs_struct_edx=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_user_regs_struct_edx" >&5 +echo "${ECHO_T}$ac_cv_member_struct_user_regs_struct_edx" >&6; } +if test $ac_cv_member_struct_user_regs_struct_edx = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_USER_REGS_STRUCT_EDX 1 +_ACEOF + + +fi +{ echo "$as_me:$LINENO: checking for struct user_regs_struct.orig_rax" >&5 +echo $ECHO_N "checking for struct user_regs_struct.orig_rax... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_user_regs_struct_orig_rax+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 + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (ac_aggr.orig_rax) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_orig_rax=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (sizeof ac_aggr.orig_rax) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_orig_rax=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_user_regs_struct_orig_rax=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_user_regs_struct_orig_rax" >&5 +echo "${ECHO_T}$ac_cv_member_struct_user_regs_struct_orig_rax" >&6; } +if test $ac_cv_member_struct_user_regs_struct_orig_rax = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_USER_REGS_STRUCT_ORIG_RAX 1 +_ACEOF + + +fi +{ echo "$as_me:$LINENO: checking for struct user_regs_struct.rax" >&5 +echo $ECHO_N "checking for struct user_regs_struct.rax... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_user_regs_struct_rax+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 + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (ac_aggr.rax) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_rax=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (sizeof ac_aggr.rax) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_rax=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_user_regs_struct_rax=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_user_regs_struct_rax" >&5 +echo "${ECHO_T}$ac_cv_member_struct_user_regs_struct_rax" >&6; } +if test $ac_cv_member_struct_user_regs_struct_rax = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_USER_REGS_STRUCT_RAX 1 +_ACEOF + + +fi +{ echo "$as_me:$LINENO: checking for struct user_regs_struct.rdi" >&5 +echo $ECHO_N "checking for struct user_regs_struct.rdi... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_user_regs_struct_rdi+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 + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (ac_aggr.rdi) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_rdi=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (sizeof ac_aggr.rdi) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_rdi=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_user_regs_struct_rdi=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_user_regs_struct_rdi" >&5 +echo "${ECHO_T}$ac_cv_member_struct_user_regs_struct_rdi" >&6; } +if test $ac_cv_member_struct_user_regs_struct_rdi = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_USER_REGS_STRUCT_RDI 1 +_ACEOF + + +fi +{ echo "$as_me:$LINENO: checking for struct user_regs_struct.rsi" >&5 +echo $ECHO_N "checking for struct user_regs_struct.rsi... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_user_regs_struct_rsi+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 + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (ac_aggr.rsi) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_rsi=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (sizeof ac_aggr.rsi) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_rsi=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_user_regs_struct_rsi=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_user_regs_struct_rsi" >&5 +echo "${ECHO_T}$ac_cv_member_struct_user_regs_struct_rsi" >&6; } +if test $ac_cv_member_struct_user_regs_struct_rsi = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_USER_REGS_STRUCT_RSI 1 +_ACEOF + + +fi +{ echo "$as_me:$LINENO: checking for struct user_regs_struct.rdx" >&5 +echo $ECHO_N "checking for struct user_regs_struct.rdx... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_user_regs_struct_rdx+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 + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (ac_aggr.rdx) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_rdx=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct user_regs_struct ac_aggr; +if (sizeof ac_aggr.rdx) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_user_regs_struct_rdx=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_user_regs_struct_rdx=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_user_regs_struct_rdx" >&5 +echo "${ECHO_T}$ac_cv_member_struct_user_regs_struct_rdx" >&6; } +if test $ac_cv_member_struct_user_regs_struct_rdx = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_USER_REGS_STRUCT_RDX 1 +_ACEOF + + +fi + +{ echo "$as_me:$LINENO: checking for struct pt_regs.orig_gpr3" >&5 +echo $ECHO_N "checking for struct pt_regs.orig_gpr3... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_pt_regs_orig_gpr3+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 + +int +main () +{ +static struct pt_regs ac_aggr; +if (ac_aggr.orig_gpr3) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_pt_regs_orig_gpr3=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct pt_regs ac_aggr; +if (sizeof ac_aggr.orig_gpr3) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_pt_regs_orig_gpr3=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_pt_regs_orig_gpr3=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_pt_regs_orig_gpr3" >&5 +echo "${ECHO_T}$ac_cv_member_struct_pt_regs_orig_gpr3" >&6; } +if test $ac_cv_member_struct_pt_regs_orig_gpr3 = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_PT_REGS_ORIG_GPR3 1 +_ACEOF + + +fi +{ echo "$as_me:$LINENO: checking for struct pt_regs.gpr" >&5 +echo $ECHO_N "checking for struct pt_regs.gpr... $ECHO_C" >&6; } +if test "${ac_cv_member_struct_pt_regs_gpr+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 + +int +main () +{ +static struct pt_regs ac_aggr; +if (ac_aggr.gpr) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_pt_regs_gpr=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + +int +main () +{ +static struct pt_regs ac_aggr; +if (sizeof ac_aggr.gpr) +return 0; + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_member_struct_pt_regs_gpr=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_member_struct_pt_regs_gpr=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ echo "$as_me:$LINENO: result: $ac_cv_member_struct_pt_regs_gpr" >&5 +echo "${ECHO_T}$ac_cv_member_struct_pt_regs_gpr" >&6; } +if test $ac_cv_member_struct_pt_regs_gpr = yes; then + +cat >>confdefs.h <<_ACEOF +#define HAVE_STRUCT_PT_REGS_GPR 1 +_ACEOF + + +fi + + if test $ac_cv_member_struct_user_regs_struct_orig_eax = yes && + test $ac_cv_member_struct_user_regs_struct_eax = yes && + test $ac_cv_member_struct_user_regs_struct_ebx = yes && + test $ac_cv_member_struct_user_regs_struct_ecx = yes && + test $ac_cv_member_struct_user_regs_struct_edx = yes ; then + WANT_PEEKFD_I386_TRUE= + WANT_PEEKFD_I386_FALSE='#' +else + WANT_PEEKFD_I386_TRUE='#' + WANT_PEEKFD_I386_FALSE= +fi + + if test $ac_cv_member_struct_user_regs_struct_orig_rax = yes && + test $ac_cv_member_struct_user_regs_struct_rax = yes && + test $ac_cv_member_struct_user_regs_struct_rdi = yes && + test $ac_cv_member_struct_user_regs_struct_rsi = yes && + test $ac_cv_member_struct_user_regs_struct_rdx = yes ; then + WANT_PEEKFD_X86_64_TRUE= + WANT_PEEKFD_X86_64_FALSE='#' +else + WANT_PEEKFD_X86_64_TRUE='#' + WANT_PEEKFD_X86_64_FALSE= +fi + + if test $ac_cv_member_struct_pt_regs_orig_gpr3 = yes && + test $ac_cv_member_struct_pt_regs_gpr = yes ; then + WANT_PEEKFD_PPC_TRUE= + WANT_PEEKFD_PPC_FALSE='#' +else + WANT_PEEKFD_PPC_TRUE='#' + WANT_PEEKFD_PPC_FALSE= +fi + + + + { echo "$as_me:$LINENO: checking whether NLS is requested" >&5 +echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6; } + # Check whether --enable-nls was given. +if test "${enable_nls+set}" = set; then + enableval=$enable_nls; USE_NLS=$enableval +else + USE_NLS=yes +fi + + { echo "$as_me:$LINENO: result: $USE_NLS" >&5 +echo "${ECHO_T}$USE_NLS" >&6; } + + + + + + +# Prepare PATH_SEPARATOR. +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi + +# Find out how to test for executable files. Don't use a zero-byte file, +# as systems may use methods other than mode bits to determine executability. +cat >conf$$.file <<_ASEOF +#! /bin/sh +exit 0 +_ASEOF +chmod +x conf$$.file +if test -x conf$$.file >/dev/null 2>&1; then + ac_executable_p="test -x" +else + ac_executable_p="test -f" +fi +rm -f conf$$.file + +# Extract the first word of "msgfmt", so it can be a program name with args. +set dummy msgfmt; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_MSGFMT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case "$MSGFMT" in + [\\/]* | ?:[\\/]*) + ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. + ;; + *) + ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$ac_save_IFS" + test -z "$ac_dir" && ac_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then + echo "$as_me: trying $ac_dir/$ac_word..." >&5 + if $ac_dir/$ac_word --statistics /dev/null >&5 2>&1 && + (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then + ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" + break 2 + fi + fi + done + done + IFS="$ac_save_IFS" + test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" + ;; +esac +fi +MSGFMT="$ac_cv_path_MSGFMT" +if test "$MSGFMT" != ":"; then + { echo "$as_me:$LINENO: result: $MSGFMT" >&5 +echo "${ECHO_T}$MSGFMT" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + # Extract the first word of "gmsgfmt", so it can be a program name with args. +set dummy gmsgfmt; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_GMSGFMT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case $GMSGFMT in + [\\/]* | ?:[\\/]*) + ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. + ;; + *) + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done +done +IFS=$as_save_IFS + + test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" + ;; +esac +fi +GMSGFMT=$ac_cv_path_GMSGFMT +if test -n "$GMSGFMT"; then + { echo "$as_me:$LINENO: result: $GMSGFMT" >&5 +echo "${ECHO_T}$GMSGFMT" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + + case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; + *) MSGFMT_015=$MSGFMT ;; + esac + + case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; + *) GMSGFMT_015=$GMSGFMT ;; + esac + + + +# Prepare PATH_SEPARATOR. +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi + +# Find out how to test for executable files. Don't use a zero-byte file, +# as systems may use methods other than mode bits to determine executability. +cat >conf$$.file <<_ASEOF +#! /bin/sh +exit 0 +_ASEOF +chmod +x conf$$.file +if test -x conf$$.file >/dev/null 2>&1; then + ac_executable_p="test -x" +else + ac_executable_p="test -f" +fi +rm -f conf$$.file + +# Extract the first word of "xgettext", so it can be a program name with args. +set dummy xgettext; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_XGETTEXT+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case "$XGETTEXT" in + [\\/]* | ?:[\\/]*) + ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. + ;; + *) + ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$ac_save_IFS" + test -z "$ac_dir" && ac_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then + echo "$as_me: trying $ac_dir/$ac_word..." >&5 + if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&5 2>&1 && + (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then + ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" + break 2 + fi + fi + done + done + IFS="$ac_save_IFS" + test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" + ;; +esac +fi +XGETTEXT="$ac_cv_path_XGETTEXT" +if test "$XGETTEXT" != ":"; then + { echo "$as_me:$LINENO: result: $XGETTEXT" >&5 +echo "${ECHO_T}$XGETTEXT" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + rm -f messages.po + + case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; + *) XGETTEXT_015=$XGETTEXT ;; + esac + + + +# Prepare PATH_SEPARATOR. +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi + +# Find out how to test for executable files. Don't use a zero-byte file, +# as systems may use methods other than mode bits to determine executability. +cat >conf$$.file <<_ASEOF +#! /bin/sh +exit 0 +_ASEOF +chmod +x conf$$.file +if test -x conf$$.file >/dev/null 2>&1; then + ac_executable_p="test -x" +else + ac_executable_p="test -f" +fi +rm -f conf$$.file + +# Extract the first word of "msgmerge", so it can be a program name with args. +set dummy msgmerge; ac_word=$2 +{ echo "$as_me:$LINENO: checking for $ac_word" >&5 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } +if test "${ac_cv_path_MSGMERGE+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + case "$MSGMERGE" in + [\\/]* | ?:[\\/]*) + ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. + ;; + *) + ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$ac_save_IFS" + test -z "$ac_dir" && ac_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then + echo "$as_me: trying $ac_dir/$ac_word..." >&5 + if $ac_dir/$ac_word --update -q /dev/null /dev/null >&5 2>&1; then + ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" + break 2 + fi + fi + done + done + IFS="$ac_save_IFS" + test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" + ;; +esac +fi +MSGMERGE="$ac_cv_path_MSGMERGE" +if test "$MSGMERGE" != ":"; then + { echo "$as_me:$LINENO: result: $MSGMERGE" >&5 +echo "${ECHO_T}$MSGMERGE" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi + + + test -n "$localedir" || localedir='${datadir}/locale' + + + ac_config_commands="$ac_config_commands po-directories" + + + + if test "X$prefix" = "XNONE"; then + acl_final_prefix="$ac_default_prefix" + else + acl_final_prefix="$prefix" + fi + if test "X$exec_prefix" = "XNONE"; then + acl_final_exec_prefix='${prefix}' + else + acl_final_exec_prefix="$exec_prefix" + fi + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" + prefix="$acl_save_prefix" + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 +echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} + { (exit 1); exit 1; }; } + +{ echo "$as_me:$LINENO: checking build system type" >&5 +echo $ECHO_N "checking build system type... $ECHO_C" >&6; } +if test "${ac_cv_build+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 +echo "$as_me: error: cannot guess build type; you must specify one" >&2;} + { (exit 1); exit 1; }; } +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 +echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} + { (exit 1); exit 1; }; } + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5 +echo "${ECHO_T}$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 +echo "$as_me: error: invalid value of canonical build" >&2;} + { (exit 1); exit 1; }; };; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ echo "$as_me:$LINENO: checking host system type" >&5 +echo $ECHO_N "checking host system type... $ECHO_C" >&6; } +if test "${ac_cv_host+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 +echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} + { (exit 1); exit 1; }; } +fi + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5 +echo "${ECHO_T}$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 +echo "$as_me: error: invalid value of canonical host" >&2;} + { (exit 1); exit 1; }; };; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + + +# Check whether --with-gnu-ld was given. +if test "${with_gnu_ld+set}" = set; then + withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes +else + with_gnu_ld=no +fi + +# Prepare PATH_SEPARATOR. +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + { echo "$as_me:$LINENO: checking for ld used by GCC" >&5 +echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6; } + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [\\/]* | [A-Za-z]:[\\/]*) + re_direlt='/[^/][^/]*/\.\./' + # Canonicalize the path of ld + ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` + while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do + ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + { echo "$as_me:$LINENO: checking for GNU ld" >&5 +echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } +else + { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 +echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } +fi +if test "${acl_cv_path_LD+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test -z "$LD"; then + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + acl_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some GNU ld's only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in + *GNU* | *'with BFD'*) + test "$with_gnu_ld" != no && break ;; + *) + test "$with_gnu_ld" != yes && break ;; + esac + fi + done + IFS="$ac_save_ifs" +else + acl_cv_path_LD="$LD" # Let the user override the test with a path. +fi +fi + +LD="$acl_cv_path_LD" +if test -n "$LD"; then + { echo "$as_me:$LINENO: result: $LD" >&5 +echo "${ECHO_T}$LD" >&6; } +else + { echo "$as_me:$LINENO: result: no" >&5 +echo "${ECHO_T}no" >&6; } +fi +test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 +echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} + { (exit 1); exit 1; }; } +{ echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 +echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } +if test "${acl_cv_prog_gnu_ld+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + # I'd rather use --version here, but apparently some GNU ld's only accept -v. +case `$LD -v 2>&1 &5 +echo "${ECHO_T}$acl_cv_prog_gnu_ld" >&6; } +with_gnu_ld=$acl_cv_prog_gnu_ld + + + + + { echo "$as_me:$LINENO: checking for shared library run path origin" >&5 +echo $ECHO_N "checking for shared library run path origin... $ECHO_C" >&6; } +if test "${acl_cv_rpath+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + + CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ + ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh + . ./conftest.sh + rm -f ./conftest.sh + acl_cv_rpath=done + +fi +{ echo "$as_me:$LINENO: result: $acl_cv_rpath" >&5 +echo "${ECHO_T}$acl_cv_rpath" >&6; } + wl="$acl_cv_wl" + libext="$acl_cv_libext" + shlibext="$acl_cv_shlibext" + hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" + hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" + hardcode_direct="$acl_cv_hardcode_direct" + hardcode_minus_L="$acl_cv_hardcode_minus_L" + # Check whether --enable-rpath was given. +if test "${enable_rpath+set}" = set; then + enableval=$enable_rpath; : +else + enable_rpath=yes +fi + + + + acl_libdirstem=lib + searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` + if test -n "$searchpath"; then + acl_save_IFS="${IFS= }"; IFS=":" + for searchdir in $searchpath; do + if test -d "$searchdir"; then + case "$searchdir" in + */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; + *) searchdir=`cd "$searchdir" && pwd` + case "$searchdir" in + */lib64 ) acl_libdirstem=lib64 ;; + esac ;; + esac + fi + done + IFS="$acl_save_IFS" + fi + + + + + + + + + use_additional=yes + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + +# Check whether --with-libiconv-prefix was given. +if test "${with_libiconv_prefix+set}" = set; then + withval=$with_libiconv_prefix; + if test "X$withval" = "Xno"; then + use_additional=no + else + if test "X$withval" = "X"; then + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + else + additional_includedir="$withval/include" + additional_libdir="$withval/$acl_libdirstem" + fi + fi + +fi + + LIBICONV= + LTLIBICONV= + INCICONV= + rpathdirs= + ltrpathdirs= + names_already_handled= + names_next_round='iconv ' + while test -n "$names_next_round"; do + names_this_round="$names_next_round" + names_next_round= + for name in $names_this_round; do + already_handled= + for n in $names_already_handled; do + if test "$n" = "$name"; then + already_handled=yes + break + fi + done + if test -z "$already_handled"; then + names_already_handled="$names_already_handled $name" + uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` + eval value=\"\$HAVE_LIB$uppername\" + if test -n "$value"; then + if test "$value" = yes; then + eval value=\"\$LIB$uppername\" + test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" + eval value=\"\$LTLIB$uppername\" + test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" + else + : + fi + else + found_dir= + found_la= + found_so= + found_a= + if test $use_additional = yes; then + if test -n "$shlibext" \ + && { test -f "$additional_libdir/lib$name.$shlibext" \ + || { test "$shlibext" = dll \ + && test -f "$additional_libdir/lib$name.dll.a"; }; }; then + found_dir="$additional_libdir" + if test -f "$additional_libdir/lib$name.$shlibext"; then + found_so="$additional_libdir/lib$name.$shlibext" + else + found_so="$additional_libdir/lib$name.dll.a" + fi + if test -f "$additional_libdir/lib$name.la"; then + found_la="$additional_libdir/lib$name.la" + fi + else + if test -f "$additional_libdir/lib$name.$libext"; then + found_dir="$additional_libdir" + found_a="$additional_libdir/lib$name.$libext" + if test -f "$additional_libdir/lib$name.la"; then + found_la="$additional_libdir/lib$name.la" + fi + fi + fi + fi + if test "X$found_dir" = "X"; then + for x in $LDFLAGS $LTLIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + case "$x" in + -L*) + dir=`echo "X$x" | sed -e 's/^X-L//'` + if test -n "$shlibext" \ + && { test -f "$dir/lib$name.$shlibext" \ + || { test "$shlibext" = dll \ + && test -f "$dir/lib$name.dll.a"; }; }; then + found_dir="$dir" + if test -f "$dir/lib$name.$shlibext"; then + found_so="$dir/lib$name.$shlibext" + else + found_so="$dir/lib$name.dll.a" + fi + if test -f "$dir/lib$name.la"; then + found_la="$dir/lib$name.la" + fi + else + if test -f "$dir/lib$name.$libext"; then + found_dir="$dir" + found_a="$dir/lib$name.$libext" + if test -f "$dir/lib$name.la"; then + found_la="$dir/lib$name.la" + fi + fi + fi + ;; + esac + if test "X$found_dir" != "X"; then + break + fi + done + fi + if test "X$found_dir" != "X"; then + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" + if test "X$found_so" != "X"; then + if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/$acl_libdirstem"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + else + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $found_dir" + fi + if test "$hardcode_direct" = yes; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + else + if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $found_dir" + fi + else + haveit= + for x in $LDFLAGS $LIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" + fi + if test "$hardcode_minus_L" != no; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" + else + LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" + fi + fi + fi + fi + else + if test "X$found_a" != "X"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" + else + LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" + fi + fi + additional_includedir= + case "$found_dir" in + */$acl_libdirstem | */$acl_libdirstem/) + basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` + additional_includedir="$basedir/include" + ;; + esac + if test "X$additional_includedir" != "X"; then + if test "X$additional_includedir" != "X/usr/include"; then + haveit= + if test "X$additional_includedir" = "X/usr/local/include"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + for x in $CPPFLAGS $INCICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-I$additional_includedir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_includedir"; then + INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" + fi + fi + fi + fi + fi + if test -n "$found_la"; then + save_libdir="$libdir" + case "$found_la" in + */* | *\\*) . "$found_la" ;; + *) . "./$found_la" ;; + esac + libdir="$save_libdir" + for dep in $dependency_libs; do + case "$dep" in + -L*) + additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` + if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then + haveit= + if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + haveit= + for x in $LDFLAGS $LIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" + fi + fi + haveit= + for x in $LDFLAGS $LTLIBICONV; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" + fi + fi + fi + fi + ;; + -R*) + dir=`echo "X$dep" | sed -e 's/^X-R//'` + if test "$enable_rpath" != no; then + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $dir" + fi + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $dir" + fi + fi + ;; + -l*) + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` + ;; + *.la) + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` + ;; + *) + LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" + ;; + esac + done + fi + else + LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" + fi + fi + fi + done + done + if test "X$rpathdirs" != "X"; then + if test -n "$hardcode_libdir_separator"; then + alldirs= + for found_dir in $rpathdirs; do + alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" + done + acl_save_libdir="$libdir" + libdir="$alldirs" + eval flag=\"$hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" + else + for found_dir in $rpathdirs; do + acl_save_libdir="$libdir" + libdir="$found_dir" + eval flag=\"$hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" + done + fi + fi + if test "X$ltrpathdirs" != "X"; then + for found_dir in $ltrpathdirs; do + LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" + done + fi + + + + + + + + + + + + + + + + + + + + + + + + + + { echo "$as_me:$LINENO: checking for CFPreferencesCopyAppValue" >&5 +echo $ECHO_N "checking for CFPreferencesCopyAppValue... $ECHO_C" >&6; } +if test "${gt_cv_func_CFPreferencesCopyAppValue+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + gt_save_LIBS="$LIBS" + LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +int +main () +{ +CFPreferencesCopyAppValue(NULL, NULL) + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + gt_cv_func_CFPreferencesCopyAppValue=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + gt_cv_func_CFPreferencesCopyAppValue=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$gt_save_LIBS" +fi +{ echo "$as_me:$LINENO: result: $gt_cv_func_CFPreferencesCopyAppValue" >&5 +echo "${ECHO_T}$gt_cv_func_CFPreferencesCopyAppValue" >&6; } + if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_CFPREFERENCESCOPYAPPVALUE 1 +_ACEOF + + fi + { echo "$as_me:$LINENO: checking for CFLocaleCopyCurrent" >&5 +echo $ECHO_N "checking for CFLocaleCopyCurrent... $ECHO_C" >&6; } +if test "${gt_cv_func_CFLocaleCopyCurrent+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + gt_save_LIBS="$LIBS" + LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +int +main () +{ +CFLocaleCopyCurrent(); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + gt_cv_func_CFLocaleCopyCurrent=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + gt_cv_func_CFLocaleCopyCurrent=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$gt_save_LIBS" +fi +{ echo "$as_me:$LINENO: result: $gt_cv_func_CFLocaleCopyCurrent" >&5 +echo "${ECHO_T}$gt_cv_func_CFLocaleCopyCurrent" >&6; } + if test $gt_cv_func_CFLocaleCopyCurrent = yes; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_CFLOCALECOPYCURRENT 1 +_ACEOF + + fi + INTL_MACOSX_LIBS= + if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then + INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" + fi + + + + + + + LIBINTL= + LTLIBINTL= + POSUB= + + case " $gt_needs " in + *" need-formatstring-macros "*) gt_api_version=3 ;; + *" need-ngettext "*) gt_api_version=2 ;; + *) gt_api_version=1 ;; + esac + gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" + gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" + + if test "$USE_NLS" = "yes"; then + gt_use_preinstalled_gnugettext=no + + + if test $gt_api_version -ge 3; then + gt_revision_test_code=' +#ifndef __GNU_GETTEXT_SUPPORTED_REVISION +#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) +#endif +typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; +' + else + gt_revision_test_code= + fi + if test $gt_api_version -ge 2; then + gt_expression_test_code=' + * ngettext ("", "", 0)' + else + gt_expression_test_code= + fi + + { echo "$as_me:$LINENO: checking for GNU gettext in libc" >&5 +echo $ECHO_N "checking for GNU gettext in libc... $ECHO_C" >&6; } +if { as_var=$gt_func_gnugettext_libc; eval "test \"\${$as_var+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 +$gt_revision_test_code +extern int _nl_msg_cat_cntr; +extern int *_nl_domain_bindings; +int +main () +{ +bindtextdomain ("", ""); +return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + eval "$gt_func_gnugettext_libc=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$gt_func_gnugettext_libc=no" +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +fi +ac_res=`eval echo '${'$gt_func_gnugettext_libc'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } + + if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then + + + + + + am_save_CPPFLAGS="$CPPFLAGS" + + for element in $INCICONV; do + haveit= + for x in $CPPFLAGS; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X$element"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" + fi + done + + + { echo "$as_me:$LINENO: checking for iconv" >&5 +echo $ECHO_N "checking for iconv... $ECHO_C" >&6; } +if test "${am_cv_func_iconv+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + + am_cv_func_iconv="no, consider installing GNU libiconv" + am_cv_lib_iconv=no + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include +int +main () +{ +iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + am_cv_func_iconv=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test "$am_cv_func_iconv" != yes; then + am_save_LIBS="$LIBS" + LIBS="$LIBS $LIBICONV" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +#include +int +main () +{ +iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + am_cv_lib_iconv=yes + am_cv_func_iconv=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$am_save_LIBS" + fi + +fi +{ echo "$as_me:$LINENO: result: $am_cv_func_iconv" >&5 +echo "${ECHO_T}$am_cv_func_iconv" >&6; } + if test "$am_cv_func_iconv" = yes; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_ICONV 1 +_ACEOF + + fi + if test "$am_cv_lib_iconv" = yes; then + { echo "$as_me:$LINENO: checking how to link with libiconv" >&5 +echo $ECHO_N "checking how to link with libiconv... $ECHO_C" >&6; } + { echo "$as_me:$LINENO: result: $LIBICONV" >&5 +echo "${ECHO_T}$LIBICONV" >&6; } + else + CPPFLAGS="$am_save_CPPFLAGS" + LIBICONV= + LTLIBICONV= + fi + + + + + + + + use_additional=yes + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + +# Check whether --with-libintl-prefix was given. +if test "${with_libintl_prefix+set}" = set; then + withval=$with_libintl_prefix; + if test "X$withval" = "Xno"; then + use_additional=no + else + if test "X$withval" = "X"; then + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + else + additional_includedir="$withval/include" + additional_libdir="$withval/$acl_libdirstem" + fi + fi + +fi + + LIBINTL= + LTLIBINTL= + INCINTL= + rpathdirs= + ltrpathdirs= + names_already_handled= + names_next_round='intl ' + while test -n "$names_next_round"; do + names_this_round="$names_next_round" + names_next_round= + for name in $names_this_round; do + already_handled= + for n in $names_already_handled; do + if test "$n" = "$name"; then + already_handled=yes + break + fi + done + if test -z "$already_handled"; then + names_already_handled="$names_already_handled $name" + uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` + eval value=\"\$HAVE_LIB$uppername\" + if test -n "$value"; then + if test "$value" = yes; then + eval value=\"\$LIB$uppername\" + test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" + eval value=\"\$LTLIB$uppername\" + test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" + else + : + fi + else + found_dir= + found_la= + found_so= + found_a= + if test $use_additional = yes; then + if test -n "$shlibext" \ + && { test -f "$additional_libdir/lib$name.$shlibext" \ + || { test "$shlibext" = dll \ + && test -f "$additional_libdir/lib$name.dll.a"; }; }; then + found_dir="$additional_libdir" + if test -f "$additional_libdir/lib$name.$shlibext"; then + found_so="$additional_libdir/lib$name.$shlibext" + else + found_so="$additional_libdir/lib$name.dll.a" + fi + if test -f "$additional_libdir/lib$name.la"; then + found_la="$additional_libdir/lib$name.la" + fi + else + if test -f "$additional_libdir/lib$name.$libext"; then + found_dir="$additional_libdir" + found_a="$additional_libdir/lib$name.$libext" + if test -f "$additional_libdir/lib$name.la"; then + found_la="$additional_libdir/lib$name.la" + fi + fi + fi + fi + if test "X$found_dir" = "X"; then + for x in $LDFLAGS $LTLIBINTL; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + case "$x" in + -L*) + dir=`echo "X$x" | sed -e 's/^X-L//'` + if test -n "$shlibext" \ + && { test -f "$dir/lib$name.$shlibext" \ + || { test "$shlibext" = dll \ + && test -f "$dir/lib$name.dll.a"; }; }; then + found_dir="$dir" + if test -f "$dir/lib$name.$shlibext"; then + found_so="$dir/lib$name.$shlibext" + else + found_so="$dir/lib$name.dll.a" + fi + if test -f "$dir/lib$name.la"; then + found_la="$dir/lib$name.la" + fi + else + if test -f "$dir/lib$name.$libext"; then + found_dir="$dir" + found_a="$dir/lib$name.$libext" + if test -f "$dir/lib$name.la"; then + found_la="$dir/lib$name.la" + fi + fi + fi + ;; + esac + if test "X$found_dir" != "X"; then + break + fi + done + fi + if test "X$found_dir" != "X"; then + LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" + if test "X$found_so" != "X"; then + if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/$acl_libdirstem"; then + LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" + else + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $found_dir" + fi + if test "$hardcode_direct" = yes; then + LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" + else + if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then + LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $found_dir" + fi + else + haveit= + for x in $LDFLAGS $LIBINTL; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" + fi + if test "$hardcode_minus_L" != no; then + LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" + else + LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" + fi + fi + fi + fi + else + if test "X$found_a" != "X"; then + LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" + else + LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" + fi + fi + additional_includedir= + case "$found_dir" in + */$acl_libdirstem | */$acl_libdirstem/) + basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` + additional_includedir="$basedir/include" + ;; + esac + if test "X$additional_includedir" != "X"; then + if test "X$additional_includedir" != "X/usr/include"; then + haveit= + if test "X$additional_includedir" = "X/usr/local/include"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + for x in $CPPFLAGS $INCINTL; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-I$additional_includedir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_includedir"; then + INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" + fi + fi + fi + fi + fi + if test -n "$found_la"; then + save_libdir="$libdir" + case "$found_la" in + */* | *\\*) . "$found_la" ;; + *) . "./$found_la" ;; + esac + libdir="$save_libdir" + for dep in $dependency_libs; do + case "$dep" in + -L*) + additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` + if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then + haveit= + if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + haveit= + for x in $LDFLAGS $LIBINTL; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" + fi + fi + haveit= + for x in $LDFLAGS $LTLIBINTL; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir" + fi + fi + fi + fi + ;; + -R*) + dir=`echo "X$dep" | sed -e 's/^X-R//'` + if test "$enable_rpath" != no; then + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $dir" + fi + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $dir" + fi + fi + ;; + -l*) + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` + ;; + *.la) + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` + ;; + *) + LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" + LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" + ;; + esac + done + fi + else + LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" + LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" + fi + fi + fi + done + done + if test "X$rpathdirs" != "X"; then + if test -n "$hardcode_libdir_separator"; then + alldirs= + for found_dir in $rpathdirs; do + alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" + done + acl_save_libdir="$libdir" + libdir="$alldirs" + eval flag=\"$hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" + else + for found_dir in $rpathdirs; do + acl_save_libdir="$libdir" + libdir="$found_dir" + eval flag=\"$hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" + done + fi + fi + if test "X$ltrpathdirs" != "X"; then + for found_dir in $ltrpathdirs; do + LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" + done + fi + + { echo "$as_me:$LINENO: checking for GNU gettext in libintl" >&5 +echo $ECHO_N "checking for GNU gettext in libintl... $ECHO_C" >&6; } +if { as_var=$gt_func_gnugettext_libintl; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + gt_save_CPPFLAGS="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS $INCINTL" + gt_save_LIBS="$LIBS" + LIBS="$LIBS $LIBINTL" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +$gt_revision_test_code +extern int _nl_msg_cat_cntr; +extern +#ifdef __cplusplus +"C" +#endif +const char *_nl_expand_alias (const char *); +int +main () +{ +bindtextdomain ("", ""); +return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + eval "$gt_func_gnugettext_libintl=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$gt_func_gnugettext_libintl=no" +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then + LIBS="$LIBS $LIBICONV" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +$gt_revision_test_code +extern int _nl_msg_cat_cntr; +extern +#ifdef __cplusplus +"C" +#endif +const char *_nl_expand_alias (const char *); +int +main () +{ +bindtextdomain ("", ""); +return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("") + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + LIBINTL="$LIBINTL $LIBICONV" + LTLIBINTL="$LTLIBINTL $LTLIBICONV" + eval "$gt_func_gnugettext_libintl=yes" + +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + CPPFLAGS="$gt_save_CPPFLAGS" + LIBS="$gt_save_LIBS" +fi +ac_res=`eval echo '${'$gt_func_gnugettext_libintl'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } + fi + + if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ + || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ + && test "$PACKAGE" != gettext-runtime \ + && test "$PACKAGE" != gettext-tools; }; then + gt_use_preinstalled_gnugettext=yes + else + LIBINTL= + LTLIBINTL= + INCINTL= + fi + + + + if test -n "$INTL_MACOSX_LIBS"; then + if test "$gt_use_preinstalled_gnugettext" = "yes" \ + || test "$nls_cv_use_gnu_gettext" = "yes"; then + LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" + LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" + fi + fi + + if test "$gt_use_preinstalled_gnugettext" = "yes" \ + || test "$nls_cv_use_gnu_gettext" = "yes"; then + +cat >>confdefs.h <<\_ACEOF +#define ENABLE_NLS 1 +_ACEOF + + else + USE_NLS=no + fi + fi + + { echo "$as_me:$LINENO: checking whether to use NLS" >&5 +echo $ECHO_N "checking whether to use NLS... $ECHO_C" >&6; } + { echo "$as_me:$LINENO: result: $USE_NLS" >&5 +echo "${ECHO_T}$USE_NLS" >&6; } + if test "$USE_NLS" = "yes"; then + { echo "$as_me:$LINENO: checking where the gettext function comes from" >&5 +echo $ECHO_N "checking where the gettext function comes from... $ECHO_C" >&6; } + if test "$gt_use_preinstalled_gnugettext" = "yes"; then + if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then + gt_source="external libintl" + else + gt_source="libc" + fi + else + gt_source="included intl directory" + fi + { echo "$as_me:$LINENO: result: $gt_source" >&5 +echo "${ECHO_T}$gt_source" >&6; } + fi + + if test "$USE_NLS" = "yes"; then + + if test "$gt_use_preinstalled_gnugettext" = "yes"; then + if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then + { echo "$as_me:$LINENO: checking how to link with libintl" >&5 +echo $ECHO_N "checking how to link with libintl... $ECHO_C" >&6; } + { echo "$as_me:$LINENO: result: $LIBINTL" >&5 +echo "${ECHO_T}$LIBINTL" >&6; } + + for element in $INCINTL; do + haveit= + for x in $CPPFLAGS; do + + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + eval x=\"$x\" + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" + + if test "X$x" = "X$element"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" + fi + done + + fi + + +cat >>confdefs.h <<\_ACEOF +#define HAVE_GETTEXT 1 +_ACEOF + + +cat >>confdefs.h <<\_ACEOF +#define HAVE_DCGETTEXT 1 +_ACEOF + + fi + + POSUB=po + fi + + + + INTLLIBS="$LIBINTL" + + + + + + + + +{ echo "$as_me:$LINENO: checking whether closedir returns void" >&5 +echo $ECHO_N "checking whether closedir returns void... $ECHO_C" >&6; } +if test "${ac_cv_func_closedir_void+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test "$cross_compiling" = yes; then + ac_cv_func_closedir_void=yes +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +#include <$ac_header_dirent> +#ifndef __cplusplus +int closedir (); +#endif + +int +main () +{ +return closedir (opendir (".")) != 0; + ; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_closedir_void=no +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_func_closedir_void=yes +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_closedir_void" >&5 +echo "${ECHO_T}$ac_cv_func_closedir_void" >&6; } +if test $ac_cv_func_closedir_void = yes; then + +cat >>confdefs.h <<\_ACEOF +#define CLOSEDIR_VOID 1 +_ACEOF + +fi + +# getmntent is in the standard C library on UNICOS, in -lsun on Irix 4, +# -lseq on Dynix/PTX, -lgen on Unixware. +{ echo "$as_me:$LINENO: checking for library containing getmntent" >&5 +echo $ECHO_N "checking for library containing getmntent... $ECHO_C" >&6; } +if test "${ac_cv_search_getmntent+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_func_search_save_LIBS=$LIBS +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char getmntent (); +int +main () +{ +return getmntent (); + ; + return 0; +} +_ACEOF +for ac_lib in '' sun seq gen; do + if test -z "$ac_lib"; then + ac_res="none required" + else + ac_res=-l$ac_lib + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi + rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + ac_cv_search_getmntent=$ac_res +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_getmntent+set}" = set; then + break +fi +done +if test "${ac_cv_search_getmntent+set}" = set; then + : +else + ac_cv_search_getmntent=no +fi +rm conftest.$ac_ext +LIBS=$ac_func_search_save_LIBS +fi +{ echo "$as_me:$LINENO: result: $ac_cv_search_getmntent" >&5 +echo "${ECHO_T}$ac_cv_search_getmntent" >&6; } +ac_res=$ac_cv_search_getmntent +if test "$ac_res" != no; then + test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" + ac_cv_func_getmntent=yes + +cat >>confdefs.h <<\_ACEOF +#define HAVE_GETMNTENT 1 +_ACEOF + +else + ac_cv_func_getmntent=no +fi + + +if test $ac_cv_c_compiler_gnu = yes; then + { echo "$as_me:$LINENO: checking whether $CC needs -traditional" >&5 +echo $ECHO_N "checking whether $CC needs -traditional... $ECHO_C" >&6; } +if test "${ac_cv_prog_gcc_traditional+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_pattern="Autoconf.*'x'" + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +Autoconf TIOCGETP +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "$ac_pattern" >/dev/null 2>&1; then + ac_cv_prog_gcc_traditional=yes +else + ac_cv_prog_gcc_traditional=no +fi +rm -f conftest* + + + if test $ac_cv_prog_gcc_traditional = no; then + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include +Autoconf TCGETA +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "$ac_pattern" >/dev/null 2>&1; then + ac_cv_prog_gcc_traditional=yes +fi +rm -f conftest* + + fi +fi +{ echo "$as_me:$LINENO: result: $ac_cv_prog_gcc_traditional" >&5 +echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6; } + if test $ac_cv_prog_gcc_traditional = yes; then + CC="$CC -traditional" + fi +fi + +{ echo "$as_me:$LINENO: checking whether lstat dereferences a symlink specified with a trailing slash" >&5 +echo $ECHO_N "checking whether lstat dereferences a symlink specified with a trailing slash... $ECHO_C" >&6; } +if test "${ac_cv_func_lstat_dereferences_slashed_symlink+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + rm -f conftest.sym conftest.file +echo >conftest.file +if test "$as_ln_s" = "ln -s" && ln -s conftest.file conftest.sym; then + if test "$cross_compiling" = yes; then + ac_cv_func_lstat_dereferences_slashed_symlink=no +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ +struct stat sbuf; + /* Linux will dereference the symlink and fail. + That is better in the sense that it means we will not + have to compile and use the lstat wrapper. */ + return lstat ("conftest.sym/", &sbuf) == 0; + ; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_lstat_dereferences_slashed_symlink=yes +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_func_lstat_dereferences_slashed_symlink=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +else + # If the `ln -s' command failed, then we probably don't even + # have an lstat function. + ac_cv_func_lstat_dereferences_slashed_symlink=no +fi +rm -f conftest.sym conftest.file + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_lstat_dereferences_slashed_symlink" >&5 +echo "${ECHO_T}$ac_cv_func_lstat_dereferences_slashed_symlink" >&6; } + +test $ac_cv_func_lstat_dereferences_slashed_symlink = yes && + +cat >>confdefs.h <<_ACEOF +#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 +_ACEOF + + +if test $ac_cv_func_lstat_dereferences_slashed_symlink = no; then + case " $LIBOBJS " in + *" lstat.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS lstat.$ac_objext" + ;; +esac + +fi + +{ echo "$as_me:$LINENO: checking whether lstat accepts an empty string" >&5 +echo $ECHO_N "checking whether lstat accepts an empty string... $ECHO_C" >&6; } +if test "${ac_cv_func_lstat_empty_string_bug+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test "$cross_compiling" = yes; then + ac_cv_func_lstat_empty_string_bug=yes +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ +struct stat sbuf; + return lstat ("", &sbuf) == 0; + ; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_lstat_empty_string_bug=no +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_func_lstat_empty_string_bug=yes +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_lstat_empty_string_bug" >&5 +echo "${ECHO_T}$ac_cv_func_lstat_empty_string_bug" >&6; } +if test $ac_cv_func_lstat_empty_string_bug = yes; then + case " $LIBOBJS " in + *" lstat.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS lstat.$ac_objext" + ;; +esac + + +cat >>confdefs.h <<_ACEOF +#define HAVE_LSTAT_EMPTY_STRING_BUG 1 +_ACEOF + +fi + +{ echo "$as_me:$LINENO: checking whether lstat dereferences a symlink specified with a trailing slash" >&5 +echo $ECHO_N "checking whether lstat dereferences a symlink specified with a trailing slash... $ECHO_C" >&6; } +if test "${ac_cv_func_lstat_dereferences_slashed_symlink+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + rm -f conftest.sym conftest.file +echo >conftest.file +if test "$as_ln_s" = "ln -s" && ln -s conftest.file conftest.sym; then + if test "$cross_compiling" = yes; then + ac_cv_func_lstat_dereferences_slashed_symlink=no +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ +struct stat sbuf; + /* Linux will dereference the symlink and fail. + That is better in the sense that it means we will not + have to compile and use the lstat wrapper. */ + return lstat ("conftest.sym/", &sbuf) == 0; + ; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_lstat_dereferences_slashed_symlink=yes +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_func_lstat_dereferences_slashed_symlink=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +else + # If the `ln -s' command failed, then we probably don't even + # have an lstat function. + ac_cv_func_lstat_dereferences_slashed_symlink=no +fi +rm -f conftest.sym conftest.file + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_lstat_dereferences_slashed_symlink" >&5 +echo "${ECHO_T}$ac_cv_func_lstat_dereferences_slashed_symlink" >&6; } + +test $ac_cv_func_lstat_dereferences_slashed_symlink = yes && + +cat >>confdefs.h <<_ACEOF +#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 +_ACEOF + + +if test $ac_cv_func_lstat_dereferences_slashed_symlink = no; then + case " $LIBOBJS " in + *" lstat.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS lstat.$ac_objext" + ;; +esac + +fi + + +for ac_header in stdlib.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + { echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +else + # Is the header compilable? +{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +#include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6; } + +# Is the header present? +{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <$ac_header> +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi + +rm -f conftest.err conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + + ;; +esac +{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + eval "$as_ac_Header=\$ac_header_preproc" +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } + +fi +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + +{ echo "$as_me:$LINENO: checking for GNU libc compatible malloc" >&5 +echo $ECHO_N "checking for GNU libc compatible malloc... $ECHO_C" >&6; } +if test "${ac_cv_func_malloc_0_nonnull+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test "$cross_compiling" = yes; then + ac_cv_func_malloc_0_nonnull=no +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#if defined STDC_HEADERS || defined HAVE_STDLIB_H +# include +#else +char *malloc (); +#endif + +int +main () +{ +return ! malloc (0); + ; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_malloc_0_nonnull=yes +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_func_malloc_0_nonnull=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_malloc_0_nonnull" >&5 +echo "${ECHO_T}$ac_cv_func_malloc_0_nonnull" >&6; } +if test $ac_cv_func_malloc_0_nonnull = yes; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_MALLOC 1 +_ACEOF + +else + cat >>confdefs.h <<\_ACEOF +#define HAVE_MALLOC 0 +_ACEOF + + case " $LIBOBJS " in + *" malloc.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS malloc.$ac_objext" + ;; +esac + + +cat >>confdefs.h <<\_ACEOF +#define malloc rpl_malloc +_ACEOF + +fi + + + +{ echo "$as_me:$LINENO: checking for working memcmp" >&5 +echo $ECHO_N "checking for working memcmp... $ECHO_C" >&6; } +if test "${ac_cv_func_memcmp_working+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test "$cross_compiling" = yes; then + ac_cv_func_memcmp_working=no +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ + + /* Some versions of memcmp are not 8-bit clean. */ + char c0 = '\100', c1 = '\200', c2 = '\201'; + if (memcmp(&c0, &c2, 1) >= 0 || memcmp(&c1, &c2, 1) >= 0) + return 1; + + /* The Next x86 OpenStep bug shows up only when comparing 16 bytes + or more and with at least one buffer not starting on a 4-byte boundary. + William Lewis provided this test program. */ + { + char foo[21]; + char bar[21]; + int i; + for (i = 0; i < 4; i++) + { + char *a = foo + i; + char *b = bar + i; + strcpy (a, "--------01111111"); + strcpy (b, "--------10000000"); + if (memcmp (a, b, 16) >= 0) + return 1; + } + return 0; + } + + ; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_memcmp_working=yes +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_func_memcmp_working=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_memcmp_working" >&5 +echo "${ECHO_T}$ac_cv_func_memcmp_working" >&6; } +test $ac_cv_func_memcmp_working = no && case " $LIBOBJS " in + *" memcmp.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS memcmp.$ac_objext" + ;; +esac + + + +for ac_header in stdlib.h +do +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + { echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +else + # Is the header compilable? +{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 +echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +#include <$ac_header> +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_header_compiler=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_compiler=no +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 +echo "${ECHO_T}$ac_header_compiler" >&6; } + +# Is the header present? +{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 +echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } +cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include <$ac_header> +_ACEOF +if { (ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then + ac_header_preproc=yes +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_header_preproc=no +fi + +rm -f conftest.err conftest.$ac_ext +{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 +echo "${ECHO_T}$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in + yes:no: ) + { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 +echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} + ac_header_preproc=yes + ;; + no:yes:* ) + { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 +echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 +echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 +echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 +echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 +echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} + { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 +echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} + + ;; +esac +{ echo "$as_me:$LINENO: checking for $ac_header" >&5 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } +if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + eval "$as_ac_Header=\$ac_header_preproc" +fi +ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } + +fi +if test `eval echo '${'$as_ac_Header'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + +{ echo "$as_me:$LINENO: checking for GNU libc compatible realloc" >&5 +echo $ECHO_N "checking for GNU libc compatible realloc... $ECHO_C" >&6; } +if test "${ac_cv_func_realloc_0_nonnull+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test "$cross_compiling" = yes; then + ac_cv_func_realloc_0_nonnull=no +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#if defined STDC_HEADERS || defined HAVE_STDLIB_H +# include +#else +char *realloc (); +#endif + +int +main () +{ +return ! realloc (0, 0); + ; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_realloc_0_nonnull=yes +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_func_realloc_0_nonnull=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_realloc_0_nonnull" >&5 +echo "${ECHO_T}$ac_cv_func_realloc_0_nonnull" >&6; } +if test $ac_cv_func_realloc_0_nonnull = yes; then + +cat >>confdefs.h <<\_ACEOF +#define HAVE_REALLOC 1 +_ACEOF + +else + cat >>confdefs.h <<\_ACEOF +#define HAVE_REALLOC 0 +_ACEOF + + case " $LIBOBJS " in + *" realloc.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS realloc.$ac_objext" + ;; +esac + + +cat >>confdefs.h <<\_ACEOF +#define realloc rpl_realloc +_ACEOF + +fi + + + +{ echo "$as_me:$LINENO: checking whether stat accepts an empty string" >&5 +echo $ECHO_N "checking whether stat accepts an empty string... $ECHO_C" >&6; } +if test "${ac_cv_func_stat_empty_string_bug+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + if test "$cross_compiling" = yes; then + ac_cv_func_stat_empty_string_bug=yes +else + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +$ac_includes_default +int +main () +{ +struct stat sbuf; + return stat ("", &sbuf) == 0; + ; + return 0; +} +_ACEOF +rm -f conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' + { (case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then + ac_cv_func_stat_empty_string_bug=no +else + echo "$as_me: program exited with status $ac_status" >&5 +echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +( exit $ac_status ) +ac_cv_func_stat_empty_string_bug=yes +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +fi + + +fi +{ echo "$as_me:$LINENO: result: $ac_cv_func_stat_empty_string_bug" >&5 +echo "${ECHO_T}$ac_cv_func_stat_empty_string_bug" >&6; } +if test $ac_cv_func_stat_empty_string_bug = yes; then + case " $LIBOBJS " in + *" stat.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS stat.$ac_objext" + ;; +esac + + +cat >>confdefs.h <<_ACEOF +#define HAVE_STAT_EMPTY_STRING_BUG 1 +_ACEOF + +fi + + + + + + + + + + + + + + + + +for ac_func in atexit getmntent memset nl_langinfo regcomp rpmatch setlocale socket strcasecmp strchr strdup strerror strpbrk strrchr strtoul +do +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` +{ echo "$as_me:$LINENO: checking for $ac_func" >&5 +echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } +if { as_var=$as_ac_var; eval "test \"\${$as_var+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. */ +/* Define $ac_func to an innocuous variant, in case declares $ac_func. + For example, HP-UX 11i declares gettimeofday. */ +#define $ac_func innocuous_$ac_func + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $ac_func (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $ac_func + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $ac_func (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$ac_func || defined __stub___$ac_func +choke me +#endif + +int +main () +{ +return $ac_func (); + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext conftest$ac_exeext +if { (ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && + $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + eval "$as_ac_var=no" +fi + +rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +fi +ac_res=`eval echo '${'$as_ac_var'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +echo "${ECHO_T}$ac_res" >&6; } +if test `eval echo '${'$as_ac_var'}'` = yes; then + cat >>confdefs.h <<_ACEOF +#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + + +# Check whether --enable-largefile was given. +if test "${enable_largefile+set}" = set; then + enableval=$enable_largefile; +fi + +if test "$enable_largefile" != no; then + + { echo "$as_me:$LINENO: checking for special C compiler options needed for large files" >&5 +echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6; } +if test "${ac_cv_sys_largefile_CC+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + ac_cv_sys_largefile_CC=no + if test "$GCC" != yes; then + ac_save_CC=$CC + while :; do + # IRIX 6.2 and later do not support large files by default, + # so use the C compiler's -n32 option if that helps. + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF + rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext + CC="$CC -n32" + rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_sys_largefile_CC=' -n32'; break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext + break + done + CC=$ac_save_CC + rm -f conftest.$ac_ext + fi +fi +{ echo "$as_me:$LINENO: result: $ac_cv_sys_largefile_CC" >&5 +echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6; } + if test "$ac_cv_sys_largefile_CC" != no; then + CC=$CC$ac_cv_sys_largefile_CC + fi + + { echo "$as_me:$LINENO: checking for _FILE_OFFSET_BITS value needed for large files" >&5 +echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6; } +if test "${ac_cv_sys_file_offset_bits+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + while :; do + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_sys_file_offset_bits=no; break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#define _FILE_OFFSET_BITS 64 +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_sys_file_offset_bits=64; break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_sys_file_offset_bits=unknown + break +done +fi +{ echo "$as_me:$LINENO: result: $ac_cv_sys_file_offset_bits" >&5 +echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6; } +case $ac_cv_sys_file_offset_bits in #( + no | unknown) ;; + *) +cat >>confdefs.h <<_ACEOF +#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits +_ACEOF +;; +esac +rm -f conftest* + if test $ac_cv_sys_file_offset_bits = unknown; then + { echo "$as_me:$LINENO: checking for _LARGE_FILES value needed for large files" >&5 +echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6; } +if test "${ac_cv_sys_large_files+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 +else + while :; do + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_sys_large_files=no; break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + cat >conftest.$ac_ext <<_ACEOF +/* confdefs.h. */ +_ACEOF +cat confdefs.h >>conftest.$ac_ext +cat >>conftest.$ac_ext <<_ACEOF +/* end confdefs.h. */ +#define _LARGE_FILES 1 +#include + /* Check that off_t can represent 2**63 - 1 correctly. + We can't simply define LARGE_OFF_T to be 9223372036854775807, + since some C++ compilers masquerading as C compilers + incorrectly reject 9223372036854775807. */ +#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) + int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 + && LARGE_OFF_T % 2147483647 == 1) + ? 1 : -1]; +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.$ac_objext +if { (ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_sys_large_files=1; break +else + echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + +fi + +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_sys_large_files=unknown + break +done +fi +{ echo "$as_me:$LINENO: result: $ac_cv_sys_large_files" >&5 +echo "${ECHO_T}$ac_cv_sys_large_files" >&6; } +case $ac_cv_sys_large_files in #( + no | unknown) ;; + *) +cat >>confdefs.h <<_ACEOF +#define _LARGE_FILES $ac_cv_sys_large_files +_ACEOF +;; +esac +rm -f conftest* + fi +fi + + +ac_config_files="$ac_config_files Makefile doc/Makefile src/Makefile icons/Makefile po/Makefile.in" + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 +echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + *) $as_unset $ac_var ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes (double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \). + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + test "x$cache_file" != "x/dev/null" && + { echo "$as_me:$LINENO: updating cache $cache_file" >&5 +echo "$as_me: updating cache $cache_file" >&6;} + cat confcache >$cache_file + else + { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 +echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" + ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIBOBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${WANT_PEEKFD_I386_TRUE}" && test -z "${WANT_PEEKFD_I386_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"WANT_PEEKFD_I386\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"WANT_PEEKFD_I386\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${WANT_PEEKFD_X86_64_TRUE}" && test -z "${WANT_PEEKFD_X86_64_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"WANT_PEEKFD_X86_64\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"WANT_PEEKFD_X86_64\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi +if test -z "${WANT_PEEKFD_PPC_TRUE}" && test -z "${WANT_PEEKFD_PPC_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"WANT_PEEKFD_PPC\" was never defined. +Usually this means the macro was only invoked conditionally." >&5 +echo "$as_me: error: conditional \"WANT_PEEKFD_PPC\" was never defined. +Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } +fi + +: ${CONFIG_STATUS=./config.status} +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 +echo "$as_me: creating $CONFIG_STATUS" >&6;} +cat >$CONFIG_STATUS <<_ACEOF +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false +SHELL=\${CONFIG_SHELL-$SHELL} +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF +## --------------------- ## +## M4sh Initialization. ## +## --------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in + *posix*) set -o posix ;; +esac + +fi + + + + +# PATH needs CR +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi + +# Support unset when possible. +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + as_unset=unset +else + as_unset=false +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +as_nl=' +' +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + { (exit 1); exit 1; } +fi + +# Work around bugs in pre-3.0 UWIN ksh. +for as_var in ENV MAIL MAILPATH +do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +for as_var in \ + LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ + LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ + LC_TELEPHONE LC_TIME +do + if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then + eval $as_var=C; export $as_var + else + ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var + fi +done + +# Required to use basename. +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + + +# Name of the executable. +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# CDPATH. +$as_unset CDPATH + + + + as_lineno_1=$LINENO + as_lineno_2=$LINENO + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { + + # Create $as_me.lineno as a copy of $as_myself, but with $LINENO + # uniformly replaced by the line number. The first 'sed' inserts a + # line-number line after each line using $LINENO; the second 'sed' + # does the real work. The second script uses 'N' to pair each + # line-number line with the line containing $LINENO, and appends + # trailing '-' during substitution so that $LINENO is not a special + # case at line end. + # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the + # scripts with optimization help from Paolo Bonzini. Blame Lee + # E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 + { (exit 1); exit 1; }; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in +-n*) + case `echo 'x\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + *) ECHO_C='\c';; + esac;; +*) + ECHO_N='-n';; +esac + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir +fi +echo >conf$$.file +if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' +elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p=: +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 + +# Save the log message, to keep $[0] and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by psmisc $as_me 22.6, which was +generated by GNU Autoconf 2.61. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +cat >>$CONFIG_STATUS <<_ACEOF +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF +ac_cs_usage="\ +\`$as_me' instantiates files from templates according to the +current configuration. + +Usage: $0 [OPTIONS] [FILE]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to ." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF +ac_cs_version="\\ +psmisc config.status 22.6 +configured by $0, generated by GNU Autoconf 2.61, + with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" + +Copyright (C) 2006 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF +# If no file are specified by the user, then we need to provide default +# value. By we need to know if files were specified by the user. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + echo "$ac_cs_version"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + CONFIG_FILES="$CONFIG_FILES $ac_optarg" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + { echo "$as_me: error: ambiguous option: $1 +Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; };; + --help | --hel | -h ) + echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) { echo "$as_me: error: unrecognized option: $1 +Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; } ;; + + *) ac_config_targets="$ac_config_targets $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF +if \$ac_cs_recheck; then + echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 + CONFIG_SHELL=$SHELL + export CONFIG_SHELL + exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" +# Capture the value of obsolete ALL_LINGUAS because we need it to compute + # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it + # from automake < 1.5. + eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' + # Capture the value of LINGUAS because we need it to compute CATALOGS. + LINGUAS="${LINGUAS-%UNSET%}" + + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "po-directories") CONFIG_COMMANDS="$CONFIG_COMMANDS po-directories" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; + "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; + "icons/Makefile") CONFIG_FILES="$CONFIG_FILES icons/Makefile" ;; + "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; + + *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 +echo "$as_me: error: invalid argument: $ac_config_target" >&2;} + { (exit 1); exit 1; }; };; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= + trap 'exit_status=$? + { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status +' 0 + trap '{ (exit 1); exit 1; }' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -n "$tmp" && test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || +{ + echo "$me: cannot create a temporary directory in ." >&2 + { (exit 1); exit 1; } +} + +# +# Set up the sed scripts for CONFIG_FILES section. +# + +# No need to generate the scripts if there are no CONFIG_FILES. +# This happens for instance when ./config.status config.h +if test -n "$CONFIG_FILES"; then + +_ACEOF + + + +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + cat >conf$$subs.sed <<_ACEOF +SHELL!$SHELL$ac_delim +PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim +PACKAGE_NAME!$PACKAGE_NAME$ac_delim +PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim +PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim +PACKAGE_STRING!$PACKAGE_STRING$ac_delim +PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim +exec_prefix!$exec_prefix$ac_delim +prefix!$prefix$ac_delim +program_transform_name!$program_transform_name$ac_delim +bindir!$bindir$ac_delim +sbindir!$sbindir$ac_delim +libexecdir!$libexecdir$ac_delim +datarootdir!$datarootdir$ac_delim +datadir!$datadir$ac_delim +sysconfdir!$sysconfdir$ac_delim +sharedstatedir!$sharedstatedir$ac_delim +localstatedir!$localstatedir$ac_delim +includedir!$includedir$ac_delim +oldincludedir!$oldincludedir$ac_delim +docdir!$docdir$ac_delim +infodir!$infodir$ac_delim +htmldir!$htmldir$ac_delim +dvidir!$dvidir$ac_delim +pdfdir!$pdfdir$ac_delim +psdir!$psdir$ac_delim +libdir!$libdir$ac_delim +localedir!$localedir$ac_delim +mandir!$mandir$ac_delim +DEFS!$DEFS$ac_delim +ECHO_C!$ECHO_C$ac_delim +ECHO_N!$ECHO_N$ac_delim +ECHO_T!$ECHO_T$ac_delim +LIBS!$LIBS$ac_delim +build_alias!$build_alias$ac_delim +host_alias!$host_alias$ac_delim +target_alias!$target_alias$ac_delim +INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim +INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim +INSTALL_DATA!$INSTALL_DATA$ac_delim +am__isrc!$am__isrc$ac_delim +CYGPATH_W!$CYGPATH_W$ac_delim +PACKAGE!$PACKAGE$ac_delim +VERSION!$VERSION$ac_delim +ACLOCAL!$ACLOCAL$ac_delim +AUTOCONF!$AUTOCONF$ac_delim +AUTOMAKE!$AUTOMAKE$ac_delim +AUTOHEADER!$AUTOHEADER$ac_delim +MAKEINFO!$MAKEINFO$ac_delim +install_sh!$install_sh$ac_delim +STRIP!$STRIP$ac_delim +INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim +mkdir_p!$mkdir_p$ac_delim +AWK!$AWK$ac_delim +SET_MAKE!$SET_MAKE$ac_delim +am__leading_dot!$am__leading_dot$ac_delim +AMTAR!$AMTAR$ac_delim +am__tar!$am__tar$ac_delim +am__untar!$am__untar$ac_delim +CXX!$CXX$ac_delim +CXXFLAGS!$CXXFLAGS$ac_delim +LDFLAGS!$LDFLAGS$ac_delim +CPPFLAGS!$CPPFLAGS$ac_delim +ac_ct_CXX!$ac_ct_CXX$ac_delim +EXEEXT!$EXEEXT$ac_delim +OBJEXT!$OBJEXT$ac_delim +DEPDIR!$DEPDIR$ac_delim +am__include!$am__include$ac_delim +am__quote!$am__quote$ac_delim +AMDEP_TRUE!$AMDEP_TRUE$ac_delim +AMDEP_FALSE!$AMDEP_FALSE$ac_delim +AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim +CXXDEPMODE!$CXXDEPMODE$ac_delim +am__fastdepCXX_TRUE!$am__fastdepCXX_TRUE$ac_delim +am__fastdepCXX_FALSE!$am__fastdepCXX_FALSE$ac_delim +CC!$CC$ac_delim +CFLAGS!$CFLAGS$ac_delim +ac_ct_CC!$ac_ct_CC$ac_delim +CCDEPMODE!$CCDEPMODE$ac_delim +am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim +am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim +LN_S!$LN_S$ac_delim +WITH_SELINUX!$WITH_SELINUX$ac_delim +SELINUX_LIB!$SELINUX_LIB$ac_delim +WITH_IPV6!$WITH_IPV6$ac_delim +TERMCAP_LIB!$TERMCAP_LIB$ac_delim +CPP!$CPP$ac_delim +GREP!$GREP$ac_delim +EGREP!$EGREP$ac_delim +WANT_PEEKFD_I386_TRUE!$WANT_PEEKFD_I386_TRUE$ac_delim +WANT_PEEKFD_I386_FALSE!$WANT_PEEKFD_I386_FALSE$ac_delim +WANT_PEEKFD_X86_64_TRUE!$WANT_PEEKFD_X86_64_TRUE$ac_delim +WANT_PEEKFD_X86_64_FALSE!$WANT_PEEKFD_X86_64_FALSE$ac_delim +WANT_PEEKFD_PPC_TRUE!$WANT_PEEKFD_PPC_TRUE$ac_delim +WANT_PEEKFD_PPC_FALSE!$WANT_PEEKFD_PPC_FALSE$ac_delim +USE_NLS!$USE_NLS$ac_delim +MSGFMT!$MSGFMT$ac_delim +_ACEOF + + if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then + break + elif $ac_last_try; then + { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} + { (exit 1); exit 1; }; } + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` +if test -n "$ac_eof"; then + ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` + ac_eof=`expr $ac_eof + 1` +fi + +cat >>$CONFIG_STATUS <<_ACEOF +cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +_ACEOF +sed ' +s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g +s/^/s,@/; s/!/@,|#_!!_#|/ +:n +t n +s/'"$ac_delim"'$/,g/; t +s/$/\\/; p +N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n +' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF +CEOF$ac_eof +_ACEOF + + +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + cat >conf$$subs.sed <<_ACEOF +GMSGFMT!$GMSGFMT$ac_delim +MSGFMT_015!$MSGFMT_015$ac_delim +GMSGFMT_015!$GMSGFMT_015$ac_delim +XGETTEXT!$XGETTEXT$ac_delim +XGETTEXT_015!$XGETTEXT_015$ac_delim +MSGMERGE!$MSGMERGE$ac_delim +build!$build$ac_delim +build_cpu!$build_cpu$ac_delim +build_vendor!$build_vendor$ac_delim +build_os!$build_os$ac_delim +host!$host$ac_delim +host_cpu!$host_cpu$ac_delim +host_vendor!$host_vendor$ac_delim +host_os!$host_os$ac_delim +INTL_MACOSX_LIBS!$INTL_MACOSX_LIBS$ac_delim +LIBICONV!$LIBICONV$ac_delim +LTLIBICONV!$LTLIBICONV$ac_delim +INTLLIBS!$INTLLIBS$ac_delim +LIBINTL!$LIBINTL$ac_delim +LTLIBINTL!$LTLIBINTL$ac_delim +POSUB!$POSUB$ac_delim +LIBOBJS!$LIBOBJS$ac_delim +LTLIBOBJS!$LTLIBOBJS$ac_delim +_ACEOF + + if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 23; then + break + elif $ac_last_try; then + { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} + { (exit 1); exit 1; }; } + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` +if test -n "$ac_eof"; then + ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` + ac_eof=`expr $ac_eof + 1` +fi + +cat >>$CONFIG_STATUS <<_ACEOF +cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end +_ACEOF +sed ' +s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g +s/^/s,@/; s/!/@,|#_!!_#|/ +:n +t n +s/'"$ac_delim"'$/,g/; t +s/$/\\/; p +N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n +' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF +:end +s/|#_!!_#|//g +CEOF$ac_eof +_ACEOF + + +# VPATH may cause trouble with some makes, so we remove $(srcdir), +# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=/{ +s/:*\$(srcdir):*/:/ +s/:*\${srcdir}:*/:/ +s/:*@srcdir@:*/:/ +s/^\([^=]*=[ ]*\):*/\1/ +s/:*$// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF +fi # test -n "$CONFIG_FILES" + + +for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 +echo "$as_me: error: Invalid tag $ac_tag." >&2;} + { (exit 1); exit 1; }; };; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 +echo "$as_me: error: cannot find input file: $ac_f" >&2;} + { (exit 1); exit 1; }; };; + esac + ac_file_inputs="$ac_file_inputs $ac_f" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input="Generated from "`IFS=: + echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { echo "$as_me:$LINENO: creating $ac_file" >&5 +echo "$as_me: creating $ac_file" >&6;} + fi + + case $ac_tag in + *:-:* | *:-) cat >"$tmp/stdin";; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + { as_dir="$ac_dir" + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +echo "$as_me: error: cannot create directory $as_dir" >&2;} + { (exit 1); exit 1; }; }; } + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= + +case `sed -n '/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p +' $ac_file_inputs` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF + sed "$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s&@configure_input@&$configure_input&;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && + { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&5 +echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&2;} + + rm -f "$tmp/stdin" + case $ac_file in + -) cat "$tmp/out"; rm -f "$tmp/out";; + *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; + esac + ;; + :H) + # + # CONFIG_HEADER + # +_ACEOF + +# Transform confdefs.h into a sed script `conftest.defines', that +# substitutes the proper values into config.h.in to produce config.h. +rm -f conftest.defines conftest.tail +# First, append a space to every undef/define line, to ease matching. +echo 's/$/ /' >conftest.defines +# Then, protect against being on the right side of a sed subst, or in +# an unquoted here document, in config.status. If some macros were +# called several times there might be several #defines for the same +# symbol, which is useless. But do not sort them, since the last +# AC_DEFINE must be honored. +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where +# NAME is the cpp macro being defined, VALUE is the value it is being given. +# PARAMS is the parameter list in the macro definition--in most cases, it's +# just an empty string. +ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' +ac_dB='\\)[ (].*,\\1define\\2' +ac_dC=' ' +ac_dD=' ,' + +uniq confdefs.h | + sed -n ' + t rset + :rset + s/^[ ]*#[ ]*define[ ][ ]*// + t ok + d + :ok + s/[\\&,]/\\&/g + s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p + s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p + ' >>conftest.defines + +# Remove the space that was appended to ease matching. +# Then replace #undef with comments. This is necessary, for +# example, in the case of _POSIX_SOURCE, which is predefined and required +# on some systems where configure will not decide to define it. +# (The regexp can be short, since the line contains either #define or #undef.) +echo 's/ $// +s,^[ #]*u.*,/* & */,' >>conftest.defines + +# Break up conftest.defines: +ac_max_sed_lines=50 + +# First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" +# Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" +# Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" +# et cetera. +ac_in='$ac_file_inputs' +ac_out='"$tmp/out1"' +ac_nxt='"$tmp/out2"' + +while : +do + # Write a here document: + cat >>$CONFIG_STATUS <<_ACEOF + # First, check the format of the line: + cat >"\$tmp/defines.sed" <<\\CEOF +/^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def +/^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def +b +:def +_ACEOF + sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS + echo 'CEOF + sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS + ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in + sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail + grep . conftest.tail >/dev/null || break + rm -f conftest.defines + mv conftest.tail conftest.defines +done +rm -f conftest.defines conftest.tail + +echo "ac_result=$ac_in" >>$CONFIG_STATUS +cat >>$CONFIG_STATUS <<\_ACEOF + if test x"$ac_file" != x-; then + echo "/* $configure_input */" >"$tmp/config.h" + cat "$ac_result" >>"$tmp/config.h" + if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then + { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 +echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f $ac_file + mv "$tmp/config.h" $ac_file + fi + else + echo "/* $configure_input */" + cat "$ac_result" + fi + rm -f "$tmp/out12" +# Compute $ac_file's index in $config_headers. +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $ac_file | $ac_file:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $ac_file" >`$as_dirname -- $ac_file || +$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X$ac_file : 'X\(//\)[^/]' \| \ + X$ac_file : 'X\(//\)$' \| \ + X$ac_file : 'X\(/\)' \| . 2>/dev/null || +echo X$ac_file | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 +echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + { as_dir=$dirpart/$fdir + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +echo "$as_me: error: cannot create directory $as_dir" >&2;} + { (exit 1); exit 1; }; }; } + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done +done + ;; + "po-directories":C) + for ac_file in $CONFIG_FILES; do + # Support "outfile[:infile[:infile...]]" + case "$ac_file" in + *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; + esac + # PO directories have a Makefile.in generated from Makefile.in.in. + case "$ac_file" in */Makefile.in) + # Adjust a relative srcdir. + ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` + ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" + ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` + # In autoconf-2.13 it is called $ac_given_srcdir. + # In autoconf-2.50 it is called $srcdir. + test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" + case "$ac_given_srcdir" in + .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; + /*) top_srcdir="$ac_given_srcdir" ;; + *) top_srcdir="$ac_dots$ac_given_srcdir" ;; + esac + # Treat a directory as a PO directory if and only if it has a + # POTFILES.in file. This allows packages to have multiple PO + # directories under different names or in different locations. + if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then + rm -f "$ac_dir/POTFILES" + test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" + cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" + POMAKEFILEDEPS="POTFILES.in" + # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend + # on $ac_dir but don't depend on user-specified configuration + # parameters. + if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then + # The LINGUAS file contains the set of available languages. + if test -n "$OBSOLETE_ALL_LINGUAS"; then + test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" + fi + ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` + # Hide the ALL_LINGUAS assigment from automake < 1.5. + eval 'ALL_LINGUAS''=$ALL_LINGUAS_' + POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" + else + # The set of available languages was given in configure.in. + # Hide the ALL_LINGUAS assigment from automake < 1.5. + eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' + fi + # Compute POFILES + # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) + # Compute UPDATEPOFILES + # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) + # Compute DUMMYPOFILES + # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) + # Compute GMOFILES + # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) + case "$ac_given_srcdir" in + .) srcdirpre= ;; + *) srcdirpre='$(srcdir)/' ;; + esac + POFILES= + UPDATEPOFILES= + DUMMYPOFILES= + GMOFILES= + for lang in $ALL_LINGUAS; do + POFILES="$POFILES $srcdirpre$lang.po" + UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" + DUMMYPOFILES="$DUMMYPOFILES $lang.nop" + GMOFILES="$GMOFILES $srcdirpre$lang.gmo" + done + # CATALOGS depends on both $ac_dir and the user's LINGUAS + # environment variable. + INST_LINGUAS= + if test -n "$ALL_LINGUAS"; then + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "$LINGUAS"; then + desiredlanguages="$LINGUAS" + else + desiredlanguages="$ALL_LINGUAS" + fi + for desiredlang in $desiredlanguages; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + INST_LINGUAS="$INST_LINGUAS $presentlang" + fi + done + fi + CATALOGS= + if test -n "$INST_LINGUAS"; then + for lang in $INST_LINGUAS; do + CATALOGS="$CATALOGS $lang.gmo" + done + fi + test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" + sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" + for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do + if test -f "$f"; then + case "$f" in + *.orig | *.bak | *~) ;; + *) cat "$f" >> "$ac_dir/Makefile" ;; + esac + fi + done + fi + ;; + esac + done ;; + + esac +done # for ac_tag + + +{ (exit 0); exit 0; } +_ACEOF +chmod +x $CONFIG_STATUS +ac_clean_files=$ac_clean_files_save + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || { (exit 1); exit 1; } +fi + diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..07a9824 --- /dev/null +++ b/configure.ac @@ -0,0 +1,113 @@ +dnl Process this file with autoconf to produce a configure script. +AC_PREREQ(2.61) +AC_INIT([psmisc],[22.6]) +AC_CONFIG_SRCDIR([src/comm.h]) +AC_CONFIG_HEADER([config.h]) +AC_CONFIG_AUX_DIR([config]) +AM_INIT_AUTOMAKE([1.10]) + +dnl Checks for programs. +AC_PROG_CXX +AC_PROG_CC +#AC_PROG_CPP +AC_PROG_MAKE_SET +AC_PROG_LN_S + +dnl checks for options +AC_SUBST([WITH_SELINUX]) +AC_ARG_ENABLE([selinux], + [AS_HELP_STRING([--enable-selinux], [Enable Security-Enhanced Linux features])], + [enable_selinux=$enableval], + [enable_selinux="no"]) +if test "$enable_selinux" = "yes"; then + AC_DEFINE([WITH_SELINUX], [1], [Use Security-Enhanced Linux features]) + AC_CHECK_LIB([selinux], [getfilecon], [SELINUX_LIB=-lselinux], [ + AC_MSG_ERROR([Cannot find selinux static library]) ]) +fi +AC_SUBST([SELINUX_LIB]) + +dnl ipv4 only option +AC_SUBST([WITH_IPV6]) +AC_ARG_ENABLE([ipv6], + [AS_HELP_STRING([--disable-ipv6], [Disable IPv6 checks (for uClibc)])], + [enable_ipv6=$enableval], + [enable_ipv6="yes"]) +if test "$enable_ipv6" = "yes"; then + AC_DEFINE([WITH_IPV6], [1], [Use IPv6 checks]) +fi + +dnl Checks for libraries. +AC_CHECK_LIB([tinfo], [tgetent], [TERMCAP_LIB=-ltinfo], + [ AC_CHECK_LIB([ncurses], [tgetent], [TERMCAP_LIB=-lncurses], + [ AC_CHECK_LIB([termcap], [tgetent], [TERMCAP_LIB=-ltermcap], + [ AC_MSG_ERROR([Cannot find tinfo, ncurses or termcap libraries]) + ] ) + ] ) + ] ) +AC_SUBST([TERMCAP_LIB]) + +dnl Checks for header files. +AC_HEADER_DIRENT +AC_HEADER_STDC +AC_HEADER_SYS_WAIT +AC_CHECK_HEADERS([arpa/inet.h fcntl.h langinfo.h libintl.h limits.h locale.h mntent.h netdb.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h termios.h unistd.h]) + +dnl Checks for typedefs, structures, and compiler characteristics. +AC_C_CONST +AC_TYPE_PID_T +AC_TYPE_SIZE_T +AC_CHECK_MEMBERS([struct stat.st_rdev]) +AC_TYPE_UID_T +AC_CHECK_MEMBERS([struct user_regs_struct.orig_eax, + struct user_regs_struct.eax, + struct user_regs_struct.ebx, + struct user_regs_struct.ecx, + struct user_regs_struct.edx, + struct user_regs_struct.orig_rax, + struct user_regs_struct.rax, + struct user_regs_struct.rdi, + struct user_regs_struct.rsi, + struct user_regs_struct.rdx], [],[], [#include ]) +AC_CHECK_MEMBERS([struct pt_regs.orig_gpr3, + struct pt_regs.gpr], [],[], [#include ]) +AM_CONDITIONAL(WANT_PEEKFD_I386, + test $ac_cv_member_struct_user_regs_struct_orig_eax = yes && + test $ac_cv_member_struct_user_regs_struct_eax = yes && + test $ac_cv_member_struct_user_regs_struct_ebx = yes && + test $ac_cv_member_struct_user_regs_struct_ecx = yes && + test $ac_cv_member_struct_user_regs_struct_edx = yes ) +AM_CONDITIONAL(WANT_PEEKFD_X86_64, + test $ac_cv_member_struct_user_regs_struct_orig_rax = yes && + test $ac_cv_member_struct_user_regs_struct_rax = yes && + test $ac_cv_member_struct_user_regs_struct_rdi = yes && + test $ac_cv_member_struct_user_regs_struct_rsi = yes && + test $ac_cv_member_struct_user_regs_struct_rdx = yes ) +AM_CONDITIONAL(WANT_PEEKFD_PPC, + test $ac_cv_member_struct_pt_regs_orig_gpr3 = yes && + test $ac_cv_member_struct_pt_regs_gpr = yes ) + +dnl Check for language stuff +AM_GNU_GETTEXT([external]) +AM_GNU_GETTEXT_VERSION([0.16.1]) + +dnl Checks for library functions. +AC_FUNC_CLOSEDIR_VOID +AC_FUNC_GETMNTENT +AC_PROG_GCC_TRADITIONAL +AC_FUNC_LSTAT +AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK +AC_FUNC_MALLOC +AC_FUNC_MEMCMP +AC_FUNC_REALLOC +AC_FUNC_STAT +AC_CHECK_FUNCS([atexit getmntent memset nl_langinfo regcomp rpmatch setlocale socket strcasecmp strchr strdup strerror strpbrk strrchr strtoul]) + +dnl Checks for Large File System +AC_SYS_LARGEFILE + +AC_CONFIG_FILES([Makefile + doc/Makefile + src/Makefile + icons/Makefile + po/Makefile.in]) +AC_OUTPUT diff --git a/debian/README.Debian b/debian/README.Debian new file mode 100644 index 0000000..602ecaf --- /dev/null +++ b/debian/README.Debian @@ -0,0 +1,8 @@ +README for psmisc +================= + +pidof is not installed in this package as it is part of the sysvinit package, +I intend to work with the sysvinit packager about this. + + - Craig + diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..59b6578 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,275 @@ +psmisc (22.6-1) unstable; urgency=low + + * New upstream release + * killall.1 mentions you can use -SIGxxx Closes: #431082 + * peekfd works for x86_64 and PPC + * Updated menu entry + + -- Craig Small Sun, 04 Nov 2007 17:42:30 +1100 + +psmisc (22.5-1) unstable; urgency=low + + * New upstream release + + -- Craig Small Mon, 23 Apr 2007 22:14:16 +1000 + +psmisc (22.4-1) unstable; urgency=low + + * New upstream release + * fuser correctly parses remote TCP ports Closes: #397033 + * Removed extra blank lines in fuser Closes: #386564 + * Added peekfd + * killall using a path doesnt check inodes + + -- Craig Small Tue, 17 Apr 2007 22:09:11 +1000 + +psmisc (22.3-1) unstable; urgency=low + + * New upstream release + * Typo fixed in fuser man page Closes: #358880 + * Return code set correctly in silent mode Closes: #361639 + * Updated standards to 3.7.2 + + -- Craig Small Wed, 9 Aug 2006 21:34:49 +1000 + +psmisc (22.2-1) unstable; urgency=low + + * New upstream release + * Finds unix sockets on all arches, Closes: #338868 + * Swedish PO file updated Closes: #348140 + * Moved to debhelper v5 + + -- Craig Small Wed, 15 Mar 2006 10:25:55 +1100 + +psmisc (22.1-1) unstable; urgency=low + + * New upstream release + * Updated German PO file Closes: #313934 + * fuser -s flag works Closes: #344901 + * fixed grep lines in Makefile for i386 arches Closes: #344172 + + -- Craig Small Thu, 12 Jan 2006 19:01:13 +1100 + +psmisc (21.9-1) unstable; urgency=low + + * New upstream release + * Fixed segfault in pstree -a Closes: #338108 + * fuser finds unix sockets. Closes: #338868 + * fixed print_matches to only print unmatched objects if -a is specified + and to output the header for -v Closes: #342765 + * Fixed sv.po Closes: #337528 + + -- Craig Small Fri, 16 Dec 2005 23:16:29 +1100 + +psmisc (21.8-1) unstable; urgency=low + + * New upstream release + * new fuser Closes: #312560 + * pstree checks for a real tty Closes: #326500 + * pstree shows child threads with {commandname} Closes: #230924 + * Added warning about fuser and tcp/udp access Closes: #327813 + * pstree defaults to ASCII not VT100 until problems with terminals + are fixed Closes: #288856 + * fuser doesnt complain if it cannot scan some mount points Closes: #299153 + * menu entry capitalised Closes: #320616 + * upgrade standards to 3.6.2 + * fuser.1 spells behavior correctly Closes: #337190 + * 21.7 not released, fuser return value bug. Closes: #337591 + + -- Craig Small Sat, 5 Nov 2005 15:58:27 +1100 + +psmisc (21.6-1) unstable; urgency=low + + * New upstream release + - killall aborts if it gets unknown flags Closes: #250794 + - Symbolic link created properly for pstree.x11 Closes: #250096 + - Strange mount points handled better Closes: #178972 + - Warning in killall.1 about process changing names Closes: #187941 + - Fixed groff madness with fuser(1) Debian #298199 + * changed rules to permit cross-build Closes: #284589 + * menu entry now uses text for .x11 and vc for plain pstree + + -- Craig Small Fri, 11 Mar 2005 21:53:10 +1100 + +psmisc (21.5-1) unstable; urgency=low + + * New upstream release + - Lines not truncated with UTF-8 Closes: #151523 + - pstree uses ASCII chars with -A Closes: #240973 + - signames.h not distributed in tar Closes: #240986 + - Manual pages explains -SIG is ignored with no -k Closes: #222935 + + -- Craig Small Tue, 25 May 2004 11:23:07 +1000 + +psmisc (21.4-1) unstable; urgency=low + + * New upstream release + - Typos in killall.1 fixed Closes Debian: #198189 + - fuser -ki now tells user default is N Closes Debian: #197356 + - pstree -a doesn't print space at end of line Closes Debian: #182099 + - pstree.x11 now just pstree with a trick Closes Debian: #201042 + - Icons for pstree, thankyou Tatlin! Closes Debian: #192636 + - Removed message if no processes found and excess blanks removed + Closes: #212795 + + -- Craig Small Fri, 28 Nov 2003 23:06:45 +1100 + +psmisc (21.3-1) unstable; urgency=low + + * New upstream version + - SELinux uses -d flag, so signals starting with S work + Closes: #19370, #163360 + - Long command lines don't segfault Closes: #187241 + * Added most of Torsten SELINUX patch Closes: #192122 + * Menu item doesn have path to x-terminal-emulator Closes: #129232 + + + -- Craig Small Thu, 29 May 2003 10:03:39 +1000 + +psmisc (21.2-1) unstable; urgency=high + + * Fixes serious bug in pstree where pstree -a doesnt have a variable + set + + -- Craig Small Fri, 27 Sep 2002 21:34:23 +1000 + +psmisc (21.1-1) unstable; urgency=low + + * New upstream version + - config.guess and config.sub fixes + - pstree -a extra bracket problem fixed, Closes: #96791 + - LFS support Closes: #129157, #156017 + - fuser -k return means no Closes: #152524 + - UTF8 problem fixed Closes: #140960 + - Works on Hurd (I think, no replies from Hurd folk) Closes: #157064 + - Minor change to killall.1 for less ambiguous Closes: #127851 + + -- Craig Small Thu, 26 Sep 2002 10:12:59 +1000 + +psmisc (21-3) unstable; urgency=low + + * build-depends needs gettext otherwise conflicts happen Closes: + #147131 + + -- Craig Small Fri, 17 May 2002 11:21:41 +1000 + +psmisc (21-2) unstable; urgency=low + + * New config.guess/sub Closes: #147082 + + -- Craig Small Thu, 16 May 2002 08:41:24 +1000 + +psmisc (21-1) unstable; urgency=low + + * New upstream source + - Fixes signal name problem Closes: #131839 + + -- Craig Small Wed, 15 May 2002 22:12:16 +1000 + +psmisc (20.2-2) unstable; urgency=low + + * Makefile did not clean signames.h which gave bad signal numbers + Closes: #116172 + * Changed section field for FTP Cabal Closes: #116168 + + -- Craig Small Fri, 19 Oct 2001 10:42:23 +1000 + +psmisc (20.2-1) unstable; urgency=low + + * New upstream source + - pstree -u fix Closes: #98803 + - fuser -n tcp works for kernel2.4.12 Closes: #115672 + - typo fixed in pidof.1 Closes: #110789 + * Do not install pidof.1 Closes: #107461 + + -- Craig Small Thu, 18 Oct 2001 10:22:20 +1000 + +psmisc (20.1-1) unstable; urgency=low + + * New upstream version + - killall -# works again, Closes: #90742, #92044, #92087 + + -- Craig Small Sat, 31 Mar 2001 21:17:18 +1000 + +psmisc (20-1) unstable; urgency=low + + * New upstream version + - getopt used on command line, Closes #48541 + - Less assumption of cmd line, Closes #53337 + - Doesn't use losetup Closes: #58714 + + + -- Craig Small Mon, 19 Mar 2001 14:21:00 +1100 + +psmisc (19-3) unstable; urgency=low + + * New standards version + * Added menu hints Closes: #80045 + * Changed call from xterm to x-terminal emulator Closes: #59009 + + -- Craig Small Sun, 31 Dec 2000 17:27:30 +1100 + +psmisc (19-2) unstable; urgency=low + + * Group transistions properly handled Closes: #47475 + * pstree no longer truncates Closes: #53943 + * Compile with -O2 to follow standard. + + -- Craig Small Tue, 4 Jan 2000 10:27:33 +1100 + +psmisc (19-1) unstable; urgency=low + + * New upstream Version Closes: #50813 + + -- Craig Small Sun, 5 Dec 1999 19:31:17 +1100 + +psmisc (18-3) unstable; urgency=low + + * Fixes pstree on a X system problem Closes: 45510, 46243 + * Now has all that /usr/share stuff + + -- Craig Small Thu, 30 Sep 1999 10:32:06 +1000 + +psmisc (18-2) unstable; urgency=low + + * Fixed download source Closes: #38436 + + -- Craig Small Fri, 30 Jul 1999 11:29:06 +1000 + +psmisc (18-1) unstable; urgency=low + + * New upstream source + * Doesn't try to print null string for proc names (Bug #23645 ) + + -- Craig Small Mon, 4 Jan 1999 14:11:32 +1100 + +psmisc (17-2) unstable; urgency=low + + * Now with ncurses 4 + * Menu item is now in Apps/System (Bug #27439 ) + * X11 version of pstree now waits for return to be pressed (Bug #24102 #17466 ) + + -- Craig Small Sun, 1 Nov 1998 16:06:13 +1100 + +psmisc (17-1) unstable; urgency=low + + * New upstream version. + + -- Craig Small Wed, 15 Apr 1998 08:50:28 +1000 + +psmisc (16-2) frozen unstable; urgency=low + + * README.debian explains why pidof is not here. (Bug #16981 ) + * Patched fuser so that it works with new kernels (Bug #17064 ) + * CHANGES renamed to changelog (Bug #17290 ) + * Package now replaces procps <<1.2 (Bug #20394 ) + * Fixed description (Bug #20255 ) + -- Craig Small Tue, 17 Mar 1998 09:49:20 +1100 + +psmisc (16-1) unstable; urgency=low + + * Initial Release. + * procps upstream source split this off at version 1.2 + + -- Craig Small Fri, 2 Jan 1998 11:12:00 +1100 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +5 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..541ea14 --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: psmisc +Section: admin +Priority: optional +Maintainer: Craig Small +Build-Depends: debhelper (>= 5), libncurses-dev, gettext +Standards-Version: 3.7.2 + +Package: psmisc +Architecture: any +Depends: ${shlibs:Depends} ${misc:Depends} +Replaces: procps (<< 1:1.2) +Description: Utilities that use the proc filesystem + This package contains three little utilities that use the proc FS: + . + `fuser' identifies processes using files (similar to Sun's or SGI's fuser). + `killall' kills processes by name, e.g. killall -HUP named. `pstree' shows + the currently running processes as a tree + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..5cb2b16 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,15 @@ +This package was debianized by Craig Small on +Fri, 2 Jan 1998 11:12:00 +1100. + +It was downloaded from http://psmisc.sourceforge.net/ + +Copyright: + +psmisc (fuser, killall and pstree) program code, documentation and +auxiliary programs are +Copyright 1993,1994,1995,1996,1997,1998,1999,2000,2001 Werner Almesberger +and Craig Small + +This program is licensed under the GPL, on Debian systems you will find a full +text of the GPL at +/usr/share/common-licenses/GPL diff --git a/debian/dirs b/debian/dirs new file mode 100644 index 0000000..74dbbe3 --- /dev/null +++ b/debian/dirs @@ -0,0 +1,3 @@ +bin +usr/bin +usr/share/pixmaps diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..e845566 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +README diff --git a/debian/menu b/debian/menu new file mode 100644 index 0000000..4e987f0 --- /dev/null +++ b/debian/menu @@ -0,0 +1,9 @@ +?package(psmisc):needs="text" section="Applications/System/Monitoring" \ + title="Pstree" \ + description="Displays a tree of processes" \ + command="/usr/bin/pstree.x11" \ + icon="/usr/share/pixmaps/pstree16.xpm" +?package(psmisc):needs="vc" section="Applications/System/Monitoring" \ + title="Pstree" \ + description="Displays a tree of processes" \ + command="/usr/bin/pstree" diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..e2a99e7 --- /dev/null +++ b/debian/rules @@ -0,0 +1,82 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# This file is public domain software, originally written by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DEB_BUILD_GNU_TYPE = $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_HOST_GNU_TYPE = $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) +CONFARGS = --host=$(DEB_HOST_GNU_TYPE) +endif + +build: build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + ./configure --prefix=/usr --mandir=\$${prefix}/share/man $(CONFARGS) + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + [ ! -f Makefile ] || $(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/ + $(MAKE) prefix=$(CURDIR)/debian/psmisc/usr install + # fuser is in /bin + mv $(CURDIR)/debian/psmisc/usr/bin/fuser $(CURDIR)/debian/psmisc/bin + (cd $(CURDIR)/debian/psmisc/usr/share/man/man1 && ln -s pstree.1 pstree.x11.1) + install -m 644 icons/pstree16.xpm $(CURDIR)/debian/psmisc/usr/share/pixmaps/ + install -m 644 icons/pstree32.xpm $(CURDIR)/debian/psmisc/usr/share/pixmaps/ + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot +# dh_installdebconf + dh_installdocs +# dh_installexamples + dh_installmenu +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron + dh_installman + dh_installinfo + dh_installchangelogs ChangeLog +# dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + dh_installdeb +# dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install diff --git a/doc/Makefile.am b/doc/Makefile.am new file mode 100644 index 0000000..1185f82 --- /dev/null +++ b/doc/Makefile.am @@ -0,0 +1,4 @@ + +man_MANS = fuser.1 killall.1 peekfd.1 pstree.1 + +EXTRA_DIST = $(man_MANS) diff --git a/doc/Makefile.in b/doc/Makefile.in new file mode 100644 index 0000000..96ba66e --- /dev/null +++ b/doc/Makefile.in @@ -0,0 +1,384 @@ +# Makefile.in generated by automake 1.10 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = doc +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ + $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \ + $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ + $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +man1dir = $(mandir)/man1 +am__installdirs = "$(DESTDIR)$(man1dir)" +NROFF = nroff +MANS = $(man_MANS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GMSGFMT = @GMSGFMT@ +GMSGFMT_015 = @GMSGFMT_015@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INTLLIBS = @INTLLIBS@ +INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBINTL = @LIBINTL@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBINTL = @LTLIBINTL@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MSGFMT = @MSGFMT@ +MSGFMT_015 = @MSGFMT_015@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +POSUB = @POSUB@ +SELINUX_LIB = @SELINUX_LIB@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +TERMCAP_LIB = @TERMCAP_LIB@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +WITH_IPV6 = @WITH_IPV6@ +WITH_SELINUX = @WITH_SELINUX@ +XGETTEXT = @XGETTEXT@ +XGETTEXT_015 = @XGETTEXT_015@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +man_MANS = fuser.1 killall.1 peekfd.1 pstree.1 +EXTRA_DIST = $(man_MANS) +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu doc/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-man1: $(man1_MANS) $(man_MANS) + @$(NORMAL_INSTALL) + test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)" + @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ + for i in $$l2; do \ + case "$$i" in \ + *.1*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ + if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ + else file=$$i; fi; \ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + case "$$ext" in \ + 1*) ;; \ + *) ext='1' ;; \ + esac; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed -e 's/^.*\///'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ + echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ + $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst"; \ + done +uninstall-man1: + @$(NORMAL_UNINSTALL) + @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ + for i in $$l2; do \ + case "$$i" in \ + *.1*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + case "$$ext" in \ + 1*) ;; \ + *) ext='1' ;; \ + esac; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed -e 's/^.*\///'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ + echo " rm -f '$(DESTDIR)$(man1dir)/$$inst'"; \ + rm -f "$(DESTDIR)$(man1dir)/$$inst"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(MANS) +installdirs: + for dir in "$(DESTDIR)$(man1dir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-man + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: install-man1 + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-man + +uninstall-man: uninstall-man1 + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-man1 install-pdf install-pdf-am install-ps \ + install-ps-am install-strip installcheck installcheck-am \ + installdirs maintainer-clean maintainer-clean-generic \ + mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ + uninstall-am uninstall-man uninstall-man1 + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/doc/fuser.1 b/doc/fuser.1 new file mode 100644 index 0000000..8f410b2 --- /dev/null +++ b/doc/fuser.1 @@ -0,0 +1,174 @@ +.TH FUSER 1 2005-11-05 "Linux" "User Commands" +.SH NAME +fuser \- identify processes using files or sockets +.SH SYNOPSIS +.ad l +.B fuser +.RB [ \-a | \-s | \-c ] +.RB [ \-4 | \-6 ] +.RB [ \-n\ +.IR space\ ] +.RB [ \-k +.RB [ \-i ] +.RB [ \- \fIsignal +] ] +.RB [ \-muvf ] +.IR name " ..." +.br +.B fuser +.RB \-l +.br +.B fuser +.RB \-V +.ad b +.SH DESCRIPTION +.B fuser +displays the PIDs of processes using the specified files or file systems. +In the default display mode, each file name is followed by a letter denoting +the type of access: +.RS +.IP \fBc\fP +current directory. +.IP \fBe\fP +executable being run. +.IP \fBf\fP +open file. \fBf\fP is omitted in default display mode. +.IP \fBF\fP +open file for writing. \fBF\fP is omitted in default display mode. +.IP \fBr\fP +root directory. +.IP \fBm\fP +mmap'ed file or shared library. +.RE +.LP +\fBfuser\fP returns a non-zero return code if none of the specified files +is accessed or in case of a fatal error. If at least one access has been +found, \fBfuser\fP returns zero. +.PP +In order to look up processes using TCP and UDP sockets, the corresponding +name space has to be selected with the \fB\-n\fP option. By default +\fBfuser\fP will look in both IPv6 and IPv4 sockets. To change the default, +behavior, use the \fB\-4\fP and \fB\-6\fP options. The socket(s) can +be specified by the local and remote port, and the remote address. All fields +are optional, but commas in front of missing fields must be present: + +.RB \fB[\fP\fIlcl_port\fP\fB][\fP,\fB[\fP\fIrmt_host\fP\fB][\fP,\fB[\fIrmt_port\fP\fB]]] + +Either symbolic or numeric values can be used for IP addresses and port +numbers. +.PP +\fBfuser\fP outputs only the PIDs to stdout, everything else is sent to stderr. +.SH OPTIONS +.IP \fB\-a\fP +Show all files specified on the command line. By default, only files that are +accessed by at least one process are shown. +.IP \fB\-c\fP +Same as \-m option, used for POSIX compatibility. +.IP \fB\-f\fP +Silently ignored, used for POSIX compatibility. +.IP \fB\-k\fP +Kill processes accessing the file. Unless changed with \fB\-\fP\fIsignal\fP, +SIGKILL is sent. An \fBfuser\fP process never kills itself, but may kill +other \fBfuser\fP processes. The effective user ID of the process executing +\fBfuser\fP is set to its real user ID before attempting to kill. +.IP \fB\-i\fP +Ask the user for confirmation before killing a process. This option is +silently ignored if \fB\-k\fP is not present too. +.IP \fB\-l\fP +List all known signal names. +.IP \fB\-m\fP +\fIname\fP specifies a file on a mounted file system or a block device that +is mounted. All processes accessing files on that file system are listed. +If a directory file is specified, it is automatically changed to +\fIname\fP/. to use any file system that might be mounted on that +directory. +.IP \fB\-n\ \fIspace\fP +Select a different name space. The name spaces \fBfile\fP (file names, the +default), \fBudp\fP (local UDP ports), and \fBtcp\fP (local TCP ports) are +supported. For ports, either the port number or the symbolic name can be +specified. If there is no ambiguity, the shortcut notation +\fIname\fB/\fPIspace\fR (e.g. \fI80\fB/\fPtcp\fR ) can be used. +.IP \fB\-s\fP +Silent operation. \fB\-u\fP and \fB\-v\fP are ignored in this mode. +\fB\-a\fP must not be used with \fB\-s\fP. +.IP \fB\-\fIsignal\fP +Use the specified signal instead of SIGKILL when killing processes. Signals +can be specified either by name (e.g. \fB\-HUP\fP) or by number +(e.g. \fB\-1\fP). This option is silently ignored if the \fB\-k\fP option +is not used. +.IP \fB\-u\fP +Append the user name of the process owner to each PID. +.IP \fB\-v\fP +Verbose mode. Processes are shown in a \fBps\fP-like style. The fields PID, +USER and COMMAND are similar to \fBps\fP. ACCESS shows how the process +accesses the file. If the access is by the kernel (e.g. in the case of a +mount point, a swap file, etc.), \fBkernel\fP is shown instead of the PID. +.IP \fB\-V\fP +Display version information. +.IP \fB\-4\fP +Search only for IPv4 sockets. This option must not be used with the +\fB\-6\fP option and only has an effect with the tcp and udp namespaces. +.IP \fB\-6\fP +Search only for IPv6 sockets. This option must not be used with the \fB\-4\fP +option and only has an effect with the tcp and udp namespaces. +.IP \fB\-\fP +Reset all options and set the signal back to SIGKILL. +.SH FILES +.nf +/proc location of the proc file system +.fi +.SH EXAMPLES +\fBfuser \-km /home\fP kills all processes accessing the file system /home +in any way. +.LP +\fBif fuser \-s /dev/ttyS1; then :; else \fIsomething\fP; fi\fR invokes +\fIsomething\fP if no other process is using /dev/ttyS1. +.LP +\fBfuser telnet/tcp\fP shows all processes at the (local) TELNET port. +.SH RESTRICTIONS +Processes accessing the same file or file system several times in the same way +are only shown once. +.PP +If the same object is specified several times on the command line, some of +those entries may be ignored. +.PP +\fBfuser\fP may only be able to gather partial information unless run with +privileges. As a consequence, files opened by processes belonging to other +users may not be listed and executables may be classified as mapped only. +.PP +Installing \fBfuser\fP SUID root will avoid problems associated with +partial information, but may be undesirable for security and privacy +reasons. +.PP +\fBudp\fP and \fBtcp\fP name spaces, and UNIX domain sockets can't be +searched with kernels older than 1.3.78. +.PP +\fBudp\fP and \fBtcp\fP currently work with IPv6 and IPv4, but the +address fields can only be IPv4 addresses. +.PP +Accesses by the kernel are only shown with the \fB\-v\fP option. +.PP +The \fB\-k\fP option only works on processes. If the user is the kernel, +\fBfuser\fP will print an advice, but take no action beyond that. +.SH BUGS +.PP +fuser \-m /dev/sgX will show (or kill with the \-k flag) all processes, even +if you don't have that device configured. There may be other devices it +does this for too. +.PP +.B fuser +cannot report on any processes that it doesn't have permission to look at +the file descriptor table for. The most common time this problem occurs +is when looking for TCP or UDP sockets when running +.B fuser +as a non-root user. In this case +.B fuser +will report no access +.SH AUTHORS +.PP +Werner Almesberger +.PP +Craig Small +.SH "SEE ALSO" +.BR kill "(1), " killall "(1), " lsof "(8), " ps "(1), " kill (2). +.\"{{{}}} diff --git a/doc/killall.1 b/doc/killall.1 new file mode 100644 index 0000000..61951fe --- /dev/null +++ b/doc/killall.1 @@ -0,0 +1,113 @@ +.TH KILLALL 1 2007-08-09 "Linux" "User Commands" +.SH NAME +killall \- kill processes by name +.SH SYNOPSIS +.ad l +.B killall +.RB [ \-Z , \-\-context +.IR pattern ] +.RB [ \-e , \-\-exact ] +.RB [ \-g , \-\-process\-group ] +.RB [ \-i , \-\-interactive ] +.RB [ \-q , \-\-quiet ] +.RB [ \-r , \-\-regexp ] +.RB [ \-s , \-\-signal +.IR signal ] +.RB [ \-u , \-\-user +.IR user ] +.RB [ \-v , \-\-verbose ] +.RB [ \-w , \-\-wait ] +.RB [ \-I , \-\-ignore-case ] +.RB [ \-V, \-\-version ] +.RB [ \-\- ] +.I name ... +.br +.B killall +.RB \-l +.br +.B killall +.RB \-V, \-\-version +.ad b +.SH DESCRIPTION +.B killall +sends a signal to all processes running any of the specified commands. If no +signal name is specified, SIGTERM is sent. +.PP +Signals can be specified either by name (e.g. \fB\-HUP\fP or \fB-SIGHUP\fP ) +or by number (e.g. \fB\-1\fP) or by option \fB-s\fP. +.PP +If the command name is not regular expression (option \fB-r\fP) +and contains a slash (\fB/\fP), processes executing that +particular file will be selected for killing, independent of their name. +.PP +\fBkillall\fP returns a zero return code if at least one process has been +killed for each listed command, or no commands were listed and at least +one process matched the -u and -Z search criteria. \fBkillall\fP returns +non-zero otherwise. +.PP +A \fBkillall\fP process never kills itself (but may kill other \fBkillall\fP +processes). +.SH OPTIONS +.IP "\fB\-e\fP, \fB\-\-exact\fP" +Require an exact match for very long names. If a command name is longer +than 15 characters, the full name may be unavailable (i.e. it is swapped +out). In this case, \fBkillall\fP will kill everything that matches within +the first 15 characters. With \fB\-e\fP, such entries are skipped. +\fBkillall\fP prints a message for each skipped entry +if \fB\-v\fP is specified in addition to \fB\-e\fP, +.IP "\fB\-I\fP, \fB\-\-ignore\-case\fP" +Do case insensitive process name match. +.IP "\fB\-g\fP, \fB\-\-process\-group\fP" +Kill the process group to which the process belongs. The kill signal is only +sent once per group, even if multiple processes belonging to the same process +group were found. +.IP "\fB\-i\fP, \fB\-\-interactive\fP" +Interactively ask for confirmation before killing. +.IP "\fB\-l\fP, \fB\-\-list\fP" +List all known signal names. +.IP "\fB\-q\fP, \fB\-\-quiet\fP" +Do not complain if no processes were killed. +.IP "\fB\-r\fP, \fB\-\-regexp\fP" +Interpret process name pattern as an extended regular expression. +.IP "\fB\-s\fP, \fB\-\-signal\fP" +Send this signal instead of SIGTERM. +.IP "\fB\-u\fP, \fB\-\-user\fP" +Kill only processes the specified user owns. Command names are optional. +.IP "\fB\-v\fP, \fB\-\-verbose\fP" +Report if the signal was successfully sent. +.IP "\fB\-V\fP, \fB\-\-version\fP" +Display version information. +.IP "\fB\-w\fP, \fB\-\-wait\fP" +Wait for all killed processes to die. \fBkillall\fP checks once per second if +any of the killed processes still exist and only returns if none are left. +Note that \fBkillall\fP may wait forever if the signal was ignored, had no +effect, or if the process stays in zombie state. +.IP "\fB\-Z\fP, \fB\-\-context\fP" +(SELinux Only) Specify security context: kill only processes having security +context that match with given expended regular expression pattern. Must precede +other arguments on the command line. Command names are optional. +.SH FILES +.nf +/proc location of the proc file system +.fi +.SH "KNOWN BUGS" +Killing by file only works for executables that are kept open during +execution, i.e. impure executables can't be killed this way. +.PP +Be warned that typing \fBkillall\fP \fIname\fP may not have the desired +effect on non-Linux systems, especially when done by a privileged +user. +.PP +\fBkillall \-w\fP doesn't detect if a process disappears and is replaced by +a new process with the same PID between scans. +.PP +If processes change their name, \fBkillall\fP may not be able to match +them correctly. +.SH AUTHORS +Werner Almesberger wrote the original version +of psmisc. Since version 20 Craig Small +can be blamed. +.SH "SEE ALSO" +.BR kill "(1), " fuser "(1), " pgrep "(1), " pidof "(1), " pkill "(1), " +.BR ps "(1), " kill (2). +.\"{{{}}} diff --git a/doc/peekfd.1 b/doc/peekfd.1 new file mode 100644 index 0000000..eaaed1e --- /dev/null +++ b/doc/peekfd.1 @@ -0,0 +1,55 @@ +.\" Process this file with +.\" groff -man -Tascii foo.1 +.\" +.TH PEEKFD 1 "APRIL 2007" Linux "User Commands" +.SH NAME +peekfd \- peek at file descriptors of running processes +.SH SYNOPSIS +.B peekfd +.RB [ \-8 , \-\-eight\-bit\-clean ] +.RB [ \-n , \-\-no\-headers ] +.RB [ \-f , \-\-follow ] +.RB [ \-d , \-\-duplicates\-removed ] +.RB [ \-V , \-\-version ] +.RB [ \-h , \-\-help ] +.I pid +.RI [ fd ] +.RI [ fd ] +.B ... +.SH DESCRIPTION +.B peekfd +attaches to a running process and intercepts all reads +and writes to file descriptors. You can specify the +desired file descriptor numbers or dump all of them. +.SH OPTIONS +.IP -8 +Do no post-processing on the bytes being read or written. +.IP -n +Do not display headers indicating the source of the bytes dumped. +.IP -c +Also dump the requested file descriptor activity in any new child processes that are created. +.IP -d +Remove duplicate read/writes from the output. If you're looking at a tty with echo, you might want this. +.IP -v +Display a version string. +.IP -h +Display a help message. +.SH FILES +.I /proc/*/fd +.RS +Not used but useful for the user to look at to get good file descriptor numbers. +.SH ENVIRONMENT +None. +.SH DIAGNOSTICS +The following diagnostics may be issued on stderr: + +.B +Error attaching to pid ... +.RS +An unknown error occured while attempted to attach to a process.. you may need to be root. +.SH BUGS +Probably lots. Don't be surprised if the process you are monitoring dies. +.SH AUTHOR +Trent Waddington +.SH "SEE ALSO" +.BR ttysnoop (8) diff --git a/doc/pstree.1 b/doc/pstree.1 new file mode 100644 index 0000000..c7b122c --- /dev/null +++ b/doc/pstree.1 @@ -0,0 +1,108 @@ +.TH PSTREE 1 2004-11-09 "Linux" "User Commands" +.SH NAME +pstree \- display a tree of processes +.SH SYNOPSIS +.ad l +.B pstree +.RB [ \-a ] +.RB [ \-c ] +.RB [ \-h | \-H \fIpid\fB ] +.RB [ \-l ] +.RB [ \-n ] +.RB [ \-p ] +.RB [ \-u ] +.RB [ \-Z ] +.RB [ \-A | \-G | \-U ] +.RB [ \fIpid\fB | \fIuser\fB] +.br +.B pstree +.RB \-V +.ad b +.SH DESCRIPTION +.B pstree +shows running processes as a tree. The tree is rooted at either +\fIpid\fP or \fBinit\fP if \fIpid\fP is omitted. If a user name is specified, +all process trees rooted at processes owned by that user are shown. +.PP +\fBpstree\fP visually merges identical branches by putting them in square +brackets and prefixing them with the repetition count, e.g. +.nf +.sp + init\-+\-getty + |\-getty + |\-getty + `\-getty +.sp +.fi +becomes +.nf +.sp + init\-\-\-4*[getty] +.sp +.fi +.PP +.PP +Child threads of a process are found under the parent process and are shown +with the process name in curly braces, e.g. +.nf +.sp + icecast2\-\-\-13*[{icecast2}] +.sp +.fi +.PP +If \fBpstree\fR is called as \fBpstree.x11\fR then it will prompt the user +at the end of the line to press return and will not return until that +has happened. This is useful for when \fBpstree\fR is run in a xterminal. + +.SH OPTIONS +.IP \fB\-a\fP +Show command line arguments. If the command line of a process is swapped out, +that process is shown in parentheses. \fB\-a\fP implicitly disables compaction. +.IP \fB\-A\fP +Use ASCII characters to draw the tree. +.IP \fB\-c\fP +Disable compaction of identical subtrees. By default, subtrees are compacted +whenever possible. +.IP \fB\-G\fP +Use VT100 line drawing characters. +.IP \fB\-h\fP +Highlight the current process and its ancestors. This is a no-op if the +terminal doesn't support highlighting or if neither the current process +nor any of its ancestors are in the subtree being shown. +.IP \fB\-H\fP +Like \fB\-h\fP, but highlight the specified process instead. Unlike with +\fB\-h\fP, \fBpstree\fP fails when using \fB\-H\fP if highlighting is not +available. +.IP \fB\-l\fP +Display long lines. By default, lines are truncated to the display width or +132 if output is sent to a non-tty or if the display width is unknown. +.IP \fB\-n\fP +Sort processes with the same ancestor by PID instead of by name. (Numeric +sort.) +.IP \fB\-p\fP +Show PIDs. PIDs are shown as decimal numbers in parentheses after each +process name. \fB\-p\fP implicitly disables compaction. +.IP \fB\-u\fP +Show uid transitions. Whenever the uid of a process differs from the uid of +its parent, the new uid is shown in parentheses after the process name. +.IP \fB\-U\fP +Use UTF-8 (Unicode) line drawing characters. Under Linux 1.1-54 and above, +UTF-8 mode is entered on the console with \fBecho \-e '\\033%8'\fP and left +with \fBecho \-e '\\033%@'\fP +.IP \fB\-V\fP +Display version information. +.IP \fB\-Z\fP +(SELinux) Show security context for each process. +.SH FILES +.nf +/proc location of the proc file system +.fi +.SH AUTHORS +Werner Almesberger +Craig Small +.SH BUGS +Some character sets may be incompatible with the VT100 characters. + +.SH "SEE ALSO" +.BR ps "(1), " top (1). +.\"{{{}}} diff --git a/icons/Makefile.am b/icons/Makefile.am new file mode 100644 index 0000000..b131f56 --- /dev/null +++ b/icons/Makefile.am @@ -0,0 +1,2 @@ + +EXTRA_DIST = psmisc16.gif psmisc32.gif pstree16.xpm pstree32.xpm diff --git a/icons/Makefile.in b/icons/Makefile.in new file mode 100644 index 0000000..7180ea4 --- /dev/null +++ b/icons/Makefile.in @@ -0,0 +1,328 @@ +# Makefile.in generated by automake 1.10 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = icons +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ + $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \ + $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ + $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GMSGFMT = @GMSGFMT@ +GMSGFMT_015 = @GMSGFMT_015@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INTLLIBS = @INTLLIBS@ +INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBINTL = @LIBINTL@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBINTL = @LTLIBINTL@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MSGFMT = @MSGFMT@ +MSGFMT_015 = @MSGFMT_015@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +POSUB = @POSUB@ +SELINUX_LIB = @SELINUX_LIB@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +TERMCAP_LIB = @TERMCAP_LIB@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +WITH_IPV6 = @WITH_IPV6@ +WITH_SELINUX = @WITH_SELINUX@ +XGETTEXT = @XGETTEXT@ +XGETTEXT_015 = @XGETTEXT_015@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +EXTRA_DIST = psmisc16.gif psmisc32.gif pstree16.xpm pstree32.xpm +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu icons/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu icons/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile +installdirs: +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/icons/psmisc16.gif b/icons/psmisc16.gif new file mode 100644 index 0000000000000000000000000000000000000000..2143306ffde15fa19a288b903ab498a79744a004 GIT binary patch literal 243 zcmV}Nk%w1VGsZi0K@<0 zl5sX|M?7@o6K44XA^8LW00062EC2ui01yBW06+zBpdgN9DMrk3JyX|RQ{fOvIoyo& zRFPRu0AGng6j_9~h(wZ^NC*VQXx9N)G7l)=P^kn=mIk2F5Sq=5K>_8sm2W t93!GKUU4`S1Q!GxCo>5S6ACK?RRx4683!C11ONa84>e|EXPqJ;06To}R6PIy literal 0 HcmV?d00001 diff --git a/icons/psmisc32.gif b/icons/psmisc32.gif new file mode 100644 index 0000000000000000000000000000000000000000..567041dfbf7e33f96551b1335a6e756c373ace7e GIT binary patch literal 513 zcmV+c0{;C+Nk%w1VITk?0K@_SP8<0 zl5sX|M?7@o6K44XA^8LW00062EC2ui03ZM$06+!*pdgN9X`W~~tkF71Ok7n2mkL1? zGY=yjlE*_Laa0sY2cgrs94487NyE5sI2w|s0|0cS7K=c9Lp=lubh%t8xC#!PV@{Yn z9LNhnaVfPN84(EzOC1Ccdq+qF85T?#7Z(XqYaZm0F^kEj74HonP`t63Iat6dhN7Nr>S(E_7JkQqXJ7JELzQpfM*eb z3xpJC6d>xsfdhITaG2mFK?g_=pcLS#C&S4R5#Ve~Fed|)Jk<0s>2jdJ6%qp;%&1@p zKp1I<$Yq0e;Gs=QXd_sdb)W->0UG9-n~?26hpY0K0uX585+=qX#AL#R4+msaApih7 D1G&0) literal 0 HcmV?d00001 diff --git a/icons/pstree16.xpm b/icons/pstree16.xpm new file mode 100644 index 0000000..4f7e412 --- /dev/null +++ b/icons/pstree16.xpm @@ -0,0 +1,50 @@ +/* XPM */ +static char * icon_16x16_xpm[] = { +"16 16 31 1", +" c None", +". c #4E1C0D", +"+ c #A1CDA4", +"@ c #73F91C", +"# c #D4880C", +"$ c #8D320A", +"% c #DE8F69", +"& c #67FC03", +"* c #AA6D53", +"= c #99F56C", +"- c #AA9177", +"; c #AA4509", +"> c #6CF10A", +", c #CB7502", +"' c #3B7529", +") c #D06938", +"! c #A5610F", +"~ c #86D83B", +"{ c #CC8346", +"] c #B97428", +"^ c #864909", +"/ c #7FF432", +"( c #C65707", +"_ c #709081", +": c #BD300E", +"< c #68FC04", +"[ c #A44C36", +"} c #757408", +"| c #60E804", +"1 c #927136", +"2 c #6D473C", +" ", +" ", +" ,,, _ ", +" ,#%{,): ", +" ###,]!({ ", +" %#{#,*;(:) ", +" ##{]][^]$$; ", +" ,,{]#{());$:$1 ", +" {,*:!^22:^%)$- ", +" {)$-)^;:!$2.%1 ", +" !(2._[!$$.*((+ ", +" {[*1}$..$!- ", +" ^. ", +" .' ", +" _'.'' ", +" "}; diff --git a/icons/pstree32.xpm b/icons/pstree32.xpm new file mode 100644 index 0000000..ed79a82 --- /dev/null +++ b/icons/pstree32.xpm @@ -0,0 +1,66 @@ +/* XPM */ +static char * icon_32x32_xpm[] = { +"32 32 31 1", +" c None", +". c #4E1C0D", +"+ c #A1CDA4", +"@ c #73F91C", +"# c #D4880C", +"$ c #8D320A", +"% c #DE8F69", +"& c #67FC03", +"* c #AA6D53", +"= c #99F56C", +"- c #AA9177", +"; c #AA4509", +"> c #6CF10A", +", c #CB7502", +"' c #3B7529", +") c #D06938", +"! c #A5610F", +"~ c #86D83B", +"{ c #CC8346", +"] c #B97428", +"^ c #864909", +"/ c #7FF432", +"( c #C65707", +"_ c #709081", +": c #BD300E", +"< c #68FC04", +"[ c #A44C36", +"} c #757408", +"| c #60E804", +"1 c #927136", +"2 c #6D473C", +" ", +" ", +" ", +" ", +" ! - - ", +" ,(,,,) _ ", +" ],{#{,,,) ]:1 ", +" ,###%{{#,()(:: ", +" ###{###],,,(($1 ", +" ######,]]]!](;{ 1 ", +" %%##{{#,(;)*;;([[:_ ", +" %%%##{###,)*;;;(;::)- ", +" %%###%){,)))$^!);;:$;: ", +" %####{{]{]*[$^*];$$$;;$ ", +" -]%)####,,!!!{1!]];:;^;;$:{ ", +" -,,,({]]]##{,()){);;;$$:;$;1 ", +" +{,,,!,]*]!!]])(;;;)$22:*^[+ ", +" {,,!**:$!1^.2-2[:!^[%{):$[- ", +" {))$*--[[1.$.[;!;^$[[$$.[$1 ", +" {%)[$1-))[^[;;:;!:$22..*%11 ", +" {#)[{-;$22$!$;(;;;$[_22[::-+ ", +" #!(((2$.__.[$!!$$$$.$*)(:({+ ", +" }^*;$![.[!$!$$2...$::(;^}}1 ", +" #{_[[*21#}$$....^$$!2- ", +" },:11} }2..2+ __ _ ", +" ^.. ", +" }^^} ", +" '..' ", +" '.'''' ", +" _ ''.''''' + ", +" +++___''''_+++_+++ ", +" "}; diff --git a/m4/gettext.m4 b/m4/gettext.m4 new file mode 100644 index 0000000..91c345e --- /dev/null +++ b/m4/gettext.m4 @@ -0,0 +1,419 @@ +# gettext.m4 serial 59 (gettext-0.16.1) +dnl Copyright (C) 1995-2006 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. +dnl +dnl This file can can be used in projects which are not available under +dnl the GNU General Public License or the GNU Library General Public +dnl License but which still want to provide support for the GNU gettext +dnl functionality. +dnl Please note that the actual code of the GNU gettext library is covered +dnl by the GNU Library General Public License, and the rest of the GNU +dnl gettext package package is covered by the GNU General Public License. +dnl They are *not* in the public domain. + +dnl Authors: +dnl Ulrich Drepper , 1995-2000. +dnl Bruno Haible , 2000-2006. + +dnl Macro to add for using GNU gettext. + +dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). +dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The +dnl default (if it is not specified or empty) is 'no-libtool'. +dnl INTLSYMBOL should be 'external' for packages with no intl directory, +dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. +dnl If INTLSYMBOL is 'use-libtool', then a libtool library +dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, +dnl depending on --{enable,disable}-{shared,static} and on the presence of +dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library +dnl $(top_builddir)/intl/libintl.a will be created. +dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext +dnl implementations (in libc or libintl) without the ngettext() function +dnl will be ignored. If NEEDSYMBOL is specified and is +dnl 'need-formatstring-macros', then GNU gettext implementations that don't +dnl support the ISO C 99 formatstring macros will be ignored. +dnl INTLDIR is used to find the intl libraries. If empty, +dnl the value `$(top_builddir)/intl/' is used. +dnl +dnl The result of the configuration is one of three cases: +dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled +dnl and used. +dnl Catalog format: GNU --> install in $(datadir) +dnl Catalog extension: .mo after installation, .gmo in source tree +dnl 2) GNU gettext has been found in the system's C library. +dnl Catalog format: GNU --> install in $(datadir) +dnl Catalog extension: .mo after installation, .gmo in source tree +dnl 3) No internationalization, always use English msgid. +dnl Catalog format: none +dnl Catalog extension: none +dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. +dnl The use of .gmo is historical (it was needed to avoid overwriting the +dnl GNU format catalogs when building on a platform with an X/Open gettext), +dnl but we keep it in order not to force irrelevant filename changes on the +dnl maintainers. +dnl +AC_DEFUN([AM_GNU_GETTEXT], +[ + dnl Argument checking. + ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , + [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT +])])])])]) + ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , + [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT +])])])]) + define([gt_included_intl], + ifelse([$1], [external], + ifdef([AM_GNU_GETTEXT_][INTL_SUBDIR], [yes], [no]), + [yes])) + define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], [])) + gt_NEEDS_INIT + AM_GNU_GETTEXT_NEED([$2]) + + AC_REQUIRE([AM_PO_SUBDIRS])dnl + ifelse(gt_included_intl, yes, [ + AC_REQUIRE([AM_INTL_SUBDIR])dnl + ]) + + dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + AC_REQUIRE([AC_LIB_RPATH]) + + dnl Sometimes libintl requires libiconv, so first search for libiconv. + dnl Ideally we would do this search only after the + dnl if test "$USE_NLS" = "yes"; then + dnl if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then + dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT + dnl the configure script would need to contain the same shell code + dnl again, outside any 'if'. There are two solutions: + dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. + dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. + dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not + dnl documented, we avoid it. + ifelse(gt_included_intl, yes, , [ + AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) + ]) + + dnl Sometimes, on MacOS X, libintl requires linking with CoreFoundation. + gt_INTL_MACOSX + + dnl Set USE_NLS. + AC_REQUIRE([AM_NLS]) + + ifelse(gt_included_intl, yes, [ + BUILD_INCLUDED_LIBINTL=no + USE_INCLUDED_LIBINTL=no + ]) + LIBINTL= + LTLIBINTL= + POSUB= + + dnl Add a version number to the cache macros. + case " $gt_needs " in + *" need-formatstring-macros "*) gt_api_version=3 ;; + *" need-ngettext "*) gt_api_version=2 ;; + *) gt_api_version=1 ;; + esac + gt_func_gnugettext_libc="gt_cv_func_gnugettext${gt_api_version}_libc" + gt_func_gnugettext_libintl="gt_cv_func_gnugettext${gt_api_version}_libintl" + + dnl If we use NLS figure out what method + if test "$USE_NLS" = "yes"; then + gt_use_preinstalled_gnugettext=no + ifelse(gt_included_intl, yes, [ + AC_MSG_CHECKING([whether included gettext is requested]) + AC_ARG_WITH(included-gettext, + [ --with-included-gettext use the GNU gettext library included here], + nls_cv_force_use_gnu_gettext=$withval, + nls_cv_force_use_gnu_gettext=no) + AC_MSG_RESULT($nls_cv_force_use_gnu_gettext) + + nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" + if test "$nls_cv_force_use_gnu_gettext" != "yes"; then + ]) + dnl User does not insist on using GNU NLS library. Figure out what + dnl to use. If GNU gettext is available we use this. Else we have + dnl to fall back to GNU NLS library. + + if test $gt_api_version -ge 3; then + gt_revision_test_code=' +#ifndef __GNU_GETTEXT_SUPPORTED_REVISION +#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) +#endif +changequote(,)dnl +typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; +changequote([,])dnl +' + else + gt_revision_test_code= + fi + if test $gt_api_version -ge 2; then + gt_expression_test_code=' + * ngettext ("", "", 0)' + else + gt_expression_test_code= + fi + + AC_CACHE_CHECK([for GNU gettext in libc], [$gt_func_gnugettext_libc], + [AC_TRY_LINK([#include +$gt_revision_test_code +extern int _nl_msg_cat_cntr; +extern int *_nl_domain_bindings;], + [bindtextdomain ("", ""); +return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_domain_bindings], + [eval "$gt_func_gnugettext_libc=yes"], + [eval "$gt_func_gnugettext_libc=no"])]) + + if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" != "yes"; }; then + dnl Sometimes libintl requires libiconv, so first search for libiconv. + ifelse(gt_included_intl, yes, , [ + AM_ICONV_LINK + ]) + dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL + dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) + dnl because that would add "-liconv" to LIBINTL and LTLIBINTL + dnl even if libiconv doesn't exist. + AC_LIB_LINKFLAGS_BODY([intl]) + AC_CACHE_CHECK([for GNU gettext in libintl], + [$gt_func_gnugettext_libintl], + [gt_save_CPPFLAGS="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS $INCINTL" + gt_save_LIBS="$LIBS" + LIBS="$LIBS $LIBINTL" + dnl Now see whether libintl exists and does not depend on libiconv. + AC_TRY_LINK([#include +$gt_revision_test_code +extern int _nl_msg_cat_cntr; +extern +#ifdef __cplusplus +"C" +#endif +const char *_nl_expand_alias (const char *);], + [bindtextdomain ("", ""); +return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")], + [eval "$gt_func_gnugettext_libintl=yes"], + [eval "$gt_func_gnugettext_libintl=no"]) + dnl Now see whether libintl exists and depends on libiconv. + if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" != yes; } && test -n "$LIBICONV"; then + LIBS="$LIBS $LIBICONV" + AC_TRY_LINK([#include +$gt_revision_test_code +extern int _nl_msg_cat_cntr; +extern +#ifdef __cplusplus +"C" +#endif +const char *_nl_expand_alias (const char *);], + [bindtextdomain ("", ""); +return * gettext ("")$gt_expression_test_code + _nl_msg_cat_cntr + *_nl_expand_alias ("")], + [LIBINTL="$LIBINTL $LIBICONV" + LTLIBINTL="$LTLIBINTL $LTLIBICONV" + eval "$gt_func_gnugettext_libintl=yes" + ]) + fi + CPPFLAGS="$gt_save_CPPFLAGS" + LIBS="$gt_save_LIBS"]) + fi + + dnl If an already present or preinstalled GNU gettext() is found, + dnl use it. But if this macro is used in GNU gettext, and GNU + dnl gettext is already preinstalled in libintl, we update this + dnl libintl. (Cf. the install rule in intl/Makefile.in.) + if { eval "gt_val=\$$gt_func_gnugettext_libc"; test "$gt_val" = "yes"; } \ + || { { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; } \ + && test "$PACKAGE" != gettext-runtime \ + && test "$PACKAGE" != gettext-tools; }; then + gt_use_preinstalled_gnugettext=yes + else + dnl Reset the values set by searching for libintl. + LIBINTL= + LTLIBINTL= + INCINTL= + fi + + ifelse(gt_included_intl, yes, [ + if test "$gt_use_preinstalled_gnugettext" != "yes"; then + dnl GNU gettext is not found in the C library. + dnl Fall back on included GNU gettext library. + nls_cv_use_gnu_gettext=yes + fi + fi + + if test "$nls_cv_use_gnu_gettext" = "yes"; then + dnl Mark actions used to generate GNU NLS library. + BUILD_INCLUDED_LIBINTL=yes + USE_INCLUDED_LIBINTL=yes + LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV $LIBTHREAD" + LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV $LTLIBTHREAD" + LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` + fi + + CATOBJEXT= + if test "$gt_use_preinstalled_gnugettext" = "yes" \ + || test "$nls_cv_use_gnu_gettext" = "yes"; then + dnl Mark actions to use GNU gettext tools. + CATOBJEXT=.gmo + fi + ]) + + if test -n "$INTL_MACOSX_LIBS"; then + if test "$gt_use_preinstalled_gnugettext" = "yes" \ + || test "$nls_cv_use_gnu_gettext" = "yes"; then + dnl Some extra flags are needed during linking. + LIBINTL="$LIBINTL $INTL_MACOSX_LIBS" + LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS" + fi + fi + + if test "$gt_use_preinstalled_gnugettext" = "yes" \ + || test "$nls_cv_use_gnu_gettext" = "yes"; then + AC_DEFINE(ENABLE_NLS, 1, + [Define to 1 if translation of program messages to the user's native language + is requested.]) + else + USE_NLS=no + fi + fi + + AC_MSG_CHECKING([whether to use NLS]) + AC_MSG_RESULT([$USE_NLS]) + if test "$USE_NLS" = "yes"; then + AC_MSG_CHECKING([where the gettext function comes from]) + if test "$gt_use_preinstalled_gnugettext" = "yes"; then + if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then + gt_source="external libintl" + else + gt_source="libc" + fi + else + gt_source="included intl directory" + fi + AC_MSG_RESULT([$gt_source]) + fi + + if test "$USE_NLS" = "yes"; then + + if test "$gt_use_preinstalled_gnugettext" = "yes"; then + if { eval "gt_val=\$$gt_func_gnugettext_libintl"; test "$gt_val" = "yes"; }; then + AC_MSG_CHECKING([how to link with libintl]) + AC_MSG_RESULT([$LIBINTL]) + AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) + fi + + dnl For backward compatibility. Some packages may be using this. + AC_DEFINE(HAVE_GETTEXT, 1, + [Define if the GNU gettext() function is already present or preinstalled.]) + AC_DEFINE(HAVE_DCGETTEXT, 1, + [Define if the GNU dcgettext() function is already present or preinstalled.]) + fi + + dnl We need to process the po/ directory. + POSUB=po + fi + + ifelse(gt_included_intl, yes, [ + dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL + dnl to 'yes' because some of the testsuite requires it. + if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then + BUILD_INCLUDED_LIBINTL=yes + fi + + dnl Make all variables we use known to autoconf. + AC_SUBST(BUILD_INCLUDED_LIBINTL) + AC_SUBST(USE_INCLUDED_LIBINTL) + AC_SUBST(CATOBJEXT) + + dnl For backward compatibility. Some configure.ins may be using this. + nls_cv_header_intl= + nls_cv_header_libgt= + + dnl For backward compatibility. Some Makefiles may be using this. + DATADIRNAME=share + AC_SUBST(DATADIRNAME) + + dnl For backward compatibility. Some Makefiles may be using this. + INSTOBJEXT=.mo + AC_SUBST(INSTOBJEXT) + + dnl For backward compatibility. Some Makefiles may be using this. + GENCAT=gencat + AC_SUBST(GENCAT) + + dnl For backward compatibility. Some Makefiles may be using this. + INTLOBJS= + if test "$USE_INCLUDED_LIBINTL" = yes; then + INTLOBJS="\$(GETTOBJS)" + fi + AC_SUBST(INTLOBJS) + + dnl Enable libtool support if the surrounding package wishes it. + INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix + AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX) + ]) + + dnl For backward compatibility. Some Makefiles may be using this. + INTLLIBS="$LIBINTL" + AC_SUBST(INTLLIBS) + + dnl Make all documented variables known to autoconf. + AC_SUBST(LIBINTL) + AC_SUBST(LTLIBINTL) + AC_SUBST(POSUB) +]) + + +dnl Checks for special options needed on MacOS X. +dnl Defines INTL_MACOSX_LIBS. +AC_DEFUN([gt_INTL_MACOSX], +[ + dnl Check for API introduced in MacOS X 10.2. + AC_CACHE_CHECK([for CFPreferencesCopyAppValue], + gt_cv_func_CFPreferencesCopyAppValue, + [gt_save_LIBS="$LIBS" + LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" + AC_TRY_LINK([#include ], + [CFPreferencesCopyAppValue(NULL, NULL)], + [gt_cv_func_CFPreferencesCopyAppValue=yes], + [gt_cv_func_CFPreferencesCopyAppValue=no]) + LIBS="$gt_save_LIBS"]) + if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then + AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], 1, + [Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework.]) + fi + dnl Check for API introduced in MacOS X 10.3. + AC_CACHE_CHECK([for CFLocaleCopyCurrent], gt_cv_func_CFLocaleCopyCurrent, + [gt_save_LIBS="$LIBS" + LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" + AC_TRY_LINK([#include ], [CFLocaleCopyCurrent();], + [gt_cv_func_CFLocaleCopyCurrent=yes], + [gt_cv_func_CFLocaleCopyCurrent=no]) + LIBS="$gt_save_LIBS"]) + if test $gt_cv_func_CFLocaleCopyCurrent = yes; then + AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], 1, + [Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework.]) + fi + INTL_MACOSX_LIBS= + if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then + INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" + fi + AC_SUBST([INTL_MACOSX_LIBS]) +]) + + +dnl gt_NEEDS_INIT ensures that the gt_needs variable is initialized. +m4_define([gt_NEEDS_INIT], +[ + m4_divert_text([DEFAULTS], [gt_needs=]) + m4_define([gt_NEEDS_INIT], []) +]) + + +dnl Usage: AM_GNU_GETTEXT_NEED([NEEDSYMBOL]) +AC_DEFUN([AM_GNU_GETTEXT_NEED], +[ + m4_divert_text([INIT_PREPARE], [gt_needs="$gt_needs $1"]) +]) + + +dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) +AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) diff --git a/m4/iconv.m4 b/m4/iconv.m4 new file mode 100644 index 0000000..654c415 --- /dev/null +++ b/m4/iconv.m4 @@ -0,0 +1,101 @@ +# iconv.m4 serial AM4 (gettext-0.11.3) +dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl From Bruno Haible. + +AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], +[ + dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + AC_REQUIRE([AC_LIB_RPATH]) + + dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV + dnl accordingly. + AC_LIB_LINKFLAGS_BODY([iconv]) +]) + +AC_DEFUN([AM_ICONV_LINK], +[ + dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and + dnl those with the standalone portable GNU libiconv installed). + + dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV + dnl accordingly. + AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) + + dnl Add $INCICONV to CPPFLAGS before performing the following checks, + dnl because if the user has installed libiconv and not disabled its use + dnl via --without-libiconv-prefix, he wants to use it. The first + dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. + am_save_CPPFLAGS="$CPPFLAGS" + AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) + + AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [ + am_cv_func_iconv="no, consider installing GNU libiconv" + am_cv_lib_iconv=no + AC_TRY_LINK([#include +#include ], + [iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd);], + am_cv_func_iconv=yes) + if test "$am_cv_func_iconv" != yes; then + am_save_LIBS="$LIBS" + LIBS="$LIBS $LIBICONV" + AC_TRY_LINK([#include +#include ], + [iconv_t cd = iconv_open("",""); + iconv(cd,NULL,NULL,NULL,NULL); + iconv_close(cd);], + am_cv_lib_iconv=yes + am_cv_func_iconv=yes) + LIBS="$am_save_LIBS" + fi + ]) + if test "$am_cv_func_iconv" = yes; then + AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.]) + fi + if test "$am_cv_lib_iconv" = yes; then + AC_MSG_CHECKING([how to link with libiconv]) + AC_MSG_RESULT([$LIBICONV]) + else + dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV + dnl either. + CPPFLAGS="$am_save_CPPFLAGS" + LIBICONV= + LTLIBICONV= + fi + AC_SUBST(LIBICONV) + AC_SUBST(LTLIBICONV) +]) + +AC_DEFUN([AM_ICONV], +[ + AM_ICONV_LINK + if test "$am_cv_func_iconv" = yes; then + AC_MSG_CHECKING([for iconv declaration]) + AC_CACHE_VAL(am_cv_proto_iconv, [ + AC_TRY_COMPILE([ +#include +#include +extern +#ifdef __cplusplus +"C" +#endif +#if defined(__STDC__) || defined(__cplusplus) +size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); +#else +size_t iconv(); +#endif +], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const") + am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) + am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` + AC_MSG_RESULT([$]{ac_t:- + }[$]am_cv_proto_iconv) + AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1, + [Define as const if the declaration of iconv() needs const.]) + fi +]) diff --git a/m4/lib-ld.m4 b/m4/lib-ld.m4 new file mode 100644 index 0000000..96c4e2c --- /dev/null +++ b/m4/lib-ld.m4 @@ -0,0 +1,110 @@ +# lib-ld.m4 serial 3 (gettext-0.13) +dnl Copyright (C) 1996-2003 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl Subroutines of libtool.m4, +dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision +dnl with libtool.m4. + +dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no. +AC_DEFUN([AC_LIB_PROG_LD_GNU], +[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld, +[# I'd rather use --version here, but apparently some GNU ld's only accept -v. +case `$LD -v 2>&1 conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by GCC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]* | [A-Za-z]:[\\/]*)] + [re_direlt='/[^/][^/]*/\.\./'] + # Canonicalize the path of ld + ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` + while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do + ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(acl_cv_path_LD, +[if test -z "$LD"; then + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" + for ac_dir in $PATH; do + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + acl_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some GNU ld's only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in + *GNU* | *'with BFD'*) + test "$with_gnu_ld" != no && break ;; + *) + test "$with_gnu_ld" != yes && break ;; + esac + fi + done + IFS="$ac_save_ifs" +else + acl_cv_path_LD="$LD" # Let the user override the test with a path. +fi]) +LD="$acl_cv_path_LD" +if test -n "$LD"; then + AC_MSG_RESULT($LD) +else + AC_MSG_RESULT(no) +fi +test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) +AC_LIB_PROG_LD_GNU +]) diff --git a/m4/lib-link.m4 b/m4/lib-link.m4 new file mode 100644 index 0000000..f95b7ba --- /dev/null +++ b/m4/lib-link.m4 @@ -0,0 +1,644 @@ +# lib-link.m4 serial 9 (gettext-0.16) +dnl Copyright (C) 2001-2006 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl From Bruno Haible. + +AC_PREREQ(2.50) + +dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and +dnl the libraries corresponding to explicit and implicit dependencies. +dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and +dnl augments the CPPFLAGS variable. +AC_DEFUN([AC_LIB_LINKFLAGS], +[ + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + AC_REQUIRE([AC_LIB_RPATH]) + define([Name],[translit([$1],[./-], [___])]) + define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) + AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ + AC_LIB_LINKFLAGS_BODY([$1], [$2]) + ac_cv_lib[]Name[]_libs="$LIB[]NAME" + ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" + ac_cv_lib[]Name[]_cppflags="$INC[]NAME" + ]) + LIB[]NAME="$ac_cv_lib[]Name[]_libs" + LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" + INC[]NAME="$ac_cv_lib[]Name[]_cppflags" + AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) + AC_SUBST([LIB]NAME) + AC_SUBST([LTLIB]NAME) + dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the + dnl results of this search when this library appears as a dependency. + HAVE_LIB[]NAME=yes + undefine([Name]) + undefine([NAME]) +]) + +dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode) +dnl searches for libname and the libraries corresponding to explicit and +dnl implicit dependencies, together with the specified include files and +dnl the ability to compile and link the specified testcode. If found, it +dnl sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} and +dnl LTLIB${NAME} variables and augments the CPPFLAGS variable, and +dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs +dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. +AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], +[ + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + AC_REQUIRE([AC_LIB_RPATH]) + define([Name],[translit([$1],[./-], [___])]) + define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) + + dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME + dnl accordingly. + AC_LIB_LINKFLAGS_BODY([$1], [$2]) + + dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, + dnl because if the user has installed lib[]Name and not disabled its use + dnl via --without-lib[]Name-prefix, he wants to use it. + ac_save_CPPFLAGS="$CPPFLAGS" + AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) + + AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ + ac_save_LIBS="$LIBS" + LIBS="$LIBS $LIB[]NAME" + AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name=no]) + LIBS="$ac_save_LIBS" + ]) + if test "$ac_cv_lib[]Name" = yes; then + HAVE_LIB[]NAME=yes + AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the $1 library.]) + AC_MSG_CHECKING([how to link with lib[]$1]) + AC_MSG_RESULT([$LIB[]NAME]) + else + HAVE_LIB[]NAME=no + dnl If $LIB[]NAME didn't lead to a usable library, we don't need + dnl $INC[]NAME either. + CPPFLAGS="$ac_save_CPPFLAGS" + LIB[]NAME= + LTLIB[]NAME= + fi + AC_SUBST([HAVE_LIB]NAME) + AC_SUBST([LIB]NAME) + AC_SUBST([LTLIB]NAME) + undefine([Name]) + undefine([NAME]) +]) + +dnl Determine the platform dependent parameters needed to use rpath: +dnl libext, shlibext, hardcode_libdir_flag_spec, hardcode_libdir_separator, +dnl hardcode_direct, hardcode_minus_L. +AC_DEFUN([AC_LIB_RPATH], +[ + dnl Tell automake >= 1.10 to complain if config.rpath is missing. + m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])]) + AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS + AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld + AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host + AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir + AC_CACHE_CHECK([for shared library run path origin], acl_cv_rpath, [ + CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ + ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh + . ./conftest.sh + rm -f ./conftest.sh + acl_cv_rpath=done + ]) + wl="$acl_cv_wl" + libext="$acl_cv_libext" + shlibext="$acl_cv_shlibext" + hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" + hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" + hardcode_direct="$acl_cv_hardcode_direct" + hardcode_minus_L="$acl_cv_hardcode_minus_L" + dnl Determine whether the user wants rpath handling at all. + AC_ARG_ENABLE(rpath, + [ --disable-rpath do not hardcode runtime library paths], + :, enable_rpath=yes) +]) + +dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and +dnl the libraries corresponding to explicit and implicit dependencies. +dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. +AC_DEFUN([AC_LIB_LINKFLAGS_BODY], +[ + AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) + define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], + [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) + dnl By default, look in $includedir and $libdir. + use_additional=yes + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + AC_LIB_ARG_WITH([lib$1-prefix], +[ --with-lib$1-prefix[=DIR] search for lib$1 in DIR/include and DIR/lib + --without-lib$1-prefix don't search for lib$1 in includedir and libdir], +[ + if test "X$withval" = "Xno"; then + use_additional=no + else + if test "X$withval" = "X"; then + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + else + additional_includedir="$withval/include" + additional_libdir="$withval/$acl_libdirstem" + fi + fi +]) + dnl Search the library and its dependencies in $additional_libdir and + dnl $LDFLAGS. Using breadth-first-seach. + LIB[]NAME= + LTLIB[]NAME= + INC[]NAME= + rpathdirs= + ltrpathdirs= + names_already_handled= + names_next_round='$1 $2' + while test -n "$names_next_round"; do + names_this_round="$names_next_round" + names_next_round= + for name in $names_this_round; do + already_handled= + for n in $names_already_handled; do + if test "$n" = "$name"; then + already_handled=yes + break + fi + done + if test -z "$already_handled"; then + names_already_handled="$names_already_handled $name" + dnl See if it was already located by an earlier AC_LIB_LINKFLAGS + dnl or AC_LIB_HAVE_LINKFLAGS call. + uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` + eval value=\"\$HAVE_LIB$uppername\" + if test -n "$value"; then + if test "$value" = yes; then + eval value=\"\$LIB$uppername\" + test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" + eval value=\"\$LTLIB$uppername\" + test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" + else + dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined + dnl that this library doesn't exist. So just drop it. + : + fi + else + dnl Search the library lib$name in $additional_libdir and $LDFLAGS + dnl and the already constructed $LIBNAME/$LTLIBNAME. + found_dir= + found_la= + found_so= + found_a= + if test $use_additional = yes; then + if test -n "$shlibext" \ + && { test -f "$additional_libdir/lib$name.$shlibext" \ + || { test "$shlibext" = dll \ + && test -f "$additional_libdir/lib$name.dll.a"; }; }; then + found_dir="$additional_libdir" + if test -f "$additional_libdir/lib$name.$shlibext"; then + found_so="$additional_libdir/lib$name.$shlibext" + else + found_so="$additional_libdir/lib$name.dll.a" + fi + if test -f "$additional_libdir/lib$name.la"; then + found_la="$additional_libdir/lib$name.la" + fi + else + if test -f "$additional_libdir/lib$name.$libext"; then + found_dir="$additional_libdir" + found_a="$additional_libdir/lib$name.$libext" + if test -f "$additional_libdir/lib$name.la"; then + found_la="$additional_libdir/lib$name.la" + fi + fi + fi + fi + if test "X$found_dir" = "X"; then + for x in $LDFLAGS $LTLIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + case "$x" in + -L*) + dir=`echo "X$x" | sed -e 's/^X-L//'` + if test -n "$shlibext" \ + && { test -f "$dir/lib$name.$shlibext" \ + || { test "$shlibext" = dll \ + && test -f "$dir/lib$name.dll.a"; }; }; then + found_dir="$dir" + if test -f "$dir/lib$name.$shlibext"; then + found_so="$dir/lib$name.$shlibext" + else + found_so="$dir/lib$name.dll.a" + fi + if test -f "$dir/lib$name.la"; then + found_la="$dir/lib$name.la" + fi + else + if test -f "$dir/lib$name.$libext"; then + found_dir="$dir" + found_a="$dir/lib$name.$libext" + if test -f "$dir/lib$name.la"; then + found_la="$dir/lib$name.la" + fi + fi + fi + ;; + esac + if test "X$found_dir" != "X"; then + break + fi + done + fi + if test "X$found_dir" != "X"; then + dnl Found the library. + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" + if test "X$found_so" != "X"; then + dnl Linking with a shared library. We attempt to hardcode its + dnl directory into the executable's runpath, unless it's the + dnl standard /usr/lib. + if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/$acl_libdirstem"; then + dnl No hardcoding is needed. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + else + dnl Use an explicit option to hardcode DIR into the resulting + dnl binary. + dnl Potentially add DIR to ltrpathdirs. + dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $found_dir" + fi + dnl The hardcoding into $LIBNAME is system dependent. + if test "$hardcode_direct" = yes; then + dnl Using DIR/libNAME.so during linking hardcodes DIR into the + dnl resulting binary. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + else + if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then + dnl Use an explicit option to hardcode DIR into the resulting + dnl binary. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + dnl Potentially add DIR to rpathdirs. + dnl The rpathdirs will be appended to $LIBNAME at the end. + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $found_dir" + fi + else + dnl Rely on "-L$found_dir". + dnl But don't add it if it's already contained in the LDFLAGS + dnl or the already constructed $LIBNAME + haveit= + for x in $LDFLAGS $LIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$found_dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" + fi + if test "$hardcode_minus_L" != no; then + dnl FIXME: Not sure whether we should use + dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" + dnl here. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" + else + dnl We cannot use $hardcode_runpath_var and LD_RUN_PATH + dnl here, because this doesn't fit in flags passed to the + dnl compiler. So give up. No hardcoding. This affects only + dnl very old systems. + dnl FIXME: Not sure whether we should use + dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" + dnl here. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" + fi + fi + fi + fi + else + if test "X$found_a" != "X"; then + dnl Linking with a static library. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" + else + dnl We shouldn't come here, but anyway it's good to have a + dnl fallback. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" + fi + fi + dnl Assume the include files are nearby. + additional_includedir= + case "$found_dir" in + */$acl_libdirstem | */$acl_libdirstem/) + basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` + additional_includedir="$basedir/include" + ;; + esac + if test "X$additional_includedir" != "X"; then + dnl Potentially add $additional_includedir to $INCNAME. + dnl But don't add it + dnl 1. if it's the standard /usr/include, + dnl 2. if it's /usr/local/include and we are using GCC on Linux, + dnl 3. if it's already present in $CPPFLAGS or the already + dnl constructed $INCNAME, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_includedir" != "X/usr/include"; then + haveit= + if test "X$additional_includedir" = "X/usr/local/include"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + for x in $CPPFLAGS $INC[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-I$additional_includedir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_includedir"; then + dnl Really add $additional_includedir to $INCNAME. + INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" + fi + fi + fi + fi + fi + dnl Look for dependencies. + if test -n "$found_la"; then + dnl Read the .la file. It defines the variables + dnl dlname, library_names, old_library, dependency_libs, current, + dnl age, revision, installed, dlopen, dlpreopen, libdir. + save_libdir="$libdir" + case "$found_la" in + */* | *\\*) . "$found_la" ;; + *) . "./$found_la" ;; + esac + libdir="$save_libdir" + dnl We use only dependency_libs. + for dep in $dependency_libs; do + case "$dep" in + -L*) + additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` + dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. + dnl But don't add it + dnl 1. if it's the standard /usr/lib, + dnl 2. if it's /usr/local/lib and we are using GCC on Linux, + dnl 3. if it's already present in $LDFLAGS or the already + dnl constructed $LIBNAME, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then + haveit= + if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + haveit= + for x in $LDFLAGS $LIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + dnl Really add $additional_libdir to $LIBNAME. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" + fi + fi + haveit= + for x in $LDFLAGS $LTLIB[]NAME; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + dnl Really add $additional_libdir to $LTLIBNAME. + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" + fi + fi + fi + fi + ;; + -R*) + dir=`echo "X$dep" | sed -e 's/^X-R//'` + if test "$enable_rpath" != no; then + dnl Potentially add DIR to rpathdirs. + dnl The rpathdirs will be appended to $LIBNAME at the end. + haveit= + for x in $rpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + rpathdirs="$rpathdirs $dir" + fi + dnl Potentially add DIR to ltrpathdirs. + dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. + haveit= + for x in $ltrpathdirs; do + if test "X$x" = "X$dir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + ltrpathdirs="$ltrpathdirs $dir" + fi + fi + ;; + -l*) + dnl Handle this in the next round. + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` + ;; + *.la) + dnl Handle this in the next round. Throw away the .la's + dnl directory; it is already contained in a preceding -L + dnl option. + names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` + ;; + *) + dnl Most likely an immediate library name. + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" + ;; + esac + done + fi + else + dnl Didn't find the library; assume it is in the system directories + dnl known to the linker and runtime loader. (All the system + dnl directories known to the linker should also be known to the + dnl runtime loader, otherwise the system is severely misconfigured.) + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" + fi + fi + fi + done + done + if test "X$rpathdirs" != "X"; then + if test -n "$hardcode_libdir_separator"; then + dnl Weird platform: only the last -rpath option counts, the user must + dnl pass all path elements in one option. We can arrange that for a + dnl single library, but not when more than one $LIBNAMEs are used. + alldirs= + for found_dir in $rpathdirs; do + alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" + done + dnl Note: hardcode_libdir_flag_spec uses $libdir and $wl. + acl_save_libdir="$libdir" + libdir="$alldirs" + eval flag=\"$hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" + else + dnl The -rpath options are cumulative. + for found_dir in $rpathdirs; do + acl_save_libdir="$libdir" + libdir="$found_dir" + eval flag=\"$hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" + done + fi + fi + if test "X$ltrpathdirs" != "X"; then + dnl When using libtool, the option that works for both libraries and + dnl executables is -R. The -R options are cumulative. + for found_dir in $ltrpathdirs; do + LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" + done + fi +]) + +dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, +dnl unless already present in VAR. +dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes +dnl contains two or three consecutive elements that belong together. +AC_DEFUN([AC_LIB_APPENDTOVAR], +[ + for element in [$2]; do + haveit= + for x in $[$1]; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X$element"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + [$1]="${[$1]}${[$1]:+ }$element" + fi + done +]) + +dnl For those cases where a variable contains several -L and -l options +dnl referring to unknown libraries and directories, this macro determines the +dnl necessary additional linker options for the runtime path. +dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL]) +dnl sets LDADDVAR to linker options needed together with LIBSVALUE. +dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed, +dnl otherwise linking without libtool is assumed. +AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS], +[ + AC_REQUIRE([AC_LIB_RPATH]) + AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) + $1= + if test "$enable_rpath" != no; then + if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then + dnl Use an explicit option to hardcode directories into the resulting + dnl binary. + rpathdirs= + next= + for opt in $2; do + if test -n "$next"; then + dir="$next" + dnl No need to hardcode the standard /usr/lib. + if test "X$dir" != "X/usr/$acl_libdirstem"; then + rpathdirs="$rpathdirs $dir" + fi + next= + else + case $opt in + -L) next=yes ;; + -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'` + dnl No need to hardcode the standard /usr/lib. + if test "X$dir" != "X/usr/$acl_libdirstem"; then + rpathdirs="$rpathdirs $dir" + fi + next= ;; + *) next= ;; + esac + fi + done + if test "X$rpathdirs" != "X"; then + if test -n ""$3""; then + dnl libtool is used for linking. Use -R options. + for dir in $rpathdirs; do + $1="${$1}${$1:+ }-R$dir" + done + else + dnl The linker is used for linking directly. + if test -n "$hardcode_libdir_separator"; then + dnl Weird platform: only the last -rpath option counts, the user + dnl must pass all path elements in one option. + alldirs= + for dir in $rpathdirs; do + alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$dir" + done + acl_save_libdir="$libdir" + libdir="$alldirs" + eval flag=\"$hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + $1="$flag" + else + dnl The -rpath options are cumulative. + for dir in $rpathdirs; do + acl_save_libdir="$libdir" + libdir="$dir" + eval flag=\"$hardcode_libdir_flag_spec\" + libdir="$acl_save_libdir" + $1="${$1}${$1:+ }$flag" + done + fi + fi + fi + fi + fi + AC_SUBST([$1]) +]) diff --git a/m4/lib-prefix.m4 b/m4/lib-prefix.m4 new file mode 100644 index 0000000..a8684e1 --- /dev/null +++ b/m4/lib-prefix.m4 @@ -0,0 +1,185 @@ +# lib-prefix.m4 serial 5 (gettext-0.15) +dnl Copyright (C) 2001-2005 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl From Bruno Haible. + +dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and +dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't +dnl require excessive bracketing. +ifdef([AC_HELP_STRING], +[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], +[AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) + +dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed +dnl to access previously installed libraries. The basic assumption is that +dnl a user will want packages to use other packages he previously installed +dnl with the same --prefix option. +dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate +dnl libraries, but is otherwise very convenient. +AC_DEFUN([AC_LIB_PREFIX], +[ + AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) + AC_REQUIRE([AC_PROG_CC]) + AC_REQUIRE([AC_CANONICAL_HOST]) + AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) + AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) + dnl By default, look in $includedir and $libdir. + use_additional=yes + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + AC_LIB_ARG_WITH([lib-prefix], +[ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib + --without-lib-prefix don't search for libraries in includedir and libdir], +[ + if test "X$withval" = "Xno"; then + use_additional=no + else + if test "X$withval" = "X"; then + AC_LIB_WITH_FINAL_PREFIX([ + eval additional_includedir=\"$includedir\" + eval additional_libdir=\"$libdir\" + ]) + else + additional_includedir="$withval/include" + additional_libdir="$withval/$acl_libdirstem" + fi + fi +]) + if test $use_additional = yes; then + dnl Potentially add $additional_includedir to $CPPFLAGS. + dnl But don't add it + dnl 1. if it's the standard /usr/include, + dnl 2. if it's already present in $CPPFLAGS, + dnl 3. if it's /usr/local/include and we are using GCC on Linux, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_includedir" != "X/usr/include"; then + haveit= + for x in $CPPFLAGS; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-I$additional_includedir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test "X$additional_includedir" = "X/usr/local/include"; then + if test -n "$GCC"; then + case $host_os in + linux* | gnu* | k*bsd*-gnu) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + if test -d "$additional_includedir"; then + dnl Really add $additional_includedir to $CPPFLAGS. + CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" + fi + fi + fi + fi + dnl Potentially add $additional_libdir to $LDFLAGS. + dnl But don't add it + dnl 1. if it's the standard /usr/lib, + dnl 2. if it's already present in $LDFLAGS, + dnl 3. if it's /usr/local/lib and we are using GCC on Linux, + dnl 4. if it doesn't exist as a directory. + if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then + haveit= + for x in $LDFLAGS; do + AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) + if test "X$x" = "X-L$additional_libdir"; then + haveit=yes + break + fi + done + if test -z "$haveit"; then + if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then + if test -n "$GCC"; then + case $host_os in + linux*) haveit=yes;; + esac + fi + fi + if test -z "$haveit"; then + if test -d "$additional_libdir"; then + dnl Really add $additional_libdir to $LDFLAGS. + LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" + fi + fi + fi + fi + fi +]) + +dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, +dnl acl_final_exec_prefix, containing the values to which $prefix and +dnl $exec_prefix will expand at the end of the configure script. +AC_DEFUN([AC_LIB_PREPARE_PREFIX], +[ + dnl Unfortunately, prefix and exec_prefix get only finally determined + dnl at the end of configure. + if test "X$prefix" = "XNONE"; then + acl_final_prefix="$ac_default_prefix" + else + acl_final_prefix="$prefix" + fi + if test "X$exec_prefix" = "XNONE"; then + acl_final_exec_prefix='${prefix}' + else + acl_final_exec_prefix="$exec_prefix" + fi + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" + prefix="$acl_save_prefix" +]) + +dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the +dnl variables prefix and exec_prefix bound to the values they will have +dnl at the end of the configure script. +AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], +[ + acl_save_prefix="$prefix" + prefix="$acl_final_prefix" + acl_save_exec_prefix="$exec_prefix" + exec_prefix="$acl_final_exec_prefix" + $1 + exec_prefix="$acl_save_exec_prefix" + prefix="$acl_save_prefix" +]) + +dnl AC_LIB_PREPARE_MULTILIB creates a variable acl_libdirstem, containing +dnl the basename of the libdir, either "lib" or "lib64". +AC_DEFUN([AC_LIB_PREPARE_MULTILIB], +[ + dnl There is no formal standard regarding lib and lib64. The current + dnl practice is that on a system supporting 32-bit and 64-bit instruction + dnl sets or ABIs, 64-bit libraries go under $prefix/lib64 and 32-bit + dnl libraries go under $prefix/lib. We determine the compiler's default + dnl mode by looking at the compiler's library search path. If at least + dnl of its elements ends in /lib64 or points to a directory whose absolute + dnl pathname ends in /lib64, we assume a 64-bit ABI. Otherwise we use the + dnl default, namely "lib". + acl_libdirstem=lib + searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` + if test -n "$searchpath"; then + acl_save_IFS="${IFS= }"; IFS=":" + for searchdir in $searchpath; do + if test -d "$searchdir"; then + case "$searchdir" in + */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; + *) searchdir=`cd "$searchdir" && pwd` + case "$searchdir" in + */lib64 ) acl_libdirstem=lib64 ;; + esac ;; + esac + fi + done + IFS="$acl_save_IFS" + fi +]) diff --git a/m4/nls.m4 b/m4/nls.m4 new file mode 100644 index 0000000..7967cc2 --- /dev/null +++ b/m4/nls.m4 @@ -0,0 +1,31 @@ +# nls.m4 serial 3 (gettext-0.15) +dnl Copyright (C) 1995-2003, 2005-2006 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. +dnl +dnl This file can can be used in projects which are not available under +dnl the GNU General Public License or the GNU Library General Public +dnl License but which still want to provide support for the GNU gettext +dnl functionality. +dnl Please note that the actual code of the GNU gettext library is covered +dnl by the GNU Library General Public License, and the rest of the GNU +dnl gettext package package is covered by the GNU General Public License. +dnl They are *not* in the public domain. + +dnl Authors: +dnl Ulrich Drepper , 1995-2000. +dnl Bruno Haible , 2000-2003. + +AC_PREREQ(2.50) + +AC_DEFUN([AM_NLS], +[ + AC_MSG_CHECKING([whether NLS is requested]) + dnl Default is enabled NLS + AC_ARG_ENABLE(nls, + [ --disable-nls do not use Native Language Support], + USE_NLS=$enableval, USE_NLS=yes) + AC_MSG_RESULT($USE_NLS) + AC_SUBST(USE_NLS) +]) diff --git a/m4/po.m4 b/m4/po.m4 new file mode 100644 index 0000000..00133ef --- /dev/null +++ b/m4/po.m4 @@ -0,0 +1,428 @@ +# po.m4 serial 13 (gettext-0.15) +dnl Copyright (C) 1995-2006 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. +dnl +dnl This file can can be used in projects which are not available under +dnl the GNU General Public License or the GNU Library General Public +dnl License but which still want to provide support for the GNU gettext +dnl functionality. +dnl Please note that the actual code of the GNU gettext library is covered +dnl by the GNU Library General Public License, and the rest of the GNU +dnl gettext package package is covered by the GNU General Public License. +dnl They are *not* in the public domain. + +dnl Authors: +dnl Ulrich Drepper , 1995-2000. +dnl Bruno Haible , 2000-2003. + +AC_PREREQ(2.50) + +dnl Checks for all prerequisites of the po subdirectory. +AC_DEFUN([AM_PO_SUBDIRS], +[ + AC_REQUIRE([AC_PROG_MAKE_SET])dnl + AC_REQUIRE([AC_PROG_INSTALL])dnl + AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake + AC_REQUIRE([AM_NLS])dnl + + dnl Perform the following tests also if --disable-nls has been given, + dnl because they are needed for "make dist" to work. + + dnl Search for GNU msgfmt in the PATH. + dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. + dnl The second test excludes FreeBSD msgfmt. + AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, + [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && + (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], + :) + AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) + + dnl Test whether it is GNU msgfmt >= 0.15. +changequote(,)dnl + case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;; + *) MSGFMT_015=$MSGFMT ;; + esac +changequote([,])dnl + AC_SUBST([MSGFMT_015]) +changequote(,)dnl + case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;; + *) GMSGFMT_015=$GMSGFMT ;; + esac +changequote([,])dnl + AC_SUBST([GMSGFMT_015]) + + dnl Search for GNU xgettext 0.12 or newer in the PATH. + dnl The first test excludes Solaris xgettext and early GNU xgettext versions. + dnl The second test excludes FreeBSD xgettext. + AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, + [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 && + (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], + :) + dnl Remove leftover from FreeBSD xgettext call. + rm -f messages.po + + dnl Test whether it is GNU xgettext >= 0.15. +changequote(,)dnl + case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in + '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;; + *) XGETTEXT_015=$XGETTEXT ;; + esac +changequote([,])dnl + AC_SUBST([XGETTEXT_015]) + + dnl Search for GNU msgmerge 0.11 or newer in the PATH. + AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, + [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :) + + dnl Installation directories. + dnl Autoconf >= 2.60 defines localedir. For older versions of autoconf, we + dnl have to define it here, so that it can be used in po/Makefile. + test -n "$localedir" || localedir='${datadir}/locale' + AC_SUBST([localedir]) + + AC_CONFIG_COMMANDS([po-directories], [[ + for ac_file in $CONFIG_FILES; do + # Support "outfile[:infile[:infile...]]" + case "$ac_file" in + *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; + esac + # PO directories have a Makefile.in generated from Makefile.in.in. + case "$ac_file" in */Makefile.in) + # Adjust a relative srcdir. + ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` + ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" + ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` + # In autoconf-2.13 it is called $ac_given_srcdir. + # In autoconf-2.50 it is called $srcdir. + test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" + case "$ac_given_srcdir" in + .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; + /*) top_srcdir="$ac_given_srcdir" ;; + *) top_srcdir="$ac_dots$ac_given_srcdir" ;; + esac + # Treat a directory as a PO directory if and only if it has a + # POTFILES.in file. This allows packages to have multiple PO + # directories under different names or in different locations. + if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then + rm -f "$ac_dir/POTFILES" + test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" + cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" + POMAKEFILEDEPS="POTFILES.in" + # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend + # on $ac_dir but don't depend on user-specified configuration + # parameters. + if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then + # The LINGUAS file contains the set of available languages. + if test -n "$OBSOLETE_ALL_LINGUAS"; then + test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" + fi + ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"` + # Hide the ALL_LINGUAS assigment from automake < 1.5. + eval 'ALL_LINGUAS''=$ALL_LINGUAS_' + POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" + else + # The set of available languages was given in configure.in. + # Hide the ALL_LINGUAS assigment from automake < 1.5. + eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' + fi + # Compute POFILES + # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) + # Compute UPDATEPOFILES + # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) + # Compute DUMMYPOFILES + # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) + # Compute GMOFILES + # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) + case "$ac_given_srcdir" in + .) srcdirpre= ;; + *) srcdirpre='$(srcdir)/' ;; + esac + POFILES= + UPDATEPOFILES= + DUMMYPOFILES= + GMOFILES= + for lang in $ALL_LINGUAS; do + POFILES="$POFILES $srcdirpre$lang.po" + UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" + DUMMYPOFILES="$DUMMYPOFILES $lang.nop" + GMOFILES="$GMOFILES $srcdirpre$lang.gmo" + done + # CATALOGS depends on both $ac_dir and the user's LINGUAS + # environment variable. + INST_LINGUAS= + if test -n "$ALL_LINGUAS"; then + for presentlang in $ALL_LINGUAS; do + useit=no + if test "%UNSET%" != "$LINGUAS"; then + desiredlanguages="$LINGUAS" + else + desiredlanguages="$ALL_LINGUAS" + fi + for desiredlang in $desiredlanguages; do + # Use the presentlang catalog if desiredlang is + # a. equal to presentlang, or + # b. a variant of presentlang (because in this case, + # presentlang can be used as a fallback for messages + # which are not translated in the desiredlang catalog). + case "$desiredlang" in + "$presentlang"*) useit=yes;; + esac + done + if test $useit = yes; then + INST_LINGUAS="$INST_LINGUAS $presentlang" + fi + done + fi + CATALOGS= + if test -n "$INST_LINGUAS"; then + for lang in $INST_LINGUAS; do + CATALOGS="$CATALOGS $lang.gmo" + done + fi + test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" + sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" + for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do + if test -f "$f"; then + case "$f" in + *.orig | *.bak | *~) ;; + *) cat "$f" >> "$ac_dir/Makefile" ;; + esac + fi + done + fi + ;; + esac + done]], + [# Capture the value of obsolete ALL_LINGUAS because we need it to compute + # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it + # from automake < 1.5. + eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' + # Capture the value of LINGUAS because we need it to compute CATALOGS. + LINGUAS="${LINGUAS-%UNSET%}" + ]) +]) + +dnl Postprocesses a Makefile in a directory containing PO files. +AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], +[ + # When this code is run, in config.status, two variables have already been + # set: + # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in, + # - LINGUAS is the value of the environment variable LINGUAS at configure + # time. + +changequote(,)dnl + # Adjust a relative srcdir. + ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` + ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" + ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` + # In autoconf-2.13 it is called $ac_given_srcdir. + # In autoconf-2.50 it is called $srcdir. + test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" + case "$ac_given_srcdir" in + .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; + /*) top_srcdir="$ac_given_srcdir" ;; + *) top_srcdir="$ac_dots$ac_given_srcdir" ;; + esac + + # Find a way to echo strings without interpreting backslash. + if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then + gt_echo='echo' + else + if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then + gt_echo='printf %s\n' + else + echo_func () { + cat < "$ac_file.tmp" + if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then + # Add dependencies that cannot be formulated as a simple suffix rule. + for lang in $ALL_LINGUAS; do + frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` + cat >> "$ac_file.tmp" < /dev/null; then + # Add dependencies that cannot be formulated as a simple suffix rule. + for lang in $ALL_LINGUAS; do + frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'` + cat >> "$ac_file.tmp" <> "$ac_file.tmp" <, 1996. + +AC_PREREQ(2.50) + +# Search path for a program which passes the given test. + +dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, +dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) +AC_DEFUN([AM_PATH_PROG_WITH_TEST], +[ +# Prepare PATH_SEPARATOR. +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi + +# Find out how to test for executable files. Don't use a zero-byte file, +# as systems may use methods other than mode bits to determine executability. +cat >conf$$.file <<_ASEOF +#! /bin/sh +exit 0 +_ASEOF +chmod +x conf$$.file +if test -x conf$$.file >/dev/null 2>&1; then + ac_executable_p="test -x" +else + ac_executable_p="test -f" +fi +rm -f conf$$.file + +# Extract the first word of "$2", so it can be a program name with args. +set dummy $2; ac_word=[$]2 +AC_MSG_CHECKING([for $ac_word]) +AC_CACHE_VAL(ac_cv_path_$1, +[case "[$]$1" in + [[\\/]]* | ?:[[\\/]]*) + ac_cv_path_$1="[$]$1" # Let the user override the test with a path. + ;; + *) + ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in ifelse([$5], , $PATH, [$5]); do + IFS="$ac_save_IFS" + test -z "$ac_dir" && ac_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then + echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD + if [$3]; then + ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" + break 2 + fi + fi + done + done + IFS="$ac_save_IFS" +dnl If no 4th arg is given, leave the cache variable unset, +dnl so AC_PATH_PROGS will keep looking. +ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" +])dnl + ;; +esac])dnl +$1="$ac_cv_path_$1" +if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then + AC_MSG_RESULT([$]$1) +else + AC_MSG_RESULT(no) +fi +AC_SUBST($1)dnl +]) diff --git a/packaging/psmisc.spec b/packaging/psmisc.spec new file mode 100644 index 0000000..b8660e7 --- /dev/null +++ b/packaging/psmisc.spec @@ -0,0 +1,48 @@ +Name: psmisc +Version: 22.6 +Release: 1 +License: BSD/GPLv2+ +Summary: Utilities for managing processes on your system +Url: http://psmisc.sourceforge.net +Group: Applications/System +Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz + +BuildRequires: autoconf +BuildRequires: automake +BuildRequires: pkgconfig(ncurses) + +%description +The psmisc package contains utilities for managing processes on your +system: pstree, killall and fuser. The pstree command displays a tree +structure of all of the running processes on your system. The killall +command sends a specified signal (SIGTERM if nothing is specified) to +processes identified by name. The fuser command identifies the PIDs +of processes that are using specified files or filesystems. + +%prep +%setup -q + +%build +%configure --prefix=/usr +make %{?_smp_mflags} + +%install +%make_install + +mkdir -p %{buildroot}/bin +mv %{buildroot}%{_bindir}/fuser %{buildroot}/bin/ +mkdir -p %{buildroot}/usr/share/pixmaps/ +install -m 644 icons/pstree16.xpm %{buildroot}/usr/share/pixmaps/ +install -m 644 icons/pstree32.xpm %{buildroot}/usr/share/pixmaps/ + + +%remove_docs + +%files +/bin/fuser +%{_bindir}/killall +%{_bindir}/oldfuser +%{_bindir}/pstree +%{_bindir}/pstree.x11 +%{_prefix}/share/locale/*/LC_MESSAGES/* +%{_prefix}/share/pixmaps/pstree*.xpm diff --git a/po/ChangeLog b/po/ChangeLog new file mode 100644 index 0000000..215f1e7 --- /dev/null +++ b/po/ChangeLog @@ -0,0 +1,53 @@ +2007-03-02 gettextize + + * Makefile.in.in: Upgrade to gettext-0.16.1. + +2004-04-30 gettextize + + * Makefile.in.in: New file, from gettext-0.14.1. + * Makevars: New file, from gettext-0.14.1. + * Rules-quot: New file, from gettext-0.14.1. + * boldquot.sed: New file, from gettext-0.14.1. + * en@boldquot.header: New file, from gettext-0.14.1. + * en@quot.header: New file, from gettext-0.14.1. + * insert-header.sin: New file, from gettext-0.14.1. + * quot.sed: New file, from gettext-0.14.1. + * remove-potcdate.sin: New file, from gettext-0.14.1. + +2004-04-05 gettextize + + * Makefile.in.in: Upgrade to gettext-0.14.1. + * Makevars: Upgrade to gettext-0.14.1. + * Rules-quot: Upgrade to gettext-0.14.1. + +2003-11-28 gettextize + + * Makefile.in.in: Upgrade to gettext-0.12.1. + +2002-08-16 gettextize + + * Makefile.in.in: New file, from gettext-0.11.5. + * Rules-quot: New file, from gettext-0.11.5. + * boldquot.sed: New file, from gettext-0.11.5. + * en@boldquot.header: New file, from gettext-0.11.5. + * en@quot.header: New file, from gettext-0.11.5. + * insert-header.sin: New file, from gettext-0.11.5. + * quot.sed: New file, from gettext-0.11.5. + * remove-potcdate.sin: New file, from gettext-0.11.5. + +2001-06-13 gettextize + + * Makefile.in.in: Upgrade to gettext-0.10.36. + +2001-06-13 gettextize + + * Makefile.in.in: Upgrade to gettext-0.10.36. + +2001-06-13 gettextize + + * Makefile.in.in: Upgrade to gettext-0.10.36. + +2001-06-13 gettextize + + * Makefile.in.in: Upgrade to gettext-0.10.36. + diff --git a/po/LINGUAS b/po/LINGUAS new file mode 100644 index 0000000..1c5cc6b --- /dev/null +++ b/po/LINGUAS @@ -0,0 +1,2 @@ +# Enabled languages +bg ca de eu fi fr hu it ja nb nl pl pt ru ro sv vi zh_CN diff --git a/po/Makefile.in.in b/po/Makefile.in.in new file mode 100644 index 0000000..5022b8b --- /dev/null +++ b/po/Makefile.in.in @@ -0,0 +1,403 @@ +# Makefile for PO directory in any package using GNU gettext. +# Copyright (C) 1995-1997, 2000-2006 by Ulrich Drepper +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU General Public +# License but which still want to provide support for the GNU gettext +# functionality. +# Please note that the actual code of GNU gettext is covered by the GNU +# General Public License and is *not* in the public domain. +# +# Origin: gettext-0.16 + +PACKAGE = @PACKAGE@ +VERSION = @VERSION@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ + +SHELL = /bin/sh +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datarootdir = @datarootdir@ +datadir = @datadir@ +localedir = @localedir@ +gettextsrcdir = $(datadir)/gettext/po + +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ + +# We use $(mkdir_p). +# In automake <= 1.9.x, $(mkdir_p) is defined either as "mkdir -p --" or as +# "$(mkinstalldirs)" or as "$(install_sh) -d". For these automake versions, +# @install_sh@ does not start with $(SHELL), so we add it. +# In automake >= 1.10, @mkdir_p@ is derived from ${MKDIR_P}, which is defined +# either as "/path/to/mkdir -p" or ".../install-sh -c -d". For these automake +# versions, $(mkinstalldirs) and $(install_sh) are unused. +mkinstalldirs = $(SHELL) @install_sh@ -d +install_sh = $(SHELL) @install_sh@ +MKDIR_P = @MKDIR_P@ +mkdir_p = @mkdir_p@ + +GMSGFMT_ = @GMSGFMT@ +GMSGFMT_no = @GMSGFMT@ +GMSGFMT_yes = @GMSGFMT_015@ +GMSGFMT = $(GMSGFMT_$(USE_MSGCTXT)) +MSGFMT_ = @MSGFMT@ +MSGFMT_no = @MSGFMT@ +MSGFMT_yes = @MSGFMT_015@ +MSGFMT = $(MSGFMT_$(USE_MSGCTXT)) +XGETTEXT_ = @XGETTEXT@ +XGETTEXT_no = @XGETTEXT@ +XGETTEXT_yes = @XGETTEXT_015@ +XGETTEXT = $(XGETTEXT_$(USE_MSGCTXT)) +MSGMERGE = msgmerge +MSGMERGE_UPDATE = @MSGMERGE@ --update +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +POFILES = @POFILES@ +GMOFILES = @GMOFILES@ +UPDATEPOFILES = @UPDATEPOFILES@ +DUMMYPOFILES = @DUMMYPOFILES@ +DISTFILES.common = Makefile.in.in remove-potcdate.sin \ +$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) +DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \ +$(POFILES) $(GMOFILES) \ +$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) + +POTFILES = \ + +CATALOGS = @CATALOGS@ + +# Makevars gets inserted here. (Don't remove this line!) + +.SUFFIXES: +.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update + +.po.mo: + @echo "$(MSGFMT) -c -o $@ $<"; \ + $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ + +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ + cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo + +.sin.sed: + sed -e '/^#/d' $< > t-$@ + mv t-$@ $@ + + +all: all-@USE_NLS@ + +all-yes: stamp-po +all-no: + +# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no +# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because +# we don't want to bother translators with empty POT files). We assume that +# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty. +# In this case, stamp-po is a nop (i.e. a phony target). + +# stamp-po is a timestamp denoting the last time at which the CATALOGS have +# been loosely updated. Its purpose is that when a developer or translator +# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, +# "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent +# invocations of "make" will do nothing. This timestamp would not be necessary +# if updating the $(CATALOGS) would always touch them; however, the rule for +# $(POFILES) has been designed to not touch files that don't need to be +# changed. +stamp-po: $(srcdir)/$(DOMAIN).pot + test ! -f $(srcdir)/$(DOMAIN).pot || \ + test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) + @test ! -f $(srcdir)/$(DOMAIN).pot || { \ + echo "touch stamp-po" && \ + echo timestamp > stamp-poT && \ + mv stamp-poT stamp-po; \ + } + +# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', +# otherwise packages like GCC can not be built if only parts of the source +# have been downloaded. + +# This target rebuilds $(DOMAIN).pot; it is an expensive operation. +# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. +$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed + if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \ + msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \ + else \ + msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \ + fi; \ + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ + --files-from=$(srcdir)/POTFILES.in \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address="$$msgid_bugs_address" + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +# This rule has no dependencies: we don't need to update $(DOMAIN).pot at +# every "make" invocation, only create it when it is missing. +# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +# This target rebuilds a PO file if $(DOMAIN).pot has changed. +# Note that a PO file is not touched if it doesn't need to be changed. +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + if test -f "$(srcdir)/$${lang}.po"; then \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \ + else \ + $(MAKE) $${lang}.po-create; \ + fi + + +install: install-exec install-data +install-exec: +install-data: install-data-@USE_NLS@ + if test "$(PACKAGE)" = "gettext-tools"; then \ + $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ + for file in $(DISTFILES.common) Makevars.template; do \ + $(INSTALL_DATA) $(srcdir)/$$file \ + $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + for file in Makevars; do \ + rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +install-data-no: all +install-data-yes: all + $(mkdir_p) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkdir_p) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +install-strip: install + +installdirs: installdirs-exec installdirs-data +installdirs-exec: +installdirs-data: installdirs-data-@USE_NLS@ + if test "$(PACKAGE)" = "gettext-tools"; then \ + $(mkdir_p) $(DESTDIR)$(gettextsrcdir); \ + else \ + : ; \ + fi +installdirs-data-no: +installdirs-data-yes: + $(mkdir_p) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkdir_p) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +# Define this as empty until I found a useful application. +installcheck: + +uninstall: uninstall-exec uninstall-data +uninstall-exec: +uninstall-data: uninstall-data-@USE_NLS@ + if test "$(PACKAGE)" = "gettext-tools"; then \ + for file in $(DISTFILES.common) Makevars.template; do \ + rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +uninstall-data-no: +uninstall-data-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +check: all + +info dvi ps pdf html tags TAGS ctags CTAGS ID: + +mostlyclean: + rm -f remove-potcdate.sed + rm -f stamp-poT + rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + rm -fr *.o + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES *.mo + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f stamp-po $(GMOFILES) + +distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: + $(MAKE) update-po + @$(MAKE) dist2 +# This is a separate target because 'update-po' must be executed before. +dist2: stamp-po $(DISTFILES) + dists="$(DISTFILES)"; \ + if test "$(PACKAGE)" = "gettext-tools"; then \ + dists="$$dists Makevars.template"; \ + fi; \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + dists="$$dists $(DOMAIN).pot stamp-po"; \ + fi; \ + if test -f $(srcdir)/ChangeLog; then \ + dists="$$dists ChangeLog"; \ + fi; \ + for i in 0 1 2 3 4 5 6 7 8 9; do \ + if test -f $(srcdir)/ChangeLog.$$i; then \ + dists="$$dists ChangeLog.$$i"; \ + fi; \ + done; \ + if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ + for file in $$dists; do \ + if test -f $$file; then \ + cp -p $$file $(distdir) || exit 1; \ + else \ + cp -p $(srcdir)/$$file $(distdir) || exit 1; \ + fi; \ + done + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for creating PO files. + +.nop.po-create: + @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ + echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ + exit 1 + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: + +Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ + cd $(top_builddir) \ + && $(SHELL) ./config.status $(subdir)/$@.in po-directories + +force: + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/po/Makevars b/po/Makevars new file mode 100644 index 0000000..5562d8c --- /dev/null +++ b/po/Makevars @@ -0,0 +1,41 @@ +# Makefile variables for PO directory in any package using GNU gettext. + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = .. + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgstr strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Free Software Foundation, Inc. + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = csmall@small.dropbear.id.au + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = diff --git a/po/POTFILES.in b/po/POTFILES.in new file mode 100644 index 0000000..c437b71 --- /dev/null +++ b/po/POTFILES.in @@ -0,0 +1,5 @@ +src/killall.c +src/fuser.c +src/peekfd.c +src/pstree.c +src/signals.c diff --git a/po/Rules-quot b/po/Rules-quot new file mode 100644 index 0000000..9c2a995 --- /dev/null +++ b/po/Rules-quot @@ -0,0 +1,47 @@ +# Special Makefile rules for English message catalogs with quotation marks. + +DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot + +.SUFFIXES: .insert-header .po-update-en + +en@quot.po-create: + $(MAKE) en@quot.po-update +en@boldquot.po-create: + $(MAKE) en@boldquot.po-update + +en@quot.po-update: en@quot.po-update-en +en@boldquot.po-update: en@boldquot.po-update-en + +.insert-header.po-update-en: + @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ + if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + ll=`echo $$lang | sed -e 's/@.*//'`; \ + LC_ALL=C; export LC_ALL; \ + cd $(srcdir); \ + if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ + if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "creation of $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +en@quot.insert-header: insert-header.sin + sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header + +en@boldquot.insert-header: insert-header.sin + sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header + +mostlyclean: mostlyclean-quot +mostlyclean-quot: + rm -f *.insert-header diff --git a/po/bg.gmo b/po/bg.gmo new file mode 100644 index 0000000000000000000000000000000000000000..57534a709b2c193df3337dcba2f952741091327a GIT binary patch literal 12113 zcmb`NTWlQHdB?}OwPl*Lb#F=ABqw%MleU%;Wyi89t2QmmGGU1#Buc(PafiFZIdjP|9b71E+FlF|AhPXT6M3bX~%!ay3J=t~PUaM73k z{@!JSzm7MO=o^FR~-V9Xp%217e9QudQSM%#1K_%zELpA@ZUk!ryp`U~5`hTFm z4!!y_LGXF#wa|N@JE5b{Z$dwSz6N~}d;ZmD(Vgpiej^C(hAu;IfnI>>{?DLSL%+fw z>9-v!x$cGj89w?t^k4AF2RuB${eM7-pFuaX_)nqNV#EpPr!l_x?SwuAJql%N@I&Z! z=s!Zg2E7_5J`8;XD*v{i`=C=_2!iLKXQ0B!4G3{3^kJyveI>vCC+H!rzlag{LL1Pn z(7%Q5g#IV=KIm2#1e4Gwpt}DavYO{}p;W^gb4Sjq%SyKfs=Qa8`r+ zcfhO(U5DNeybVX;e+)M!X!kdQvM!X=;<4ansB) zGxH~fa#Cy7os;;T(f%HM8c|qswT1Qr&5gBcwGkzVtrhr$=~0uhSgS6?39F!=n~xAX zGQM%OteF*N$}XCcf9z6LJ6f$BtGX0*!b(@eN0@;*qMj+GTJ^dH@*sjM)|Tp(kY8qw zguzKvj*g>E{xLc03G-*B_U%Sa7gn)sBdV675~eOUD`CP7hNR{cq)cIx%W-ge&&_TXQ%Jd*t8L%LfG)u8iE1v?fMW(ws@xtoFiu zhl5X{;uHgIWToRH!Dv2gEVz^4yA-68%o_=Ig^GhR&?Xd@VuejHtcUY)g}^62Xn;f` zxN60)5xJ#ksYVKscP$Sft}NQ&rojs_Ku>GMqfz6!6i+S3#mH5gOY>2JU^zz{WH`^| z&`b$(2%j$`wWW^kc)!u?ic+gbRktN-6t^rj!uh_1{UgZ(+OT^AQ7>#7bR7IHdP_LWAL&-hdXv9VO(|x zmvAIl-&Jc?O5m%}pRhNTyr9!c%)&yHB(-GH?VGy);k$Ov&fQ~E=3x|7Yt8Z^mYJ?D zhm{y!Dkt?&j^p}Xg&0gL)s-nh)t<*> zj0J+Rgo4Z=Q!YA#suuMonmxD_r$yBc#+tNKcOKlo_t4z#y$`sV{qDZ00|%yN<{lUy znN!B+-vWsUL@hLqg-Nv8oN}VpBqK!bSX2=sWyvHW-!_tXzDcl=RS|;hq|~hdO{KXm z_RJh|dm%tap0-i7K z0A>H|1Jg5m(0o?q41pTWq$<&h70Sv;pgJXegq}2Nj0A`BeAI*Zsk_ZBhtjZ&z1ls^ zLuCG4`)B5M-#>T6Jyd8~vgQ{Z%yc<^Bw0S@>?$vqN37hAk0Z(;qy4jU)B9(R@C-hM zO9$5D5{44vGAvcK#U@YB{$b&;dMA>;^&TI&W7^T?V$9N`alKty@!*motrAx;eTwJ8 zPg*`raRK7ofDra&D^6uhisHsJnGAAXLPhhMAa><@JWJ~VfC;TAV~s2Ue*rD*KRqI-m13829Pq`D$)v$az4 zs?Rx=Ijy|;>gLmTd$dn6VUllNZ0_{z@=fNW_SMaKnZ{$5;9N?Qc8!=SlrJhaT2iU5 z-DAmPJ?k!1!m_$l8W7sFKzoV2k|4C^&qrcW@~J*0UxFAvVmw&jN#aI*Nf@JujRbi_ z^xadks0+Pyy4e_9S_5S@uSCZ;o7BEe%Tkyw6%PAWd(zcYt1{cRjc=omoESM^&3s{B zT8>MFJDcUSFjt#&#Z+be4*NS^N^14_C``uV(sWHuH!4})F?Qli%05xc*p|v|s(k(n?k@wUTYP>>Uls ze!#G7jbU%|le-(-*T_|3df4urN9(P}Tc@*gFh2$J4gRh(TkBSvEwVbS|{_>rGQo+ast5o*BLA|vmdlpxI{O`bBV}awTrE9 zBH~G1o|7^rr)C8Uu6r*2Q(m zQ39f$N2qnM`_krrv&!;U|)7qhe3E7?ogGugLPmU72g{CJ>X6c7zu@Eu%re3kTVw`D)I2^8rE(*wbwpG#wi)`9oAUy zJBcw|Go_6T!R&&7NwQD|fvG~*YlZqNQe01b=;dcPo+UPZ3BSFH*It&_;JGUP$S2R4 zA7JSLAwF%G4u-~kyz}PVO}2XJNoH$uPrUOchy3CWfy^l`)kUmFq3uB zP+vTZRwh#)Y`Wq~k5f!qH%Tn1UV3np39;WH9-hr!`beP7!71h^`93ZPdH)YM;&N^P zV#7Y8l9d>E-CJJC&+tGpZ2bu)P?j{0n2%Z0@)p{H=vA~->|3Sb)`mZ?(j$eOoFRuP zU2%(l7}hY;cF=135KFq?g%3?!{%lM9%s+XW?F*&$QP*JX$e*3GZ1Q`kN<^h%HjpN0 zd!C>>7Lcu2%9NqpG44Z?p5OUvp4ayc{ji#HQok;?tqUjROu~b5gk-YK8wg`DgJ;dc zGM|1S03|OMb#=tV8p>XQq!s~%1Yuzr==u=!$qIG`XA4>&+=WTJDgH09xD;8i(fV5EH&Y0VZYlbyOw^=`NNZVy?@sHzd9QK;Cm$U!8qh z7VQhvc2ppvfP4|e3vvo;E1Nm$dwLE;9A;s!8itkH>VPb74aB?oRdI?ET23k45I$5> z1_~H9PPu(!@Zd80uFpMql}69ZyhWQzDK%8cUS^kd=#XW_bl}W$h-WUH=*tE0l}WH? zkAsIh_fi(rwbkrRLP7-yY;+uggDf+=?cQHGyD5Et<$E8dQE!CFL9&`Myn0)!kKSi1 zEYvW$q{u)R#r4-Yk3|J^C0_k!?wE<;0xj{iZ@D-Py?wO`0A_`H{J|r|%(Dek}^2=lf6P5pLP6sj+FT{-*0EnIohnJvzPe3kiE)-=f+1Er$hx0?N<3kp5|*? zYu&imdJOEH#xCrvNFV~%V4f8s^X*V>B{1GAAleRa2mFQ$roN4xt%)45je;^1i}>C> zH~m>Zfcw~6rlUj(q!YN|w*eSpT)nP2c6;6qAc1XzO&34&fW0b!t--k47zvrS zG1u<0T_=Yk76E#4iC5O%iyK5u+;(GVu3Mv1rJGegqD{yR)>jfd9<3mhT>G79@5{NV zyJ>9!4?9-Y&UeQ$M*n*Y5O)@pU!k}EZuWBaihqI8yX6@2B7=e5ZSj$O%WW?-1{TB{ z152{niw5e~x^Fp{#Fl;7{Csx*Yme^m-rd3Qw;$l9H_gZod45*9!`8ph0agFY5+6+b z)dpHs8zXmi)!b08shfhLFXnQr^1kA>=2t;PfF4(@OkiS+j_lc{HZ-|PY|Lp0K zmd-ZY+P-`HnT^!%)s%f7GGE#TJtf1hgSx=SPWBWF8rVV^)qd@tezB2R}S1C4HbUue!X)phPO z+n@{NT^o`rxbTtQ$7((AXZ^8@l?_E6UHb|Xd?0mZ>UCm)9*DTd>w=E8g|KEk9U1b_ z|DH1>;jQkHOuV^o;;>Z>Nn!|k1o2krPvK_I|-!f=FrPrMQ3nHq-sQ>@~ literal 0 HcmV?d00001 diff --git a/po/bg.po b/po/bg.po new file mode 100644 index 0000000..53c1b77 --- /dev/null +++ b/po/bg.po @@ -0,0 +1,487 @@ +# Message catalog for psmisc +# Copyright © 2006 Free Software Foundation, Inc. +# This file is distributed under the same license as the psmisc package. +# Anton Zinoviev , 2006 +# +# This file should be sent to translation@iro.umontreal.ca with the +# following subject line: TP-Robot psmisc-22.2pre1.bg.po +msgid "" +msgstr "" +"Project-Id-Version: psmisc 22.2pre1\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2006-03-07 11:49+0200\n" +"Last-Translator: Anton Zinoviev \n" +"Language-Team: Bulgarian \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" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Да се убие ли %s(%s%d) ? (д/Н) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Да се убие ли %s(%s%d) ? (д/Н) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "" +"Въз основа на състоянието на процеса не може да се установи потребителят " +"собственик\n" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "Неправилен регулярен израз: %s\n" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "пропуска се частичнотото съвпадение %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "%s(%s%d) се убива със сигнал %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: никой процес не е убит\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"Използване: pidof [ -eg ] ИМЕ...\n" +" pidof -V\n" +"\n" +" -e изисква точно съвпадение при много дълги имена;\n" +" пропускане, ако командният ред не е достъпен\n" +" -g показва групата на процеса вместо собственика\n" +" -V извежда информация за версията\n" +"\n" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"Използване: killall [-Z КОНТЕКСТ] [-u ПОТРЕБ] [ -eIgiqrvw ] [ -СИГНАЛ ] " +"ИМЕ...\n" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "Използвване: killall [ОПЦИЯ]... [--] ИМЕ...\n" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact изисква точно съвпадение при много дълги имена\n" +" -I,--ignore-case нечувствително към малки/големи букви сравнение с " +"името\n" +" -g,--process-group убива групата на процеса вместо самия процес\n" +" -i,--interactive пита за потвърждение преди да убие\n" +" -l,--list извежда всички познати имена на сигнали\n" +" -q,--quiet да не протестира (например ако никой процес не е " +"убит)\n" +" -r,--regexp използва ИМЕ като разширен регулярен израз\n" +" -s,--signal СИГНАЛ изпраща този сигнал вместо SIGTERM\n" +" -u,--user ПОТРЕБ убива само процес(и), изпълнявани от ПОТРЕБителя\n" +" -v,--verbose съобщава, ако успешно е изпратен сигнал\n" +" -V,--version извежда информация за версията\n" +" -w,--wait чака докато процесът умре\n" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -Z,--context РЕГИЗР убива само процес(и) от посочения контекст на " +"сигурност\n" +" (трябва да предхожда останалите аргументи)\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright © 1993-2005 Werner Almesberger и Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc се разпространява без АБСОЛЮТНО НИКАКВИ ГАРАНЦИИ.\n" +"Това е свободен софтуер и вие може да го разпространявате свободно съгласно\n" +"условията на Основната общодостъпна лицензия на ГНУ.\n" +"За повече информация относно това, погледнете файловете с име COPYING.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "Не може да бъде намерен потребител с име %s\n" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Максималният брой имена е %d\n" + +# Мисля, че става въпрос за /proc (Антон Зиновиев) +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s е празна (не е монтирана?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"Използване: fuser [ -a | -s | -c ] [ -n ВИДИМЕ ] [ -СИГНАЛ ] [ -kimuv ] " +"ИМЕ...\n" +" [ - ] [ -n ВИДИМЕ ] [ -СИГНАЛ ] [ -kimuv ] ИМЕ...\n" +" fuser -l\n" +" fuser -V\n" +"Показва кои процеси използват посочените файлове, гнезда или файлови " +"системи.\n" +"\n" +" -a извежда също и неизползваните файлове\n" +" -c монтирана файлова система (същото като -m)\n" +" -f игнорира се (за съвместимост с POSIX)\n" +" -i пита преди да убие (без -k се игнорира)\n" +" -k убива процесите, използващи посочения файл\n" +" -l извежда достъпните имена на сигнали\n" +" -m показва всички процеси, използващи зададената файлова система\n" +" -n ВИДИМЕ използва такъв вид имена (може да бъде file, udp или tcp)\n" +" -s „тих режим“ - не съобщава какво се прави\n" +" -СИГНАЛ изпраща този сигнал вместо SIGKILL\n" +" -u извежда собствениците на процесите\n" +" -v подробен изход\n" +" -V извежда информация за версията на fuser\n" +" -4 търси само IPv4-гнезда\n" +" -6 търси само IPv6-гнезда\n" +" - отменя всички опции\n" +"\n" +"Имената от вид udp/tcp са: [локален_порт][,[отдалечен_хост][," +"[отдалечен_порт]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (PSmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "Каталогът /proc не може да се отвори: %s\n" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "Не може да се задели памет за съответстващ процес: %s\n" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "Не може да се достигне мястото на монтиране %s: %s\n" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "Не може да се достигне %s: %s\n" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "Не може да се определи локалният порт %s: %s\n" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "Непознат вид адрес на локалния порт %d (unknown local port AF)\n" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "Не може да се отвори файлът за протокол „%s“: %s\n" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "Опцията за вид име изисква аргумент." + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "Неправилен вид имена" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "При опцията за файлова система може да се посочват само файлове" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "Не е зададена спецификация на процес" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "Не може да използвате едновременно опциите -m и -c" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "опцията -a не може да се използва едновременно с -q" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "Не може да търсите само IPv4-гнезда и в същото време само IPv6-гнезда" + +#: src/fuser.c:901 +#, fuzzy, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" +"\n" +"%*s ПОТРЕБИТЕЛ Пот№ ДОСТЪП КОМАНДА\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "(неизвест)" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "Файлът %s не може да се достигне: %s\n" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "Не може да се отвори /proc/net/unix: %s\n" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "Не може да се отвори /etc/mtab: %s\n" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Да се убие ли процесът %d? (д/Н) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "Процесът %d не може да бъде убит: %s\n" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "Не може да се отвори мрежово гнездо.\n" + +#: src/fuser.c:1241 +#, c-format +msgid "Cannot find socket's device number.\n" +msgstr "Не може да бъде намерен номерът на устройството на гнездото.\n" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "Вътрешна грешка: стойността на MAX_DEPTH не е достатъчно голяма.\n" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"Използване: pstree [ -a ] [ -c ] [ -h | -H ПРОЦЕС ] [ -l ] [ -n ] [ -p ] [ -" +"u ]\n" +" [ -A | -G | -U ] [ ПРОЦЕС | ПОТРЕБ ]\n" +" pstree -V\n" +"Извежда дървото на процесите.\n" +"\n" +" -a извежда аргументите от командните редове\n" +" -A използва само ASCII-знаци за линиите\n" +" -c не свива идентичните поддървета\n" +" -h подчертава текущия процес и предшествениците му\n" +" -H ПРОЦЕС подчертава този процес и предшествениците му\n" +" -G използва псевдографичните знаци на VT100\n" +" -l не отсича дългите редове\n" +" -n сортира изхода според номера на процеса\n" +" -p извежда номерата на процесите; влече -c\n" +" -u посочва промените на собственика\n" +" -U използва псевдографичните знаци на UTF-8 (Уникод)\n" +" -V извежда информация за версията на pstree\n" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr " -Z показва контекста на сигурност за SELinux\n" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" ПРОЦЕС започва от този номер на процес; по подразбиране от 1 (init)\n" +" ПОТРЕБ показва само поддърветата, основани от този потребител\n" +"\n" + +#: src/pstree.c:778 +#, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "Не е зададена стойност на TERM\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "Не може да се определят възможностите на терминала\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "Няма такъв потребител: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "Не е намерен нито един процес.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Натиснете Return, за да се завърши\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: непознат сигнал; %s -l извежда познатите сигнали.\n" + +#~ msgid "Cannot open protocol file \"%s\": %s" +#~ msgstr "Не може да се отвори файлът за протокол „%s“: %s" diff --git a/po/boldquot.sed b/po/boldquot.sed new file mode 100644 index 0000000..4b937aa --- /dev/null +++ b/po/boldquot.sed @@ -0,0 +1,10 @@ +s/"\([^"]*\)"/“\1”/g +s/`\([^`']*\)'/‘\1’/g +s/ '\([^`']*\)' / ‘\1’ /g +s/ '\([^`']*\)'$/ ‘\1’/g +s/^'\([^`']*\)' /‘\1’ /g +s/“”/""/g +s/“/“/g +s/”/”/g +s/‘/‘/g +s/’/’/g diff --git a/po/ca.gmo b/po/ca.gmo new file mode 100644 index 0000000000000000000000000000000000000000..ec626cd491a7653c8b3b1fc5b551ce4a8d55bc8c GIT binary patch literal 1992 zcmY*Z%W@nw6m1~9n(!!!f)uaZ1%vHMx-(-;Y$hS`WEflq&v?q7BxQE$Zq1CaT52S< zJzh{OQpJ)LS;7xcd;#qF1~ycR4apW(tl+4p{YaNJ$GVd4J@-oI{_*O$`vJa}G2X`b z9^(y+^H1Oh-xTQW0{A-cTi_D#2Ot4|tL+bg7cl=1coBHv$sl+axCVR;co*o;OW>ct zd-Z($R1my^`PV?d|2yCzeEbZ22lK|$bL;{?z?=c!2i^yIUcUl;yx)Nh;J-lc=i)O# z@D}g}@IBxcz`uas)b`13MmLv2EVfB$DvVCKwX`p!e&8*hwiXSR$lwg4;0o94>Kov0)q865XW5 zqbq|YnwyWqHbCa=0?3`5I23ML$D;PXiK&c^bV-=dA(!3}IZcLVsFD#$={N~TAi+)OrdULctmo_}8-v@l!4)^C z*|1EcNNG!?Tv;B6pK619f?J`++T_d$t%xPMM4hMHa)JrY>}9fG4}|jJn&y zz0JV}G9Ma$t%keOC{Hbw+VU_M^>+F`AO9RIcVS@nMNtSfp@JDFKnVU(Fn7aJW5+x`tP|MV~N-TUl;4SEE)dYOYXgwY|K0snu#Wu`$}=2f~Lv-M138mZRnx zwU*l}S1&dFzAa{5G%`$C$(%NA+9>^d&gnCKfQ!FAnNQa)$56lfe3$j9-SyHZFd)HO<{ z%%IjE3#+5GwGTgvTBn;m=P@@?Po+A;HMD6h5xACyrAL;M5|0SdCA%{dxsbWcRi@&rtd>3SXa zBpzp;Kmqv!2p%c;c~y>D=5wOX=md$^okZ73@EMZhVn*z%l3VAGQnpaqk{R)s_76DK zn(y>`gAwia2D?4#c80Xk@!H?)#9>Fw{`S{!tb1R&(#u~Ee4`Mk?SaTp8DeL&FH9s+ zPF)w-OCS9Zc}V6xKU6YxL<$HL8U^05YxV+kEVqXQI`SI1P!Ox*?WtdPY6{1iMDW0A6qp&u+jaJb$F Vo^7fHxMmOMgqZ>Fc}w@L;eWU(IHv#r literal 0 HcmV?d00001 diff --git a/po/ca.po b/po/ca.po new file mode 100644 index 0000000..4b27edd --- /dev/null +++ b/po/ca.po @@ -0,0 +1,512 @@ +# Catalan translation for psmisc. +# Copyright (C) 2004 Free Software Foundation, Inc. +# This file is distributed under the same license as the psmisc package. +# Guillem Jover , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 21.6cvs\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2004-12-08 12:46+0100\n" +"Last-Translator: Guillem Jover \n" +"Language-Team: Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Voleu matar %s(%s%d)? (s/N) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Voleu matar %s(%s%d)? (s/N) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "s'evitarà la coincidència parcial %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "S'ha matat %s(%s%d) amb el senyal %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: no s'ha matat cap procés\n" + +#: src/killall.c:497 +#, fuzzy, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"Forma d'ús: pidof [ -eg ] nom ...\n" +" pidof -V\n" +"\n" +" -e requereix coincidència exacta per a noms molt llargs;\n" +" s'eviten si la línia d'ordres no està disponible\n" +" -g mostra l'ID del grup de procés en comptes de l'ID de procés\n" +" -V mostra informació de versió\n" +"\n" + +#: src/killall.c:511 +#, fuzzy, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"Forma d'ús: killall [-s sid] [-c context] [ -egiqvw ] [ -senyal ] nom ...\n" + +#: src/killall.c:514 +#, fuzzy, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "Forma d'ús: killall [ OPCIONS ] [ -- ] nom ...\n" + +#: src/killall.c:517 +#, fuzzy, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V --version\n" +"\n" +" -e,--exact requereix coincidència exacta per a noms molt llargs\n" +" -I,--ignore-case coincidència de nom sense sensibilitat a majúscules\n" +" -g,--process-group mata el grup del procés en comptes del procés\n" +" -i,--interactive pregunta abans de matar\n" +" -l,--list llista tots els noms de senyals coneguts\n" +" -q,--quiet no mostra queixes\n" +" -s,--signal envia «senyal» en comptes de «SIGTERM»\n" +" -v,--verbose informa si el senyal s'ha enviat amb èxit\n" +" -V,--version mostra informació de versió\n" +" -w,--wait espera fins que el procés mori\n" +"\n" + +#: src/killall.c:533 +#, fuzzy, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -d,--sid només mata processos que tinguin sid\n" +" -c,--context només mata processos que tinguin scontext\n" +" (-s, -c són mútuament excloents i han de precedir altres arguments)\n" +"\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, fuzzy, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright (C) 1993-2002 Werner Almesberger i Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc ve ABSOLUTAMENT SENSE CAP GARANTIA.\n" +"Això és software lliure, i esteu convidats a redistribuir-lo sota els " +"termes\n" +"de la llicencia publica general de GNU.\n" +"Per a més informació sobre aquests assumptes, vegeu el fitxer COPYING.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "El nombre màxim de noms és %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s és buit (no s'ha muntat?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"Forma d'ús:\n" +" fuser [ -a | -s | -c ] [ -n espai ] [ -senyal ] [ -kimuv ] nom ...\n" +" [ - ] [ -n espai ] [ -senyal ] [ -kimuv ] nom ...\n" +" fuser -l\n" +" fuser -V\n" +"\n" +" -a mostra també fitxers no usats\n" +" -c sistemes de fitxers muntats\n" +" -f ignorat silenciosament (per compatibilitat amb POSIX)\n" +" -k matar els processos que accedeixen a aquest fitxer\n" +" -i pregunta abans de matar (ignorat sense -k)\n" +" -l llista els noms dels senyals\n" +" -m sistema de fitxers muntat\n" +" -n espai busca en l'espai de noms especificat (file, udp o tcp)\n" +" -s operació silenciosa\n" +" -senyal envia «senyal» en comptes de SIGKILL\n" +" -u mostra ids d'usuari\n" +" -v mode verbal\n" +" -V mostra informació de la versió\n" +" -4 busca només sòcols IPv4\n" +" -6 busca només sòcols IPv6\n" +" - inicialitza opcions\n" +"\n" +" noms udp/tcp: [port_local][,[hoste_remot][,[port_remot]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, fuzzy, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "" + +#: src/fuser.c:901 +#, fuzzy, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" +"\n" +"%*s USUARI PID ACCÉS ORDRE\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Voleu matar el procés %d? (s/N)" + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "" + +#: src/fuser.c:1241 +#, fuzzy, c-format +msgid "Cannot find socket's device number.\n" +msgstr "no s'ha pogut trobar el nombre de dispositiu del sòcol" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "pstree (psmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, fuzzy, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "MAX_DEPTH no és prou gran.\n" + +#: src/pstree.c:750 +#, fuzzy, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"Forma d'ús: pstree [ -a ] [ -c ] [ -h | -H pid ] [ -l ] [ -n ] [ -p ] [ -" +"u ]\n" +" [ -A | -G | -U ] [ pid | usuari ]\n" +" pstree -V\n" +"\n" +" -a mostra els arguments de la línia d'ordres\n" +" -A usa caràcters de dibuix de línia ASCII\n" +" -c no compactar subarbres idèntics\n" +" -h ressaltar el procés actual i els seus ancestres\n" +" -H pid ressaltar el procés «pid» i els seus ancestres\n" +" -G usa caràcters de dibuix de línia VT100\n" +" -l no tallar les línies llargues\n" +" -n ordenar sortida per PID\n" +" -p mostra els PID; implica -c\n" +" -u mostra transicions de uid\n" + +#: src/pstree.c:768 +#, fuzzy, c-format +msgid " -Z show SELinux security contexts\n" +msgstr "" +" -s mostra els SID de Flask\n" +" -x mostra els contextes de seguretat de Flask\n" + +#: src/pstree.c:771 +#, fuzzy, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" -U usar caràcters de dibuix de línia UTF-8 (Unicode)\n" +" -V mostra informació de la versió\n" +" pid comença en pid, predeterminat 1 (init)\n" +" user només mostra arbres amb arrel en processos d'aquest usuari\n" +"\n" + +#: src/pstree.c:778 +#, fuzzy, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (psmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "TERM no està especificada\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "No s'han pogut obtenir les capacitats\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "No existeix aquest nom d'usuari: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "No s'han trobat processos.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Premeu retorn per a tancar\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: senyal desconegut. «%s -l» llista els senyals.\n" + +#~ msgid "%s: SID (%s) must be numeric\n" +#~ msgstr "%s: el SID (%s) ha de ser numèric\n" + +#~ msgid "-4 flag used but proc file %s is not readable\n" +#~ msgstr "" +#~ "s'ha usat l'argument -4 però el fitxer proc %s no s'ha pogut llegir\n" + +#~ msgid "-6 flag used but proc file %s is not readable\n" +#~ msgstr "" +#~ "s'ha usat l'argument -6 però el fitxer proc %s no s'ha pogut llegir\n" + +#~ msgid "kill %d" +#~ msgstr "mata %d" + +#~ msgid "No automatic removal. Please use umount %s\n" +#~ msgstr "No s'eliminarà automàticament. Si us plau useu «umount %s»\n" + +#~ msgid "No automatic removal. Please use swapoff %s\n" +#~ msgstr "No s'eliminarà automàticament. Si us plau useu «swapoff %s»\n" + +#~ msgid "Internal error (type %d)\n" +#~ msgstr "Error intern (tipus %d)\n" + +#~ msgid "kernel mount " +#~ msgstr "muntatge de nucli " + +#~ msgid "kernel loop " +#~ msgstr "bucle de nucli " + +#~ msgid "kernel swap " +#~ msgstr "intercanvi de nucli " + +#~ msgid "ignoring -m in name space \"%s\"\n" +#~ msgstr "s'està ignorant -m en l'espai de noms «%s»\n" + +#~ msgid "%s/%s: invalid specification\n" +#~ msgstr "%s/%s: especificació no vàlida\n" diff --git a/po/de.gmo b/po/de.gmo new file mode 100644 index 0000000000000000000000000000000000000000..003bf84807f8537cdb67c5d1b6146850c78db4b4 GIT binary patch literal 1662 zcmZ`(%WfP+6m1~98o`1EiV%;x88H^_&WxSlWJnxOoQXBW9$TILw zf!_hWy&r%d1Ahm4f6stl0G|U}!0T@Y!F#yB3S7qeo40}h%K*!l9;gRzL*9kJRg)J~ zgLfcrK!TPfX^G3q&8e-lqf*z(aYpwSLLBx;X{wA)*;+c3MZsAZtm|rSWIl7$USFW@ zojc3XQm1o^_Sq;l)Gtc537Z`6LS?jWgv@DNilPX^;4zF)%eGs#l`YVHYR_+s7U*pI z!chzEUpzoKmp6{3n~{~d5-@{cw!{-z)+MRBgiq2_QUd;cR{nTrTuPf#s{LMbxBpqC*cV9(pgin3{BiI`g=}Y zG|ZxJVGT}tRN1B~OP#nI?sBD#i?(bov*}fwdOz0jII(ECYD(&>TqX! z60I9<0*)RE$2~&-SE6n=>fEI6N^fc9%Wk*Rfnv1FN7DPe(!1H{Em3#5xBOMqxdpvV zVO=yaLfJw%ZF;n?i)k*9(m0)=LWb@hr|H`9`L2!8g;m^Ac`b5|CM?Px9cvuVq1oVC zZINtjb!}2cd2@~xyVY=OxHY({LpSb(>l*W};D25r5ywy5jj9k*eNE|17|ZV7-sDkq z`%2HpIb{lnj8E=@PLEkCLQ9@{LWv~j1mv2r z`af1Jy^2*Bwtunek{%*S410r@1iEkrQvLVv@?MD<&bXxU1+!ib?xFPK2&RdGsjr@j zSpjuJBg~>|vVMVVhq^5BA%VrmgW+hfyEz!rM&HwHIEX`-I;#_i2CL&srunSK*f~7? zO(|Hlc*i$HF~|iTz@PGbLc0x|hSYvFu@*p63H>8B4jvL#pxWt)Ip1a)UeOH}Pfz@3 zBSTO=v78IeScx=ojGy4H2jkN;x<&h!d=A?App;K>RmB b7KjQiPJf0w%z$;WENe{o5lHX5;Hml#&AIAD literal 0 HcmV?d00001 diff --git a/po/de.po b/po/de.po new file mode 100644 index 0000000..19d97b2 --- /dev/null +++ b/po/de.po @@ -0,0 +1,460 @@ +# German Translation for psmisc files +# Copyright (C) 2002 Free Software Foundation, Inc. +# Wolfgang Schorer , 2002. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 20.1\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2004-11-02 13:36-0500\n" +"Last-Translator: Wolfgang Schorer \n" +"Language-Team: woolfy \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" + +# "abbrechen" wird für "kill" verwendet +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "%s(%s%d) abbrechen? (y/N) " + +# "abbrechen" wird für "kill" verwendet +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "%s(%s%d) abbrechen? (y/N) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "überspringe teilweise Übereinstimmung von %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "%s(%s%d) mit dem Signal %d abgebrochen\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: Kein Prozess abgebrochen\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright (C) 1993-2002 Werner Almesberger und Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc kommt mit KEINERLEI GARANTIE.\n" +"Dies ist freie Software, und Sie können sie gerne unter den GNU-Termen\n" +" (General Public License) weitervertreiben.\n" +"Für weitere Informationen über diese Angelegenheit sehen Sie bitte in die " +"Dateien, die\n" +" COPYING genannt werden.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Die maximale Anzahl der Namen ist %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s ist leer (nicht gemountet?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"Gebrauch: fuser [ -a | -s ] [ -n Raum ] [ -signal ] [ -kimuv ] Name ...\n" +" [ - ] [ -n Raum ] [ -signal ] [ -kimuv ] Name ...\n" +" fuser -l\n" +" fuser -V\n" +"\n" +" -a Zeige auch die nicht genutzten Dateien an\n" +" -k Breche die Prozesse ab, die auf diese Datei zugreifen\n" +" -i Frage bevor abgebrochen wird (dies wird ignoriert ohne -k)\n" +" -l Liste die Signalnamen auf\n" +" -m mounted FS\n" +" -n Raum Suche in dem angegebenen Namensraum (file, udp, or tcp)\n" +" -s Stille Operation\n" +" -signal Sende 'signal' anstatt SIGKILL\n" +" -u Zeige die Benutzer IDs an\n" +" -v Ausführliche Ausgabe\n" +" -V Zeige Versionsinformationen an\n" +" -4 Suche nur IPv4 sockets\n" +" -6 Suche nur IPv6 sockets\n" +" - Rücksetzen der Optionen\n" +"\n" +" udp/tcp Namen: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, fuzzy, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "" + +#: src/fuser.c:901 +#, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Prozess %d abbrechen? (y/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "" + +#: src/fuser.c:1241 +#, fuzzy, c-format +msgid "Cannot find socket's device number.\n" +msgstr "Kann die Gerätenummer der Sockets nicht finden" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr "" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" + +#: src/pstree.c:778 +#, fuzzy, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "" + +#~ msgid "-4 flag used but proc file %s is not readable\n" +#~ msgstr "-4 Flag verwendet, die Proc Datei %s ist aber nicht lesbar\n" + +#~ msgid "-6 flag used but proc file %s is not readable\n" +#~ msgstr "-6 Flag verwendet, die Proc Datei %s ist aber nicht lesbar\n" + +#~ msgid "kill %d" +#~ msgstr "Abbruch von %d" + +#~ msgid "No automatic removal. Please use umount %s\n" +#~ msgstr "Keine automatische Löschung. Bitte verwenden Sie umount %s\n" + +#~ msgid "No automatic removal. Please use swapoff %s\n" +#~ msgstr "Keine automatische Löschung. Bitte verwenden Sie swapoff %s\n" + +#~ msgid "Internal error (type %d)\n" +#~ msgstr "Interner Fehler (Typ %d)\n" + +#~ msgid "kernel mount " +#~ msgstr "Kernel mount " + +#~ msgid "kernel loop " +#~ msgstr "Kernel-Schleife (loop) " + +#~ msgid "kernel swap " +#~ msgstr "Kernel swap " + +#~ msgid "ignoring -m in name space \"%s\"\n" +#~ msgstr "-m wird ignoriert im Namensraum \"%s\"\n" + +#, fuzzy +#~ msgid "%s/%s: invalid specification\n" +#~ msgstr "%s/%s: Falsche Spezifikation\n" + +#~ msgid "No process references; use -v for the complete list\n" +#~ msgstr "" +#~ "Keine Prozess Referenzen; verwenden Sie -v für die komplette Liste\n" diff --git a/po/en@boldquot.header b/po/en@boldquot.header new file mode 100644 index 0000000..fedb6a0 --- /dev/null +++ b/po/en@boldquot.header @@ -0,0 +1,25 @@ +# All this catalog "translates" are quotation characters. +# The msgids must be ASCII and therefore cannot contain real quotation +# characters, only substitutes like grave accent (0x60), apostrophe (0x27) +# and double quote (0x22). These substitutes look strange; see +# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html +# +# This catalog translates grave accent (0x60) and apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019). +# It also translates pairs of apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019) +# and pairs of quotation mark (0x22) to +# left double quotation mark (U+201C) and right double quotation mark (U+201D). +# +# When output to an UTF-8 terminal, the quotation characters appear perfectly. +# When output to an ISO-8859-1 terminal, the single quotation marks are +# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to +# grave/acute accent (by libiconv), and the double quotation marks are +# transliterated to 0x22. +# When output to an ASCII terminal, the single quotation marks are +# transliterated to apostrophes, and the double quotation marks are +# transliterated to 0x22. +# +# This catalog furthermore displays the text between the quotation marks in +# bold face, assuming the VT100/XTerm escape sequences. +# diff --git a/po/en@quot.header b/po/en@quot.header new file mode 100644 index 0000000..a9647fc --- /dev/null +++ b/po/en@quot.header @@ -0,0 +1,22 @@ +# All this catalog "translates" are quotation characters. +# The msgids must be ASCII and therefore cannot contain real quotation +# characters, only substitutes like grave accent (0x60), apostrophe (0x27) +# and double quote (0x22). These substitutes look strange; see +# http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html +# +# This catalog translates grave accent (0x60) and apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019). +# It also translates pairs of apostrophe (0x27) to +# left single quotation mark (U+2018) and right single quotation mark (U+2019) +# and pairs of quotation mark (0x22) to +# left double quotation mark (U+201C) and right double quotation mark (U+201D). +# +# When output to an UTF-8 terminal, the quotation characters appear perfectly. +# When output to an ISO-8859-1 terminal, the single quotation marks are +# transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to +# grave/acute accent (by libiconv), and the double quotation marks are +# transliterated to 0x22. +# When output to an ASCII terminal, the single quotation marks are +# transliterated to apostrophes, and the double quotation marks are +# transliterated to 0x22. +# diff --git a/po/eu.gmo b/po/eu.gmo new file mode 100644 index 0000000000000000000000000000000000000000..5d3300774089263b440159b9ad2ded279a2b5310 GIT binary patch literal 1963 zcmZ8h%WfP+6m1~9n(z=H2nfMtVZ~P5lNl!_(Ik+>#<8q;9K;j!cfq_`dO6 z6uk><0|Va&z(0Y$u@9eL@F{@7-?u=7oqsPh_!1E2C~oGU9KC|^VlxkbaM1;fmoY&3 z>_eFO7wUR3{I_CBTH;ydPH9zXM>Fk}v z66Gy|pQNNxT4x)ZZN<^HP?sI$?8vd1N$jLlRAMYk=_K1YdH|O=ySidmvNgIxtEX4{ zYqT&g!>)kL;|m~ncH&sNX%mlDK&>ZEE~D+i@My2U zi_C{6wAHZlMg?kVsV&FRXy>38@(I_$vWp{I$f}Ymr%D(nK?wd)u+W7J*JNn)7o56e zFH1f{RFLUXW#`q~=(Ikn40qxKuC#GU&*m~qwtQ}rk?vAzXQC|c&VO5((bbrRY00c5 zd^{YCl5NBD=SFwq#+6Q|-Nwe`fWML2lC|e4rO_zGI;F1QVup-Brq}x+I{akUu>h26}@kY3oV)qG-s@#j5 zlM#zqm$roc(lgz5jk6HhVI^UIcP@dJ)!w9x=H$Ha(A(?noL8sQYRB6eI#XbDS|K&Z zC+=!h3aM^UIu!P|RM zxj;3SGUghqLCG~+Z?JbN%Y~9H2VF98&9%tA5=${R3!3_@YQ?1}G(l2$fLtx036k(Ci^mn86etB{p7#2K{_cRbpoX1; zy$7xMu#q;NxiKy#+^!QlL3nA5G@8aj1*3GhL391?2k)+yVxeHf9vEF{V?+_7*f`|^ zp|L2@PY^2L%5mL_cZDSIl{7}SHMTTDuce;njy}VOUME?2E0>C%Cj$m}SQHfRP9U0G ziULhL6h*iamls;UjCbcmx|$2!sC|AtaCw%j;%JP+h=IFQFMTyH5TCr6B E|6B7f-~a#s literal 0 HcmV?d00001 diff --git a/po/eu.po b/po/eu.po new file mode 100644 index 0000000..be65502 --- /dev/null +++ b/po/eu.po @@ -0,0 +1,601 @@ +# Basque translation of psmisc. +# Copyright (C) 2005 Free Software Foundation, Inc. +# This file is distributed under the same license as the psmisc package. +# Mikel Olasagasti , 2004, 2005. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 21.6pre1\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2005-02-23 14:55+0100\n" +"Last-Translator: Mikel Olasagasti \n" +"Language-Team: Basque \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "%s(%s%d) hil? (y/N) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "%s(%s%d) hil? (y/N) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "baterakuntza partziala saltatzen %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "%s(%s%d) hil da %d seinalearekin\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: ez da prozesurik hil\n" + +#: src/killall.c:497 +#, fuzzy, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"erabilera: pidof [ -eg ] izena ...\n" +" pidof -V\n" +"\n" +" -e izen oso luzeak berdin idaztera behartu;\n" +" jauzi komandoa eskuragarri ez badago\n" +" -g erakutsi prozesu taldearen IDa prozesuenaren ordez\n" +" -V bertsioaren informazioa bistaratu\n" +"\n" + +#: src/killall.c:511 +#, fuzzy, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"erabilera: killall [-s sid] [-c context] [ .egiqvw ] [ -signal ] izena ...\n" + +#: src/killall.c:514 +#, fuzzy, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "erabilera: killall [ AUKERAK ] [ -- ] izena ...\n" + +#: src/killall.c:517 +#, fuzzy, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V --version\n" +"\n" +" -e,--exact izen oso luzeak berdin idaztera behartu\n" +" -I,--ignore-case ez ezberdindu letra maiskula/minuskulak\n" +" -g,--process-group hil prozesu taldea prozesuaren ordez\n" +" -i,--interactive konfirmazioa eskatu hil aurretik\n" +" -l,--list zerrendatu seinale ezagun guztien izenak\n" +" -q,--quiet ez erakutsi kexuak\n" +" -s,--signal bidali seinalea SIGTERM-ren ordez\n" +" -v,--verbose informatu seinalea arrakasterekin bidali bada\n" +" -V,--version bertsioaren informazioa bistaratu\n" +" -w,--wait itxaron prozesuak hil arte\n" +"\n" + +#: src/killall.c:533 +#, fuzzy, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -d,--sid hil sid hori duen/duten prozesuak\n" +" -c,--context hil scontext duten prozesuak bakarrik\n" +" (-s, -c elkarren artean esklusiboak dira eta beste argumentuen aurretik " +"joan behar dute)\n" +"\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, fuzzy, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright (C) 1993-2002 Werner Almesberger eta Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc-k ez du INONGO BERMERIK.\n" +"Software librea da, eta berriro bana daiteke GNU Lizentzia Publiko " +"Orokorrak\n" +"ezarritako baldintzak betez.\n" +"Gai honi buruzko informazio gehiagorako, ikusi COPYING izena duten " +"fitxategiak.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Izen kopuru gehiengoa %d da\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s hutsik dago (muntatu gabea?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"usage: fuser [ -a | -s | -c ] [ -n hutsuneak ] [ -seinalea ] [ -kimuv ] " +"izena ...\n" +" [ - ] [ -n hutsuneak ] [ -seinalea ] [ -kimuv ] izena ...\n" +" fuser -l\n" +" fuser -V\n" +"\n" +" -a erakutsi erabiligabeko fitxategiak ere\n" +" -c muntatutako fitxategi sistemak\n" +" -f silently ignored (for POSIX compatibility\n" +" -k hil fitxategi hori erabiltzen hari diren prozesuak\n" +" -i galdetu hil baina lehenago (ignoratua -k gabe)\n" +" -l zerrendatu seinale izenak\n" +" -m muntatutako fitxategi sistemak\n" +" -n hutsuneak bilatu hutsunean espezifikatutako izena (fitxategia, udp, " +"edo tcp)\n" +" -s operazio ixila\n" +" -signal bidali seinalea SIGKILL beharrean\n" +" -u erakutsi erabiltzaileen id-ak\n" +" -v irteera xehetua\n" +" -V erakutsi bertsio informazioa\n" +" -4 erakutsi IPv4 socket-ak bakarrik\n" +" -6 erakutsi IPv6 socket-ak bakarrik\n" +" - garbitu aukerak\n" +"\n" +" udp/tcp izenak: [ataka_lokala][,[urruneko_ostalaria][,[urruneko_ataka]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, fuzzy, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "" + +#: src/fuser.c:901 +#, fuzzy, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" +"\n" +"%*s ERABILTZAILEA PID SARRERA KOMANDOA\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "%d prozesua hil? (y/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "" + +#: src/fuser.c:1241 +#, fuzzy, c-format +msgid "Cannot find socket's device number.\n" +msgstr "ezin da socket gailu zenbakia aurkitu" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "pstree (psmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, fuzzy, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "MAX_DEPTH ez da behar bezain handia\n" + +#: src/pstree.c:750 +#, fuzzy, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"erabilera: pstree [ -a ] [ -c ] [ -h | -H pid ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ pid | erabiltzailea]\n" +" pstree -V\n" +"\n" +" -a erakutsi komando lerroaren argumentoak\n" +" -A erabili ASCII karaktereak\n" +" -c ez trinkotu azpi-zuhaitz berdinak\n" +" -h nabarmentu uneko prozesuak eta honen aurrekoak\n" +" -H pid nabarmendu \"pid\" prozesua eta honen aurrekoak\n" +" -G erabili VT100 karaktereak\n" +" -l ez moztu lerro luzeak\n" +" -n sailkatu irteera PIDaren arabera PID\n" +" -p erakutsi PIDak; -c erabiltzea esan nahi du\n" +" -u erakutsi uid transizioak\n" + +#: src/pstree.c:768 +#, fuzzy, c-format +msgid " -Z show SELinux security contexts\n" +msgstr "" +" -s erakutsi SID flaskoaok\n" +" -x erakutsi seguritate testuinguru flaskoak\n" + +#: src/pstree.c:771 +#, fuzzy, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" -U erabili UTF-8 (Unicode) lerro karaktereak marrazteko\n" +" -V bertsioaren informazioa bistaratu\n" +" pid zein pid-etan hasi, lehenetsia 1 (init)\n" +" user erakutsi erabiltzaile honen zuahitz prozesuen adarrak\n" +"\n" + +#: src/pstree.c:778 +#, fuzzy, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (psmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "TERM ez dago ezarrita\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "Ezin dira terminalaren gaitasunak lortu\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "Ez dago honelako erabiltzaile izenik: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "Ez da prozesurik aurkitu.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Sakatu 'return' itxitzeko\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: seinale ezezaguna; %s -l seinaleak zerrendatu.\n" + +#~ msgid "%s: SID (%s) must be numeric\n" +#~ msgstr "%s: SIDak (%s) zenbakia izan behar du\n" + +#~ msgid "-4 flag used but proc file %s is not readable\n" +#~ msgstr "" +#~ "-4 bandera erabili da, baina %s proc fitxategia ez da irakurgarria\n" + +#~ msgid "-6 flag used but proc file %s is not readable\n" +#~ msgstr "" +#~ "-6 bandera erabili da, baina %s proc fitxategia ez da irakurgarria\n" + +#~ msgid "kill %d" +#~ msgstr "%d hil" + +#~ msgid "No automatic removal. Please use umount %s\n" +#~ msgstr "Ezin da automatikoki kendu. Mesedez erabili umount %s\n" + +#~ msgid "No automatic removal. Please use swapoff %s\n" +#~ msgstr "Ezin da automatikoki kendu. Mesedez erabili swapoff %s\n" + +#~ msgid "Internal error (type %d)\n" +#~ msgstr "barne-errorea (%d moeta)\n" + +#~ msgid "kernel mount " +#~ msgstr "kernel mount " + +#~ msgid "kernel loop " +#~ msgstr "kernel loop " + +#~ msgid "kernel swap " +#~ msgstr "kernel swap " + +#~ msgid "ignoring -m in name space \"%s\"\n" +#~ msgstr "-m ignoratzen \"%s\" izen tartean\n" + +#~ msgid "%s/%s: invalid specification\n" +#~ msgstr "%s/%s: baliogabeko espezifikazioa\n" + +#~ msgid "" +#~ "usage: pstree [ -a ] [ -c ] [ -h | -H pid ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +#~ msgstr "" +#~ "erabilera: pstree [ -a ] [ -c ] [ -h | -H pid ] [ -l ] [ -n ] [ -p ] [ -" +#~ "u ]\n" + +#~ msgid " [ -A | -G | -U ] [ pid | user]\n" +#~ msgstr " [ -A | -G | -U ] [ pid | erabiltzailea]\n" + +#~ msgid "" +#~ " pstree -V\n" +#~ "\n" +#~ msgstr "" +#~ " pstree -V\n" +#~ "\n" + +#~ msgid " -a show command line arguments\n" +#~ msgstr " -a erakutsi komando lerro argumentoak\n" + +#~ msgid " -A use ASCII line drawing characters\n" +#~ msgstr " -A erabili ASCII karaktereak lerroak marrazteko\n" + +#~ msgid " -c don't compact identical subtrees\n" +#~ msgstr " -c ez trinkotu azpi-zuahitz berdinak\n" + +#~ msgid " -h highlight current process and its ancestors\n" +#~ msgstr " -h nabarmendu uneko prozesuak eta honen aurrekoak\n" + +#~ msgid " -H pid highlight process \"pid\" and its ancestors\n" +#~ msgstr " -H pid nabarmendu \"pid\" prozesua eta honen aurrekoak\n" + +#~ msgid " -G use VT100 line drawing characters\n" +#~ msgstr " -G erabili VT100 karaktereak lerroak marrazteko\n" + +#~ msgid " -l don't truncate long lines\n" +#~ msgstr " -l ez moztu lerro luzeak\n" + +#~ msgid " -n sort output by PID\n" +#~ msgstr " -n sailkatu irteera PIDaren arabera\n" + +#~ msgid " -p show PIDs; implies -c\n" +#~ msgstr " -p erakutsi PIDak; -c erabiltzea suposatzen du\n" + +#~ msgid " -u show uid transitions\n" +#~ msgstr " -u erakutsi uid trantsizioak\n" + +#~ msgid " -s show Flask SIDs\n" +#~ msgstr " -s erakutsi SIDs flaskoak\n" + +#~ msgid " -U use UTF-8 (Unicode)) line drawing characters\n" +#~ msgstr " -U erabili UTF-8 (Unicode)) lerro karaktereak marrazteko\n" + +#~ msgid " -V display version information\n" +#~ msgstr " -V bertsioari buruzko informazioa pantailaratu\n" + +#~ msgid " pid start at pid, default 1 (init))\n" +#~ msgstr " pid hasi pid hontan, lehenetsitakoa 1 (init))\n" + +#~ msgid "" +#~ " user show only trees rooted at processes of that user\n" +#~ "\n" +#~ msgstr "" +#~ " user erakutsi erabiltzaile honen prozesuen zuahitzak\n" +#~ "\n" + +#~ msgid "pstree comes with ABSOLUTELY NO WARRANTY.\n" +#~ msgstr "pstree-k ez du INONGO BERMERIK.\n" + +#~ msgid "" +#~ "This is free software, and you are welcome to redistribute it under the " +#~ "terms\n" +#~ msgstr "" +#~ "Software librea da, eta berriro bana daiteke GNU Lizentzia Publiko " +#~ "Orokorrak\n" +#~ "ezarritako baldintzak betez.\n" + +#~ msgid "of the GNU General Public License.\n" +#~ msgstr "GNU General Public License lizentziapean.\n" + +#~ msgid "" +#~ "For more information about these matters, see the files named COPYING.\n" +#~ msgstr "" +#~ "Gai honi buruzko informazio gehiagorako, ikusi COPYING izena duten " +#~ "fitxategiak.\n" diff --git a/po/fi.gmo b/po/fi.gmo new file mode 100644 index 0000000000000000000000000000000000000000..0a8e4b6545c43fd4f21a5cf2795d1f8f7eda85ed GIT binary patch literal 1270 zcmYL{%Wfk@6owlZ7-(29Xt*rUa6lLmh4Q#VMj4t(2!tRF6Ne}mSXa8s_KCZzn!04B z5f8v_R=j~FHc0H)vgjoeJ9dZ-PXR0bvJ3_zQRw`~!^f|6K4t@I^e|cybx{7C40OV=&fz z{M6F_Gbr%G<;g2svz8SVvXQ4;v1jGd$G@*+&#C}bG>q%9L*}7;#C51ihx$}mGGo%RR*M$n>!VdK@Qu-E*6_s%+O-2VN!#Hsq)hVAQZpKZ+dP0q~p3z4wJ+j3XORV77nln{+alaH_E9=M&t+eR^!SUB*tbf0 zz0s=UDS9ZcAhXvH1aIck*m&WAHxW4yE&A zWTkeM^v33ND6OM!*nX!p2S@iRez?ao?vHsF!Fm$pM2V4-bxxnL*6gNqZ_IlY_l=$G zro;QggR5b){vh2qkc38&wn4XEJ@U7kO0xctiYaO-zZ3je+`Wp6&5V^52f8pNmYdVv zQ^vBPHiO$}r)S-q))Z64?3MTJrP`v)G%EVSnT#58xJGp*aTDFVn|rU6CKE-+E`$;q zRD2FUnM&b8t8+-No2SWP%(6-VaYYU8%-Z<&Jv!P^3_0R*V|u<4, 2004. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: psmisc 21.5\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2004-10-29 15:14+0300\n" +"Last-Translator: Lars Wirzenius \n" +"Language-Team: Finnish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/killall.c:74 +#, fuzzy, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Lopeta prosessi %s(%s%d)? (y=kyllä, n=ei) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Lopeta prosessi %s(%s%d)? (y=kyllä, n=ei) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "ohitan osittaisen osuman %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "Prosessi %s(%s%d) lopetettu signaalilla %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: ei lopetettuja prosesseja\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, fuzzy, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright (C) 1993-2002 Werner Almesberger and Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, fuzzy, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"Allaoleva on epävirallinen käännös. Tulkintatilanteissa pätee alkuperäinen\n" +"englanninkielinen versio.\n" +"\n" +"Copyright (C) 1993-2002 Werner Almesberger ja Craig Small\n" +"\n" +"PSmisc-ohjelmistolla ei ole mitään takuuta.\n" +"Tämä vapaa ohjelmisto ja saat kopioida ja levittää sitä GNU General Public\n" +"License -lisenssin mukaisesti. Tiedostossa COPYING on tarkemmat tiedot.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Suurin sallittu määrä nimiä on %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s on tyhjä (ei liitetty?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"käyttö: fuser [ -a | -s | -c ] [ -n nimistö ] [ -signaali ] [ -kimuv ] " +"nimi ...\n" +" [ - ] [ -n nimistö ] [ -signaali ] [ -kimuv ] nimi ...\n" +" fuser -l\n" +" fuser -V\n" +"\n" +" -a näytä myös käyttämättömät tiedostot\n" +" -c liitetty tiedostojärjestelmä\n" +" -f ei merkitystä (tarvitaan POSIX-yhteensopivuuden takia)\n" +" -k lopeta prosessit, jotka käyttävät tiedostoa\n" +" -i kysy ennen lopetusta (ei merkitystä ilman -k)\n" +" -l näytä signaalinimien luettelo\n" +" -m liitetty tiedostojärjestelmä\n" +" -n nimiavaruus etsi annetusta nimiavaruudesta (file, udp, tai tcp)\n" +" -s ole hiljaa\n" +" -signaali lähetä muu signaali kuin SIGKILL\n" +" -u näytä käyttäjätunnukset\n" +" -v kerro paljon ylimääräistä\n" +" -V näytä versio\n" +" -4 etsi vain IPv4-pistokkeista\n" +" -6 etsi vain IPv6-pistokkeista\n" +" - nollaa optiot\n" +"\n" +" udp/tcp-nimet: [paikallinen_portti][,[etäkone][,[etäkone]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, fuzzy, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "" + +#: src/fuser.c:901 +#, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Lopeta prosess %d? (y=kyllä, N=ei) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "" + +#: src/fuser.c:1241 +#, fuzzy, c-format +msgid "Cannot find socket's device number.\n" +msgstr "pistokkeen laitenumeroa ei löydy" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "pstree (psmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, fuzzy, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "MAX_DEPTH-vakio on liian pieni.\n" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" + +#: src/pstree.c:768 +#, fuzzy, c-format +msgid " -Z show SELinux security contexts\n" +msgstr " -x näytä Flask-kontekstit\n" + +#: src/pstree.c:771 +#, fuzzy, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" kjä näytä vain puita, jotka alkavat käyttäjän kjä omistuksessa\n" +"\n" + +#: src/pstree.c:778 +#, fuzzy, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (psmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "TERM ei ole asetettu\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "Päätteen ominaisuudet eivät ole selvillä\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "Käyttäjätunnus puuttuu: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "Prosesseja ei löydy.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Enter-näppäin sulkee\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "" + +#~ msgid "-4 flag used but proc file %s is not readable\n" +#~ msgstr "optio -4 käytössä mutta proc-tiedosto %s ei ole luettavissa\n" + +#~ msgid "-6 flag used but proc file %s is not readable\n" +#~ msgstr "optio -6 käytössä mutta proc-tiedosto %s ei ole luettavissa\n" + +#~ msgid "kill %d" +#~ msgstr "lopeta %d" + +#~ msgid "No automatic removal. Please use umount %s\n" +#~ msgstr "Ei automaattista poistoa. Poista liitos %s\n" + +#~ msgid "No automatic removal. Please use swapoff %s\n" +#~ msgstr "Ei automaattista poistoa. Käytä swapoff %s\n" + +#~ msgid "Internal error (type %d)\n" +#~ msgstr "Sisäinen virhe (tyyppiä %d)\n" + +#~ msgid "kernel mount " +#~ msgstr "kernel mount " + +#~ msgid "kernel loop " +#~ msgstr "kernel loop " + +#~ msgid "kernel swap " +#~ msgstr "kernel swap " + +#~ msgid "ignoring -m in name space \"%s\"\n" +#~ msgstr "optio -m merkityksetön nimiavaruudessa \"%s\"\n" + +#, fuzzy +#~ msgid "%s/%s: invalid specification\n" +#~ msgstr "%s/%s: epäkelpo määrittely\n" + +#~ msgid "" +#~ "usage: pstree [ -a ] [ -c ] [ -h | -H pid ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +#~ msgstr "" +#~ "käyttö: pstree [ -a ] [ -c ] [ -h | -H pid ] [ -l ] [ -n ] [ -p ] [ -u ]\n" + +#~ msgid " [ -A | -G | -U ] [ pid | user]\n" +#~ msgstr "" +#~ " [ -A | -G | -U ] [ prosessitunniste | käyttäjätunnus]\n" + +#~ msgid "" +#~ " pstree -V\n" +#~ "\n" +#~ msgstr "" +#~ " pstree -V\n" +#~ "\n" + +#~ msgid " -a show command line arguments\n" +#~ msgstr " -a näytä komentoriviparametrit\n" + +#~ msgid " -A use ASCII line drawing characters\n" +#~ msgstr " -A käytä ASCII-merkkejä viivanpiirtoon\n" + +#~ msgid " -c don't compact identical subtrees\n" +#~ msgstr " -c älä yhdistä samanlaisia alipuita\n" + +#~ msgid " -h highlight current process and its ancestors\n" +#~ msgstr " -h merkitse nykyinen prosessi ja sen esi-isät\n" + +#~ msgid " -H pid highlight process \"pid\" and its ancestors\n" +#~ msgstr " -H pid merkitse prosessi \"pid\" ja sen esi-isät\n" + +#~ msgid " -G use VT100 line drawing characters\n" +#~ msgstr " -G käytä VT100-merkkejä viivanpiirtoon\n" + +#~ msgid " -l don't truncate long lines\n" +#~ msgstr " -l älä katko pitkiä rivejä\n" + +#~ msgid " -n sort output by PID\n" +#~ msgstr " -n järjestä tuloste prosessitunnisteen mukaan\n" + +#~ msgid " -p show PIDs; implies -c\n" +#~ msgstr " -p näytä prosessitunnisteet; myös -c menee päälle\n" + +#~ msgid " -u show uid transitions\n" +#~ msgstr " -u näytä käyttäjätunnusten vaihtumiset\n" + +#~ msgid " -s show Flask SIDs\n" +#~ msgstr " -s näytä Flask SID -tunnisteet\n" + +#~ msgid " -U use UTF-8 (Unicode)) line drawing characters\n" +#~ msgstr " -U käytä UTF-8 (Unicode)) -merkkejä viivanpiirtoon\n" + +#~ msgid " -V display version information\n" +#~ msgstr " -V näytä versio\n" + +#~ msgid " pid start at pid, default 1 (init))\n" +#~ msgstr " pid aloita prosessista pid, oletuksena 1 (init-prosessi))\n" + +#~ msgid "pstree comes with ABSOLUTELY NO WARRANTY.\n" +#~ msgstr "pstree:llä ei ole mitään takuuta.\n" + +#~ msgid "" +#~ "This is free software, and you are welcome to redistribute it under the " +#~ "terms\n" +#~ msgstr "" +#~ "Tämä vapaa ohjelmisto ja saat kopioida ja levittää sitä GNU General " +#~ "Public\n" + +#~ msgid "of the GNU General Public License.\n" +#~ msgstr "" +#~ "License -lisenssin mukaisesti. Tiedostossa COPYING on tarkemmat tiedot.\n" + +#~ msgid "" +#~ "For more information about these matters, see the files named COPYING.\n" +#~ msgstr "Tiedostossa COPYING on tarkemmat tiedot.\n" diff --git a/po/fr.gmo b/po/fr.gmo new file mode 100644 index 0000000000000000000000000000000000000000..329e7cfd44bcc75e206dada6d1fe6681ee128963 GIT binary patch literal 829 zcmYjP!EVz)5H(OZm|G7Bp$djWq?T%pol>>9r9_k>MI@rCBF=2q6L+b-YwhfoR^m6f z@d5A!`~hcv0PeZ*14xV$nlRGyvv=Rl%=*o*)s;^X$1TPhW5Br0_{eDE3!`2C%DBV$ z&UnE1$+*w>^N-iAMbSIP9^)RbeZC$=cbUI2xB4H<51D^6KVn|J5k)Lr1b@zYxXH|t zMXX%CbqF*8){Vb}bz?o$HW-fuJl}|;4&`7hG|nm{f-_xJSj5rm8AFHGJJcyQ;Dh$3 zK)N)tf)4Kw<%O<84JOoMbYLf7WR0^z?KYk1rqQN^Mmn$gOf9`Souwu2&Y993k!2!%0@+U9-Pz2tG-aVU!E@c#Tv9-Mr(iHG`L_FHo%FI7h?`Hy2B&ahU5SZ7f51mg8DxoKgtE@zl|#dK-=DZ% zr4yDN#KZpZXnFH2N#jGyju@_Z*>LL~FZ|=ClG^NnI+c#lKhtEz?(X(ekuAk-dlPix z$S7Oz@6KUYjJ0oF1tbsWy1>?Q!w3R5mbWVj$~uSCSW`%&a6SddleL(Dzh(sEW&i*H literal 0 HcmV?d00001 diff --git a/po/fr.po b/po/fr.po new file mode 100644 index 0000000..688e287 --- /dev/null +++ b/po/fr.po @@ -0,0 +1,461 @@ +# French Translation of PSmisc messages. +# "Copyright (C) 1993-2001 Werner Almesberger, Craig Small, and Marc Léger\n" +# Translated by Marc Léger , November 2001. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 20.1\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2002-04-12 21:33+1000\n" +"Last-Translator: Marc Léger \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" + +#: src/killall.c:74 +#, fuzzy, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Tuer %s(%s%d) ? (y/n) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Tuer %s(%s%d) ? (y/n) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "Ignore la correspondance partielle %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "Tué %s(%s%d) avec le signal %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: aucun processus tué\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, fuzzy, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"Copyright (C) 1993-2000 Werner Almesberger and Craig Small\n" +"\n" +"PSmisc fait l'objet d'AUCUNE GARANTIE.\n" +"C'est un logiciel libre, et vous pouvez le redistribuer en respectant les " +"termes\n" +"de la licence GNU General Public License.\n" +"Pour plus de précisions à propos de ces problèmes, voir les fichiers nommés " +"COPYING.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Le nombre maximum de noms est %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s est vide (non monté ?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"utilisation.: fuser [ -a | -s ] [ -n espace ] [ -signal ] [ -kimuv ] " +"nom ...\n" +" [ - ] [ -n espace ] [ -signal ] [ -kimuv ] nom ...\n" +" fuser -l\n" +" fuser -V\n" +"\n" +" -a affiche les fichiers inutilisés aussi\n" +" -k tue les processus accédant à ce fichier\n" +" -i demande avant de tuer (ignoré sans -k)\n" +" -l liste les noms des signaux\n" +" -m système de fichiers monté\n" +" -n espace cherche dans l'espace de noms spécifié (fichier, udp, ou tcp)\n" +" -s mode silencieux\n" +" -signal envoi le signal \"signal\" au lieu de SIGKILL\n" +" -u affiche l'identificateur de l'utilisateur\n" +" -v mode détaillé\n" +" -V affiche des informations sur la version\n" +" -4 cherche des sockets IPv4 seulement\n" +" -6 cherche des sockets IPv6 seulement\n" +" - réinitialise les options\n" +"\n" +" noms udp/tcp: [port_local][,[hôte_distant][,[port_distant]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, fuzzy, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "" + +#: src/fuser.c:901 +#, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "" + +#: src/fuser.c:1198 +#, fuzzy, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Tuer le processus %d ? (y/n) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "" + +#: src/fuser.c:1241 +#, fuzzy, c-format +msgid "Cannot find socket's device number.\n" +msgstr "ne peut pas trouver le numéro du périphérique des sockets" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr "" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" + +#: src/pstree.c:778 +#, fuzzy, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "" + +#~ msgid "-4 flag used but proc file %s is not readable\n" +#~ msgstr "drapeau -4 utilisé mais le fichier proc %s est illisible\n" + +#~ msgid "-6 flag used but proc file %s is not readable\n" +#~ msgstr "drapeau -6 utilisé mais le fichier proc %s est illisible\n" + +#~ msgid "kill %d" +#~ msgstr "tuer %d" + +#~ msgid "No automatic removal. Please use umount %s\n" +#~ msgstr "Pas de démontage automatique. Utiliser SVP umount %s\n" + +#~ msgid "No automatic removal. Please use swapoff %s\n" +#~ msgstr "" +#~ "Pas de démontage automatique du fichier d'échange. Utiliser SVP swapoff %" +#~ "s\n" + +#~ msgid "Internal error (type %d)\n" +#~ msgstr "Erreur interne (type %d)\n" + +#~ msgid "kernel mount " +#~ msgstr "montage du noyau " + +#~ msgid "kernel loop " +#~ msgstr "boucle du noyau " + +#~ msgid "kernel swap " +#~ msgstr "fichier d'échange du noyau " + +#~ msgid "ignoring -m in name space \"%s\"\n" +#~ msgstr "ignore -m dans l'espace de noms \"%s\"\n" + +#, fuzzy +#~ msgid "%s/%s: invalid specification\n" +#~ msgstr "%s/%s: spécification invalide\n" + +#~ msgid "No process references; use -v for the complete list\n" +#~ msgstr "" +#~ "Pas de références sur le processus; utiliser -v pour la liste complète\n" diff --git a/po/hu.gmo b/po/hu.gmo new file mode 100644 index 0000000000000000000000000000000000000000..84c83a95f64202dd6ccb0c36318ef16123d730ad GIT binary patch literal 9360 zcmb`MU2G)TRmUr^B%~n_7M3iKkef}++PhO8dv>!kYwwrWtUJNc_&d zRo!imXBY&f8UNi~_uPBF&$-9{@Z=M}@A16A|IhRP+n?~fo8a1y@`I=Kgy;S9k9b}P zKF8Z=le<`{SPX^WZ&j2K+ksY49(=UjqLYRNy~?mq2;>6~G674%`O6 z3pofYyf1;zfj@g;8ScOe0>d^1@D1Zz;BkH|E~P}X^buFUjb$RyP){T?}6fDe-18!L-2X< z3%q<5Tm?mscR|tnZ-WZ_7I+E#KFAT?f0gf_{(|H0br6xfCMfp%4eb>ir*yU|d z^wj1D+jzLQeFzKd|MTVNFO|p<){lf&dp;=gi!Mced7g1#e~Jxp1$zc=V|4*5qX&1g z@g+VckH{#`Pdo5%R}WXSIud?Gw_-=s=zWs^ivJQ9;=7_J(V6&1^@xq+d4m6hj(vWt zL;>*~RB0d4i`ZE7gxicB@h4BYryWL-jw0npmz3{EVV2j%Qt?ICPh~%VSlvReaAkz(M^>cR4;@!lvCr}q_8a~@aU{< zd2A%{L6~w1@~OIkZDaQh<3K1QC`B(qQa<*hXssP5N3qHfM@M4`??Qn(%mhg@iJ#5k z2NqN#>2xE_Z&n>Ci&GPrdq`70md|bq{l?Pz3VbRZquJcVP18ixK@sVcFIbXUqrhdx zHYFcBt2Z~6)|5h>O_jI8tYUCNGpyNN*C=h}ak2#L@hHw}D7e3a^@B zhI;zqI`-=@#v;x-LU9Dekq#$xtL#Vdw$eFFrt*Y+OwE%`{X2H+td$(8ot3pPF79!D zqe#QNk1=qHdziv5-CDgaYqMMb+O{a_4({YlkPEsIzQ@w6qE~q%ExV3DUrqC>?BA#^f zMa4dTq$CC^&&p%G28XfH>iw{B^JxdyGlRukbsb1JHDlR&8lfqcJqg`bEyyQbD zg^@jMevl@ek?dGMFUG7ST@$OzCU0EsueUSWerGqlXt8w+ z_L6KhdY^RrX&AI}HN8Be=3jpK1^>$2+*j4xCXI2lrHJ&7!UJ(S%(0y6Fi<-k42iEV zCq>l6zw)yQd#dReU6sTvzF^WcNf*@m(mTI)ePwI+mL;jPk%^NcXrYV+V;m5SO$3C7 zOxaS_Rpn5pqOF}ym^Gw!u-0G) zb&wzF)LgPg=_dsl!Kfn>$wrbTQ$xPZ)39C;Y-ClKAUjFwmH^E}a`|v`V^7^Q7#bsO z74;}=s5PRDl093yA+ae%b0SkKT~7+hpN7gn;IdhEiLA@E>?V%qiaU<7xpjMW<0g`C zNjZa|yhvkVtr1aHYM#_7kw?5IGkMM1EA!EW$1mNmX4%VhfWE4p=3O%X^5(|w$~(L7 zsdxRtCTo79gINv2yJ_!8*-vG`e9xBK*;!aQztQH_?&{{od%R;G|G|abu!*8%zTCre9A}tDIRG(ov-P2*D>ydE>1@3%X znyMIZEfN`Tq8F&%tzLI@`;P8Wb$FzqF1~|Nkz6}nHXO9n`^vwiq@G$8M-E~KT?d7F z?~HUx_E{3joAP7Nu97X@cV%|8x;zz?UN4&ktt=lHp_Il@lbkr(X-=yD8I@IGDqR?6 zS+dKBI<>U3yt?Yt+D!G4Exau)jU!I%7B}o-*VM5od5F%SNu4FYBjUGiy8ySgW!JVy zosmtSG#)7{D@JW#hLlnr(;iVl$|Ice#$>j2s7xhxzkufENQV90`MJ4A%MeY-kki}Q za%)?4@u-pu*Og^bRfy*1-+E%5S&@g+0SAC`j6Qs%?j# z#O3yTBZl{OZ}`{L^j;h`lBSt?H0#boALXFlZBku>w%N8)VpW%OZ05A(%~dy-zN^(P z#ptxWyja@Rt=@~)M%Aa6$})|`Y=To6Nm}J0Rj52vwvi(x)m1%~SZw0lgGdL`rP6@V zrg?IgC@Tp}3w_}QZf2{@l`FGXYTLGv_t&!^Z2E5&LFVr!3#ySxNq@us zoNcB_w{CPg8#ZTkQQO+w^_Np)OPqh5?rlNQB3$+7=l!`C)%?|kD_5VN$1hpvZ_}ko zdp}%W_qSVW{6lGPyNew)eP2)gV1knqFPq+4Qen`|8X7mGNTX{=lUE zN{nM;jRkeB9_F>JsGyem)XomwTHLiCvsdRAmHYM8xkYy+AwsHp_J6#i=O#KNHciks zgJW8R;5hC_$M|WigFa13E6K9K4{1hwrmd*k`Ee?h`_%#2^DmWlc%xA(*guJ2Ho^nUhX zjx6otR0JtEQ6{?Y$S%0M>w!8&P81Pl9YbEr23+5VQGDDZ>16qEP_li&EuKOf_YaNnWzBZD`-PDVa$4$}Rl`w|j2&gYd+4io-^DBInsX z#g3Nff(w3cm>z0bsX8C>-vlkP+1OFeT=P4HmTk&oJDaDQan>7+d~ zXISI>-jY&QJuB>vasHc3n#oiy=ubp7f4$jIk*az?W8xE_~}{ zWinMmhPmA&ub)H@62<*6w^XB92HtrXT$cSRjSPz*;49NsUn&&)eCsE`-Oa{U$iJICC61U71ZjSH%*k?SFNzF7g#beQNh_vM46V_jh?@o_UHph88{s^kfJZ(txLel<|CK4 z`Z_;g87(`{vxTe}F)rj8&Fw^Fg1=@MTCbwnh{A>?_Ay(v_-V zn->fs-a~tC^A(OU>!?8V!Tqr zk8^~Jj3lBcqHB=t2gqJ_Svs%Fp9g~ealM?th?MPdMv-DuPFY01AK9RU27&)R%TA@@ ziSk%gH-lk1jUb(YU&S56%JU5eZ3nt3l#bX&X z{l9FI#%9lZm??mlK+CCqoT&?J$Y`a42nov<_0L zuukQuiiya$HKxHX2R8phYgO|m)cF5Aw-L2Ibapdg?Xv@)@fe3RQZ|8-a-5*#cN;_` zcnK+|F*nT7Hs+mLAt?XGL2EMBms{?JI%S(B&7GU=h&57uI7p%sqA1mE{NFZ&B8TsW zJM{WJDe}UDZP;u`OFyL}+ts-f+;m4P%YI~NF-K;SMllu}-p>pZl{OJ!2w~Uea*mtu zjM~96e+vPW520}ro(X~6py$y7xk--*Gz{pY`7461E_)D`_ZJv)!yel?y4J7FP=m`b ze6K9*ElJ&!$>~sTfNbpsL8Cr+pky3G2F(+$TVoE~ zJZM6^^JAe$3+e*ld>q(2&BPtUTb7&9s6gBJ3Vo^3Ojsm!%C)HEfsV|kOJUL04SUTY zYr8(*4u`N7o3#}ms@ae@lXc#(dA}}`e(J?|#}m{f$0ziqj+kGoKA}qMCqgeOPmPCG swd2huk@GuAtIwofc;}BJk3Apa$~?ehAr(KDkwBHZXc?q#%arK90f-Yrg8%>k literal 0 HcmV?d00001 diff --git a/po/hu.po b/po/hu.po new file mode 100644 index 0000000..98aad29 --- /dev/null +++ b/po/hu.po @@ -0,0 +1,477 @@ +# Hungarian translations for psmisc package. +# Copyright (C) 2006 Free Software Foundation, Inc. +# This file is distributed under the same license as the psmisc package. +# Miklos Vajna , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 22.2\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2006-08-05 02:34+0200\n" +"Last-Translator: Miklos Vajna \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Megöli a következõt: %s(%s%d) ? (y/N) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Megöli a következõt: %s(%s%d) ? (y/N) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "Nem sikerült megkapni a UID-t a folyamat állapotból\n" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "Rossz reguláris kifejezés: %s\n" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "részleges egyezés kihagyása: %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "%s(%s%d) megölve a következõ szignállal: %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: nincs megölt folyamat\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"Használat: pidof [ -eg ] NÉV...\n" +" pidof -V\n" +"\n" +" -e teljes egyezés igénylése nagyon hosszú nevek esetén;\n" +" kihagyás, ha a parancssor nem elérhetõ\n" +" -g a folyamat csoport ID-jának mutatása a folyamat ID helyett\n" +" -V verzióinformáció megjelenítése\n" +"\n" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"Használat: killall [-Z KÖRNYEZET] [-u FELHASZNÁLÓ] [ -eIgiqrvw ] [ -" +"SZIGNÁL ] NÉV...\n" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "Használat: killal [OPCIÓ]... [--] NÉV...\n" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact teljes egyezés igénylése nagyon hosszú nevek esetére\n" +" -I,--ignore-case kisbetû/nagybetû-érzékenység kikapcsolása\n" +" -g,--process-group a folyamatcsoport megölése a folyamat helyett\n" +" -i,--interactive megerõsítés kérése megölés elõtt\n" +" -l,--list az összes ismert szignálnév listázása\n" +" -q,--quiet ne nyomtasson kifogásokat\n" +" -r,--regexp értelmezze a NEVET kiterjesztett reguláris " +"kifejezésként\n" +" -s,--signal SZIGNÁL ezt a szignált küldje SIGTERM helyett\n" +" -u,--user FELHASZNÁLÓ csak a FELHASZNÁLÓként futó folyamatok megölése\n" +" -v,--verbose jelentse ha a szignált sikeresen elküldte\n" +" -V,--version verzióinformáció megjelenítése\n" +" -w,--wait várja meg míg meghal a folyamat\n" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -Z,--context REGEXP csak az adott környezettel rendelkezõ folyamat(ok) " +"megölése\n" +" (meg kell elõzze a többi argumentumot)\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright (C) 1993-2005 Werner Almesberger és Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"A PSmisc nem vállal SEMMILYEN garanciát.\n" +"Ez egy szabad szoftver, szabadon terjeszthetõ a GNU General Public License\n" +"feltételei mellett.\n" +"Ezzel kapcsolatban egyéb információk találhatók a COPYING nevû fájlban.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "%s: nem található ilyen felhasználó\n" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "A neve maximális száma %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "Nem üres: %s (nincs csatlakoztatva?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"Használat: fuser [ -a | -s | -c ] [ -n TÉR ] [ -SZIGNÁL ] [ -kimuv ] NÉV...\n" +" [ - ] [ -n TÉR ] [ -SZIGNÁL ] [ -kimuv ] NÉV...\n" +" fuser -l\n" +" fuser -V\n" +"Megmutatja, hogy mely folyamatok használják az adott fájlt, socketet vagy " +"fájlrendszert.\n" +"\n" +" -a megjeleníti a nem használt könyvtárakat is\n" +" -c csatlakoztatott FS\n" +" -f csöndben figyelmen kívül hagyva (POSIX kompatibilitás miatt)\n" +" -i kérdezzen megölés elõtt (figyelmen kívül hagyva a -k nélkül)\n" +" -k a fájlt használó folyamtok megölése\n" +" -l az elérhetõ szignálnevek listázása\n" +" -m mutassa az összes folyamatot amely az adott fájlrendszert " +"használja\n" +" -n TÉR keressen ebben a névtérben (file, udp, vagy tcp)\n" +" -s csendes mûködés\n" +" -SZIGNÁL küldje ezt a szignált a SIGKILL helyett\n" +" -u felhasználói azonosítók megjelenítése\n" +" -v beszédes kimenet\n" +" -V verzióinformáció megjelenítése\n" +" -4 csak IPv4 socketek keresése\n" +" -6 csak IPv6 socketek keresése\n" +" - opciók törlése\n" +"\n" +" udp/tcp nevek: [helyi_port][,[távoli_gép][,[távoli_port]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (PSmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "Nem sikerült megnyitni a /proc könyvtárat: %s\n" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "Nem sikerült allokálni memóriát a következõ egyezõ folyamatnak: %s\n" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "Nem sikerült statolni a %s csatlakozási pontot: %s\n" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "Nem sikerült statolni: %s: %s\n" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "Nem sikerült feloldani a %s. számú helyi portot: %s\n" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "Ismeretlen helyi port: AF %d\n" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "Nem sikerült megnyitni a \"%s\" protokoll-fájlt: %s\n" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "A névtér opció igényel egy paramétert." + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "Érvénytelen névtér név" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "Csak csatlakoztatási-pont opcióként használhat fájlokat" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "Nem adott meg folyamat-specifikációt" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "Nem használható a csatolt és csatolási pont kapcsoló egyszerre" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "a -a opció nem használható a csendes opcióval." + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "Nem kereshet csak IPv4 és csak IPv6 socketeket egy idõben" + +#: src/fuser.c:901 +#, fuzzy, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" +"\n" +"%*s FELHASZNÁLÓ PID ELÉRÉS PARANCS\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "(ismeretlen)" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "Nem érhetõ el a %s file: %s\n" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "Nem sikerült megnyitni a /proc/net/unix fájlt: %s\n" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "Nem sikerült megnyitni a /etc/mtab fájlt: %s\n" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Megöli a %d-s folyamatot? (y/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "Nem sikerült megölni a %d-s folyamatot: %s\n" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "Nem sikerült megnyitni egy hálózati socketet.\n" + +#: src/fuser.c:1241 +#, c-format +msgid "Cannot find socket's device number.\n" +msgstr "Nem sikerült megtalálni a socket eszközszámát.\n" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "Belsõ hiba: a MAX_DEPTH nem elég nagy.\n" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"Használat: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | FELHASZNÁLÓ ]\n" +" pstree -V\n" +"Megjeleníti a folyamtok egy fáját.\n" +"\n" +" -a a parancssori argumentumok mutatása\n" +" -A használjon ASCII sor rajzoló karaktereket\n" +" -c ne vegye egynek az egyezõ alfákat\n" +" -h a jelenlegi folyamat és annak õseinek kiemelése\n" +" -H PID ennek a folyamatnak és õseinek kiemelése\n" +" -G használjon VT100 sor rajzoló karaktereket\n" +" -l ne vágja le a hosszú sorokat\n" +" -n rendezze a kimenetet PID szerint\n" +" -p PID-ek mutatása; a -c-t bekapcsolja\n" +" -u mutassa az uid változásokat\n" +" -U használjon UTF-8 (Unicode) sor rajzoló karaktereket\n" +" -V verzióinformációk megjelenítése\n" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr " -Z mutassa az SELinux biztonsági környezeteket\n" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" PID induljon ennél a PID-nél; az alapértelmezés az 1 (init)\n" +" FELHASZNÁLÓ csak azokat a fákat mutassa amik ennek a felhasználónak a " +"folyamatainál gyökereznek\n" +"\n" + +#: src/pstree.c:778 +#, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "a TERM nincs beállítva\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "Nem sikerült a terminál kapacitásait lekérdezni\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "Nincs ilyen felhasználónév: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "Nem található folyamat.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Üssön entert a bezáráshoz\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: ismeretlen szignál; %s -l listázza a szignálokat.\n" diff --git a/po/insert-header.sin b/po/insert-header.sin new file mode 100644 index 0000000..b26de01 --- /dev/null +++ b/po/insert-header.sin @@ -0,0 +1,23 @@ +# Sed script that inserts the file called HEADER before the header entry. +# +# At each occurrence of a line starting with "msgid ", we execute the following +# commands. At the first occurrence, insert the file. At the following +# occurrences, do nothing. The distinction between the first and the following +# occurrences is achieved by looking at the hold space. +/^msgid /{ +x +# Test if the hold space is empty. +s/m/m/ +ta +# Yes it was empty. First occurrence. Read the file. +r HEADER +# Output the file's contents by reading the next line. But don't lose the +# current line while doing this. +g +N +bb +:a +# The hold space was nonempty. Following occurrences. Do nothing. +x +:b +} diff --git a/po/it.gmo b/po/it.gmo new file mode 100644 index 0000000000000000000000000000000000000000..3f845a64292e9e778b1100c84b635dd3d886d285 GIT binary patch literal 10257 zcmb`NS&U`JS;tR|!QtW%V#2 z=G;@)XX(Ys3nB=f5J=$xgcLTRydVTm@M4H8Ucv)NAY=pzi^LKn#0yI#kl^=K)wxSg z&p2R?=H9Q*IaObM^?hG`%m2=oAA9)cBCe}^zL(EmzAuWlpuhNad~v<=a1{OBLs9hS z&?mV6y+@+RLjMUmgx-386kUM+Aynr73-sHekA7nm%|S0f`4?^Q^*zv6p$b|;FF`*C z{Q>9~p&y3+JyiJpC-l3aA8GmVOVE#Se;fM!&`(2U+%G^s3VjRut3sB*69V+ua3H?Fnr^EfPKt=8^ zLS_D+LH`!|&*A=$KM+OV!u>x$zYF?R=qu32zB!6!p|_!{==`(LuX6vT4@S}F(f8X- zin&kO)XUJHg^G>dfy(m_vFKya7of85oj`j~k@HRHC*k|^&}Xsbzkgd4UFLa=5I+U| zQD_DI3RLv}!ze@S^W#vN|9R-gpl?ADIr=ZCjB7FIDd;@(MQ93r4*F|Q1^qJgY3P4L z#V$|d6r$gKsOas-0{sG15jFbN@cu36Vt2j2c>sNe4_kM8Y#x7@KOW&D z{wfzP7vZkayxee!oFe0Q@IefBiR~W_e~UkJOq?D+1QmNM@c9Nl;v1qT=W9^e%h&S} z-$gC%Y(k(XZ~rBBlS}j_IuZMbFQD3pZsRVFjk6mr9<}`=|E>IW z*JN3eWh%}tsW{F|S+&l-*_Ss*x+sm!TfB|+r8w3nNm_-GkV3yvn?fu9c#u@-q3YQ} zG3``kHt(xE8R$}GuQA*7b6e;*O-e0195s2V^U_r2NULFCQ(cyBl5*T+W}lhiP24YR zJyc4>AC30U;8W?Ot8A}%A#;tanpe6&Y*~RTDepQNQ=9ip!7A)e9caYXj<3o4GBabQ z=tZW4%iW6B?&kJ5S0&p?vhfbzU?T}J z&SAm)&E<_%ntgFz>v}z1u09|1UYusZf-8GD}_3{syZ}fBjAK) z7}HtZ*^vF!%&bdYsJ-3Q9WQ~?s?D?0MuW4uoKr=e=jcS_k)bm8h`E^fz_QK1 zQ7O}7Y2B=R%$%}L#iqSFgD3=q*c zfHqAktp<8v2{YmWE><9}Xnn*@2KNkyp|t5;U0p1(=8;LY%Im>_E)Xnmbc5Vk2y)0w z5o8Zl^$I%}?Hv!P>ai$xsB<;1t8{))B?nUr`&S|l9*J!#M7_^|`CM1?b#6}XeV-`a z9oyn=*uz+6#~=2UO>M?DGp!zBsz;)T_8=%4BO?W`6BUXWB(k{-&5Ar1^pSIwAKv?kGC zoJq@=CAG2q+K=2=-R`{NxE&yg&TZX4M73-AQIavu<*Z>Mo|%acru?CL+#oa5jrKg+Zgo3! zxhW)BmkyeP-HtZLC$b#s)btF8LgHzkJeNiX+yb4$ItytA{s*?GO)>PTAQUyo>qOZKYcq|ld~RZneA*wN}( zXTnHKP-udBRhWaC(@N+@2tuIb2RY%T>|AbcZtkg@8c)GU+x0{ceNr( zhO!@VtWsC4XfFh`i6gW8vNOwGne@?DQ#jowy{v3)c2-~O+)=mV+GPa(qD)%rn>UK1 zW99BbR=(qMdb^D%XBlm6chjnU34nMQs#6oYHodEz}X_2f`}M#ZlvsRr;NN!yO(o(w&ym3Jk- zo_sTMS!UjpuRS+PSbWA;M5EDRRaAN-)OCq+a$tm!t2pDK@5HfpT9{H<6YQj5X4tYD zM(k3{yDMvJUaj3CId(PDVInm?j_L=eZm@T5m=aGZ;=1G&{4gU59*8ty?4cWbNCwMX z7NbUV8K_aa*wEmSNlqn8A`jEN^2XDgQ@+cbo1;DKcNP~G9=wNaVhx`@yML)vLjG7f!W2E3YX-6GAnm;?xhQ-5PE{P3o(P#5H3!5A63w0`GNR zCZf#l1Y0IPCb(VG8B&<(u^2<)z!AHn&?uD zZx{AcRFm;qH{SQ1(vljME`MLX+ zCq>(I+ezKp-s;3F#APWS;u{3%B_&l@yto)IJgpY5EM30x|$ zsebY|6QxV3Q%R$RG87&IgV$wbt*p-bhlW#m9#rCxlLTKdb&2-$JPnfniyZ9P$joz~ z5-GK4rj*H4zo>^p>5!WcY)CRk^o=w|BRIthpL1Z7upxR;G&ey0!tf2Rus|U>?L5>( zb23ua_j_eRsRcLD($?BCHFf1SeGYm;k5eR6&MSUJSlSyp)vc#=@Df}XeAM1tm<+YFH&AJUW7OgPBGH1v3Uvy(pAvd+g}ij!b@U=qQVAXadtZgR~cA> zOrp?tD4|hhjuF6PlBULTN<9Z*N$4!ZR~Z@hB$Lm$%M{uYRx=_QI+ne%mLa3+H}U;| z!%U$rC=6qnJVom$#x-t@$}gcjju8#IVYkx=%t+l~O{eXCW&j9iHk|~jNH86397iN1 zW(3kGpN>R)>3(p`{VbT!TCpd$xswrO>QdzRYZjP6uuKQY;B84p4SDP3O;6NP-Z8l%tfo`9Uu|M^~#CwAlC*%3nmFxBhE332;y~u;iRT| z`6Zf#TG?+A}z$h0550bM>8|{waRM?#2nh+kDat0fkTsMs1XpQh8 zH7`zj@8%k2^7af^bPh*+!f#ZL9vv@T^m(G8DF^Z}2)+(RVqaqnX_7PPOMoQN0j6<* z$u-F0O81J}6GJ#;3EuBA0IN(vO_Qrm@L||{1fKN&33i$kXYAFeE<_UxG~gBB5GaW> zpq4hvbf3aQLeU6^3IiO-pHq@e;!wHbq$dXl6i$hh2z?5auGno;kQB5SqNyc^hJ$CL zj!*39xzG)?J%T+2?2|7 zReu5+1p%JHg8w`tXhNNLHDGGWXkE7Wb!!m`OdySsD zlGVLCn3klIn z2DuV%Kw2ZwR{|1KCJ(1WuGBc1CjtuKdQBxe!mxHbTY@72V!5Q`fPgbFRw#~uPN=Q| zjy1_@Yx@=`*6IX|H8t+NfLJJ@LUp0L9oGCFU{&HlEy^bfsNA`OuLC4VF`j~BzDxnK z7jJf$BTd8Z*XQBU|GU|E2+4$P9`EeJz?J7=*5?ea7C zB^Cleyn6}8P5_Gi;5WR>Q}1I|7&X2SP%d!>?|~9*8+q^yPpovEp!_V{ePlj_s7KiadKkPr8@u&NNgjN5ILuY=ZhsYQyVMH)8JY3wrq~fumhz^ih zI0POjV+JsQG_$@>YODbdhnvw~376WE|2T0u$bw(c17`P~E>-Y-W_sA{zMFDbnqR|X zW?@rg5NSO*rSkI>4kRtMG&?S42;s5?5CDUkGi~_a0P-Ic$lYgPGzJH27K9C+Y*{lDO4tQRlX;*%?B*Ub=+W3G625e-H0spk>GCs1LAJK A4*&oF literal 0 HcmV?d00001 diff --git a/po/it.po b/po/it.po new file mode 100644 index 0000000..f7b1de8 --- /dev/null +++ b/po/it.po @@ -0,0 +1,527 @@ +# Italian messages for psmisc. +# Copyright (C) 2001, 2005, 2006, 2007 Free Software Foundation, Inc. +# This file is distributed under the same license as the psmisc file. +# Marco Colombo , 2005, 2006, 2007. +# Daniele Pagano , 2001. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 22.5\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2007-05-30 17:17+0100\n" +"Last-Translator: Marco Colombo \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Terminare %s(%s%d)? (y/N) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Terminare %s(%s%d)? (y/N) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "Impossibile ottenere l'UID dallo stato del processo\n" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "Espressione regolare non valida: %s\n" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "ignorata corrispondenza parziale %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "Terminato %s(%s%d) con segnale %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: nessun processo terminato\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"Uso: pidof [ -eg ] NOME...\n" +" pidof -V\n" +"\n" +" -e richiede una corrispondenza esatta per i nomi molto lunghi;\n" +" ignora se la riga di comando non è disponibile\n" +" -g mostra l'ID del gruppo invece che l'ID del processo\n" +" -V mostra le informazioni sulla versione\n" +"\n" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"Uso: killall [-Z CONTESTO] [-u UTENTE] [ -eIgiqrvw ] [ -SEGNALE ] NOME...\n" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "Uso: killall [OPZIONE]... [--] NOME...\n" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V --version\n" +"\n" +" -e,--exact richiede una corrispondenza esatta per i nomi molto " +"lunghi\n" +" -I,--ignore-case ignora maiuscole/minuscole nei nomi\n" +" -g,--process-group termina il gruppo di processi invece del processo\n" +" -i,--interactive chiede conferma prima di terminare\n" +" -l,--list elenca i nomi di segnale conosciuti\n" +" -q,--quiet opera silenziosamente\n" +" -r,--regexp interpreta NOME come un'espressione regolare estesa\n" +" -s,--signal SEGNALE invia il segnale indicato invece di SIGTERM\n" +" -u,--user UTENTE termina solo i processi eseguiti dall'UTENTE\n" +" -v,--verbose riporta se il segnale è stato inviato con successo\n" +" -V,--version mostra le informazioni sulla versione\n" +" -w,--wait aspetta la terminazione del processo\n" +"\n" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -Z,--context REGEXP termina solo i processi aventi context\n" +" (deve precedere altri argomenti)\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright (C) 1993-2005 Werner Almesberger e Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc è distribuito senza ALCUNA GARANZIA.\n" +"Questo è software libero, ed è possibile redistribuirlo secondo i termini\n" +"della GNU General Public License.\n" +"Si consulti il file COPYING per ulteriori informazioni.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "Impossibile trovare l'utente %s\n" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Il massimo numero di nomi è %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s è vuoto (non montato?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"Uso: fuser [ -a | -s | -c ] [ -n CONTESTO ] [ -SEGNALE ] [ -kimuv ] NOME...\n" +" [ - ] [ -n CONTESTO] [ -SEGNALE ] [ -kimuv ] NOME...\n" +" fuser -l\n" +" fuser -V\n" +"Mostra quali processi stanno usando un certo file, socket o filesystem.\n" +"\n" +" -a mostra anche i file inutilizzati\n" +" -c file system montati\n" +" -f ignorata (per compatibilità POSIX)\n" +" -i conferma prima di terminare (ignorato senza -k)\n" +" -k termina tutti i processi che accedono al file specificato\n" +" -l elenca i nomi dei segnali\n" +" -m mostra tutti i processi che usano il filesystem specificato\n" +" -n CONTESTO cerca nel contesto specificato (file, udp, o tcp)\n" +" -s opera silenziosamente\n" +" -SEGNALE invia il segnale indicato invece di SIGKILL\n" +" -u mostra i nomi utente\n" +" -v output prolisso\n" +" -V mostra le informazioni sulla versione\n" +" -4 cerca solo socket IPv4\n" +" -6 cerca solo socket IPv6\n" +" - riazzera le opzioni\n" +"\n" +" nomi udp/tcp: [porta locale][,[host remoto][,[porta remota]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (PSmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "Impossibile aprire la directory /proc: %s\n" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "Impossibile allocare memoria per il processo corrispondente: %s\n" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "Impossibile fare stat del mount point %s: %s\n" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "Impossibile fare stat di %s: %s\n" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "Impossibile risolvere la porta locale %s: %s\n" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "Porta locale AF %d sconosciuta\n" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "Impossibile aprire il file di protocollo \"%s\": %s\n" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "L'opzione di contesto richiede un argomento." + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "Nome di contesto non valido" + +# NdT: dato che non so come tradurre "mounpoint option", uso -m +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "Con l'opzione -m si possono specificare solo file" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "Nessun tipo di processo specificato" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "Impossibile usare le opzioni -c e -m allo stesso tempo" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "L'opzione -a non può essere usata con l'opzione -s." + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "" +"Impossibile cercare solo socket IPv4 e solo socket IPv6 allo stesso tempo" + +# FIXME: COMANDO DI ACCESSO ? +#: src/fuser.c:901 +#, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "%*s UTENTE PID ACCESSO COMANDO\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "(sconosciuto)" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "Impossibile fare stat del file %s: %s\n" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "Impossibile aprire /proc/net/unix: %s\n" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "Impossibile aprire /etc/mtab: %s\n" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Terminare il processo %d? (y/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "Impossibile terminare il processo %d: %s\n" + +# FIXME +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "Impossibile aprire un socket di rete.\n" + +# FIXME +#: src/fuser.c:1241 +#, c-format +msgid "Cannot find socket's device number.\n" +msgstr "Impossibile trovare il numero di dispositivo del socket.\n" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "Errore nel collegarsi al pid %i\n" + +#: src/peekfd.c:83 +#, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "peekfd (PSmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" + +# FIXME +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" +"Uso: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 emetti output pulito a 8 bit\n" +" -n non mostrare letture/scritture dalle intestazioni del fd\n" +" -c peek anche i processi figli\n" +" -d rimuove dall'output le letture/scritture duplicate\n" +" -V stampa le informazioni sulla versione\n" +" -h stampa questo aiuto\n" +"\n" +" Premere CTRL-C per terminare l'output.\n" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "Errore interno: MAX_DEPTH non è abbastanza grande.\n" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"Uso: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | UTENTE]\n" +" pstree -V\n" +"Mostra l'albero dei processi.\n" +"\n" +" -a mostra gli argomenti della riga di comando\n" +" -A usa caratteri grafici ASCII\n" +" -c non comprime i sottoalberi identici\n" +" -h evidenzia il processo corrente e i suoi antenati\n" +" -H PID evidenzia il processo PID e i suoi antenati\n" +" -G usa caratteri grafici VT100\n" +" -l non tronca le righe lunghe\n" +" -n ordina l'output in base al PID\n" +" -p mostra i PID; implica -c\n" +" -u mostra le transizioni di uid\n" +" -U usa caratteri grafici UTF-8 (Unicode)\n" +" -V mostra le informazioni sulla versione\n" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr " -Z mostra i contesti di sicurezza SELinux\n" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" PID comincia dal pid indicato, predefinito 1 (init)\n" +" UTENTE mostra solo gli alberi con radice nei processi dell'utente\n" +"\n" + +#: src/pstree.c:778 +#, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "TERM non è impostato\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "Impossibile determinare le capacità del terminale\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "Questo nome utente non esiste: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "Nessun processo trovato.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Premere Invio per chiudere\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: segnale sconosciuto; usare %s -l per elencare i segnali.\n" + +#~ msgid "Cannot open protocol file \"%s\": %s" +#~ msgstr "Impossibile aprire il file di protocollo \"%s\": %s" + +#~ msgid "%s: SID (%s) must be numeric\n" +#~ msgstr "%s: SID (%s) deve essere numerico\n" + +#~ msgid "-4 flag used but proc file %s is not readable\n" +#~ msgstr "è stata usata l'opzione -4, ma il file proc %s non è leggibile\n" + +#~ msgid "-6 flag used but proc file %s is not readable\n" +#~ msgstr "è stata usata l'opzione -6, ma il file proc %s non è leggibile\n" + +#~ msgid "kill %d" +#~ msgstr "termina %d" + +#~ msgid "No automatic removal. Please use umount %s\n" +#~ msgstr "Impossible rimuovere automaticamente. Usare umount %s\n" + +#~ msgid "No automatic removal. Please use swapoff %s\n" +#~ msgstr "Impossible rimuovere automaticamente. Usare swapoff %s\n" + +#~ msgid "Internal error (type %d)\n" +#~ msgstr "Errore interno (tipo %d)\n" + +#~ msgid "kernel mount " +#~ msgstr "mount del kernel" + +#~ msgid "kernel loop " +#~ msgstr "ciclo del kernel" + +#~ msgid "kernel swap " +#~ msgstr "file di swap del kernel" + +#~ msgid "ignoring -m in name space \"%s\"\n" +#~ msgstr "ignorato -m nel contesto \"%s\"\n" + +#~ msgid "%s/%s: invalid specification\n" +#~ msgstr "%s/%s: specificazione non valida\n" diff --git a/po/ja.gmo b/po/ja.gmo new file mode 100644 index 0000000000000000000000000000000000000000..207224a66e6db17d8afc89ec5e181c36fd3ec5ec GIT binary patch literal 9026 zcmcgwZBQN8dEPi_;@-AS>NIJZHtmUHYOu8zkR8iLc4CY$CPBa;Q2a5Pbh&rAtaR`0 z_3mB}8UN{YrcEb5@+&jVk0gVARR?s zKJPiZ_XAyNJd>I3NIZAr^NupIdB!1sYifIoshU$_mjX2R;n^HgE+60?BTMkN*jr!uyNB zF97%B4_H;c4Fn10IbaKL5=eT!4V!%d`g{oZ3heR}h&ACm!zLtm0!aM*5V#$<0)*-X z^Q6B|LkQyQE+EJ#x8grN2n*r=)#6R+n0|f~|H+StXVTYa@SpTWw8@X?!4|ov48PzC zB35nzl1)i(!2@>^a*@sGfmq`Cq>pe{1+FG^Mf{R3Np7e|_yGe_T#)YJGC~%(a_+gu z|Ap{Z5IW-dGam^^M`SO0NH63=q%YEW@Kn+dCZ7XFJg&v#OpR}2sv0*OH?(zRFOBr* zwqsak2&1aLO;z=STEz8d0&M-6lws>keokm^q?>hFHp8+$7Prh8Gqr^7(CS94He#k_ z>uN-EbfO{9Fdf}=4ASH0OZeF=ClrhK*eyAM4b?wl3%zW{g(Gv6A#cOZ-Q?lGYBGRaa1{)?@lXNaH_(&!mm@&9%Gh!6(y9 zXx7!us2+u?W2v}i;{&ER!YJU<0U4i) zl%w0MV^4jXB<7yB=bEWq1 zaVLxFU0Ny*xg1u_$_>+SE5Hp4lqQG^jk>{cX!~VJncx^8|+!)*xkvXg~ES$l^1= z+UgtXpJvLYt75Q*nO4B9U_+16ni`fe3*CGt106NaC5~{+@DsVJc{7E z-brh)E~M0H6bCW5HbOCBP}oGYq}FM~5%|atG=W${a9I(})mcJMSV$pcU6BXCE@?DJ zjV5;)aCFCt9MIjn99XKyi0I5rB|3E*jQJGBB;n^iAGDGf>443DbqN3{kX<3)@#`Zd>QgQ3;H1MS`jM_ zG2=SBqs+OZhy-$g6-PoNeIXT6?2*w5gd}-NeiH;sO%{#;T9mDF<5sfIHe%f_E3d0y z)ek;+ue!ae>dWjKx^2SIYU4=nPbd$k6zue4Xk*nNwco zltnApS6O*qWpf3SpZy4AW$^UE0k~3bMX%v@2g#}oe!p8gXe3ez-;1c0hz%)#Xt+7I zyOk7W!>@lLQwK2@R+{qxYLg3N+pWQ;BZV-x~n4Kign6Rt{|N)@&4 zNf=IqY6s>DZfhUi)6&$@Uf=X2Yi?oRsBLSjZEk-u9BQYGkAGcAMDVCCw^y_EZNeyh zRtgzGXT5ry2vL@_b>v&uHab%XHe^*Wf$T)7n*!7!$?2t`xq~(6Ff@$Rn(B-j5!Qq# zL&*+@9;4W#qFIosnbv8gD1Yjx3w&vaz`VlDASh14C}g zHi@-J9Azb>P@N)q$a@^!4JjRdJ}U6|+Q)=hIvgzqeFZ(u)5!dFEzRxqPqgo2Ppc`B ztnmvSOk>P=#_s85;>|CZ`$V}7hr!BLLM^TBjV;alFa|p6^%Iju6pA9kF_5IHO=SG^ zECgF=U3uJK7 z+lg{3T6OX$p9|TQIaE~;&q;)IXCGNriY8lD;b8dY>|_QyTaQd2wpiNWgEa6uYFiq<_bs`a!sop`pgvZDkVWkTrHY=AUp#nuLr1%k0^o^25lDs#G zZq|TbiUvy5yeK-pR@>T-mPKuhs(WRtUBi-&s50BPhqt4TtPZt_W?tRx#Ehu=Xe#EY z?N$woI8@dj5r4x`+e&uonjJQxVJ#JEZE08QY+aN&br(9g8iqDuhgw~&R^7*{chqd( zaZfdT6BE@obZXS%=jYw8R#98Qs;g@5t-hz~LCkB?99L~8$BAo*jvCg`(%!;$YmSB^ zq`@AFp*u=E64g5m%?w+1cz^OMSYyUgCa6r(ZO>sy}sQa}? zL?at^tdt$0vtLXPqaFK7Xm{i8`n+PQ!&RX=Ix3i8rY{Mp=+sat&T%_g1nB{#>EZg0 zI`wO<`H94Jmu{=|CY&0Us9_Iu8mM5x>*e8a5$d8P@#t#vZ5-0II5xzS8Cg0#o0a0(r+w7n4&f?1n{9g1ndG_>slA998a{o|I z{E{rkR_A}rv*7;?xuV2zoU!3Q%&hX&fIOtgV)-xl+(LTdg+TBUr}BcW0%rLjCrUo0y`YdPUN&-a7+)l zWz0W}2YL(W1rzex${p3cx1iAD(v5P{#Wy~G`WiTf@^TWb@^jP?1$roPW{2$p%dDP$ z@6=0tY3ilX-;+%I(&Ck|cY>uQPU~3uDtH<7E_hca-&wrEvxPb@aafl+C)zm%2h%@U z9j86`I-j3@jn5XH+x;Uu-1D&arnlkEdCz;tyeq)N-k6su*igh3^$X$&^nwq3fL|iE zjtz{jVdr%|wv&1D-p{=ky-iS9D?ZXoJ>^wz@5O#!LMjqgB)|c_? zRp2FZTzT~8Ysarb=I6c3-Vrb3ZLo50-8%$5W_W%b53U0E0>a5p3jDlqADXq!$N3dL zPu7!n1IxTH@PfMmz68!@_*~AbvO||w-V=@?w2#|@h1Zs+DwKuSrbhT;pci@4nVDF+ z##cxB=hHkpadB=6+Z`_6SY)U|2cm>W9{+}S-rL}V$5skgNvdAjd)b?Tu&YqQs~-2p zGH1r#;)A0Dd=~DpA$LIQ?}t{I!+17x1jD)QF&1cKbu@kQ+~n2iGvrygK)4a7xoZOk zt_ENhp+Lz|B{g&8hB=e)Y{@yftAi3mycH74dmABmBqw6QRwNKHoq@}3!r}WN`KGu; zC`IhIATxk@uLCn^6rh5m*%KG@Dv+Fu0lHP#IuLBYv&Ewz;9DMhQLmAtS8~9*4y*N010WNohKUd%u(o-qLAHO<$ zW_eP{T^;bO2oK@de89h9$hnGSp~MVUNFfLmF?&8YTZEY?E2}5xr!P>DADx{~Bk$R)0m(q72jPP`2KicX2w;`imNpAAAzzyw zJ$X)KPQ<@7knBGB8g&_bX?bMv^~qn-jv;;w`>eqgkPG3GKZoxf@_y_+M}z&(<04_` za%Oq-{q)ev`zt>kxiHk5iksbRDUmAXgzk(b#7dkmN|Eq;xA+iQmj`1bb zG$a&++d2k?1pUv;tu7(k%+dvygX6KD_eY(FvqGj*(bzoxhB@Zg%l)L=X(ilLdDYtn{TszLCtYx@kL^FHJ}=>rm!` zcZouq50Z6Z^21btL_4*1?Bpxg0;IcLf%>wD^feZWCfF9foJUv_REqnaP>~OI)?EGxmSKR^A>u@d4788mqGTHYLGV>#Kydrruv3-Ce8oW$JQH;8(U2Jaw%6v*4k1* z^Guej32=3auc?s=o*BBFej9CJ26=xI9qAffe+1=%I#kNWih5suInSu~7rd>_y*&O$ zzpu=7K#H0un35?{k-vbii9KbFQMH2UYpPT5<}*ms{X8L;e8{_vg?ASR<=HmKBWNYc JarYlm{tqKPzq$Yb literal 0 HcmV?d00001 diff --git a/po/ja.po b/po/ja.po new file mode 100644 index 0000000..17b7c72 --- /dev/null +++ b/po/ja.po @@ -0,0 +1,479 @@ +# Japanese messages for psmisc. +# Copyright (C) 2006 Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# Goto, Masanori , 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 22.2pre1\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2006-03-20 10:31+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" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "%s(%s%d) ¤òkill¤·¤Þ¤¹¤«? (y/N)" + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "%s(%s%d) ¤òkill¤·¤Þ¤¹¤«? (y/N)" + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "¥×¥í¥»¥¹¤Î¸½ºß¾õÂÖ¤«¤éUID¤ò¼èÆÀ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "ÉÔÀµ¤ÊÀµµ¬É½¸½: %s\n" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "Éôʬ°ìÃפò¥¹¥­¥Ã¥× %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "%s(%s%d) ¤ò¥·¥°¥Ê¥ë %d ¤Çkill¤·¤Þ¤·¤¿\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: ¤É¤Î¥×¥í¥»¥¹¤âkill¤µ¤ì¤Þ¤»¤ó¤Ç¤·¤¿\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"»ÈÍÑË¡: pidof [ -eg ] ¥×¥í¥»¥¹Ì¾...\n" +" pidof -V\n" +"\n" +" -e ¤È¤Æ¤âŤ¤¥×¥í¥»¥¹Ì¾¤ËÂФ·¤Æ´°Á´°ìÃפòÍ׵᤹¤ë\n" +" ¥³¥Þ¥ó¥É¥é¥¤¥ó¤¬ÍøÍѤǤ­¤Ê¤¤¾ì¹ç¤Ï³ºÅö¥×¥í¥»¥¹¤Ï¥¹¥­¥Ã¥×¤µ¤ì¤ë\n" +" -g ¥×¥í¥»¥¹ID¤ÎÂå¤ê¤Ë¥×¥í¥»¥¹¥°¥ë¡¼¥×ID¤òɽ¼¨¤¹¤ë\n" +" -V ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤¹¤ë\n" +"\n" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"»ÈÍÑË¡: killall [-Z CONTEXT] [-u ¥æ¡¼¥¶¡¼] [ -eIgiqrvw ] [ -¥·¥°¥Ê¥ë ] ̾" +"Á°...\n" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "»ÈÍÑË¡: killall [¥ª¥×¥·¥ç¥ó]... [--] ̾Á°...\n" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact ¤È¤Æ¤âŤ¤Ì¾Á°¤ËÂФ·¤Æ´°Á´°ìÃפòÍ׵᤹¤ë\n" +" -I,--ignore-case ¥×¥í¥»¥¹Ì¾¤Î°ìÃפÏÂçʸ»ú¤Î¾®Ê¸»ú¶èÊ̤ʤ¯¹Ô¤¦\n" +" -g,--process-group ¥×¥í¥»¥¹¤ÎÂå¤ê¤Ë¥×¥í¥»¥¹¥°¥ë¡¼¥×¤Ë¥·¥°¥Ê¥ë¤òÁ÷¤ë\n" +" -i,--interactive kill ¤¹¤ëÁ°¤Ë³Îǧ¤òµá¤á¤ë\n" +" -l,--list ´ûÃΤΥ·¥°¥Ê¥ë̾¤ò¤¹¤Ù¤Æɽ¼¨¤¹¤ë\n" +" -q,--quiet kill ¤¹¤ë¥×¥í¥»¥¹¤¬¤Ê¤¤¾ì¹ç¤Ëɽ¼¨¤ò¹Ô¤ï¤Ê¤¤\n" +" -r,--regexp »ØÄꤷ¤¿Ì¾Á°¤ò³ÈÄ¥Àµµ¬É½¸½¤È¤·¤Æ²ò¼á¤¹¤ë\n" +" -s,--signal ¥·¥°¥Ê¥ë SIGTERM¤ÎÂå¤ê¤Ë»ØÄꤷ¤¿¥·¥°¥Ê¥ë¤òÁ÷¤ë\n" +" -u,--user ¥æ¡¼¥¶ »ØÄꤷ¤¿¥æ¡¼¥¶¤ÇÁö¹Ô¤¹¤ë¥×¥í¥»¥¹¤Î¤ßkill¤¹¤ë\n" +" -v,--verbose ¥·¥°¥Ê¥ë¤ÎÁ÷¿®¤ËÀ®¸ù¤·¤¿¤éÊó¹ð¤¹¤ë\n" +" -V,--version ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤¹¤ë\n" +" -w,--wait kill¤·¤¿¥×¥í¥»¥¹¤¬½ªÎ»¤¹¤ë¤Þ¤ÇÂÔ¤Ä\n" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -Z,--context Àµµ¬É½¸½ ¥³¥ó¥Æ¥­¥¹¥È¤ò»ý¤Ä¥×¥í¥»¥¹¤Î¤ßkill¤¹¤ë\n" +" (¾¤Î°ú¿ô¤è¤ê¤âÁ°¤Ë»ØÄꤵ¤ì¤Æ¤¤¤Ê¤±¤ì¤Ð¤Ê¤é¤Ê¤¤)\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc¤Ï´°Á´¤Ë̵ÊݾڤǤ¹\n" +"¤³¤ì¤Ï¥Õ¥ê¡¼¥½¥Õ¥È¥¦¥§¥¢¤Ç¤¹¡£GNU°ìÈ̸ø½°ÍøÍѵöÂú·ÀÌó½ñ¤Î¾ò¹à¤Ë´ð¤Å¤¤¤Æ\n" +"ºÆÇÛÉÛ¤ò¼«Í³¤Ë¹Ô¤Ã¤Æ¤«¤Þ¤¤¤Þ¤»¤ó¡£\n" +"¤³¤ì¤é¤Ë¤Ä¤¤¤Æ¤è¤ê¾ÜºÙ¤Ê¾ðÊó¤ÏCOPYING¥Õ¥¡¥¤¥ë¤ò¤´Í÷²¼¤µ¤¤¡£\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "¥æ¡¼¥¶ %s ¤òȯ¸«¤Ç¤­¤Þ¤»¤ó\n" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "̾Á°¤ÎºÇÂç»ØÄê²Äǽ¿ô¤Ï %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s ¤Ï¶õ¥Ç¥£¥ì¥¯¥È¥ê (¥Þ¥¦¥ó¥È¤µ¤ì¤Æ¤¤¤Ê¤¤?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"»ÈÍÑË¡: fuser [ -a | -s | -c ] [ -n SPACE ] [ -¥·¥°¥Ê¥ë ] [ -kimuv ] ̾" +"Á°...\n" +" [ - ] [ -n SPACE ] [ -¥·¥°¥Ê¥ë ] [ -kimuv ] ̾Á°...\n" +" fuser -l\n" +" fuser -V\n" +"¥Õ¥¡¥¤¥ë̾¡¦¥½¥±¥Ã¥È¡¦¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ò¤É¤Î¥×¥í¥»¥¹¤¬»ÈÍѤ·¤Æ¤¤¤ë¤«¤òɽ¼¨\n" +"\n" +" -a ¥×¥í¥»¥¹¤«¤é»²¾È¤µ¤ì¤Æ¤¤¤Ê¤¤¥Õ¥¡¥¤¥ë¤âɽ¼¨ÂоݤȤ¹¤ë\n" +" -c -m¥ª¥×¥·¥ç¥ó¤ËƱ¤¸ (POSIX¸ß´¹À­¤Î¤¿¤á¤À¤±¤Ë¸ºß)\n" +" -f ¤Ä¤±¤Æ¤â̵»ë¤µ¤ì¤ë (POSIX¸ß´¹À­¤Î¤¿¤á¤À¤±¤Ë¸ºß)\n" +" -i kill¤¹¤ëÁ°¤Ë³Îǧ¤òµá¤á¤ë (-k¥ª¥×¥·¥ç¥ó¤ò¤Ä¤±¤Ê¤¤¤È¤­¤Ï̵»ë¤µ¤ì" +"¤ë)\n" +" -k »ØÄꤷ¤¿¥Õ¥¡¥¤¥ë¤Ë¥¢¥¯¥»¥¹¤·¤Æ¤¤¤ë¥×¥í¥»¥¹¤òkill¤¹¤ë\n" +" -l ÍøÍѲÄǽ¤Ê¥·¥°¥Ê¥ë̾¤ò¤¹¤Ù¤Æɽ¼¨¤¹¤ë\n" +" -m »ØÄê¥Õ¥¡¥¤¥ë¾å¤Î¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ò»ÈÍѤ¹¤ëÁ´¥×¥í¥»¥¹¤òɽ¼¨¤¹" +"¤ë\n" +" -n SPACE ̾Á°¶õ´Ö¤È¤·¤ÆSPACE(file, udp, ¤Þ¤¿¤Ï tcp ¤Î¤É¤ì¤«)¤ò»ØÄꤹ" +"¤ë \n" +" -s ɽ¼¨¤òÍÞÀ©¤¹¤ë\n" +" -¥·¥°¥Ê¥ë SIGKILL¤ÎÂå¤ê¤Ë»ØÄꤷ¤¿¥·¥°¥Ê¥ë¤òÁ÷¤ë\n" +" -u ¥æ¡¼¥¶ID¤òɽ¼¨¤¹¤ë\n" +" -v ¾éĹɽ¼¨¤ò¹Ô¤¦\n" +" -V ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤¹¤ë\n" +" -4 IPv4¥½¥±¥Ã¥È¤Î¤ß¸¡º÷¤¹¤ë\n" +" -6 IPv6¥½¥±¥Ã¥È¤Î¤ß¸¡º÷¤¹¤ë\n" +" - ¥ê¥»¥Ã¥È¥ª¥×¥·¥ç¥ó\n" +"\n" +" udp/tcp ̾Á°: [¥í¡¼¥«¥ë¥Ý¡¼¥È][,[¥ê¥â¡¼¥È¥Û¥¹¥È][,[¥ê¥â¡¼¥È¥Ý¡¼¥È]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (PSmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "/proc ¥Ç¥£¥ì¥¯¥È¥ê¤ò³«¤±¤Þ¤»¤ó: %s\n" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "°ìÃפ·¤¿¥×¥í¥»¥¹¤ËÂФ¹¤ë¥á¥â¥ê¤¬³ÍÆÀ¤Ç¤­¤Þ¤»¤ó: %s\n" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "¥Þ¥¦¥ó¥È¥Ý¥¤¥ó¥È %s ¤òstat¤Ç¤­¤Þ¤»¤ó: %s\n" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "%s ¤òstat¤Ç¤­¤Þ¤»¤ó: %s\n" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "¥í¡¼¥«¥ë¥Ý¡¼¥È %s ¤ò²ò·è¤Ç¤­¤Þ¤»¤ó: %s\n" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "̤ÃÎ¤Î¥í¡¼¥«¥ë¥Ý¡¼¥È AF %d\n" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "¥×¥í¥È¥³¥ë¥Õ¥¡¥¤¥ë \"%s\" ¤¬³«¤±¤Þ¤»¤ó: %s\n" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "̾Á°¶õ´Ö¥ª¥×¥·¥ç¥ó¤Ï°ú¿ô¤¬É¬ÍפǤ¹" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "ÉÔÀµ¤Ê̾Á°¶õ´Ö̾" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "" +"¥Þ¥¦¥ó¥È¥Ý¥¤¥ó¥È¥ª¥×¥·¥ç¥ó(-m¤Þ¤¿¤Ï-c)¤È°ì½ï¤Ë»È¤¨¤ë¤Î¤Ïfile̾Á°¶õ´Ö¤Î¤ß¤Ç¤¹" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "°ú¿ô¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤»¤ó" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "-m¥ª¥×¥·¥ç¥ó¤È-c¥ª¥×¥·¥ç¥ó¤ÏƱ»þ¤Ë¤Ï»È¤¨¤Þ¤»¤ó" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "-a¥ª¥×¥·¥ç¥ó¤Ï-s¥ª¥×¥·¥ç¥ó¤È°ì½ï¤Ë¤Ï»ÈÍѤǤ­¤Þ¤»¤ó" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "-4¥ª¥×¥·¥ç¥ó¤È-6¥ª¥×¥·¥ç¥ó¤ÏƱ»þ¤Ë»ØÄê¤Ç¤­¤Þ¤»¤ó" + +#: src/fuser.c:901 +#, fuzzy, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" +"\n" +"%*s ¥æ¡¼¥¶ PID ¥¢¥¯¥»¥¹ ¥³¥Þ¥ó¥É\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "(ÉÔÌÀ)" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "¥Õ¥¡¥¤¥ë¤òstat¤Ç¤­¤Þ¤»¤ó %s: %s\n" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "/proc/net/unix ¤¬³«¤±¤Þ¤»¤ó: %s\n" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "/etc/mtab ¤¬³«¤±¤Þ¤»¤ó: %s\n" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "¥×¥í¥»¥¹ %d ¤òkill¤·¤Þ¤¹¤«? (y/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "¥×¥í¥»¥¹ %d ¤ò kill ¤Ç¤­¤Þ¤»¤ó: %s\n" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "¥Í¥Ã¥È¥ï¡¼¥¯¥½¥±¥Ã¥È¤¬³«¤±¤Þ¤»¤ó.\n" + +#: src/fuser.c:1241 +#, c-format +msgid "Cannot find socket's device number.\n" +msgstr "¥½¥±¥Ã¥È¤Î¥Ç¥Ð¥¤¥¹Èֹ椬¸«¤Ä¤«¤ê¤Þ¤»¤ó.\n" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "ÆâÉô¥¨¥é¡¼: MAX_DEPTH ¤¬½½Ê¬Â礭¤¯¤¢¤ê¤Þ¤»¤ó.\n" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"»ÈÍÑË¡: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | ¥æ¡¼¥¶Ì¾ ]\n" +" pstree -V\n" +"¥×¥í¥»¥¹¥Ä¥ê¡¼¤òɽ¼¨¤¹¤ë¡£\n" +"\n" +" -a ¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤âɽ¼¨\n" +" -A ASCII ʸ»ú¤ò·ÓÀþɽ¼¨¤Ë»ÈÍÑ\n" +" -c Ʊ¤¸ÆâÍƤΥµ¥Ö¥Ä¥ê¡¼¤ò¤Þ¤È¤á¤Æû¤¯É½¼¨¤·¤Ê¤¤\n" +" -h ¸½ºß¤Î¥×¥í¥»¥¹¤È¤½¤ÎÀèÁÄ¤Î¥×¥í¥»¥¹¤ò¶¯Ä´É½¼¨¤¹¤ë\n" +" -H PID »ØÄê¥×¥í¥»¥¹PID¤È¤½¤ÎÀèÁÄ¤Î¥×¥í¥»¥¹¤ò¶¯Ä´É½¼¨¤¹¤ë\n" +" -G VT100 ·ÓÀþʸ»ú¤òɽ¼¨¤Ë»ÈÍÑ\n" +" -l Ť¤¹Ô¤òɽ¼¨¤·¡¢ÅÓÃæ¤ÇÂǤÁÀÚ¤ê¤Þ¤»¤ó\n" +" -n PID¤Ç¥½¡¼¥È¤·¤Æɽ¼¨\n" +" -p PID¤âɽ¼¨; -c¥ª¥×¥·¥ç¥ó¤ò¤Ä¤±¤ë¸ú²Ì¤ò´Þ¤ß¤Þ¤¹\n" +" -u UID¤ÎÁ«°Ü¾õ¶·¤òɽ¼¨¤¹¤ë\n" +" -U UTF-8 (Unicode) ʸ»ú¤ò·ÓÀþɽ¼¨¤Ë»ÈÍÑ\n" +" -V ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨\n" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr " -Z SELinux¥»¥­¥å¥ê¥Æ¥£¥³¥ó¥Æ¥­¥¹¥È¤òɽ¼¨¤¹¤ë\n" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" PID »ØÄꤷ¤¿PID¤«¤éɽ¼¨³«»Ï¤·¤Þ¤¹; ¥Ç¥Õ¥©¥ë¥È¤Ï 1 (init)\n" +" ¥æ¡¼¥¶Ì¾ »ØÄꤷ¤¿¥æ¡¼¥¶¤È¤·¤ÆÆ°ºî¤¹¤ë¥×¥í¥»¥¹¤«¤éÇÉÀ¸¤¹¤ë¥Ä¥ê¡¼¤Î¤ßɽ¼¨\n" +"\n" + +#: src/pstree.c:778 +#, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "TERM¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "üËö¤Îµ¡Ç½¤ò¼èÆÀ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "»ØÄê¥æ¡¼¥¶Ì¾¤Ï¸ºß¤·¤Þ¤»¤ó: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "¥×¥í¥»¥¹¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "¥ê¥¿¡¼¥ó¥­¡¼¤ò²¡¤¹¤ÈÊĤ¸¤Þ¤¹\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: ̤ÃΤΥ·¥°¥Ê¥ë; %s -l ¤Ë¤è¤Ã¤Æ¥·¥°¥Ê¥ë¤ò°ìÍ÷ɽ¼¨¤·¤Þ¤¹\n" + +#~ msgid "Cannot open protocol file \"%s\": %s" +#~ msgstr "¥×¥í¥È¥³¥ë¥Õ¥¡¥¤¥ë \"%s\" ¤¬³«¤±¤Þ¤»¤ó: %s" diff --git a/po/nb.gmo b/po/nb.gmo new file mode 100644 index 0000000000000000000000000000000000000000..bccbb21e655bb1a7f48f366969ae74bcfcb8219c GIT binary patch literal 8769 zcmb`MU2G)TRmW?Su!JTMvV0`rE0;~o+PhP2dp6mb_3V=McsyQfJhtVro!zX4P~CmI zUGD0t-uke|C@%;pfPw@<;vrAGpa_wNJOq$X;0d9KuUB|mq)0Oe#4BNd2l)N(t!j6B zy^|m)jr-qSb?>?7o^$Rw=U?;AGavZffa^v6ewx2OdMXGuz^(W5!FBY3Ab9w`Ac(=| z`MvY~L6CvJ435En0X6Tf4+gNU@|Na$F<9;8M9sdfHzW)r$UmwJ&TK@`o1H2DP&R4(% z@XtV&2p)l`8vHlN)Zn8iVZdcj>+gY@m(}UgrMC+1zX39q?7~H^Dae*C3`3{sWX>K7=v`G~iR9 zY^#f7;o@JibTQmr@8?tc$VS@tkMk#cU*%8x(1obUHODtX!P)kGpnNTRHW%UK{G=Gu z#Wvja;Tj3ofKYR`mA;B;`CGPmnm@yz?4a0{eK31KC{L~z>TewXfTQEC@2gQDpUTg= zWS1BDlbz&?=2Bb*#$UrYNune%VRFTUVG*A9`Jvp&?5oc+Or=h(PhW0_!E$fj$ zZr`rr+!}v-6qVg0)6a6lv@?@r>AIXR?0tKyzcQnwB<4ZLPo+6+@?EH%t3* z&MNHBbS!FHCpS(9nwck@DrQ!N&CS8R^*yhFvuc(mXN?8tZLwhTDowG8 z^wChwJz*{`?quGNnw{HmmX{{(v$SniK4nf(b>-83l^_@06lme07oc6#n>W3WHeYuryoTOAy>FlB}u+X^H!{Jaxg9A&5G-uhOYRu5ReTjgdp^xdGs-G9-!q?e4_8c@HQG8gY)^AmOqEWD`3-}d zFflp@1bUHmhqipKz*8r2*P65%b!?7ewL~|_#d)oVW=fF* zeBRHq(PZy@Prv#@_8eTX*fUZU!I3|LHUxmcy~gLglV49`xp zd|2<{TxTaA@nzP{61JIG^Xy#l?2HI!x$&AyuJZh5F9C3d)dJvDQQ5{99 zC2m0-AU)omte%Zs*{JKE%hb)8YX{rs2dWs`ZrqQFX{EXWB`BSGOvdPQ7<+7xIb_Ns z<3d%7dK2y58^uLewS%!v+tr)*cD4@o*SFp@+dJlSt9yH^+xu^}Tl>oR{Ogm5h^T&f z8s+wibIMs(krAvpwTT2NOXik*Tjp`6;;@lbQG)EG)U5+rXy^K|v3+1RERM!WyHzKN zyJm}1M#*lsZtHBSXijBn6Lqpm`O{JvIJgKau8?&Ri!=qEFYW}&&hDF=+Z*hBSLFKI)cI&C;#Y4ww;UAF0DCn(&0A#twVmz#^*8qKo43Ns zC2PLX!E6rVxAT)z<9^iz^S&#$?KY}h6tuIuzqzx0pJ&Jk-#u^~_b`+M4-l!UEirX^ z_7B5D^-d&x*L!@=9n+0QiW620<8f13@!&`&Es0Z1U*NguB#M)$lUTpdz_0I0Q*#D< zi$uno>IIr-o45SDLqG3Hb$DW-F|mVF*?Ht`+4XQ_zG%YNjq0g0apEEMF!oTH`!l;U zlC!Fr8~QkKqa@;szRXTW*Q;XETXnM#8K(zMsCQ$jNq#$#x16f~jLDi~sxAz-th!;G zI%tjmaJk_m`KJp1g--Y7Zs7oh!Gl zRaZpSTKKN4P*vePk2%tvGkMi-&9|&Bz_?f3FfpAiW!!{aKcI4JxB(SOyUZik;b&ySaPvY3HNn*GqMo#$ztQnSvy3%9tutFDfxwQmL-#vE;F-b^A#)P?t&rLYo$d zOVpJFr8U1}C8Fn3eL=n?V*H49(C0~R=6y+6poq1C`b5m!Q?eK&b{C|C1( zbbPycc1+6>ZuY`M-)gUzap9`W)vN8R^pVT0J=e^KcZ)&X3vX6~BHYhbOt(;3f6aZi zdwDkQ*eGwuy>?W!c6au}wcNTg7v7?STQRf=*TUuHaOu-#`P$0WYcDJln+y#1=+xBW zpO1SfTzWBFx@MNIt}HFTu%vNYQBj8b3Y;Y3bgY>DJj0gjX^(PIK2FRl?nb-5ktMJ7 zG3_wJV(r0kb`lTUY4!_6moXvJ)2`KcYm1jx;7IEpaNEAjI6G)z0Msj;PT zl;zr0oVnR|H}9^WTWPty)LIj7NYU(U%oar<79FX(VY=iB>eQ>7_jbbT*FW=exO_fX z+vwXoTu+H|7FaRYJ255A9Rts16$<}HGCs^L)OtcX`M?bdYL6d>ipq0$zWudQZm=pjSH}*{ z(iCC`Jx&L4NhOSX^oAuVGRk|BKf|zZ?j79W#Y9Jqs}?HrNA#P_&cw1+Mbt?4$jgRpYfbgs9L2QRKux$^@Ydnc@NL;DpABnAZ|5sFdLcL%oVmm8sP|L^ zdj4<+9i0~NV5~wR=bckp3?taBs#h{0567r;ft6o)h=$#87?n{%nN2S!>gQ|7 z1!g`g1lO?HlB_o@{H|aJvqO+kX4IR64#RwHuK4DKm6FF~F02?OGvs_CWOz)xD*UnO zLo9J&`s`!Yh`!qxA7{i>G3K32iLV-=Yu`JE&juGL{2jU7hma!Iy`!x&!Yqw9eH$m! z9G*kqB2T3R7B>{Xs$*4&S-Tcm-oXU7oahNHhp!(mrVx35zmB<@$saq4uO}R%$rPR4 zNmle!eptjbEWA`oi3Pok-jlTRLAcRO;TYA_U`z+B+D?q0uT^B<((gsn$h1Rd((WV zjhtrnO>*|M-doobdw6|A>+AA*-#gs#`pd)}u5N9dGkXQc#i6t8-i6N;y;pU(oZ|m4 z`mkA=e?)0BnOd#7%qvi+Fd58@zDD6t;pqY2@n)=Mh+16p{kp#EZ2HE_i0)7K7|k(i zXk1PBry2v6c1=Mmn6lXaGuM~S@5%S;qCa8$8hp$m{r-s@&8bF{U}fNUAQ8I|HGk{)oi~Ygx%3nQ{qQ^x?e%-PE7jn z)0(;bS1Wa7N5hd<}r%hYH$(*hOs(Pw+45>d3y+^_=m0jeICd z8kTUmu8zduR%M3tFs@y52i_$h@39LN&nNR{hOa%3@s!`1lOR?f%DT<3m%_Sff$~J7 zGKMD22=GhREu5Qq*`msa&1^?Qq>9tqX~BC_R|@#A7gZ_cZR?eNBB}SR+!KAJ206, 2005. +# +# Send this file as an gzipped attachment to: +# translation@iro.umontreal.ca +# with the subject: +# TP-Robot PACKAGE-VERSION.TEAM.po +# +# The subject for the Norwegian bokmål translation of psmisc 22.2pre1 +# would then be: +# TP-Robot psmisc-22.2pre1.nb.po +# +# Here's the URL for the Norwegian bokmål translation team: +# http://www.iro.umontreal.ca/translation/registry.cgi?team=nb +# +# Here's the URL for the current translations of GNU bison: +# http://www.iro.umontreal.ca/translation/registry.cgi?domain=psmisc +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 22.2pre1\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2006-03-07 12:01+0100\n" +"Last-Translator: Trond Endrestøl \n" +"Language-Team: Norwegian Bokmaal \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Drepe %s(%s%d) ? (j/n) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Drepe %s(%s%d) ? (j/n) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "Kan ikke finne UID fra prosesstatus\n" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "Ugyldig regulært uttrykk: %s\n" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "hopper over delvis treff %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "Drepte %s(%s%d) med signalet %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: drepte ingen prosess\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"Bruksmåte: pidof [ -eg ] navn ...\n" +" pidof -V\n" +"\n" +" -e krever nøyaktig treff for veldig lange navn;\n" +" hopp over dersom kommandolinjen er utilgjengelig\n" +" -g vis prosessgruppe ID i stedet for prosess ID\n" +" -V vis programversjon\n" +"\n" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"Bruksmåte: killall [-Z kontekst] [-u bruker] [ -egiqvw ] [ -signal ] " +"navn ...\n" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "Bruksmåte: killall [VALG]... [--] navn...\n" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact krever nøyaktig treff for veldig lange navn\n" +" -I,--ignore-case ignorerer store/små bokstaver i prosessnavn\n" +" -g,--process-group drep prosessgrupper i stedet for prosesser\n" +" -i,--interactive spør om bekreftelse før dreping\n" +" -l,--list vis alle kjente signalnavn\n" +" -q,--quiet ikke syt dersom det ikke går bra\n" +" -r,--regexp tolk NAVN som et utvidet regulært uttrykk\n" +" -s,--signal send signal i stedet for SIGTERM\n" +" -v,--verbose rapporter dersom signalet ble vellykket sendt\n" +" -V,--version vis programinformasjon\n" +" -w,--wait vent til prosessen er død\n" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -Z,--context REGEXP bare drep prosesser med kontekst\n" +" (må komme foran andre argumenter)\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright (C) 1993-2005 Werner Almesberger og Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc kommer ABSOLUTT UTEN NOEN GARANTI.\n" +"Dette er fri programvare, og du har tillatelse til å redistribuere det\n" +"under betingelsene i GNU General Public License.\n" +"For mer informasjon om dette, les filene som heter COPYING.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "Kan ikke finne brukeren %s\n" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Maksimalt antall navn er %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s er tom (ikke montert?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"Bruksmåte: fuser [ -a | -s | -c ] [ -n ROM ] [ -SIGNALl ] [ -kimuv ] " +"NAVN ...\n" +" [ - ] [ -n ROM ] [ -SIGNAL ] [ -kimuv ] NAVN ...\n" +" fuser -l\n" +" fuser -V\n" +"\n" +"Vise hvilke prosesser som bruker de angitte filene, socketer eller " +"filsystemer.\n" +"\n" +" -a også vise ubrukte filer\n" +" -c monterte filsystemer\n" +" -f ignorert i det stille for POSIX-kompatibilitet\n" +" -i spør før dreping (ignorert uten -k)\n" +" -k drep prosesser som akserer den navngitte filen\n" +" -l vis liste over tilgjengelige signalnavn\n" +" -m vis alle prosesser som bruker de angitte monterte " +"filesystemene\n" +" -n ROM søk i det angitte navnerommet (file, udp, eller tcp)\n" +" -s stille utførelse\n" +" -SIGNAL send dette signalet i stedet for SIGKILL\n" +" -u vis bruker-IDer\n" +" -v ordrik output\n" +" -V vis programversjon\n" +" -4 søk bare blant IPv4-socketer\n" +" -6 søk bare blant IPv6-socketer\n" +" - nullstill valgene\n" +"\n" +" udp/tcp-navn: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (PSmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "Kan ikke åpne /proc-katalogen: %s\n" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "Kan ikke allokere minne for funnet prosess: %s\n" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "Kan ikke kjøre stat på monteringspunktet %s: %s\n" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "Kan ikke kjøre stat på %s: %s\n" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "Kan ikke løse lokalport %s: %s\n" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "Ukjent lokalport AF %d\n" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "Kan ikke åpne protokollfil «%s»: %s\n" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "Navneromvalget krever et argument." + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "Ugyldig navn på navnerom" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "Du kan bare bruke filer med monteringspunktvalget" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "Ingen prosesspesifikasjon ble gitt" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "Du kan ikke bruke montert- og monteringspunktvalgene samtidig" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "alle valg kan ikke bli brukt med stillevalget." + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "Du kan ikke søke etter bare IPv4- og bare IPv6-socketer samtidig" + +# Oversettelsen av denne strengen er noe vanskelig da dette er en +# tabelloverskrift som skal passe med selve tabellen. [TE, 2005-03-01] +#: src/fuser.c:901 +#, fuzzy, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" +"\n" +"%*s BRUKER PID ACCESS KOMMANDO\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "(ukjent)" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "Kan ikke kjøre stat på fila %s: %s\n" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "Kan ikke åpne /proc/net/unix: %s\n" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "Kan ikke åpne /etc/mtab: %s\n" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Drepe prosess %d ? (j/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "Kunne ikke drepe prosessen %d: %s\n" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "Kan ikke åpne en nettverkssocket.\n" + +#: src/fuser.c:1241 +#, c-format +msgid "Cannot find socket's device number.\n" +msgstr "Kan ikke finne socketens enhetsnummer.\n" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "pstree (psmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "Intern feil: MAX_DEPTH er ikke stor nok.\n" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"Bruksmåte: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | BRUKER ]\n" +" pstree -V\n" +"\n" +"Vis et prosesstre.\n" +"\n" +" -a vis argumentene fra kommandolinjen\n" +" -A tegn linjer med ASCII-tegn\n" +" -c ikke komprimer identiske undertrær\n" +" -h uthev nåværende prosess og dets opphav\n" +" -H PID uthev prosessen «pid» og dets opphav\n" +" -G tegn linjer med VT100-tegn\n" +" -l ikke avkort lange linjer\n" +" -n sorter output etter PID\n" +" -p vis PIDs; medfører -c\n" +" -u vis uid-overganger\n" +" -U tegn linjer med UTF-8-tegn (Unicode)\n" +" -V vis programversjon\n" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr " -Z vis SELinux sikkerhetskontekster\n" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" PID begynn med angitt pid, standard er 1 (init)\n" +" BRUKER bare vis trær med opphav fra prosesser tilhørende denne brukeren\n" + +#: src/pstree.c:778 +#, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (psmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "TERM er ikke angitt\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "Kan ikke finne ut egenskapene til terminalen\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "Fant ikke brukeren «%s».\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "Fant ingen prosesser.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Trykk på enter for å lukke.\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: ukjent signal; %s -l angir kjente signaler.\n" diff --git a/po/nl.gmo b/po/nl.gmo new file mode 100644 index 0000000000000000000000000000000000000000..a62101235d1e3c91859ef572e79fa988997d372c GIT binary patch literal 10194 zcmcJUTZ|;vS;s4hA<(e{vAKpz4mQiqthai1?6tj_-PoR;?H!N2bJ1MZYnv5Rcc1RA zo$9J~U1oNieTY!r01*&8fFhwFAs&g4ctRoyyqOo^0R@R5KmsI0!~+)v`Gw#AoT~1g z-SNfP1i=>c%OB&5>l=>+!9RX92>u#+ zj{C2DJP0!Azd$F@x4tI`o`L=uRP+B0`a{sizc&aLq0d113pV)rG3Xmm11+HEp}!9O zY3SFXKLGtFsQA4P{WSD5EkAx4`Wf!uhW;e<^H7cZE$B}{{}}od^zWcQ0{suD#y|0i zAh-$*p=Y3Xp_>0CsQCXr^c?g(sO0|7nm+!x=kp9ye6B(@?`NSu1O0q`|2t60{dK73 z{}uEfpx>(R|NMy{_$KKaQYSb)9_?V$57Lch)Zd*2rXzm2~Clu04? zJvMa%`m0dc=o?Ty{}hWp34H~seecwC0F|8YLcajt--LFs<);zu0?&UQA$|q=CFmES z1|>-UzYCQf->d1rLRY!}Bt}D(!4C9k=pCr`{{`r0p}z-x7W((lpMXAr6X^Z3P|2|a zg;nqlRQCEMsDXYJx(NLXXdC)|{r((G#BUS&0`y(zRp?itvfsC$2Kp4t#qSdIIp}TZ z4?=$tYM@_%YTZA9N?+fE%8sAl>pb*XsMfy?m0f-Ts{MT#`j^nJLHP@Q&3OO#11L)e z--K>J--mXf>nLsT5p)XuDD=Nz@<-V3zY*?py#GU#AwK^Om7GtV_4hZRvfltI`yJQx zm!TKA{|Xd#?$WyQQSHCEPcZs$+|~Jq z?qB3{iO&!7K@4}vM;@#Hmp>CGPLH30N{^EHyZJoNNBh-YrFZ%Gckz+$q81mM5NBgi zqp$jsy>u<{kxpb^`4XyiJ_vES_K146@uX?bsw)Iy7lCwuNS| zGdmupS#HB#R9NwFG)@bf7I7ILS~JPBo-GPD$vAGBIb>%2CLHEjH8DowPe=P_@F{K7 zH`$Zc0B(&z8u82&R{fCrQMAP8~Ueb33&6*iC&oIVU;uH&-?~$Z4V! z&6YOp+diruR!NlefFXr53Q`uZspZ&RU)x-{X$F!e9_#n2JT8wh22ODgQ@Ekq>(@25C?mEIm0o*1ykh!x5LF5L zD$J5uh|{=SL>kj5%`tZxD|5^Gd6t#f3Klb&a7bqjDZ8ch!nfEYG=@pjb9(*6hfMYWx0imClF46$76zF^ZGM`-*le zSg40B2G%z9C2&Df4J(u_R7 zzUu(rVnbIfB(3-5?hWwH%r$LH1GAAkW6rz2hNe zH4`P9*wkFGW$(hcjJhWl_OB!l9*J#AME!sP7gAeZsM7e}!|x-*yQ3^WsP{0F+3|;c znf0=SZ6?+{eWrN&1Pk&+mXP$MFVdyrQ?{Jjr1o>_Gsp0>!Ok(@rHnRxpG}VQcsMG} z!s?<~`s`<)51+eu@dfjS%~PClC7}eM@Sz+NbFAi3JT$vw3`sn!o|w$Mm&{&{>zX&B zejo2IRecy$C4IcGJem5>^!;`^d5#xEWf}EGiWu_1B<`CtaVuC?_LnnRjafDuE4P2{ zdS`p@HOH-sBsR^e;Rw~Pr-xC(G*`1GkvxU!6}+xubEa50Q=I89npe!i@rBJr;~&>y zZq5)Y^Dpql>5QYe95os741u!|-HXT7xOPJoEVrN{P_H*tG2QCf#MP#{$hvaS1a>>v zoJC|YvAuW@6BNp)L+V^Q_nNdcAe#GZkU6B|k#WARMZNa6cgJzjQ-NZvlXm6W?$*uy zz0S=y&E}SQV`XP&WpnS%c56>%g}(vW4woF1M^SFiJF6aN6=}zsBb$hkOpsfWdYQ-F zifAQuBLpc>^+6F{Xy>|F+uS#67Ei%Q+f_G-d*&u#N?*`!-B56=GS8I*6LqsnN!n6= zhMu*9mPd zWL9oCv+Nhq5Pda`)7zAn)ve9F&h5QB=IyX@6@mX~lh%jvJNe;}ad&l9zT;|oyNxIh zGTPeSTi@Ee!#ntd4-cGJdobwp?y?q2_0`i?UthQMHM(Q2;_fe-x33QPZny8aQW0J@ z=xKtgE}Jgu?lXr-c(LYm%KBW`?b}VdO5evb(yz?$z4Qqa)WN zjUx5_!Dh5i)KOlaGu_f7Cb=^dtW_&x(?$S+$>;3SSKPfGn zN#W}EbI-M3XzjRjSh!IP<9>Lp8W!PRwrqNZx~*5;ce|fwldg^OcHD1ARcm`|FI*)r zt9b~olcbl8y0CC*DZF^eEWNb++)K|c;j0V`cW9t>I-4JN@rCgDC9`yC`Qr1>USwwL zW>l2no*XHOh?Zq@&7v@~+Z$CVNsXYn+SQ|1NnB+VC1pEJUS?W4tf;Z!9`$M2T(1Ns zTy;Zm_u;FDd3?9%jq-R27~a>3l>%ZXCK_~ed%(k( z=SdW)pbAcy4ilqOFd0{NRniRy9ggc}lx2f{NKG{diB%y>tn0X_{WSDmpi@v5Lv8Qc zL-J)jls6ydm^S6`c1Smu5}EXV)_55u$|-OQ8Rjl0TZ!G(Ryf^yr~^Kn3jETifG!-} z7(vflj%^~VayLX2r@K>d7rKEJ*9B@?6_-PcSkwxd6(E~TNL@dcZ*ZwV8qj7$R5P3}sKAMUuCR3=$a}b7O=j6E{)j#6Z6ev1>XUxB`d4j!F*>=XO(0JC>WT>V@Bk9&>OOLnORarP9Z=uGevq>%qg(Z zPQC9_$29AIn6db(_f+zDF#(j6>pA_OSm7j!^#1}u$$)iifcE%6s`Ihm zLw$?Vk@cC8e_dz_jXHPE<56_Gj6Qd69*+_Zq41=DlS|QeW`|gA7AdL>imjAXI6+4gIFDCd zSI;sPEL00@1uUp((eEd!YfTml)^w-gby@e0NCB#yHk%A-D+FM};CO=IfoC9kaF~AZxwT=2+@LeKnOcBuib+I8w91Q&+iE z0fE*z8G*uL*z+yrm0Xop>G(*chDp9gJQB%z3$17hH9^U?`E`SMqQg*!=W1{h8d#sr z%p+LW^Xh=}h3N>-RF3ndph(C)N`=`N6)8v#qdZo}YK=p;M%E7GO-SjbouzXj!*g+7 z16^yr-B_OWun%BecDU{UEpLv$ zme4O+1EF8F_KLnOdU-sdeSaAt?$of(Wn(UfwD~vp4XS3Mw z0G4s+)rXbJ17&kPyS!hWuHR5r312o5zZ0irHCxKVa%SXoSF27lb%b!5_@Id%H>=On z&XMZM8VwHU`I^YBe|m1RfFLw2uJV*Wh@k0S?GOE$p-HE92uJJTxh46c_DPSGnHnK$ zw6owa2hMX!{*SPoN8HD60-*9$bBKBPyH{Mu2$TD(M@YV-d{vTj6 dry>i&#P*h1xNmJz)`yN6UP2C3ha}+ae*hEer8@us literal 0 HcmV?d00001 diff --git a/po/nl.po b/po/nl.po new file mode 100644 index 0000000..1e19e21 --- /dev/null +++ b/po/nl.po @@ -0,0 +1,487 @@ +# Translation of psmisc-22.5 to Dutch. +# Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc. +# This file is distributed under the same license as the PSmisc package. +# Benno Schulenberg , 2004, 2005, 2006, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 22.5\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2007-05-31 14:03+0200\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" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Proces %s(%s%d) afbreken? (j/N) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Proces %s(%s%d) afbreken? (j/N) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "Kan uit processtatus geen UID bepalen\n" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "Ongeldige reguliere expressie: %s\n" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "overgeslagen: gedeeltelijke overeenkomst %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "Proces %s(%s%d) is afgebroken met signaal %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: er is geen proces afgebroken\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"Gebruik: pidof [-eg] NAAM...\n" +" pidof -V\n" +"\n" +" -e zeer lange namen moeten exact overeenkomen\n" +" (genegeerd als de opdrachtregel niet beschikbaar is)\n" +" -g procesgroeps-ID tonen in plaats van proces-ID\n" +" -V de programmaversie tonen\n" +"\n" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"Gebruik: killall [-Z CONTEXT] [-egIiqrvw] [-SIGNAAL] [-u GEBRUIKER] " +"NAAM...\n" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "Gebruik: killall [-egIiqrvw] [-SIGNAAL] [-u GEBRUIKER] [--] NAAM...\n" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact zeer lange namen moeten exact overeenkomen\n" +" -g,--process-group een procesgroep afbreken in plaats van een proces\n" +" -I,--ignore-case verschil tussen hoofd- en kleine letters negeren\n" +" -i,--interactive om bevestiging vragen alvorens af te breken\n" +" -l,--list lijst van bekende signalen tonen\n" +" -q,--quiet geen foutmeldingen geven\n" +" -r,--regexp NAAM is een uitgebreide reguliere expressie\n" +" -s,--signal SIGNAAL dit signaal sturen in plaats van SIGTERM\n" +" -u,--user GEBRUIKER alleen proces(sen) van deze gebruiker afbreken\n" +" -V,--version de programmaversie tonen\n" +" -v,--verbose melden of het signaal succesvol verstuurd is\n" +" -w,--wait wachten tot processen ook werkelijk afgebroken zijn\n" +"\n" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -Z,--context REGEXP alleen processen met deze context afbreken\n" +" (dient aan andere argumenten vooraf te gaan)\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc kent GEEN ENKELE GARANTIE.\n" +"Dit is vrije software en mag vrijelijk verspreid worden,\n" +"onder de voorwaarden van de GNU General Public License.\n" +"Zie voor meer informatie hierover het bestand genaamd COPYING.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "Kan gebruiker %s niet vinden\n" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Het maximum aantal namen is %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s is leeg -- niet aangekoppeld?\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"Gebruik: fuser [-a|-c|-s] [-n RUIMTE] [-SIGNAAL] [-ikmuv] NAAM...\n" +" [-] [-n RUIMTE] [-SIGNAAL] [-ikmuv] NAAM...\n" +" fuser -l\n" +" fuser -V\n" +"\n" +"De processen tonen die gebruik maken van de genoemde bestanden,\n" +"sockets of bestandssystemen\n" +"\n" +" -a de ongebruikte bestanden ook noemen\n" +" -c (hetzelfde als -m)\n" +" -f (genegeerd, maar herkend voor POSIX-compatibiliteit)\n" +" -i om bevestiging vragen (genegeerd zonder -k)\n" +" -k processen afbreken die het gegeven bestand gebruiken\n" +" -l lijst van beschikbare signalen tonen\n" +" -m processen tonen die het gegeven bestandssysteem gebruiken\n" +" -n RUIMTE in de gegeven naamsruimte ('file', 'udp', of 'tcp') zoeken\n" +" -s geen uitvoer produceren\n" +" -u de gebruiker-IDs tonen\n" +" -V de programmaversie tonen\n" +" -v breedsprakige uitvoer produceren\n" +" -SIGNAAL dit signaal sturen in plaats van KILL (zie -l voor een " +"lijst)\n" +" -4 alleen naar IPv4-sockets zoeken\n" +" -6 alleen naar IPv6-sockets zoeken\n" +" - alle opties herinitialiseren\n" +"\n" +" tcp/udp-namen: [lokale_poort][,[gindse_host][,[gindse_poort]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (PSmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "Kan /proc niet openen: %s\n" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "Onvoldoende geheugen om gevonden proces te verwerken: %s\n" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "Kan status van aankoppelingspunt %s niet bepalen: %s\n" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "Kan status van %s niet bepalen: %s\n" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "Kan lokale poort %s nergens toe herleiden: %s\n" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "Onbekende lokale poort AF %d\n" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "Kan protocolbestand '%s' niet openen: %s\n" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "De naamsruimte-optie -n vereist een argument" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "Ongeldige naamsruimte" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "Bij opties -c of -m mogen alleen bestandsnamen gegeven worden" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "Geen naam van bestand of socket opgegeven" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "Opties -c en -m mogen niet allebei gebruikt worden" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "Opties -a en -s gaan niet samen" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "Opties -4 en -6 gaan niet samen" + +#: src/fuser.c:901 +#, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "%*s GEBRUIKER PID SOORT PROGRAMMA\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "(onbekend)" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "Kan status van bestand %s niet bepalen: %s\n" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "Kan /proc/net/unix niet openen: %s\n" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "Kan /etc/mtab niet openen: %s\n" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Proces %d afbreken? (j/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "Kan proces %d niet afbreken: %s\n" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "Kan netwerk-socket niet openen.\n" + +#: src/fuser.c:1241 +#, c-format +msgid "Cannot find socket's device number.\n" +msgstr "Kan apparaatnummer van socket niet vinden.\n" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "Fout tijdens aanhechten aan PID %i\n" + +#: src/peekfd.c:83 +#, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "peekfd (PSmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" +"Gebruik: peekfd [-8cdn] [-Vh] [...]\n" +"\n" +" -8 8-bits schone uitvoer produceren\n" +" -c nieuwe dochterprocessen ook bekijken\n" +" -d dubbele vermeldingen onderdrukken\n" +" -n het lezen en schrijven van descriptorkoppen niet tonen\n" +" -V de programmaversie tonen\n" +" -h deze hulptekst tonen\n" +"\n" +"Typ Ctrl-C om het programma te stoppen.\n" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "**Interne fout**: MAX_DEPTH is niet groot genoeg.\n" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"Gebruik: pstree [-aclnpu] [-h|-H PID] [-A|-G|-U] [ PID | NAAM ]\n" +" pstree -V\n" +"\n" +"Huidige processen tonen in een boomstructuur.\n" +"\n" +" -A ASCII-tekens voor de lijntjes gebruiken\n" +" -a argumenten van de opdrachtregel tonen\n" +" -c identieke subbomen niet compacteren\n" +" -G VT100-tekens voor de lijntjes gebruiken\n" +" -H PID dit proces en diens voorouders accentueren\n" +" -h huidig proces en zijn voorouders accentueren\n" +" -l lange regels niet afkappen\n" +" -n uitvoer sorteren naar PID\n" +" -p PIDs tonen (dit impliceert -c)\n" +" -U Unicode-tekens (UTF-8) voor de lijntjes gebruiken\n" +" -u UID-overgangen tonen\n" +" -V de programmaversie tonen\n" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr " -Z SELinux-veiligheidscontexten tonen\n" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" PID bij dit proces-ID beginnen; standaard is 1 (init)\n" +" NAAM alleen de bomen tonen die beginnen bij processen van deze " +"gebruiker\n" +"\n" + +#: src/pstree.c:778 +#, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "omgevingsvariabele TERM heeft geen waarde\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "Kan terminalcapaciteiten niet bepalen\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "Geen bestaande gebruikersnaam: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "Geen processen gevonden.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Druk op Enter om af te sluiten\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "Onbekend signaal: %s -- '%s -l' toont lijst van mogelijke signalen\n" diff --git a/po/pl.gmo b/po/pl.gmo new file mode 100644 index 0000000000000000000000000000000000000000..880d03a6c81450b0b15e5e54226d2dcfb9d27f3e GIT binary patch literal 10304 zcmb`MUyL2sUB`zurQwnSO(`u<=t+W`-Ndv0lYh?IZL(h9IGcF?$h&LD4pDXP%e|^E%v>Q!jzP z1B#B`1?BxGS@dD>1yJ^VvBo`6_#A^H=)MK+pvzCeoXDXE6Tb%j3HY1f;|M|I@~7aV z;NO6<-~Rz+ozI{&MCr9bdA|h;-x+usd<$Fx{}z<_4`2lH{c%wAvIUB~@*3X)ALsd- z;8F13!6(5_|B@TO0?PLQd>Z^3xD0+16h6NXiryb#lQOOi%KQN+>%Rqx9=-v72K;M~ zCA|Ltnd&{rCWOB)fV}cHLD5SJ3ccR~zYG2uDC_)@a`OF4Q22cp+y+0!=49O~pvd_* zz|VpI3lrb|2!CVLPx1XbZ2pVjBM@H&zYIPPejOD3{Ua#)`_CF5fI0s3J_|z5Uc$H7 zsO-PF5VwaZSsKl|PuG7u*t`Ir;V1i)JvJ96;eDK+$Vo0t&cj^2WAecDEI*OG$WM5Y zOMH|NU@x&}+{DV`li(u1(tn37p-0BOHv)2jk zA`_9n*bbt#HVD{Q@*F5Sl?%7AdjBXWb~w3|yZUjG=p<2oa#Z<#5*KCb-Y=Kr%e5#k zVw1M`>PJU?Kf11ivK|TK(VJDAN6Nh(=rZW3J(DY@jZ|XNu1fVFDrEK=v*T`R^2iT# z5eW^8aau%a5ts3`NM*SRqN1>ql%*y!yUeV=_}$!8nNq_3WVCw+oifs)GJDMjnH$Th zX&L3PEh}*8qHlQ&Ou856tit|OCxY$B(v8!u%uJXma*-+ZWgkUq{nQLoRj?hMOn3Mu zGZ05KGbJ?X<0bsSf(pzaOEiC3apVlnqi%Ga-PD)mGs~I3v9jKVPo+~NTSjRZg^0Ra zB|7H?Lkg=DxGW%3^Rc~leq-f=QiwBDWiKuo24^J0n4R{;b=hCV%&LfTwY%NE=s2)a zHEA+xB)AY2iz=_u6qyJ=GF0YXV=gN07^g>>oky9;OBL_2bkwXoWKK~9qSL)9fiAp> zq4}2_0og^pc@@S5;u(qQ*w=B2Mx1tJ#*i699nZ*C*+;Rq+Bl*@l?FOd%M+shRZF_) znW5TlUx?G{I_n2j9+xAOfl*vX6?W*>+Bq3pl$tH*(n*h(r&Sp3=_+Agg*u@Y;xsN7 z;YKw=v&5~$$~FRS=C!<4Exyvl{BhSoEUp#kOn2gh;6MzK0m2#%XaZeEY7h+!VMZ*##tPUKsZXfM z;Jp}UC`{0g%Et?|c`Xhil~#jJl*3p}(GIe{Q1c-(g^^uEwU?X0Wbar=Sxs3nS(K_{ zQ5hT?l)5vwu=^zZV3Fvigw^*Ma4e0=V^tbozyG^dd>fj)U+-bcv!xID(gY@9n@OY| zJyJY6M}jzE5`vz{i*PCaDY~55r0nO=cb4E`gRNmeOCs9jyU9j*-0hWWVRccRc>ejP z{FBFzKcg;3d5STvB%}ZY-W9_{9jm#HyJ~xYBJqdSxyj6XPVMBFuDYzl5bG}``!K3X zLaeZy5B*0%x1DyLV+Fb_bO4AXwK_5tVJA|m_k+$;>n9KnaE=ZFB3&+QxZyz9l&mhRP~Wg|#3dceOl8hO!?qtRgB~-fkVxW?W|FC99U* zLU)l@Q#id&dRg7v*lEAE^M-oeuWUx(FUq8~Zv19`ZK&*1ot59PIelpfR_-OVxwW&l zx$y?ypyS^^FpHx8UdXpovQR3wKyIPjF3GL;hB||}e@VT5W{>;Q(i=8a_@@+d$`I8l z)j|A05>Zf~kVp>*%aRZLRJjtR$-aCGj}1wY2vPzc3-@@1gzE``5`HAZ>2ySN8Y(;v z*Q^}@(U->5V~$|B}hq;G*<}J-+IkAn^1dEk}XMP z>Xf^>bMb<|D$11tsG-@28~I>vqMj~_kpfGUQRhVW(Z3|b5Q;4mf8gTwbVJ1wEBbNP zR6+Q`KmuM8rx~%58gvEvxky0+LRzzKeoznMTSd)&1e^>bzYw{?cBAkYfsx0)I2>~S4(KjrU_M$>Qot% z%j-pjj4Ub9rzv$s%QNflCAurYj5?5t+LL2nosVH!=650?5xRs~kaeh8+=wM_k1x4e zaEW!1QlRD4VSN6b^Ub+;5acC#rRfk_NgZQwa~xhPD;xvD{THg zd2;EQ){6l>Uww zQljyeW%Y{gR~>cMbgN>l&b-+%rs%zxB_Zc)4rNOw?|z9%X}2Q7`a5K&Wwm8EMD)}d zYmbnTH96i7{49CV9xs*(Q{{o2+Pl#bMe>(g>uc-nsZ35R9dE75AuolOQO2g^ym!o= zz)zF2bWXni;@bA6f9ljT&-*8*gN5c*ITs>efI_pp9SJ#!>; zrFI<;>sWhtsCYBX^{pfx$`_0_O8VyJZM>M6DfABMvWz)=1yJhdRo3(bAT`#57!}vF zE17&qnyALBGN>48i>q|-7SWpQDr4~y}rDEqSWaZ1TiOF$JP znlA@;ttbv@yvRz!(M{GZlUf?A+t=^Of`{~8s#_!3>Bh>{%U9IC?o+&)aWRhav9U@S zju0OFYbqGqhmp5JYqkM%g$B&m73&rUcFoL$+Rk>&Rujq1wP7$58!dLKhsFlDzUD{gZ)?;D*n9Kk7eycnlxh_h}@k)s+$80;r3)t&Z+7~O|yU<+ZWgE z7bWJ_iN;wRLFK)I<3`=e=@;5fmg0j8ZDl4H-w`Dm(wI0BpXhSoPlM6TL>QQMaICC1 zFK?_Na3|&v^MJarJ4!{$(!{zWv|L7q5leI`Z2i8?oWm4YE!-V063c7-VHhLTY|?IV zQjE%W<}PXQ#Hh!5&RE~3GNhhtilb4};t}(yw+U#lV_j$ zMP>Ahq|Jjwu%H2w7Sk9_T0Oj%9Z*Q$szZ_!K~=Yc;>dbp?Sf6y$GU8_kJzkdjyUPa z5_Tw!pMyI@Hw@3YksJhSH*!bN4Hg}kTSO)kqJffK@<_BYH-p$77o{PD&Zh$r#|WQ@ zk{E*`B%ym7FDLO+Y@p`+{zae`edD&A!K1uVRX)C9=_*xpnEE=gp|0r(O~(#L z*f}F@uL%Wz_z1_r4=|3tqBwkG!bIn0(tKCx16xw@57m&8{Z*kpprb;V5PxaHT1C6S z>FVsk4Z?>QG<|UJ;0Ax$v_3IR+oH1LhS4y+Q|9B8HsQ2KWgT|h8PSo|2lPY4C?yi; zA(E5~ud%T)Ud=6y?Hli^Wu|FA(UvN0zskLK4grgkc9p!x*PHRR|3(Ab^;p;af+8hh zHBRv3j$2d?+0v@o%!2*<8Nkb>teHfpie?qkvf0Wg)6b)u6w4^f@p5-)KNBdDXiS~g z$mZ^_u}?jd;s_9`)crWxx0{XUTUb_HHWyGgL_v>Lh_h$gSJm4q=Qi4}sPpu)RyI~& zS)-Q)FL2P!^`K6Tc6O+9o;j~e0E$!xPYtO+@=>RfVXk`8oW}a}8e3bYUI>0{(@IjJ zYhsO4-brt3;qd0x;!^7}L5o2%*%T@4hc=30Rg`bm7frp@nSR!W4&s}s#5@V5wyQ;1 z)=x#wZclY{OWqLgIV78OWX(q+GG&Y*c7i&jGe&Z|&yP{>wyjBHJ>T_uRk~iUZZ~bO zN!qdPgL|4^t|F3t%hk&(w)=Gm&CRXVSK71vulvXTC_ONnnChAsJyw(;cnV2|qr5uh zi}4RBsa*c0Atn-=t3^`XrO@mnB$u12V`EKuN;$`WC=~sClyS--VMx;U>5rMPo7^D5 zLkCO6hWOt?so5HHXGCcRQp(nILNrvlqJ7NL`=mUa!wk#2Qhv%*xA5JeTUk8AE_R90 zO`$wvL`_LnkLt~gvNenm?rrmBwagQGW_|OXD+^_5i850y-P<>-bu%qc4(px$u;-fj zR$68T@xFN6J^>?^euEWD!hdwVXSL+~)fDBOEY(gTwxc$uJxU=tzf7gy9AEg*Xrz%Q zyK3gXZ<#wM9Cv>I|LU!={QI}pCVn>8lAHF~F3+BJ>T0&x-+ZHOZi`JBiFJ#BrOvbh zb|R@;ZtieI;1DMuUeW-zEjTyGwc5no3wmqT?ro=S6p+ls?oDX*mXw^H_Ub38d+Onav-@oJgtVd5U7L0d?Rjd{Frlgs%XnK0;rpD zhiv1X=A2`}HQ^eP?`zTCRT5#ae}jWT+NYSCDW_aXPSrc4fUD1=q@+4!yRRvY*Rd+b zRi81g$i$0eiy}bVoQvmQJnL=nWkUNlx(-uLZxI=dHXw~Rv6+Squ>;KVUfw+6nMTI6 wKOo5x`xF|J)GY-&^?1F(AZGNB)SZ), 2003-2007. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 22.5\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2007-05-30 17:34+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" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Zabiæ %s(%s%d)? (t/N) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Zabiæ %s(%s%d)? (t/N) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "Nie mo¿na pobraæ UID-a ze stanu procesu\n" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "B³êdne wyra¿enie regularne: %s\n" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "pominiêto czê¶ciowe dopasowanie %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "Zabito %s(%s%d) sygna³em %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: nie zabito ¿adnego procesu\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"Sk³adnia: pidof [ -eg ] NAZWA...\n" +" pidof -V\n" +"\n" +" -e wymaganie dok³adnego dopasowania dla bardzo d³ugich nazw;\n" +" pomijane je¶li linia poleceñ nie jest dostêpna\n" +" -g wy¶wietlanie ID grup procesów zamiast ID procesów\n" +" -V wy¶wietlenie informacji o wersji\n" +"\n" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"Sk³adnia: killall [-Z KONTEKST] [-u U¯YTKOWNIK] [ -eIgiqrvw ] [ -SYGNA£ ] " +"NAZWA...\n" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "Sk³adnia: killall [OPCJE]... [--] NAZWA...\n" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V --version\n" +"\n" +" -e,--exact wymaganie dok³adnego dopasowania dla bardzo d³ugich " +"nazw\n" +" -I,--ignore-case dopasowywanie nazw procesów niewra¿liwe na wielko¶æ " +"liter\n" +" -g,--process-group zabicie grupy procesów zamiast procesu\n" +" -i,--interactive pytanie o potwierdzenie przed zabiciem\n" +" -l,--list wypisanie wszystkich znanych nazw sygna³ów\n" +" -q,--quiet nie wy¶wietlanie narzekañ\n" +" -r,--regexp u¿ycie NAZWY jako rozszerzonego wyra¿enia regularnego\n" +" -s,--signal SYGNA£ wys³anie podanego sygna³u zamiast SIGTERM\n" +" -u, --user U¯YTK zabicie tylko procesów dzia³aj±cych jako podany " +"u¿ytkownik\n" +" -v,--verbose informowanie czy wys³anie sygna³u siê powiod³o\n" +" -V,--version wy¶wietlenie informacji o wersji\n" +" -w,--wait zaczekanie na ¶mieræ procesów\n" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -Z,--context REGEXP zabicie tylko procesu(ów) maj±cych dany kontekst " +"bezp.\n" +" (musi poprzedzaæ inne argumenty)\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright (C) 1993-2005 Werner Almesberger i Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc jest rozpowszechniany BEZ ¯ADNEJ GWARANCJI.\n" +"To oprogramowanie jest darmowe i mo¿e byæ dystrybuowane na warunkach\n" +"Powszechnej Licencji Publicznej GNU (General Public License).\n" +"Wiêcej informacji znajduje siê w pliku o nazwie COPYING.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "Nie mo¿na odnale¼æ u¿ytkownika %s\n" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Maksymalna liczba nazw to %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s jest pusty (nie podmontowany?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"Sk³adnia: fuser [ -a | -s | -c ] [ -n PRZESTRZEÑ ] [ -SYGNA£ ] [ -kimuv ] " +"NAZWA...\n" +" [ - ] [ -n PRZESTRZEÑ ] [ -SYGNA£ ] [ -kimuv ] NAZWA...\n" +" fuser -l\n" +" fuser -V\n" +"Pokazywanie, które procesy u¿ywaj± plików, gniazd lub systemów plików\n" +"o podanych nazwach.\n" +"\n" +" -a wy¶wietlenie tak¿e nie u¿ywanych plików\n" +" -c podmontowany system plików\n" +" -f po cichu ignorowane (dla kompatybilno¶ci z POSIX)\n" +" -i pytanie przed zabiciem (ignorowane bez -k)\n" +" -k zabicie procesów u¿ywaj±cych podanego pliku\n" +" -l lista nazw sygna³ów\n" +" -m pokazanie procesów u¿ywaj±cych podanych systemów plików\n" +" -n PRZESTRZEÑ szukanie w podanej przestrzeni nazw (file, udp lub tcp)\n" +" -s dzia³anie po cichu\n" +" -SYGNA£ wys³anie podanego sygna³u zamiast SIGKILL\n" +" -u wy¶wietlenie identyfikatorów u¿ytkowników\n" +" -v podanie wiêkszej ilo¶ci informacji\n" +" -V wy¶wietlenie informacji o wersji\n" +" -4 szukanie tylko gniazd IPv4\n" +" -6 szukanie tylko gniazd IPv6\n" +" - wyzerowanie opcji\n" +"\n" +" nazwy tcp/udp: [port_lokalny][,[zdalny_host][,[port_zdalny]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (PSmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "Nie mo¿na otworzyæ katalogu /proc: %s\n" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "Nie mo¿na przydzieliæ pamiêci dla dopasowanego procesu: %s\n" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "Nie mo¿na wykonaæ stat na punkcie montowania %s: %s\n" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "Nie mo¿na wykonaæ stat na %s: %s\n" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "Nie mo¿na rozwi±zaæ portu lokalnego %s: %s\n" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "Nieznana rodzina adresów portu lokalnego %d\n" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "Nie mo¿na otworzyæ pliku protoko³u \"%s\": %s\n" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "Opcja przestrzeni nazw wymaga argumentu." + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "Niepoprawna nazwa przestrzeni nazw" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "Z opcj± punktu montowania mo¿na u¿ywaæ tylko plików" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "Nie podano okre¶lenia procesów" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "Nie mo¿na u¿yæ jednocze¶nie flag podmontowanego i punktu montowania" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "opcja wszystkich plików nie mo¿e byæ u¿yta z opcj± ciszy." + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "Nie mo¿na naraz szukaæ gniazd wy³±cznie IPv4 i wy³±cznie IPv6" + +#: src/fuser.c:901 +#, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "%*s U¯YTKOWNIK PID DOSTÊP POLECENIE\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "(nieznany)" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "Nie mo¿na wykonaæ stat na pliku %s: %s\n" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "Nie mo¿na otworzyæ /proc/net/unix: %s\n" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "Nie mo¿na otworzyæ /etc/mtab: %s\n" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Zabiæ proces %d? (y/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "Nie uda³o siê zabiæ procesu %d: %s\n" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "Nie mo¿na otworzyæ gniazda sieciowego.\n" + +#: src/fuser.c:1241 +#, c-format +msgid "Cannot find socket's device number.\n" +msgstr "Nie mo¿na odnale¼æ numeru urz±dzenia gniazda.\n" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "B³±d podczas pod³±czania do procesu %i\n" + +#: src/peekfd.c:83 +#, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "peekfd (PSmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" +"Sk³adnia: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 wypisywanie strumieni czysto 8-bitowych.\n" +" -n nie wy¶wietlanie nag³ówków odczytu/zapisu z deskryptora.\n" +" -c podgl±danie tak¿e nowych procesów potomnych.\n" +" -d usuwanie z wyj¶cia powtórzonych odczytów/zapisów.\n" +" -V wypisanie informacji o wersji.\n" +" -h wypisanie tego opisu.\n" +"\n" +" Ctrl-C koñczy wyj¶cie.\n" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "B³±d wewnêtrzny: MAX_DEPTH jest zbyt ma³e.\n" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"Sk³adnia: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | U¯YTKOWNIK ]\n" +" pstree -V\n" +"Wy¶wietlanie drzewa procesów.\n" +"\n" +" -a wy¶wietlenie argumentów linii poleceñ\n" +" -A u¿ycie znaków ramek ASCII\n" +" -c nie scalanie identycznych poddrzew\n" +" -h pod¶wietlenie bie¿±cego procesu i jego przodków\n" +" -H PID pod¶wietlenie podanego procesu i jego przodków\n" +" -G u¿ycie znaków ramek VT100\n" +" -l nie obcinanie d³ugich linii\n" +" -n sortowanie wyj¶cia wg PID-u\n" +" -p wy¶wietlanie PID-ów; w³±cza tak¿e -c\n" +" -u wy¶wietlanie zmian uidów\n" +" -U u¿ycie znaków ramek UTF-8 (Unicode)\n" +" -V wy¶wietlenie informacji o wersji\n" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr " -Z wy¶wietlanie kontekstów bezpieczeñstwa SELinuksa\n" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" PID rozpoczêcie od tego PID-u, domy¶lnie 1 (init)\n" +" U¯YTKOWNIK tylko drzewa zaczynaj±ce siê od procesów tego u¿ytkownika\n" +"\n" + +#: src/pstree.c:778 +#, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "TERM nie ustawiony\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "Nie mo¿na odczytaæ mo¿liwo¶ci terminala\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "Nie ma u¿ytkownika o takiej nazwie: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "Nie znaleziono procesów.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Naci¶niêcie return zamknie program\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: nieznany sygna³; %s -l wypisuje sygna³y.\n" diff --git a/po/psmisc.pot b/po/psmisc.pot new file mode 100644 index 0000000..2ef188b --- /dev/null +++ b/po/psmisc.pot @@ -0,0 +1,392 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# 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: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\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" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "" + +#: src/killall.c:77 +#, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "" + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "" + +#: src/fuser.c:89 +#, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "" + +#: src/fuser.c:901 +#, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "" + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "" + +#: src/fuser.c:1241 +#, c-format +msgid "Cannot find socket's device number.\n" +msgstr "" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr "" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" + +#: src/pstree.c:778 +#, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "" diff --git a/po/pt.gmo b/po/pt.gmo new file mode 100644 index 0000000000000000000000000000000000000000..66b21601eccbf9a1d82644b4f6269875b13a15e4 GIT binary patch literal 837 zcmYLH&2AGh5MCf~2saL#3Jjn~sVaxvs3>7uAP{n>Xdo&PcV|7_n6B-W?F}vBHFyFp z@FIN+kSe(F3P?zdH)%4`x1WFJ&pY4GTa7Of*$u)L;gE2X@R<2{#X7svdXt{RFwZt}jlzt9Q=9(AK zqWdvFm8w#pD>Xw4<`^_rSQiS{?nIWQ)H#&gdPy;g`)ppP6I66!%?HdpI}q$WS|^Q8 zp>#^R43bXVJi^jg&&Dp7g1xMA$EGHQ%qdH+_ z++zyeIPS3|Veu{`y|mlgNs>4wM|Ok@8A@*a5|+fQ+lOv9O?FvKke_>(iZO?*oa59b@xn6t44%=g6kWRSFY&PL)^a5cW$yDCE*> zd@vquen5En(9mEsRX!`}2_8@Vqq5*q??E=_)}enYonig{<0mZHIEOZm(Xx@wjG(`s zLZ8i~55om?{sI>K6ZPKKzsz#4s0|Vzt@`Av20}a4CZ~ pe-&B->Vni@Kp;sesNhen5mJkx)`S6zt|~&tpoc8zAqXod;XhBW=XL-9 literal 0 HcmV?d00001 diff --git a/po/pt.po b/po/pt.po new file mode 100644 index 0000000..da3fbcf --- /dev/null +++ b/po/pt.po @@ -0,0 +1,463 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Free Software Foundation, Inc. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 1.0\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2001-10-28 22:14-0200\n" +"Last-Translator: Edesio Costa e Silva \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: src/killall.c:74 +#, fuzzy, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Termina %s(%s%d) ? (y/n) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Termina %s(%s%d) ? (y/n) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "ignorando resultado parcial %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "Abortado %s(%s%d) com sinal %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: nenhum processo abortado\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, fuzzy, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"Copyright (C) 1993-2000 Werner Almesberger and Craig Small\n" +"\n" +"PSmisc vem sem nenhuma GARANTIA.\n" +"Este é um software livre, e você é bem-vindo a redistribuí-lo sob os\n" +"termos da licença GNU (GNU General Public License).\n" +"Para maiores informações sobre estes assuntos, veja os arquivos com nome " +"COPYING.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Número máximo de nomes é %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s está vazio (não está montado?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"\"\"\n" +"\"usage: fuser [ -a | -s ] [ -n space ] [ -signal ] [ -kimuv ] name ...\\n" +"\"\n" +"\" [ - ] [ -n space ] [ -signal ] [ -kimuv ] name ...\\n\"\n" +"\" fuser -l\\n\"\n" +"\" fuser -V\\n\"\n" +"\"\\n\"\n" +"\" -a exibe arquivos usados e não usados\\n\"\n" +"\" -k termina processos acessando aquele arquivo\\n\"\n" +"\" -i pergunta antes de abortar (ignorado se a opção -k não for " +"utilizada)\\n\"\n" +"\" -l lista o nome dos sinais\\n\"\n" +"\" -m sistemas de arquivos (file systems) montados\\n\"\n" +"\" -n space pesquisa no espaço de nomes especificado (arquivos, conexões " +"udp ou tcp)\\n\"\n" +"\" -s exibe apenas mensagens de erro\\n\"\n" +"\" -signal utiliza sinal signal ao invés de SIGKILL\\n\"\n" +"\" -u exibe identificadores de usuário (user ids)\\n\"\n" +"\" -v exibe mensagens detalhadas\\n\"\n" +"\" -V exibe versão do programa\\n\"\n" +"\" -4 pesquisa apenas sockets IPv4\\n\"\n" +"\" -6 pesquisa apenas sockets IPv6\\n\"\n" +"\" - reseta opções\\n\"\n" +"\"\\n\"\n" +"\" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\\n\"\n" +"\"\\n\"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, fuzzy, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "" + +#: src/fuser.c:901 +#, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "" + +#: src/fuser.c:1198 +#, fuzzy, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Aborta processo %d ? (y/n) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "" + +#: src/fuser.c:1241 +#, fuzzy, c-format +msgid "Cannot find socket's device number.\n" +msgstr "não pode achar o número de dispositivo do socket" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr "" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" + +#: src/pstree.c:778 +#, fuzzy, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "" + +#~ msgid "-4 flag used but proc file %s is not readable\n" +#~ msgstr "opção -4 utilizada mas o arquivo %s não pode ser lido\n" + +#~ msgid "-6 flag used but proc file %s is not readable\n" +#~ msgstr "opção -6 utilizada mas o arquivo %s não pode ser lido\n" + +#~ msgid "kill %d" +#~ msgstr "kill %d" + +#~ msgid "No automatic removal. Please use umount %s\n" +#~ msgstr "" +#~ "Não pode ser automaticamente removido. Por favor, utilize umount %s\n" + +#~ msgid "No automatic removal. Please use swapoff %s\n" +#~ msgstr "" +#~ "Não pode ser automaticamente removido. Por favor, utilize swapoff %s\n" + +#~ msgid "Internal error (type %d)\n" +#~ msgstr "Erro interno (tipo %d)\n" + +#~ msgid "kernel mount " +#~ msgstr "kernel mount " + +#~ msgid "kernel loop " +#~ msgstr "kernel loop " + +#~ msgid "kernel swap " +#~ msgstr "kernel swap " + +#~ msgid "ignoring -m in name space \"%s\"\n" +#~ msgstr "ignorando opção -m no espaço de nomes \"%s\"\n" + +#, fuzzy +#~ msgid "%s/%s: invalid specification\n" +#~ msgstr "%s/%s: especificação invalida\n" + +#~ msgid "No process references; use -v for the complete list\n" +#~ msgstr "" +#~ "Nenhuma referência a processo; utilize -v para uma listagem completa\n" diff --git a/po/quot.sed b/po/quot.sed new file mode 100644 index 0000000..0122c46 --- /dev/null +++ b/po/quot.sed @@ -0,0 +1,6 @@ +s/"\([^"]*\)"/“\1”/g +s/`\([^`']*\)'/‘\1’/g +s/ '\([^`']*\)' / ‘\1’ /g +s/ '\([^`']*\)'$/ ‘\1’/g +s/^'\([^`']*\)' /‘\1’ /g +s/“”/""/g diff --git a/po/remove-potcdate.sin b/po/remove-potcdate.sin new file mode 100644 index 0000000..2436c49 --- /dev/null +++ b/po/remove-potcdate.sin @@ -0,0 +1,19 @@ +# Sed script that remove the POT-Creation-Date line in the header entry +# from a POT file. +# +# The distinction between the first and the following occurrences of the +# pattern is achieved by looking at the hold space. +/^"POT-Creation-Date: .*"$/{ +x +# Test if the hold space is empty. +s/P/P/ +ta +# Yes it was empty. First occurrence. Remove the line. +g +d +bb +:a +# The hold space was nonempty. Following occurrences. Do nothing. +x +:b +} diff --git a/po/ro.gmo b/po/ro.gmo new file mode 100644 index 0000000000000000000000000000000000000000..c0a0ed2c4a043b8b2e576797a51cd133efa5cbe8 GIT binary patch literal 2086 zcmaJ?OK)366uv-#aw!i1Dn%eTNTei?>)IBj!69wk5F(4ju~L`P<@nxXd+5D0SM$hA zVui$#6u17^k}(mTCgN7aZ$QMT2$Imp}lgP(Y2)*hYeDiN~2S@mhQ?t=WMd= z)m^3c6|PUzJN;HU0kpW z*%Do&#luVOC7Nu{%r3y0(+6K)5fNR_0Ko-6r<%=F0(tT2*;Bk!MxP1}~ z_WFo4gOk{_J{^*`xDmt~&>u&gn}xI~r8?Xn+iBjoxwCbvyRmhL+B)GRbQJzIH?thp7zM|kS!Copv*3lg-1bKU*?D+ z1eekJPUlXmy@|*>COoTQ=Zy-krMb2oN8OFx?GR5W2g@#w>|I%wQVpmS#z{B?{YY4N zg$!lVG5TvxUDC>uFJTqVG^n&8dr7@k`M5M(i+8!y#wFW!AhYC#AK0X;8ZyO)sLulrBT1~VXaoJLNM9oJsIrI zDSb zN0B5biX!xDIbPbe`YKI6*A^AMyGFI8)zG@c7Iin!IojP%76rT!Zr<@Sm8i;T+oP38 zpjYfk52GLgF<34_KPyhX(l+((GzqXc8ciiQN5w{MPbJDp_l~9FISGu8QJ5#>;Bzlg zeq*W_jmztCT9}>u7c(@AnHo30nfj>{9xN03-xnjaP9O=&IIsjyQZPB31v(g6G^Tni z4hIinvqfkQx0|ML#VW@hHH}*oD{gD~bls2f{T5r(~Z8kw04_X_QxEXGWi32m* z0EL3Mmg&9(DWOP?CH24pd#vD*9nr)56oJTN89!8@s4)#lJR(x-$9aIf{9g{~p#F@X zF~~8btuJ#~U^@_&VN{xQI(+A15+sy^UC=K|F2{SE1?T$mzGQhPhA_(kr4EC8+Mj)Pl0SxnH Ak^lez literal 0 HcmV?d00001 diff --git a/po/ro.po b/po/ro.po new file mode 100644 index 0000000..74f03c8 --- /dev/null +++ b/po/ro.po @@ -0,0 +1,513 @@ +# Mesajele în limba românã pentru psmisc. +# Copyright (C) 2003 Free Software Foundation, Inc. +# Acest fiºier este distribuit sub aceeaºi licenþã ca ºi pachetul psmisc. +# Laurentiu Buzdugan , 2005. +# +# +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc-21.6pre1\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2005-02-24 12:00-0500\n" +"Last-Translator: Laurentiu Buzdugan \n" +"Language-Team: Romanian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Terminã %s(%s%d) ? (y/N) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Terminã %s(%s%d) ? (y/N) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "am ignorat potrivirea parþialã %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "Am terminat %s(%s%d) cu semnalul %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: nici un proces nu a fost terminat\n" + +#: src/killall.c:497 +#, fuzzy, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"folosire: pidof [ -eg ] nume ...\n" +" pidof -V\n" +"\n" +" -e cere potrivire exactã pentru nume foarte lungi;\n" +" ignorã dacã linia de comandã nu este disponibilã\n" +" -g aratã ID-ul grupului procesului în loc de ID-ul procesului\n" +" -V afiºeazã informaþii despre versiune\n" +"\n" + +#: src/killall.c:511 +#, fuzzy, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"folosire: killall [-s sid] [-c context] [ -egiqvw ] [ -signal ] nume ...\n" + +#: src/killall.c:514 +#, fuzzy, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "folosire: killall [ OPÞIUNI ] [ -- ] nume ...\n" + +#: src/killall.c:517 +#, fuzzy, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V --version\n" +"\n" +" -e,--exact cere potrivire exactã pentru nume foarte lungi;\n" +" -I,--ignore-case potriveºte numele indiferent de cazul caracterelor\n" +" -g,--process-group terminã grupul procesului în loc de proces\n" +" -i,--interactive cere confirmare înainte de terminare\n" +" -l,--list listeazã toate numele de semnale cunoscute\n" +" -q,--quiet nu afiºa plângerile\n" +" -s,--signal trimite semnal în loc de SIGTERM\n" +" -v,--verbose raporteazã dacã semnalul a fost trimis cu succes\n" +" -V,--version afiºeazã informaþii despre versiune\n" +" -w,--wait aºteaptã ca procesele sã termine\n" +"\n" + +#: src/killall.c:533 +#, fuzzy, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -d,--sid terminã numai procesele având sid\n" +" -c,--context terminã numai procesele având scontext\n" +" (-s, -c sunt mutual exlusive ºi trebuie sã preceadã celelalte argumente\n" +"\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, fuzzy, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright (C) 1993-2002 Werner Almesberger ºi Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc vine fãrã ABSOLUT NICI O GARANÞIE.\n" +"Acesta este software liber, ºi sunteþi benevenit sã îl redistribuiþi\n" +"în conformitate cu termenii GNU General Public License.\n" +"Pentru informaþii suplimentare referitoare la aceste chestiuni,\n" +"vedeþi fiºierele numite COPYING.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Numãr maxim de nume este %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s este gol (nu este montat ?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"folosire: fuser [ -a | -s | -c ] [ -n spaþiu ] [ -signal ] [ -kimuv ] " +"nume ...\n" +" [ - ] [ -n spaþiu ] [ -signal ] [ -kimuv ] nume ...\n" +" fuser -l\n" +" fuser -V\n" +"\n" +" -a afiºeazã ºî fiºierele nefolosite\n" +" -c FS montat(e)\n" +" -f ignorat pe tãcute (pentru compatibilitate POSIX)\n" +" -k terminã procesele ce acceseazã acel fiºier\n" +" -i întreabã înainte de a termina (ignorat fãrã -k)\n" +" -l listeazã numele semnalelor\n" +" -m FS montat(e)\n" +" -n spaþiu cautã în numele de spaþiu specificat (fiºier, udp, sau tcp)\n" +" -s operare pe tãcute\n" +" -signal trimite semnal în loc de SIGKILL\n" +" -u afiºeazã ID-uri utilizator\n" +" -v ieºire detaliatã\n" +" -V afiºeazã informaþii despre versiune\n" +" -4 cautã numai socket-urile IPv4\n" +" -6 cautã numai socket-urile IPv6\n" +" - reseteazã opþiuni\n" +"\n" +" nume udp/tcp: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, fuzzy, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "" + +#: src/fuser.c:901 +#, fuzzy, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" +"\n" +"%*s UTILIZATOR PID ACCES COMANDÃ\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Terminã process %d ? (y/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "" + +#: src/fuser.c:1241 +#, fuzzy, c-format +msgid "Cannot find socket's device number.\n" +msgstr "nu pot gãsi numerele dispozitivelor socket-urilor" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "pstree (psmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, fuzzy, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "MAX_DEPTH nu este suficient de mare.\n" + +#: src/pstree.c:750 +#, fuzzy, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"usage: pstree [ -a ] [ -c ] [ -h | -H pid ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ pid | user]\n" +" pstree -V\n" +"\n" +" -a afiºeazã argumentele liniei de comandã\n" +" -A foloseºte caractere de desenare ASCII\n" +" -c nu compacta sub-arborii identici\n" +" -h evidenþiazã procesul curent ºi strãmoºii acestuia\n" +" -H pid evidenþiazã procesul \"pid\" ºi strãmoºii acestuia\n" +" -G foloseºte caractere de desenare VT100\n" +" -l nu trunca liniile lungi\n" +" -n sorteazã ieºirea dupã PID\n" +" -p afiºeazã PID-urile; implicã -c\n" +" -u afiºeazã tranziþiilr uid\n" + +#: src/pstree.c:768 +#, fuzzy, c-format +msgid " -Z show SELinux security contexts\n" +msgstr "" +" -s aratã SID-urile Flask\n" +" -x aratã contextele de securitate Flask\n" + +#: src/pstree.c:771 +#, fuzzy, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" -U foloseºte caractere de desenare UTF-8 (Unicode)\n" +" -V afiºeazã informaþii despre versiune\n" +" pid începe la pid, implicit 1 (init)\n" +" utiliz aratã numai arborii cu rãdacinã la procesele acestui utiliz" +"[ator]\n" +"\n" + +#: src/pstree.c:778 +#, fuzzy, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (psmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "TERM nu este setat\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "Nu pot obþine capabilitãþile terminalului\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "Nici un utilizator cu acest nume: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "Nu a fost gãsit nici un proces.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Apãsaþi tasta return pentru a închide\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: semnal necunoscut; %s -l listeazã semnalele.\n" + +#~ msgid "%s: SID (%s) must be numeric\n" +#~ msgstr "%s: SID (%s) trebuie sã fie numeric\n" + +#~ msgid "-4 flag used but proc file %s is not readable\n" +#~ msgstr "aþi folosit opþiune -4 dar fiºierul proc %s nu este citibil\n" + +#~ msgid "-6 flag used but proc file %s is not readable\n" +#~ msgstr "aþi folosit opþiune -6 dar fiºierul proc %s nu este citibil\n" + +#~ msgid "kill %d" +#~ msgstr "kill %d" + +#~ msgid "No automatic removal. Please use umount %s\n" +#~ msgstr "Nici o ºtergere automatã. Vã rugãm folosiþi umount %s\n" + +#~ msgid "No automatic removal. Please use swapoff %s\n" +#~ msgstr "Nici o ºtergere automatã. Vã rugãm folosiþi swapoff %s\n" + +#~ msgid "Internal error (type %d)\n" +#~ msgstr "Eroare internã (tip %d)\n" + +#~ msgid "kernel mount " +#~ msgstr "kernel mount " + +#~ msgid "kernel loop " +#~ msgstr "kernel loop " + +#~ msgid "kernel swap " +#~ msgstr "kernel swap " + +#~ msgid "ignoring -m in name space \"%s\"\n" +#~ msgstr "ignor -m în spaþiul de nume \"%s\"\n" + +#~ msgid "%s/%s: invalid specification\n" +#~ msgstr "%s/%s: specificaþie invalidã\n" diff --git a/po/ru.gmo b/po/ru.gmo new file mode 100644 index 0000000000000000000000000000000000000000..00c0d8d7d1acb526752236935ae00559b80e5eee GIT binary patch literal 1511 zcmZ9LOK;p%6vqvemwAY{%KL1lBr2ZHB!pDc&<08*qBdz1MXcC3o;wp0zvO$J2U0%) zEZ87E01G6(0}>WvC2nTy$=HdLR4N|;sbYl?V!{88Ckf(8XMS^!&)dfjUb^s|g7ZA& zEyy>Jmm&W^_^6`10#1X{|MrLm z_yX=i{pTR}1Z zeSqT5JT^_SHp)j8l(wL6nRZ~46WFWFC$~k8ZnI&J^6}zXGtjlrX%j_4$pd4J0uB#p z-avd+S@LDiJ`;iOkZ{ScT+UQwWo~&vj!e#qGodPc-Sj-uX_Ke>!bFF*E)Y$Y*u)H% zeD_Oc2yMQpea?Jtx=w>UZkyboiCXnTb(wjtFSG^THk;ZfL7QtUZi5VN>y|Y;{H->9 z*IQ+}Up1RmJy4hKtY|lVrVGTDjHdc9VIp|;F6OquiC zZc3|7YV|3qO*Ez^FV`kvcU$K|Tk&;=Te@)l2F+XBI?Zix#x`h%4LPe@!ZMv;tLg{W z;o-Ccz0I^0rrQnLbX}{pO*18DmcRqu9wWi*5v1$%- zZ+mD$uq|=LvvkwBM#h@%W4a&Rx-)-OTRu0GMYfo)%{hkK#LydbRa-Uj7O;Q)gDj`9 zB%-XBCV4zai!eD`W2jHUA{yNPA)zFuv=b-PAEduVSynD|62&J)l;z3sJ<8&pBniBU&jdO?$)T|2^%-570u9Qrwe$%AyXV z9I>L}_ z5zXQ4`PAv|Q*peTcF@@$(IDzYNfPc;x;HpDj1mMGele&8uP02>q8lZ!#Dvp9JUI9T TRU$)zTv=N5LzERqXCKeMp{E%u literal 0 HcmV?d00001 diff --git a/po/ru.po b/po/ru.po new file mode 100644 index 0000000..3a69aac --- /dev/null +++ b/po/ru.po @@ -0,0 +1,516 @@ +# Russian Translation for psmisc files +# Copyright (C) 2002 Free Software Foundation, Inc. +# Ilya Evseev , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 20.6\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2005-03-15 02:53+0300\n" +"Last-Translator: Ilya Evseev \n" +"Language-Team: woolfy \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=KOI8-R\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "%s(%s%d) ÚÁ×ÅÒÛÉÔØ? (y/N) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "%s(%s%d) ÚÁ×ÅÒÛÉÔØ? (y/N) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "ÉÇÎÏÒÉÒÕÀ ÎÅÐÏÌÎÏÅ ÓÏ×ÐÁÄÅÎÉÅ %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "%s(%s%d) ÚÁ×ÅÒۣΠÓÉÇÎÁÌÏÍ %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: ÎÅ ÚÁ×ÅÒۣΠÎÉ ÏÄÉÎ ÐÒÏÃÅÓÓ\n" + +#: src/killall.c:497 +#, fuzzy, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"óÉÎÔÁËÓÉÓ: pidof [ -eg ] ÉÍÑ-ÐÒÏÃÅÓÓÁ ...\n" +" pidof -V\n" +"\n" +" -e ÔÒÅÂÏ×ÁÔØ ÐÏÌÎÏÇÏ ÓÏ×ÐÁÄÅÎÉÑ ÄÌÑ ÏÞÅÎØ ÄÌÉÎÎÙÈ ÉÍ£Î;\n" +" ÉÇÎÏÒÉÒÏ×ÁÔØ, ÅÓÌÉ ËÏÍÁÎÄÎÁÑ ÓÔÒÏËÁ ÎÅÄÏÓÔÕÐÎÁ\n" +" -g ÐÏËÁÚÙ×ÁÔØ ÉÄÅÎÔÉÆÉËÁÔÏÒ ÇÒÕÐÐÙ ÐÒÏÃÅÓÓÁ ×ÍÅÓÔÏ ÉÄÅÎÔÉÆÉËÁÔÏÒÁ " +"ÐÒÏÃÅÓÓÁ\n" +" -V ÐÏËÁÚÁÔØ ×ÅÒÓÉÀ ÐÒÏÇÒÁÍÍÙ\n" +"\n" + +#: src/killall.c:511 +#, fuzzy, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"óÉÎÔÁËÓÉÓ: killall [-s sid] [-c context] [ -egiqvw ] [ -signal ] name ...\n" + +#: src/killall.c:514 +#, fuzzy, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "óÉÎÔÁËÓÉÓ: killall [ OPTIONS ] [ -- ] name ...\n" + +#: src/killall.c:517 +#, fuzzy, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V --version\n" +"\n" +" -e,--exact ÔÒÅÂÏ×ÁÔØ ÐÏÌÎÏÇÏ ÓÏ×ÐÁÄÅÎÉÑ ÄÌÑ ÏÞÅÎØ ÄÌÉÎÎÙÈ ÉÍ£Î\n" +" -I,--ignore-case ÉÇÎÏÒÉÒÏ×ÁÔØ ÒÅÇÉÓÔÒ ÓÉÍ×ÏÌÏ× × ÉÍÅÎÁÈ ÐÒÏÃÅÓÓÏ×\n" +" -g,--process-group ÚÁ×ÅÒÛÁÔØ ÇÒÕÐÐÕ ÐÒÏÃÅÓÓÁ × ÄÏÐÏÌÎÅÎÉÅ Ë ÓÁÍÏÍÕ " +"ÐÒÏÃÅÓÓÕ\n" +" -i,--interactive ÚÁÐÒÁÛÉ×ÁÔØ ÐÏÄÔ×ÅÒÖÄÅÎÉÅ ÐÅÒÅÄ ÚÁ×ÅÒÛÅÎÉÅÍ ÐÒÏÃÅÓÓÏ×\n" +" -l,--list ×Ù×ÅÓÔÉ ÓÐÉÓÏË ÄÏÐÕÓÔÉÍÙÈ ÉͣΠÓÉÇÎÁÌÏ×\n" +" -q,--quiet ÏÔËÌÀÞÉÔØ ÌÉÛÎÉÅ ÓÏÏÂÝÅÎÉÑ\n" +" -s,--signal ÐÏÓÙÌÁÔØ ÕËÁÚÁÎÎÙÊ ÓÉÇÎÁÌ ×ÍÅÓÔÏ SIGTERM\n" +" -v,--verbose Õ×ÅÄÏÍÌÑÔØ Ï ÕÓÐÅÛÎÏÊ ÏÔÐÒÁ×ËÅ ÓÉÇÎÁÌÏ×\n" +" -V,--version ÐÏËÁÚÁÔØ ÎÏÍÅÒ ×ÅÒÓÉÉ\n" +" -w,--wait ÏÖÉÄÁÔØ ÚÁ×ÅÒÛÅÎÉÑ ÐÒÏÃÅÓÓÏ×\n" +"\n" + +#: src/killall.c:533 +#, fuzzy, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -d,--sid ÚÁ×ÅÒÛÁÔØ ÔÏÌØËÏ ÐÒÏÃÅÓÓÙ(Ù) Ó ÕËÁÚÁÎÎÙÍ SID\n" +" -c,--context ÚÁ×ÅÒÛÁÔØ ÔÏÌØËÏ ÐÒÏÃÅÓÓÙ(Ù) Ó ÕËÁÚÁÎÎÙÍ SCONTEXT\n" +" (-s, -c ×ÚÁÉÍÎÏ ÉÓËÌÀÞÁÀÔ ÄÒÕÇ ÄÒÕÇÁ É ÄÏÌÖÎÙ ÂÙÔØ ÐÅÒ×ÙÍ ÁÒÇÕÍÅÎÔÏÍ)\n" +"\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "ëÏÌÉÞÅÓÔ×Ï ÉͣΠÎÅ ÍÏÖÅÔ ÐÒÅ×ÙÛÁÔØ %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s ÐÕÓÔ (ÎÅ ÓÍÏÎÔÉÒÏ×ÁÎ ?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"óÉÎÔÁËÓÉÓ: fuser [ -a | -s ] [ -n ÏÂÌÁÓÔØ ] [ -signal ] [ -kimuv ] ÉÍÑ ...\n" +" [ - ] [ -n ÏÂÌÁÓÔØ ] [ -signal ] [ -kimuv ] ÉÍÑ ...\n" +" fuser -l\n" +" fuser -V\n" +"\n" +" -a ÐÏËÁÚÙ×ÁÔØ ÔÁËÖÅ ÎÅÉÓÐÏÌØÚÕÅÍÙÅ ÆÁÊÌÙ\n" +" -f ÉÇÎÏÒÉÒÕÅÔÓÑ (ÄÌÑ ÓÏ×ÍÅÓÔÉÍÏÓÔÉ Ó POSIX)\n" +" -k ÚÁ×ÅÒÛÉÔØ ÐÒÏÃÅÓÓÙ, ÏÔËÒÙ×ÛÉÅ ÄÁÎÎÙÊ ÆÁÊÌ\n" +" -i ÚÁÐÒÁÛÉ×ÁÔØ ÐÏÄÔ×ÅÒÖÄÅÎÉÅ (ÅÓÌÉ ÕËÁÚÁÎ -k)\n" +" -l ÐÏËÁÚÁÔØ ÄÏÐÕÓÔÉÍÙÅ ÉÍÅÎÁ ÓÉÇÎÁÌÏ×\n" +" -m ÓÍÏÎÔÉÒÏ×ÁÎÎÙÅ ÆÁÊÌÏ×ÙÅ ÓÉÓÔÅÍÙ\n" +" -n ÏÂÌÁÓÔØ ÉÓËÁÔØ × ÕËÁÚÁÎÎÏÍ ÐÒÏÓÔÒÁÎÓÔ×Å ÉͣΠ(file, udp, ÉÌÉ tcp)\n" +" -s ÏÔËÌÀÞÉÔØ ÓÏÏÂÝÅÎÉÑ\n" +" -signal ÐÏÓÙÌÁÔØ ÕËÁÚÁÎÎÙÊ ÓÉÇÎÁÌ ×ÍÅÓÔÏ SIGKILL\n" +" -u ÐÏËÁÚÙ×ÁÔØ ÉÄÅÎÔÉÆÉËÁÔÏÒ ÐÏÌØÚÏ×ÁÔÅÌÑ (uid)\n" +" -v ×ËÌÀÞÉÔØ ÐÏÄÒÏÂÎÙÅ ÓÏÏÂÝÅÎÉÑ\n" +" -V ÐÏËÁÚÁÔØ ÉÎÆÏÒÍÁÃÉÀ Ï ×ÅÒÓÉÉ\n" +" -4 ÉÓËÁÔØ ÔÏÌØËÏ ÓÏËÅÔÙ ÓÅÍÅÊÓÔ×Á IPv4\n" +" -6 ÉÓËÁÔØ ÔÏÌØËÏ ÓÏËÅÔÙ ÓÅÍÅÊÓÔ×Á IPv6\n" +" - ÓÂÒÏÓÉÔØ ÐÒÅÄÙÄÕÝÉÅ ÏÐÃÉÉ\n" +"\n" +" éÍÅÎÁ udp/tcp: [ÌÏËÁÌØÎÙÊ_ÐÏÒÔ][,[ÕÄÁÌ£ÎÎÙÊ_ÈÏÓÔ][,[ÕÄÁÌ£ÎÎÙÊ_ÐÏÒÔ]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, fuzzy, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "" + +#: src/fuser.c:901 +#, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "úÁ×ÅÒÛÉÔØ ÐÒÏÃÅÓÓ %d ? (y/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "" + +#: src/fuser.c:1241 +#, fuzzy, c-format +msgid "Cannot find socket's device number.\n" +msgstr "ÎÅ ÍÏÇÕ ÎÁÊÔÉ ÎÏÍÅÒ ÕÓÔÒÏÊÓÔ×Á ÓÏËÅÔÁ" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, fuzzy, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "MAX_DEPTH ÄÏÌÖÅÎ ÂÙÔØ ÓÄÅÌÁÎ ÂÏÌØÛÅ.\n" + +#: src/pstree.c:750 +#, fuzzy, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"óÉÎÔÁËÓÉÓ: pstree [ -a ] [ -c ] [ -h | -H pid ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ pid | user]\n" +" pstree -V\n" +"\n" +" -a ÐÏËÁÚÙ×ÁÔØ ÓÏÄÅÒÖÉÍÏÅ ËÏÍÁÎÄÎÏÊ ÓÔÒÏËÉ\n" +" -A ÉÓÐÏÌØÚÏ×ÁÔØ ÓÉÍ×ÏÌÙ ÐÓÅ×ÄÏÇÒÁÆÉËÉ ASCII ÄÌÑ ÒÉÓÏ×ÁÎÉÑ ÌÉÎÉÊ\n" +" -c ÎÅ ÓÖÉÍÁÔØ ÏÄÉÎÁËÏ×ÙÅ ÐÏÄÄÅÒÅ×ØÑ\n" +" -h ×ÙÄÅÌÑÔØ Ã×ÅÔÏÍ ÔÅËÕÝÉÊ ÐÒÏÃÅÓÓ É ÅÇÏ ÐÒÅÄËÏ×\n" +" -H pid ×ÙÄÅÌÑÔØ Ã×ÅÔÏÍ ÐÒÏÃÅÓÓ \"pid\" É ÅÇÏ ÐÒÅÄËÏ×\n" +" -G ÉÓÐÏÌØÚÏ×ÁÔØ ÄÌÑ ÒÉÓÏ×ÁÎÉÑ ÌÉÎÉÊ ÕÐÒÁ×ÌÑÀÝÉÅ ÓÉÍ×ÏÌÙ ÔÅÒÍÉÎÁÌÁ " +"VT100\n" +" -l ÎÅ ÏÂÒÅÚÁÔØ ÄÌÉÎÎÙÅ ÓÔÒÏËÉ\n" +" -n ÓÏÒÔÉÒÏ×ÁÔØ ×Ù×ÏÄ ÐÏ ÐÏÌÀ PID\n" +" -p ÐÏËÁÚÙ×ÁÔØ ÉÄÅÎÔÉÆÉËÁÔÏÒÙ ÐÒÏÃÅÓÓÏ× (PIDs); ×ËÌÀÞÁÅÔ -c\n" +" -u ÐÏËÁÚÙ×ÁÔØ ÐÅÒÅÈÏÄÙ ÉÄÅÎÔÉÆÉËÁÔÏÒÏ× ÐÏÌØÚÏ×ÁÔÅÌÅÊ (uid " +"transitions)\n" + +#: src/pstree.c:768 +#, fuzzy, c-format +msgid " -Z show SELinux security contexts\n" +msgstr "" +" -s ÐÏËÁÚÁÔØ Flask SIDs\n" +" -x ÐÏËÁÚÁÔØ Flask security contexts\n" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" + +#: src/pstree.c:778 +#, fuzzy, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "fuser (psmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "ðÅÒÅÍÅÎÎÁÑ ÏËÒÕÖÅÎÉÑ TERM ÎÅ ÕÓÔÁÎÏ×ÌÅÎÁ\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "îÅ ÍÏÇÕ ÏÐÒÅÄÅÌÉÔØ ÈÁÒÁËÔÅÒÉÓÔÉËÉ ÔÅÒÍÉÎÁÌÁ\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "îÅÉÚ×ÅÓÔÎÏÅ ÉÑ ÐÏÌØÚÏ×ÁÔÅÌÑ: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "îÅ ÎÁÊÄÅÎÏ ÎÉ ÏÄÎÏÇÏ ÐÒÏÃÅÓÓÁ.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "îÁÖÍÉÔÅ Enter ÄÌÑ ×ÙÈÏÄÁ\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: ÎÅÉÚ×ÅÓÔÎÙÊ ÓÉÇÎÁÌ; %s -l ×Ù×ÏÄÉÔ ÓÐÉÓÏË ÄÏÓÔÕÐÎÙÈ ÓÉÇÎÁÌÏ×.\n" + +#~ msgid "%s: SID (%s) must be numeric\n" +#~ msgstr "%s: SID (%s) ÄÏÌÖÅÎ ÂÙÔØ ÞÉÓÌÏ×ÙÍ\n" + +#~ msgid "-4 flag used but proc file %s is not readable\n" +#~ msgstr "ÕËÁÚÁÎ ÆÌÁÇ -4, ÎÏ ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÊ proc-ÆÁÊÌ %s ÎÅÄÏÓÔÕÐÅÎ\n" + +#~ msgid "-6 flag used but proc file %s is not readable\n" +#~ msgstr "ÕËÁÚÁÎ ÆÌÁÇ -6, ÎÏ ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÊ proc-ÆÁÊÌ %s ÎÅÄÏÓÔÕÐÅÎ\n" + +#~ msgid "kill %d" +#~ msgstr "úÁ×ÅÒÛÅÎÉÅ ÐÒÏÃÅÓÓÁ %d" + +#~ msgid "No automatic removal. Please use umount %s\n" +#~ msgstr "" +#~ "á×ÔÏÍÁÔÉÞÅÓËÏÅ ÏÔËÌÀÞÅÎÉÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ. éÓÐÏÌØÚÕÊÔÅ umount %s\n" + +#~ msgid "No automatic removal. Please use swapoff %s\n" +#~ msgstr "" +#~ "á×ÔÏÍÁÔÉÞÅÓËÏÅ ÏÔËÌÀÞÅÎÉÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ. éÓÐÏÌØÚÕÊÔÅ swapoff %s\n" + +#~ msgid "Internal error (type %d)\n" +#~ msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ (ÔÉÐ %d)\n" + +#~ msgid "kernel mount " +#~ msgstr "Kernel mount " + +#~ msgid "kernel loop " +#~ msgstr "Kernel loop " + +#~ msgid "kernel swap " +#~ msgstr "Kernel swap " + +#~ msgid "ignoring -m in name space \"%s\"\n" +#~ msgstr "-m ÂÕÄÅÔ ÉÇÎÏÒÉÒÏ×ÁÎ × ÐÒÏÓÔÒÁÎÓÔ×Å ÉͣΠ\"%s\"\n" + +#~ msgid "%s/%s: invalid specification\n" +#~ msgstr "%s/%s: ÎÅËÏÒÒÅËÔÎÙÊ ÆÏÒÍÁÔ\n" + +#~ msgid "" +#~ " -U use UTF-8 (Unicode) line drawing characters\n" +#~ " -V display version information\n" +#~ " pid start at pid, default 1 (init)\n" +#~ " user show only trees rooted at processes of that user\n" +#~ "\n" +#~ msgstr "" +#~ " -U ÉÓÐÏÌØÚÏ×ÁÔØ ËÏÄÉÒÏ×ËÕ UTF-8 (Unicode) ÄÌÑ ÒÉÓÏ×ÁÎÉÑ ÌÉÎÉÊ\n" +#~ " -V ÐÏËÁÚÁÔØ ÉÎÆÏÒÍÁÃÉÀ Ï ×ÅÒÓÉÉ\n" +#~ " pid ÉÄÅÎÔÉÆÉËÁÔÏÒ ËÏÒÎÅ×ÏÇÏ ÐÒÏÃÅÓÓÁ, ÐÏ ÕÍÏÌÞÁÎÉÀ 1 (init)\n" +#~ " user ÐÏËÁÚÙ×ÁÔØ ÔÏÌØËÏ ÄÅÒÅ×ØÑ Ó ËÏÒÎÅ×ÙÍÉ ÐÒÏÃÅÓÓÁÍÉ,\n" +#~ " ÐÒÉÎÁÄÌÅÖÁÝÉÍÉ ÄÁÎÎÏÍÕ ÐÏÌØÚÏ×ÁÔÅÌÀ\n" +#~ "\n" + +#~ msgid "No process references; use -v for the complete list\n" +#~ msgstr "" +#~ "Keine Prozess Referenzen; verwenden Sie -v fuer die komplette Liste\n" diff --git a/po/stamp-po b/po/stamp-po new file mode 100644 index 0000000..9788f70 --- /dev/null +++ b/po/stamp-po @@ -0,0 +1 @@ +timestamp diff --git a/po/sv.gmo b/po/sv.gmo new file mode 100644 index 0000000000000000000000000000000000000000..933e69dc4995b090826536578d1696bd792e982a GIT binary patch literal 9066 zcmchcON=DRS;y1s2X=vZtZlr!gR$G&y*pXcJ?q(-?OEGf+ple=r@GaT@vfH@WLHLI z;EF>g^TSy4R?~916 zM|aI&35nEH|En@0zWCz%zW84Ay=UL|Wsm12KEKT8oA2?wEpX?({Nd@n&+{&x@w^y( zf#177;dvSOJKzxfAt>wK{-EdmJa`H&fnNeY1pX!XOW1j_v113v|R-TnSsQ26{8P}aZar#$bU!RJ8v{h#2^g3o@~^L_#R z1o#H{8E_H&UGP7^Z-9S-Jpb&cIXl1K_&Lwp1V`XK@LQm~zXYEJKgl0C-(67ndH@d4 z(PQwxpz{w5zR3IU!o-)rXFl$EIrvAQ=;i$!PUL?BTmnA}qB5@sDsTwOet!tw0>2Fk zzyAu#`sX;z0(b}f74U6P?)~>bk-so2;~xi4k>^Q0RROA&6cUL80?1 z$hO`G`N$(O##Fr(`N1P+kmtR8#E#_bqK}X9d7h8Rz?=hQi}52e#T3k4c?Oib!&c+x z!+eu-icI9;SmyZ|hnTB}sTms=e#NGRU(xLc_$WSdFT{35J|aU*dHjfN$;0*cxH{%} zze9m#K4O>hh+JOc)8r#MtRJx}PuZs*CrOYb%1>@8-%sMAY+N0ABqJl87jc$081?l{ z-`A%>r*t!cT)$hzxmNb|ASgRM)y;CnvNM%rX{6F%pbJ^O&FVNxvt0X~pwL3YV4M~@ zE#fjBX*JBVjxGwbNEvFfGGe70@uNJehDr(htV~!ba*-wOF+W9W{WLpCRl#wBWOBlHS%En8)RHhu zpD*DD7E~u243mIwMjSbla~- zJ3eHkFmi;>yLmPkpB?R&)r6I7s8e-Imz`UKGB}>u*bWIlSQ~OLVf6_UZl$`sRi*Li z_3=P4c9P|NcZLbihCbxWtdk`iGtuhCLUCh;1U?{3aA+bgT%p`OQQFiYc&qVvHayGYs8_1RwI#Lk$}2DVx0jdisL$&>#n4&_?j3S626-&)_;JAA_|IfjrH&88L>C*$4(s;#5T=r^bwSe6}3{K-g zHE>oWvBYdB7f6QN`g65Q`R>5&riT~6@1}-kdiko;{$U;pF&jxo4Wq0qb?e-QY z-;;0#LuHkx!dfRGtTa4{Q*s`$o^OoaSvj|JrW*aO2Ix zchuW{Wt=tN$Y8dk_}zSTqRcNBFyArZw%LT0tAuv<4!3vP?=S`(|N6vX93m(o96?f| zwvch|*$(=TBzMB;o805a&Y14kR1C4A9}nx$iUtRA(~>wv^aYv=MnRke$BDKZMRtD^ zn(8}XQzSgzR4!1DZLiyPkLY~tWyeBKeNp*uD2b;=#EFH}!q7sc z-kCX_5;`qexg~#&%q$`CMH^wOw0OXEhIwg>I?iO7Gq~Ly)GlUTC^cyi6GYS+>MxdC(dFh);lDdjj>CU zK$(~qlJV{3*<(@`e>?Oa*;IQ~4GR-xZr^U+CXZZc?3-lXe^^9u=)Yb?g@2f>s!kzc z{WbHq8RpsWSO~Q%H7r5cVAq=Hks(} zlc`CHKbiNkzkEmLEibPw-+OUc=IsPU=^u*WBmuW$RjmhUtP|BfOOPpYcy*Y)7Mgdd zd(|xTXIYm<72&`?)WKj?9h^v@>#0}Ep|LR0b(~ zpA9*L6bZLX*>+!b@CHPp&uky;`uFbLdBtCuOcqAFI`=nH>=@y%s(Z&VLCYArtye|a z|F?3xpPy45NwM80i0IuZ9GuqC8I$Qfpzzxhz?Gy$0{*7jUV& zcvdW)WAQDK%X&#VA%xMesS~dk;iADn>V!b`&r?{i)o*>`>os`M&*Kqsk30uA*5?9d zgNsD?np1+8S<(+Akhi(*1EouDba~n5#+%CK@i`8$D$D$=(-#W!s_%Z>frP8cXGAiu z_-?fy{Y`tlwZCDGO}-mq_qFgAb-rZy=wIg4Trf1AF1uf^!t-D#l>q6QVzT7{b(0#5 zMCULTs(wZs>OY|h=VAtR1zt?$b+X;{3Vd{)qKgt+Dr%M`pI7I(In7KNZYYn-@bkXT zd%7(8whSlrG&eOsjWrxH!0=NoCADx{&CC zqUwCaR_YwCM0Io;m^Tn&IXbH=b$ffq*}$kssxolpdM4Mw>3q6ahbdQZ{ivA+4ZPC^9 z<5`!(A+~g-q`xxCRSy!vGo`t{(q zhB8&&k7pIhg%YodJc;2m1^##rhqhe{(N0~l&mWato<74`8zxo^>FLbt06ew&&&Zx; ztN#ZRB~J$nN;WH2TmBO+bTVE0a|Nv7;aBqWPM`Fd3Q)p!!`qGG#8|EPdt+VlB|jU4 zUd!GF4tcd3P> zF@XAJH|bu8MY;WLM*u^UjsV$;=?O4n98C#|U3#to=d}xq3nC&@oddJdbDe=ckW)h2eE_Sa^9yl2ISJi(^UMBa1>JJi&Hmbq$yx>bBPxicoLw3aZh0LGI?w~hWJup zkXGW6{w-ShYEDL%UM5IPMVPJ#-osnZS)h4`|cnoRgNuBT_F69b+qh99p$nCm;Ro!^fBHPYzCm44$=AXcJ zGl&sVe@M<`?GLl6S(vmk#Gh5-@2>=G=`BP-y~+rqpmcF3 zbyTFS;TyqEUcBs^6h#^uB|b4KXK2*>*2yUU#YEhgw|6GKd_u(XV_hWvo&QZ9+@un& u^GZjzFrmxNwV|avD@rC8KX${zc$VC{mQW`M^h(Z&T}sSc, 2006. +# Joakim Mared , 2003. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 22.2pre1\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2006-05-04 00:08+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" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Avsluta %s(%s%d) ? (y/N) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Avsluta %s(%s%d) ? (y/N) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "Kan inte hämta UID från processtatus\n" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "Felaktigt reguljärt uttryck: %s\n" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "hoppar över delvis matchande process: %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "Avslutade %s(%s%d) med signal %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: ingen process avslutad\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"användning: pidof [-eg] NAMN...\n" +" pidof -V\n" +"\n" +" -e kräv exakt matchning för långa namn;\n" +" hoppa över om kommandorad är otillgänglig\n" +" -g visa processgruppens ID istället för processens ID\n" +" -V visa versionsinformation\n" +"\n" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"Användning: killall [-Z KONTEXT] [-u ANVÄNDARE] [ -eIgiqrvw ] [ -SIGNAL ] " +"NAMN...\n" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "Användning: killall [FLAGGA]... [--] NAMN...\n" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact kräver exakt matchning för väldigt långa namn\n" +" -I,--ignore-case ingen skillnad på gemener/versaler vid namnmatchning\n" +" -g,--process-group döda processgrupp istället för process\n" +" -i,--interactive fråga efter bekräftelse före dödandet\n" +" -l,--list lista alla kända signalnamn\n" +" -q,--quiet skriv inte ut klagomål\n" +" -r,--regexp tolka NAMN som ett utökat reguljärt uttryck\n" +" -s,--signal SIGNAL skicka signal istället för SIGTERM\n" +" -u,--user ANVÄNDARE döda endast process(er) som körs som ANVÄNDARE\n" +" -v,--verbose rapportera om signalen blev skickad korrekt\n" +" -V,--version visa versionsinformation\n" +" -w,--wait vänta tills processerna är döda\n" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -Z,--context REGEXP döda endast process(er) som har kontext\n" +" (måste föregå andra argument)\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Copyright 1993-2005 Werner Almesberger och Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc kommer med ABSOLUT INGEN GARANTI.\n" +"Detta är fri programvara och du är välkommen att distribuera den under\n" +"villkoren för GNU General Public License.\n" +"För mer information om dessa villkor, se filerna kallade COPYING.\n" +"Följande text är en informell översättning som enbart tillhandahålls\n" +"i informativt syfte. För alla juridiska tolkningar gäller den engelska " +"originaltexten.\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "Kan inte hitta användare %s\n" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Maximalt antal namn är %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s är tom (inte monterad ?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"Användning: fuser [ -a | -s | -c ] [ -n UTRYMME ] [ -SIGNAL ] [ -kimuv ] " +"NAMN ...\n" +" [ - ] [ -n UTRYMME ] [ -SIGNAL ] [ -kimuv ] NAMN...\n" +" fuser -l\n" +" fuser -V\n" +"Visar vilka processer som använder angivna filer, uttag eller filsystem.\n" +"\n" +" -a visa även filer som inte används\n" +" -c monterat filsystem\n" +" -f ignorera tyst (för POSIX-kompatibilitet)\n" +" -i fråga innan process avslutas (ignoreras om -k ej används)\n" +" -k avsluta processer som använder filen\n" +" -l lista tillgängliga signalnamn\n" +" -m visa alla processer som använder namngivna filsystem\n" +" -n UTRYMME utrymme leta i specifierat namnutrymme (fil, udp, tcp)\n" +" -s tyst användning\n" +" -SIGNAL skicka denna signal istället för SIGKILL\n" +" -u visa användarid\n" +" -v informativ utskrift\n" +" -V visa versionsinformation\n" +" -4 sök bara bland IPv4-uttag (socket)\n" +" -6 sök bara bland IPv6-uttag (socket)\n" +" - nollställ flaggor\n" +"\n" +" udp/tcp-namn: [lokal_port][,[fjärrvärd][,[fjärrport]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (PSmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "Kan inte öppna katalogen /proc: %s\n" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "Kan inte allokera minne för matchande proc: %s\n" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "Kan inte ta status på monteringspunkt %s: %s\n" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "Kan inte ta status på %s: %s\n" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "Kan inte slå upp lokal port %s: %s\n" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "Okänt lokal port AF %d\n" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "Kan inte öppna protokollfil \"%s\": %s\n" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "Flagga för namnrymd kräver ett argument." + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "Ogiltigt namn för namnrymd" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "Du kan endast använda filer med monteringspunktflagga" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "Ingen processpecifikation angiven" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "Du kan inte använda monterade och monteringspunktflaggorna samtidigt" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "flagga för alla, -m, kan inte användas med flaggan för tyst, -s." + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "Du kan inte söka efter endast IPv4- och endast IPv6-uttag samtidigt" + +#: src/fuser.c:901 +#, fuzzy, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "" +"\n" +"%*s ANVÄNDARE PID ÅTKOMS KOMMANDO\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "(okänd)" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "Kan inte ta status på fil %s: %s\n" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "Kan inte öppna /proc/net/unix: %s\n" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "Kan inte öppna /etc/mtab: %s\n" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Avsluta process %d ? (y/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "Kunde inte döda process %d: %s\n" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "Kan inte öppna ett nätverksuttag.\n" + +#: src/fuser.c:1241 +#, c-format +msgid "Cannot find socket's device number.\n" +msgstr "Kunde inte hitta uttagets enhetsnummer.\n" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "" + +#: src/peekfd.c:83 +#, fuzzy, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "Internt fel: MAX_DEPTH är inte tillräckligt stor.\n" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"Användning: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -" +"u ]\n" +" [ -A | -G | -U ] [ PID | ANVÄNDARE]\n" +" pstree -V\n" +"Visar ett träd av processer.\n" +"\n" +" -a visa kommandoradsargument\n" +" -A använd ASCII linjeritningstecken\n" +" -c packa inte identiska underträd\n" +" -h framhäv nuvarande process och dess förfäder\n" +" -H PID framhäv processen \"pid\" och dess förfäder\n" +" -G använd VT100 linjeritningstecken\n" +" -l klipp inte långa rader\n" +" -n sortera utskrift efter PID\n" +" -p visa PID; medför -c\n" +" -u visa uid övergångar\n" +" -U använd UTF-8 (Unicode) linjeritningstecken\n" +" -V visa versionsinformation\n" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr " -Z visa SELinux säkerhetskontexter\n" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" PID starta vid denna PID; förvald är 1 (init)\n" +" ANVÄNDARE visa endast träd med denna användares\n" +" processer som rot.\n" +"\n" + +#: src/pstree.c:778 +#, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "TERM är inte satt\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "Kan inte ta reda på terminalens beskaffenhet\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "Ingen sådan användare: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "Inga processer funna.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Tryck retur för att stänga\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: okänd signal; %s -l listar signaler.\n" + +#~ msgid "Cannot open protocol file \"%s\": %s" +#~ msgstr "Kan inte öppna protokollfil \"%s\": %s" diff --git a/po/vi.gmo b/po/vi.gmo new file mode 100644 index 0000000000000000000000000000000000000000..064e22fd0acf836a114ece6473543e1e2d40db49 GIT binary patch literal 11427 zcmcgyYiu0Xb)LlOV>eElxJ}x$O><*cHEC;Cq~(W9%9iOBO)(}{47H>!yXs~*JKUXc zc4jpXQjA>`j*1$oVG9ma~IdzIOTqH)ku75ax`lBe)qDZ?1`aprAe_GT) z(W2jX?#%8CwU%Q9=s>$4XXf5>&pq#ZRzJMv15X&Z4&n1F`26kr4C6TPYgge5*AG5m z82|Ww!}x394Y+^prwqdf{wuHpeBh@I<2vB?ft>&Ez>fj1E*Qo*@H!y=8H@P(W#D~4 z1q^}vfxi#@HQ@JvKM(vTAnE-#@Rxv}Eb8%7z)#}-LEx_f9|CgR9|1oF{4Vh4fPWAC zMc{t`IsQW*G>pT*5^x{zb3o4j3Xt?K0dD}l1tj19nc&q|YdY5fN#`(-^L_*P>%fPS z`)7dU`+Gpn|101>0RJty|BDY9#)onL&%loZ-v%B7Uh^}CF$R1PI18Eo4)ATfKLJ!pp*&VzW^zZk3)$!0&fOZfu99}CF2s1a()eX5ZDKP8u-yq7{+bD&jKmm zKLp+h{4VfX;Qs)}feK9B1pG9R^8PL0Ex_l1lfWMW4*)+5Vc!nC3wQ_c^S~p(KLc|9 z+d$5{QE56Ra1Qrh0&=~-1Wp703s?aj1k>bi3y3Wmmy-MM1F6TWFp2YSz*iZ#2>f5* z!$9umAsE?5fER!q|0=Kr{2L(Gsla%@@jk=&ZQvciNep`6D)`9thH)?6zlF{ICh%hr zssoIHtH8elQh&GZ*ZP}J@Dz~pI1L0jxgbK38Tm;s?ggeKG}31uP5yuj4lc?Hq7~aq zAHpOIxUbkNpHaV8<3suLx)q@bu`N~m#W z6El-HrDovA9i_*^Fw&D3(o(i!Y(;e>cG-f~?c4kV$_pXn?4_Hu^-|o03{t|Hn z7#!G5`wVuIT*7B3!2IgW;w<=7rU%JJw%4#55Op(l%>WNDBow89%MfG|K2FTfRc98I zf;by0YB^!bU`8?+Q=460Usx_0W67{_<8C2oHLidHx=G(`N2lAhat~GALJw7@?C7xwbixz!fSIR5GQ;WL67o6 zxTJqlmzhm+KO>(B!BK<7FhGkDZSdajYzI!W6{)exxSG8E_JgIHCMIrC_t}95W1Ml3 z0wC}v4HN391g6teC)!XX{GpPYjCr@IS^(2k_nD0btUqG*!Km16zzU;$=-=1S+nEgl zSb-Turq!ayAP#h#hT7*8jd@0Y8k5a2Q)+SM{`%3`rP?u}wgygY&ySleh<4uFG+j)S zoYgUDDac;Ny-YUy!m)kfzQ(vZqQ7G**&;mT{SxdqgcOq1lAI(!%LMq?gL^ zYHjxZ+9~y5DVB_YzfdO4H=WbL=9ZGXBrBhioL(-2mA!N{1BW)PblDsWph-a%~h8P>5}| z5tf+`N}kdsN}7G~u5n-sDH4KY;KRZ#Jc5Li36>&1%y6c+jp($c;Bj!x#1SC+$oG@6 zjP-3F0jLpopjF1~A$=MV7NE*Bm&v46kYbUPD+H2vt@NEF)Rygb%B)Paax1mvg;Ise zWdW4ZOvMfPz}%>wCKSU0i^@oHqJCLgB{2v^%ETYJxSdX^2(fU(>7-Q<{GiQ%=Q;18=lHcEqe$XmT@ejNC#yoFN0YkFRKf?8 zFfbKS9^`Ebd67a+WNENt!Hi)uG7Pax&77#r&ug(Z0&`1hq?XAVABL(2TQXQ1H;5vh zqKIoCufPsnM8P$3lZK$*GDKm2ja8=#a@h@%FWCYE_FtpDskScot482Zs<;Q>tX? z0kNzh17f7UC@|$P=6ebGl>x&mwR;dz##TJX@*DQ}m08yodL;ujP9kAg2uM=(QmZ<0 zOa756Ll+r338tfUpf-c#oGEkXmo{&f6qMfGnp8{Bn4}36BGswLK`u`gB^fTs=#!SZ z)N*Fsb=Pb%n4u0tMQ!ldm*itG&G~CKNi=lA43TwEv*;0JV;ye-HKr5mI7)${k%aO5 zGwqwXXAB@6T67185eK#^wXIYW4HV-`f&V#Flco7aX;q(;rc@`C{C(3+3FSFL0o3>P&$erJ*8NMl_n=k z6E~~L+oo>1?Z!#iDh8I8Q9$!_mK`^7OX=XGnmjZ$ar2E6w;!A+E|_6ds?m^K6W%hV zD(*Hacy+>QG$_WymfYVJpil{1h`o#=7o6OQnO-wSnl06kqNda;&eBpE+3N77Q(CRw z)%5+QYfFd>%W&&Ei;MG%vqMQtmM4l89_>7Eu-(B{c*;8<=k94_Dld0+)$Kcy-?SO%k0qAVG~9McUn&G1@tTW zyE`6+!-+@rWeNqWzx%AG-ZU3<9RKI&kwS4nH)Oz!ke)sEMvyOF~bSBs!v{Q&@}p-Sd{(z)*T^Z`V?Fuhn}MH9~fJ9q-U4h*}tze?!6}`aOlh z8OM{oDi4!hM*SC%(U|TdamHD&2a!IeT*wj%X(2*F=TM)g#_CR6b8~t3s8DEPjUCSD zy^QEs>-}C;xxJ@V9cy>b#zOUZ6!}{9r{nFq^7`F#&Op(bR#L6^c(s0PzTf@b70~T> zpQ2?9x8(JnrUC|97}Zs(&ef0h&R2E5Q=^ni%lRTz(!E4UXLSsrArgSs{_chCVnJWp zPN5lPK`Sj7M^g-rJNP!Oj%-oHBf3)sNQDw!>s|0g>!Ov*cE;HwT2lp4B^4t?BA8P> z=ZBm(qCo`%fdh7T9N27bdl?&-ju58nW>vBfH>f%FSL(K$;d z=J#XuyU!vPj8w>F9k07#S6^7E*N*kO&sFM`W3aVjs{WaklTh>sXS|Y`kf*GeXewhJ zSPlFDF>mPTvJGw=4?}#z1|Z_3IaZx}^HRV2wfU^U;!uIAwzj--QdRo9FD?l9Ui`{bAJy~HCRNTD}Oy@>HK zSY?*)cb}jeTx#R+oU)Lam$y2pwbD_tIcN#g*~*Lh-4|gK@Cw;s56+=2caL&%(~%gT zQilgkzB}{$%L+1t>5npe^b3Zl3#$6eUkX8c#qp0PF&)KM!fXk6V$&kZfL74a7Mf_tJA2d%D%Re)o^-mHzHC z)nn|f#(0t~52Q(!Z}DcTW%R>XcuSx6N(*7s`ID%9`rR*8)v)z@rMW*&8@O;LhCCzX zB9VU;iVR^Gkochz&bdiz)l+f`sqQ(2Q0R|a2R3y&mIRvE8!Zww<~n{?V2h|^sY2z? zp9gWM5nh9nUfxmoD<+K;XH8V2!xk~m7Z(`UzAS+%vsl2gUInH)%0gJ`pIGUgBx|lJ zDa{9Grc5?kg*(80hKJ>3N=p@vu{cVPSuEyukScq-9XUWqPZC)K)`#6bq2MeCj@l5D z4zo5yuH_8aLG+_Ub7qxqIm?0UU3<>CpfqqyF!7#_?KlP`=W`EL9MApY#q_*J?@u7q zq`rh5{3(7B=shj}Raz|Z{Zvw7&fqrv=_uhog(Bcl-p~*i=CboE$m3i@h>@Y)N`WO0%AwIkg*wE z*>Ci|qvJSo!gs_e&{RoJeRb)5*HfRPw$k=Non^dNmjHheq>vxbae)u%!Me*`sH2d0 zf`tT*l6y6pXo_~i(n$6oUJ!{NX=6a*&;+IbjWg~Q2ui2m-AVE11lh^E$U+-$a{iSD zy5>YT%2PS8ZSXDp+=b{Ksk)xSZdM{R-7tsPSvQ`6e{_<1B?*#f_xgJq=sB&TE}NEP z=S2lgAqfua3)E!@gs*osTXAk0VrchKHei@p8Gq<7XvX1WqKB`%nu*=a#ePkVtK|xM0~!JR2WhQKr6eiwKHdwL`^JL zl(guPtY1V>S=zi+j2it&MpEV@mM33#-idsUV+>4PK`2Awg9D~M3h=BfE6FRy`t*>1 zH(c?N*hmB7o{i*I0#B$IK?J1>3`wunO=_k+N_W~&`j6H2*B!4x+};!VrR+}, 2005, 2006, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 22.5\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2007-05-31 18:04+0930\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.6.3b1\n" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "Có buộc kết thúc %s(%s%d) không? (y/n) (có/không) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "Có buộc kết thúc %s(%s%d) không? (y/n) (có/không) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "Không thể lấy UID từ trạng thái của tiến trình\n" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "Biểu thức chính quy sai: %s\n" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "đang bỏ qua điều khớp bộ phần %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "Mới buộc kết thúc %s(%s%d) với tín hiệu %d\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: chÆ°a buộc kết thúc tiến trình\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"Cách sá»­ dụng: pidof [ -eg ] TÊN ...\n" +" pidof -V\n" +"\n" +" -e cần đến điều khớp _chính xác_ với mọi tên rất dài\n" +"\tbỏ qua nếu không có dòng lệnh sẵn sàng\n" +" -g hiện ID của _nhóm_ tiến trình thay thế ID tiến trình\n" +" -V hiện thông tin _phiên bản_\n" +"\n" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"Cách sá»­ dụng: killall [-Z NGá»®_CẢNH] [-u NGƯỜI_DÙNG] [ -eIgiqrvw ] [ -" +"TÍN_HIỆU ] TÊN...\n" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "Cách sá»­ dụng: killall [ TÙY_CHỌN ]... [--] TÊN...\n" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list \t\t(_liệt kê_)\n" +" killall -V --version \t\t(_phiên bản_)\n" +"\n" +" -e,--exact \t\tcần đến điều khớp _chính xác_ với mọi tên rất dài\n" +" -I,--ignore-case \t_bỏ qua _chữ hoa/thường_ khi khớp tên tiến trình\n" +" -g,--process-group \tbuộc kết thúc _nhóm tiến trình_ thay thế tiến trình\n" +" -i,--interactive \t\txin xác nhận trước khi buộc kết thúc (_tÆ°Æ¡ng " +"tác_)\n" +" -l,--list \t\t_liệt kê_ mọi tên tín hiệu đã biết\n" +" -q,--quiet \t\tkhông hiển thị lời than phiền (_im_)\n" +" -r,--regexp \t\tgiải thích TÊN là _biểu thức chính quy_ nối dài\n" +" -s,--signal TÍN_HIỆU\t\tgởi tín hiệu này thay thế SIGTERM\n" +" -u,--user NG_DÙNG \tbuộc kết thúc chỉ những tiến trình đang chạy\n" +"\t\t\t\t\t\t\tvới tÆ° cách _người dùng_ này\n" +" -v,--verbose \tthông báo khi đã gởi tín hiệu\n" +" -V,--version \thiện thông tin _phiên bản_\n" +" -w,--wait \t\t_đợi_ tiến trình kết thúc\n" +"\n" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -Z,--context BIỂU_THỨC_CHÍNH _QUY\n" +"\t\tbuộc kết thúc chỉ những tiến trình có ngữ cảnh\n" +"\t\t\t(phải đi trước các đối số khác)\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"Bản quyền © 1993-2005 Werner Almesberger và Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc không bảo đảm gì cả.\n" +"Đây là phần mềm tá»± do thì bạn có thể phân phối nó với điều kiện của\n" +"Quyền Công Chung Gnu (GPL).\n" +"Để tìm thấy thông tin thêm thì hãy xem tập tin có tên COPYING (cách chép)\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "Không tìm thấy người dùng %s\n" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "Số tên tối đa là %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s trống (lắp chÆ°a?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"Cách sá»­ dụng: fuser [ -a | -s | -c ] [ -n MIỀN ] [ -KÝ_HIỆU ] [ -kimuv ] " +"TÊN...\n" +" [ - ] [ -n MIỀN ] [ -KÝ_HIỆU ] [ -kimuv ] TÊN...\n" +" fuser -l\n" +" fuser -V\n" +"Hiển thị tiến trình nào có dùng những tập tin, ổ cắm\n" +"hay hệ thống tập tin có tên này.\n" +"\n" +" -a \tcÅ©ng hiện các tập tin không được dùng\n" +" -c \thệ thống tập tin đã lắp\n" +" -f \tbị bỏ qua im (để tÆ°Æ¡ng thích với POSIX)\n" +" -i \thỏi trước khi buộc kết thúc\n" +"\t\t\t(bị bỏ qua nếu không có tùy chọn « -k »)\n" +" -k \t_buộc kết thúc_ các tiến trình đang truy cập tập tin tên này\n" +" -l \t_liệt kê_ các tên ký hiệu sẵn sàng\n" +" -m \thiện các tiến trình đang dùng những hệ thống tập tin c\n" +" -n MIỀN \ttìm kiếm trong miền _tên_ này (file, udp, hay tcp)\n" +" -s thao tác _im_ (không xuất chi tiết)\n" +" -TÍN_HIỆU \tgởi tín hiệu này thay vào SIGKILL\n" +" -u hiện các ID của _người dùng_ (UID)\n" +" -v xuất _chi tiết_\n" +" -V hiện thông tin phiên bản\n" +" -4 chỉ tìm kiếm ổ cắm kiểu IPv4\n" +" -6 chỉ tìm kiếm ổ cắm kiểu IPv6\n" +" - \tđặt lại các tùy chọn\n" +"\n" +" Các tên udp/tcp: [cổng_cục_bộ][,[máy_từ_xa][,[cổng_từ_xa]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (PSmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "Không thể mở thÆ° mục : %s\n" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "Không thể cấp phát bộ nhớ cho tiến trình được khớp: %s\n" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "Không thể lấy các thông tin về điểm lắp %s: %s\n" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "Không thể lấy các thông tin về %s: %s\n" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "Không tìm thấy tên cổng cục bộ %s: %s\n" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "Không biết cổng cục bộ AF %d\n" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "Không thể mở tập tin giao thức « %s »: %s\n" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "Tùy chọn miền tên cần đến một đối số." + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "Tên miền tên không hợp lệ" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "Bạn có thể sá»­ dụng chỉ tập tin với tùy chọn điểm lắp" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "ChÆ°a nhập đặc tả tiến trình" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "" +"Không cho phép bạn sá»­ dụng cờ kiểu cả « được lắp » lẫn « điểm lắp » đều" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "không cho phép bạn sá»­ dụng chọn « tất cả » với tùy chọn « im »." + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "Không cho phép bạn tìm kiếm ổ cắm kiểu cả IPv4 lẫn IPv6 đều đồng thời" + +#: src/fuser.c:901 +#, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "%*s NGƯỜI_DÙNG PID TRUY CẬP LỆNH\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "(không biết)" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "Không thể lấy các thông tin về tập tin %s: %s\n" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "Không thể mở thÆ° mục : %s\n" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "Không thể mở : %s\n" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "Có buốc kết thúc tiến trình %d không? (y/N) (có/không) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "Không thể buộc kết thúc tiến trình %d: %s\n" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "Không thể mở một ổ cắm mạng.\n" + +#: src/fuser.c:1241 +#, c-format +msgid "Cannot find socket's device number.\n" +msgstr "Không tìm thấy số hiệu thiết bị ổ cắm.\n" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "Gặp lỗi khi đính kèm đến PID %i\n" + +#: src/peekfd.c:83 +#, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "peekfd (PSmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" +"Tác quyền © năm 2007 của Trent Waddington\n" +"\n" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" +"Cách sá»­ dụng: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 \txuất luồng sạch 8-bit.\n" +" -n \tkhôNg hiển thị đọc/viết từ phần đầu fd.\n" +" -c \tCÅ©ng hé nhìn tiến trình con mới nào.\n" +" -d \tgỡ bỏ đọc/viết trùng ra Dữ liệu xuất.\n" +" -V \thiển thị thông tin Về phiên bản.\n" +" -h \tHiển thị trợ giúp này.\n" +"\n" +" Bấm tổ hợp phím CTRL-C để thôi xuất.\n" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "Lỗi nội bộ : « MAX_DEPTH » (độ sâu tối đa) chÆ°a đủ.\n" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"Cách sá»­ dụng: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -" +"u ]\n" +" [ -A | -G | -U ] [ PID | NGƯỜI_DÙNG]\n" +" pstree -V\n" +"\n" +"Hiện một cây tiến trình.\n" +"\n" +" -a \thiện các _đối số_ dòng lệnh\n" +" -A \tsá»­ dụng các ký tá»± vẽ đờng kiểu _ASCII_\n" +" -c \tkhông _gọn_ phụ cây trùng\n" +" -h \t_nổi bật_ tiến trình hiện có và các tổ tiên của nó\n" +" -H PID\t\t_nổi bật_ tiến trình này và các tổ tiên của nó\n" +" -G \tsá»­ dụng các ký tá»± vẽ dòng kiểu VT100\n" +" -l \tkhông chặt cụt _dòng dài_\n" +" -n \tsắp xếp kết xuất theo PID\n" +" -p \thiện các PID; ngụ ý tùy chọn « -c »\n" +" -u\thiện các việc chuyển tiếp _UID\n" +" -U\tsá»­ dụng các ký tá»± vẽ dòng UTF-8\n" +" -V\thiện thông tin _phiên bản_\n" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr " -Z hiện các ngữ cảnh bảo mật kiểu SELinux\n" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" PID \tbắt đầu tại PID này; mặc định là 1 (init)\n" +" USER hiện chỉ các cây có gốc là tiến trình của _người dùng_ này\n" +"\n" + +#: src/pstree.c:778 +#, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "ChÆ°a lặp TERM\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "Không thể gọi khả năng thiết bị cuối\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "Không có tên người dùng nhÆ° vậy: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "Không tìm thấy tiến trình.\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "Hãy bấm phím Return để đóng\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: không biết tín hiệu; lệnh « %s -l » liệt kê các tín hiệu\n" diff --git a/po/zh_CN.gmo b/po/zh_CN.gmo new file mode 100644 index 0000000000000000000000000000000000000000..6b87a0f814350186c1dc836e2fd6a250cf94d3d3 GIT binary patch literal 9568 zcmbtZeQ*@#d0#hfn_QhHv6FtJY4ZkG^~q)rgpExEu`LT3G(|!KlKerL%<69MZo}Q~ zd3O(?#D55|KmzoE`37M=3>Ywyz)p-nNSf67EB&LL{?SQh+D@mv-MeeY<4iwhGSh$h zd){aFbSGruneL!{Zufnj=Y8JidmsM!(T9&IxYpqBTlo9OhZJQq;P@AC!}W`Y6~+54 zMfoM*lX#y0T}80~{~a&~`1%(W<#E8j0VMiQ0sjE-kuNDqJ>cVj_@}ht_9uX^017|{ za5>;nz&{84Dd5)ueL&*(zkuHa{C0%#8v(zK=WT$02KXaD!aEK49l$xj#{mBY@Q(oh z8<6n7{CkSB4p0TG1N;FX(T@QV|0%#H0e=oia{o^NA9;lNJPt^F)&UaTUjhCF;E#gm zi-08ePXUSk9{~Rq@RQ*A@4l=kU&V6~@Q(q14Y(2T(cf2;DBw207U=vfz+dC}=U-8j zbI|w4AX4!h$Dv*ZJPb%S`UN1p{~9)Z6z~N=I`@_UCILy#9|GpdnMsPK54S*ehFsZT!@J|5`0@69I0WJsp7?AAuD?mE` zH(+Gqw;Yh{-HjW`V*?7n!+_)`9{?@`{M+FDe*!{O*9Q1J;0{2N|2iPH zQvM$BJAj`6l3l+7WE@FZ9l-VgrU3Cz>Bo)aeg}~FPXj{L%0B^;{yqWx8sI|^_Bh~U zfb{-4Ani8?Nc6u1>;(KTz!>00ILC|7b1z^K&(i|21AU)|aO79t!)652fGYuy0Imc4 z86es3AqY?Vd_90sK=SK#fM6>xh$ea9Rpo-Z6u6S)5x)FJ@Pq6XUaRo~qDtArccf>8 zue2AvBR#-fl@;`W>skCggTFt-AL*Pfh^ss-f3ZI!Or-ruXJl_W+wb7-Y5Y;Vtim7p zDf#$s4OieAHFoMEXIpXIaU_wD z+=wy-%3wuJ*;YO$1c_h4=6B%Z>RLir$#8*a4cgUobsJ*S4!AUDhmkvgRD0(%cO1DBjlD7rUp*zC0z(E=M$os9_pzJ){w#(j;@KG1u0y zzinAAYy}nzGQlCGHAvYJ+E0BQX9)xlTUs`>yxPGIeV^*n+D_7ZfGanq&1-tdcPw#f-a&o zYZNOfxIe-*Yfxy#wVc*tWRM(?LkNLHLjYQF&DBL#&ss<`|HBvWpK=lE|%3f z%W7C4PgofwJ<=D_CB-M%vg(j@o+aN&hD#w!#{e(NXq9y<*Jm54v@4>`^`has-+fwL zwQ}WZ@rrJnaK@$#N&pm|BFBU|nr+QUiLF@}67kSnLkzm-M5hhc6|ZQC1ias+>I1BN zCIK&WYg2z+f{)W;+wcO-b+ve!A_jRNXCy?O5m8zx`;#;2gwrV6nqK|>`j(E)jgngr zB+*SPpGrfut>#WG12S2&avFIGs+aPYRBY;;Xq{7+s24AYXy1zVdcm)QFc)v z`)2V<)0Qnw?VYd1BArxL@GpsM2bWB`y_&5rmsahw@<=++Wv(g*LhG^el%#c( zA4EQwIm?mS!4}-ebGd_nr)}Zbaz{ z5?WQrG`%d%(&cC==qqfTwxPTpPMOtgWGqOuEJCmY`cV-O}5|I=K7uV%xeT?y=Z* zSt`^u0(#0pRck~K)F032XeeM1UCSaZQ$0{k!7WNyeX*8U(TfrZMN;C!#%a8Qh694Q zAbF_5X=Wd?Q?Ee8AvA+Pfa+b#3UDdcXDuY4L_PN53T$2Sgt!HvE>P*?V&7E5|sm)|uYJftXp}L_TxEq-#1;bE-MaBqfA}^}l#0*N2 zZQ|!{Zr6rfBr|7+kqf&Z#6gx4UdAxtzz+Oh+o>5DttX@NMk(H3b`fDF;cga%r>boW z*IL&zT{qK(Mq8?7s`y!s46f73HTK9jgS2>4s2c@!1Mnd#+Y*=zat!ielD*VIjmpAgM-4O3nj{)>muTAB z+}g@&P1stm?2*zM_4sg9MvhBlc5X05K1CCkKwW_!W{?GYNSXjQEpgMRU>RA(&?CwU z6snzUXuu;i6P+vyc|gX>TOgB8`5S09RL;=d*|2iugU^tuI)jTgTt<-msv?gHq~HeH zq2eAydru!(mDRvs7gDu&=d2Y5K0?q<2{q0LdAWx~$fNYRwkAKuEHhx=RS~$W^JQd| zXqRckt%P3xVA0t_ALO9QYbY3TBqZ7Ol2ti#%lad`3~n;G2!`04s5LwI&XlyR9Xp?q zB`AD)Ht3dMFnY97?}NYaghx-hk&L0$QbXn3x1)pJiZz*m8&Zb1W0UuV^L zE1y+YHHe018lQgpsg-Mhw@GtcwUZnvqaj)v#imxVUbA}WQ0vfN@y{1iS>(bPV)J=W zn5jIG5~)ZBy@OY>)nR}X^JKk<<_KU+L@*}L?fcXQO+cZ%qin40)!`~8U-rYp|8Rq8)f zm>%{|PVpNeT4G${jbE*%^M-~Yq(3cpLcsKWnWtHPE6Q%d|6{fMxD(W4*y-axb`n~rKetPdv z@!s9y_-;5%L)9c?v1+8{!J;&Ec?ktEuZq6>^M~&ri7YbVg2KJA_u)_eq5aB97Z z!t_D^`2GqnnEJD>s5d`QzAyt<_69yG%pCVd_xQ(d!j%iN^N>Fnl2n~!K_C9vz2#G5 zVC)^9EzDe!qY`MKcqsd(Tczkhcik;H0UAH^gES`HZ;fg3EIo7ApR8zqWoCcW8XwE{9JEiW3IRMQt{ z4;N>~Nf)E<)<{m&-tcH?auS|XnE9w`X2SHP_ulp28AG^v<2RWemA6^~s168=Uh-k_ zl61zLSqt}5vbPlX+^Mjj@IJejbEWv}YY(2EcyAwCG(TBP{#g^0KtEL_0H3uipEo^; zh^jMSXEq^Kl+nY*qvzQ7A_`oky!R?URgX}RxV=l~;Bgf#9~*=UxSkD4=z`-jRG?u1pfzc78B z<6eM+o`v%PII@<4DGBsgn3*Ze9xKeBEluqvWTZN(#CJy#Y^D9z zi$`yjW~bm?NSXePi>3LI!t8nE9y#bJ_n!t|Z{UVEaH}*q?Tt=>NpwTUrh0*VR^C7C zAHNA=kcp#2fgqd}0D|Hh#S{Iai#W z9{=j7sOgj9tmyz-PiHppJaFkHr zwd0N&n~=1E#-sQYUp(^QcC>;X#!gK~%Jg*iuI%yO8Rx=Sx;OR!iLwKC=`DPqTj5rqfyctA6WiYZZ z>8L&z8k@jo@GhQjKw*qgQ5dHq)(sCgfWwX&j5vx%XNq^{i#M(?5)U;93924BSiEMw(@`%72_z>m4|s-aAu1J%(O!(ToGzF=i!=AusyF7nvK+ITqwzJndL?g1|Q` zEUQ~|h0^`#_0ry1)`9F<5|Id2%$n< z;2NN!2}P)(x0C%Ruq&+v@1t-_!4G8!BZ&*sBlJV2MNV>zz)V?Sc<%paf>FBtVQGFp Y`UUh#a9wYVS^|DV(-XyiqC}Mc1CYMKo&W#< literal 0 HcmV?d00001 diff --git a/po/zh_CN.po b/po/zh_CN.po new file mode 100644 index 0000000..e382426 --- /dev/null +++ b/po/zh_CN.po @@ -0,0 +1,480 @@ +# Chinese translations for psmisc package +# psmisc 软件包的简体中文翻译. +# Copyright (C) 2007 Free Software Foundation, Inc. +# This file is distributed under the same license as the psmisc package. +# LI Daobing , 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: psmisc 22.5\n" +"Report-Msgid-Bugs-To: csmall@small.dropbear.id.au\n" +"POT-Creation-Date: 2007-11-04 17:27+1100\n" +"PO-Revision-Date: 2007-06-21 14:33+0800\n" +"Last-Translator: LI Daobing \n" +"Language-Team: Chinese (simplified) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/killall.c:74 +#, c-format +msgid "Kill %s(%s%d) ? (y/N) " +msgstr "杀死 %s(%s%d) ? (y/N) " + +#: src/killall.c:77 +#, fuzzy, c-format +msgid "Signal %s(%s%d) ? (y/N) " +msgstr "杀死 %s(%s%d) ? (y/N) " + +#: src/killall.c:121 +#, c-format +msgid "Cannot get UID from process status\n" +msgstr "无法从进程状态获取用户ID(UID)\n" + +#: src/killall.c:147 src/killall.c:682 +#, c-format +msgid "Bad regular expression: %s\n" +msgstr "错误的正则表达式: %s\n" + +#: src/killall.c:343 +#, c-format +msgid "skipping partial match %s(%d)\n" +msgstr "跳过部分符合的部分 %s(%d)\n" + +#: src/killall.c:445 +#, c-format +msgid "Killed %s(%s%d) with signal %d\n" +msgstr "%s(%s%d) 被信号 %d 杀死\n" + +#: src/killall.c:459 +#, c-format +msgid "%s: no process killed\n" +msgstr "%s: 没有进程被杀死\n" + +#: src/killall.c:497 +#, c-format +msgid "" +"Usage: pidof [ -eg ] NAME...\n" +" pidof -V\n" +"\n" +" -e require exact match for very long names;\n" +" skip if the command line is unavailable\n" +" -g show process group ID instead of process ID\n" +" -V display version information\n" +"\n" +msgstr "" +"用法: pidof [ -eg ] 程序名...\n" +" pidof -V\n" +"\n" +" -e 对长程序名需要严格匹配\n" +" 如果命令行不可用则忽略该选项\n" +" -g 显示进程组ID而不是进程ID\n" +" -V 显示版本信息\n" +"\n" + +#: src/killall.c:511 +#, c-format +msgid "" +"Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n" +msgstr "" +"Usage: killall [-Z 上下文] [-u 用户名] [ -eIgiqrvw ] [ -信号 ] 程序名...\n" + +#: src/killall.c:514 +#, c-format +msgid "Usage: killall [OPTION]... [--] NAME...\n" +msgstr "用法: killall [选项]... [--] 进程名...\n" + +#: src/killall.c:517 +#, c-format +msgid "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact require exact match for very long names\n" +" -I,--ignore-case case insensitive process name match\n" +" -g,--process-group kill process group instead of process\n" +" -i,--interactive ask for confirmation before killing\n" +" -l,--list list all known signal names\n" +" -q,--quiet don't print complaints\n" +" -r,--regexp interpret NAME as an extended regular expression\n" +" -s,--signal SIGNAL send this signal instead of SIGTERM\n" +" -u,--user USER kill only process(es) running as USER\n" +" -v,--verbose report if the signal was successfully sent\n" +" -V,--version display version information\n" +" -w,--wait wait for processes to die\n" +msgstr "" +" killall -l, --list\n" +" killall -V, --version\n" +"\n" +" -e,--exact 对长名字需要严格匹配\n" +" -I,--ignore-case 匹配进程名时忽略大小写\n" +" -g,--process-group 杀死进程组而不是进程\n" +" -i,--interactive 在杀死进程前要求确认\n" +" -l,--list 显示所有的信号名\n" +" -q,--quiet 不要打印抱怨信息\n" +" -r,--regexp 将 \"进程名\" 视为扩展正则表达式\n" +" -s,--signal 信号 发送 \"信号\" 而不是 SIGTERM\n" +" -u,--user 用户 仅杀死 \"用户\" 的进程\n" +" -v,--verbose 信号成功送出时打印信息\n" +" -V,--version 显示版本信息\n" +" -w,--wait 等待进程死亡\n" + +#: src/killall.c:533 +#, c-format +msgid "" +" -Z,--context REGEXP kill only process(es) having context\n" +" (must precede other arguments)\n" +msgstr "" +" -Z,--context 正则表达式 仅杀死含有指定上下文的进程\n" +" (必须在其他参数前使用)\n" + +#: src/killall.c:554 src/fuser.c:122 src/pstree.c:780 +#, c-format +msgid "" +"Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n" +"\n" +msgstr "" +"版权所有 © 1993-2005 Werner Almesberger 和 Craig Small\n" +"\n" + +#: src/killall.c:556 src/fuser.c:124 src/peekfd.c:87 src/pstree.c:782 +#, c-format +msgid "" +"PSmisc comes with ABSOLUTELY NO WARRANTY.\n" +"This is free software, and you are welcome to redistribute it under\n" +"the terms of the GNU General Public License.\n" +"For more information about these matters, see the files named COPYING.\n" +msgstr "" +"PSmisc 无任何保证。\n" +"该程序为自由软件,欢迎你在 GNU 通用公共许可证(GPL) 下重新发布。\n" +"详情可参阅 COPYING 文件。\n" + +#: src/killall.c:656 +#, c-format +msgid "Cannot find user %s\n" +msgstr "无法找到用户 %s\n" + +#: src/killall.c:715 +#, c-format +msgid "Maximum number of names is %d\n" +msgstr "最大名字数量是 %d\n" + +#: src/killall.c:720 src/pstree.c:710 +#, c-format +msgid "%s is empty (not mounted ?)\n" +msgstr "%s 是空的 (未挂载?)\n" + +#: src/fuser.c:89 +#, fuzzy, c-format +msgid "" +"Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" +" fuser -l\n" +" fuser -V\n" +"Show which processes use the named files, sockets, or filesystems.\n" +"\n" +" -a display unused files too\n" +" -c mounted FS\n" +" -f silently ignored (for POSIX compatibility)\n" +" -i ask before killing (ignored without -k)\n" +" -k kill processes accessing the named file\n" +" -l list available signal names\n" +" -m show all processes using the named filesystems\n" +" -n SPACE search in this name space (file, udp, or tcp)\n" +" -s silent operation\n" +" -SIGNAL send this signal instead of SIGKILL\n" +" -u display user IDs\n" +" -v verbose output\n" +" -V display version information\n" +msgstr "" +"Usage: fuser [ -a | -s | -c ] [ -n 名字空间 ] [ -信号 ] [ -kimuv ] 名字...\n" +" [ - ] [ -n 名字空间 ] [ -信号 ] [ -kimuv ] 名字...\n" +" fuser -l\n" +" fuser -V\n" +"显示哪些进程使用指定的文件,端口或文件系统。\n" +"\n" +" -a 也显示未使用的文件\n" +" -c 已挂载的文件系统\n" +" -f 被悄悄忽略的选项(为了 POSIX 兼容性)\n" +" -i 杀死程序前询问 (未指定 -k 选项时被忽略)\n" +" -k 杀死访问指定文件的进程\n" +" -l 显示可用的信号名\n" +" -m 显示所有使用指定文件系统的进程\n" +" -n 名字空间 在指定名字空间中查找(file, udp 或 tcp)\n" +" -s 不输出信息\n" +" -信号 输出 \"信号\" 而不是 SIGKILL\n" +" -u 显示用户 ID\n" +" -v 输出更多信息\n" +" -V 显示版本信息\n" +" -4 仅查找 IPv4 端口\n" +" -6 仅查找 IPv6 端口\n" +" - 重置选项\n" +"\n" +" udp/tcp 名字格式: [本地端口][,[远程主机][,[远程端口]]]\n" +"\n" + +#: src/fuser.c:109 +#, c-format +msgid "" +" -4 search IPv4 sockets only\n" +" -6 search IPv6 sockets only\n" +msgstr "" + +#: src/fuser.c:113 +#, c-format +msgid "" +" - reset options\n" +"\n" +" udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n" +"\n" +msgstr "" + +#: src/fuser.c:120 +#, c-format +msgid "fuser (PSmisc) %s\n" +msgstr "fuser (PSmisc) %s\n" + +#: src/fuser.c:147 +#, c-format +msgid "Cannot open /proc directory: %s\n" +msgstr "无法打开 /proc 目录: %s\n" + +#: src/fuser.c:283 +#, c-format +msgid "Cannot allocate memory for matched proc: %s\n" +msgstr "无法为已找到的进程分配内存: %s\n" + +#: src/fuser.c:316 +#, c-format +msgid "Cannot stat mount point %s: %s\n" +msgstr "无法分析挂载点 %s: %s\n" + +#: src/fuser.c:333 src/fuser.c:352 src/fuser.c:375 +#, c-format +msgid "Cannot stat %s: %s\n" +msgstr "无法分析 %s: %s\n" + +#: src/fuser.c:476 +#, c-format +msgid "Cannot resolve local port %s: %s\n" +msgstr "无法解析本地端口 %s: %s\n" + +#: src/fuser.c:492 +#, c-format +msgid "Unknown local port AF %d\n" +msgstr "未知本地端口 AF %d\n" + +#: src/fuser.c:553 +#, c-format +msgid "Cannot open protocol file \"%s\": %s\n" +msgstr "无法打开协议文件 \"%s\": %s\n" + +#: src/fuser.c:746 +msgid "Namespace option requires an argument." +msgstr "名字空间选项需要一个参数" + +#: src/fuser.c:755 +msgid "Invalid namespace name" +msgstr "无效的名字空间名" + +#: src/fuser.c:811 +msgid "You can only use files with mountpoint option" +msgstr "你只能使用有挂载选项的文件。" + +#: src/fuser.c:840 +msgid "No process specification given" +msgstr "未指定进程" + +#: src/fuser.c:845 +msgid "You cannot use the mounted and mountpoint flags together" +msgstr "你不能同时是用已挂载和挂载点选项" + +#: src/fuser.c:852 +msgid "all option cannot be used with silent option." +msgstr "所有选项都不能与不输出信息选项同时使用。" + +#: src/fuser.c:856 +msgid "You cannot search for only IPv4 and only IPv6 sockets at the same time" +msgstr "你无法同时搜索 IPv4 和 IPv6 端口" + +#: src/fuser.c:901 +#, c-format +msgid "%*s USER PID ACCESS COMMAND\n" +msgstr "%*s 用户 进程号 权限 命令\n" + +#: src/fuser.c:926 src/fuser.c:951 +msgid "(unknown)" +msgstr "(未知)" + +#: src/fuser.c:1019 +#, c-format +msgid "Cannot stat file %s: %s\n" +msgstr "无法获取 %s 的文件状态: %s\n" + +#: src/fuser.c:1113 +#, c-format +msgid "Cannot open /proc/net/unix: %s\n" +msgstr "无法打开 /proc/net/unix: %s\n" + +#: src/fuser.c:1149 +#, c-format +msgid "Cannot open /etc/mtab: %s\n" +msgstr "无法打开 /etc/mtab: %s\n" + +#: src/fuser.c:1198 +#, c-format +msgid "Kill process %d ? (y/N) " +msgstr "杀死进程 %d ? (y/N) " + +#: src/fuser.c:1222 +#, c-format +msgid "Could not kill process %d: %s\n" +msgstr "无法杀死进程 %d: %s\n" + +#: src/fuser.c:1237 +#, c-format +msgid "Cannot open a network socket.\n" +msgstr "无法打开网络端口。\n" + +#: src/fuser.c:1241 +#, c-format +msgid "Cannot find socket's device number.\n" +msgstr "无法找到 socket 的设备号。\n" + +#: src/peekfd.c:75 +#, c-format +msgid "Error attaching to pid %i\n" +msgstr "帮定%i号进程时发生错误\n" + +#: src/peekfd.c:83 +#, c-format +msgid "peekfd (PSmisc) %s\n" +msgstr "peekfd (PSmisc) %s\n" + +#: src/peekfd.c:85 +#, c-format +msgid "" +"Copyright (C) 2007 Trent Waddington\n" +"\n" +msgstr "" +"版权所有 © 2007 Trent Waddington\n" +"\n" + +#: src/peekfd.c:95 +#, c-format +msgid "" +"Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" +" -8 output 8 bit clean streams.\n" +" -n don't display read/write from fd headers.\n" +" -c peek at any new child processes too.\n" +" -d remove duplicate read/writes from the output.\n" +" -V prints version info.\n" +" -h prints this help.\n" +"\n" +" Press CTRL-C to end output.\n" +msgstr "" +"用发: peekfd [-8] [-n] [-c] [-d] [-V] [-h] <进程号> [<文件号> ..]\n" +" -8 输出流使用第8位(首位)。\n" +" -n 不显示读写信息。\n" +" -c 也检测新的子进程。\n" +" -d 从输出中删除重复的读写信息。\n" +" -V 输出版本信息。\n" +" -h 输出帮助。\n" +"\n" +" 输入 CTRL-C 来终止输出。\n" + +#: src/pstree.c:374 +#, c-format +msgid "Internal error: MAX_DEPTH not big enough.\n" +msgstr "内部错误: MAX_DEPTH 不够大。\n" + +#: src/pstree.c:750 +#, c-format +msgid "" +"Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ PID | USER ]\n" +" pstree -V\n" +"Display a tree of processes.\n" +"\n" +" -a show command line arguments\n" +" -A use ASCII line drawing characters\n" +" -c don't compact identical subtrees\n" +" -h highlight current process and its ancestors\n" +" -H PID highlight this process and its ancestors\n" +" -G use VT100 line drawing characters\n" +" -l don't truncate long lines\n" +" -n sort output by PID\n" +" -p show PIDs; implies -c\n" +" -u show uid transitions\n" +" -U use UTF-8 (Unicode) line drawing characters\n" +" -V display version information\n" +msgstr "" +"用法: pstree [ -a ] [ -c ] [ -h | -H 进程号 ] [ -l ] [ -n ] [ -p ] [ -u ]\n" +" [ -A | -G | -U ] [ 进程号 | 用户 ]\n" +" pstree -V\n" +"显示进程树。\n" +"\n" +" -a 显示命令行参数\n" +" -A 使用 ASCII 画线符\n" +" -c 不压缩雷同的子树\n" +" -h 高亮显示当前进程及其祖先\n" +" -H 进程号 高亮显示 \"进程号\" 指定的进程当及其祖先\n" +" -G 使用 VT100 划线符\n" +" -l 不截断长行\n" +" -n 输出按进程号排序\n" +" -p 显示进程号;隐含 -c\n" +" -u 显示用户名变换\n" +" -U 使用 UTF-8 (Unicode) 划线符\n" +" -V 显示版本信息\n" + +#: src/pstree.c:768 +#, c-format +msgid " -Z show SELinux security contexts\n" +msgstr " -Z 显示 SELinux 安全环境\n" + +#: src/pstree.c:771 +#, c-format +msgid "" +" PID start at this PID; default is 1 (init)\n" +" USER show only trees rooted at processes of this user\n" +"\n" +msgstr "" +" 进程号 从 \"进程号\" 开始,缺省是1(init)\n" +" 用户 仅显示从该 \"用户\" 的进程开始的进程树\n" +"\n" + +#: src/pstree.c:778 +#, c-format +msgid "pstree (PSmisc) %s\n" +msgstr "pstree (PSmisc) %s\n" + +#: src/pstree.c:871 +#, c-format +msgid "TERM is not set\n" +msgstr "未设置环境变量TERM\n" + +#: src/pstree.c:876 +#, c-format +msgid "Can't get terminal capabilities\n" +msgstr "无法获取终端大小\n" + +#: src/pstree.c:920 +#, c-format +msgid "No such user name: %s\n" +msgstr "无用户名: %s\n" + +#: src/pstree.c:936 +#, c-format +msgid "No processes found.\n" +msgstr "未发现进程。\n" + +#: src/pstree.c:941 +#, c-format +msgid "Press return to close\n" +msgstr "按回车后关闭\n" + +#: src/signals.c:84 +#, c-format +msgid "%s: unknown signal; %s -l lists signals.\n" +msgstr "%s: 未知的信号; %s -l 显示信号列表。\n" diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..8eb661b --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,50 @@ + +AM_CFLAGS = -Wall -DLOCALEDIR=\"/usr/share/locale\" + +bin_PROGRAMS = fuser killall pstree oldfuser +if WANT_PEEKFD_I386 + bin_PROGRAMS += peekfd + AM_CFLAGS += -DI386 +endif +if WANT_PEEKFD_X86_64 + bin_PROGRAMS += peekfd + AM_CFLAGS += -DX86_64 +endif +if WANT_PEEKFD_PPC + bin_PROGRAMS += peekfd + AM_CFLAGS += -DPPC +endif + +oldfuser_SOURCES = oldfuser.c comm.h signals.c signals.h loop.h i18n.h + +fuser_SOURCES = fuser.c comm.h signals.c signals.h i18n.h fuser.h + +killall_SOURCES = killall.c comm.h signals.c signals.h i18n.h + +killall_LDADD = @SELINUX_LIB@ + +peekfd_SOURCES = peekfd.c + +pstree_SOURCES = pstree.c comm.h i18n.h + +pstree_LDADD = @TERMCAP_LIB@ @SELINUX_LIB@ + +BUILT_SOURCES = signames.h + +EXTRA_DIST = signames.c + +CLEANFILES = signames.h + +signames.h: signames.c Makefile + export LC_ALL=C ; \ + @CPP@ -dM $< |\ + tr -s '\t ' ' ' | sort -n -k 3 | sed \ + 's:#define SIG\([A-Z]\+[0-9]*\) \([0-9]\+\) *\(\|/\*.*\)$$:{\ \2,"\1" },:p;d' | \ + grep -v '[0-9][0-9][0-9]' >signames.h || \ + { rm -f signames.h; exit 1; } + grep '^{ 1,"HUP" },$$' signames.h >/dev/null || \ + { rm -f signames.h; exit 1; } + +install-exec-hook: + cd $(DESTDIR)$(bindir) && \ + ( [ -h pstree.x11 ] || $(LN_S) pstree pstree.x11) diff --git a/src/Makefile.in b/src/Makefile.in new file mode 100644 index 0000000..e35b5a2 --- /dev/null +++ b/src/Makefile.in @@ -0,0 +1,519 @@ +# Makefile.in generated by automake 1.10 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = fuser$(EXEEXT) killall$(EXEEXT) pstree$(EXEEXT) \ + oldfuser$(EXEEXT) $(am__EXEEXT_1) $(am__EXEEXT_2) \ + $(am__EXEEXT_3) +@WANT_PEEKFD_I386_TRUE@am__append_1 = peekfd +@WANT_PEEKFD_I386_TRUE@am__append_2 = -DI386 +@WANT_PEEKFD_X86_64_TRUE@am__append_3 = peekfd +@WANT_PEEKFD_X86_64_TRUE@am__append_4 = -DX86_64 +@WANT_PEEKFD_PPC_TRUE@am__append_5 = peekfd +@WANT_PEEKFD_PPC_TRUE@am__append_6 = -DPPC +subdir = src +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \ + $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \ + $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ + $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +@WANT_PEEKFD_I386_TRUE@am__EXEEXT_1 = peekfd$(EXEEXT) +@WANT_PEEKFD_X86_64_TRUE@am__EXEEXT_2 = peekfd$(EXEEXT) +@WANT_PEEKFD_PPC_TRUE@am__EXEEXT_3 = peekfd$(EXEEXT) +am__installdirs = "$(DESTDIR)$(bindir)" +binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(bin_PROGRAMS) +am_fuser_OBJECTS = fuser.$(OBJEXT) signals.$(OBJEXT) +fuser_OBJECTS = $(am_fuser_OBJECTS) +fuser_LDADD = $(LDADD) +am_killall_OBJECTS = killall.$(OBJEXT) signals.$(OBJEXT) +killall_OBJECTS = $(am_killall_OBJECTS) +killall_DEPENDENCIES = +am_oldfuser_OBJECTS = oldfuser.$(OBJEXT) signals.$(OBJEXT) +oldfuser_OBJECTS = $(am_oldfuser_OBJECTS) +oldfuser_LDADD = $(LDADD) +am_peekfd_OBJECTS = peekfd.$(OBJEXT) +peekfd_OBJECTS = $(am_peekfd_OBJECTS) +peekfd_LDADD = $(LDADD) +am_pstree_OBJECTS = pstree.$(OBJEXT) +pstree_OBJECTS = $(am_pstree_OBJECTS) +pstree_DEPENDENCIES = +DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(fuser_SOURCES) $(killall_SOURCES) $(oldfuser_SOURCES) \ + $(peekfd_SOURCES) $(pstree_SOURCES) +DIST_SOURCES = $(fuser_SOURCES) $(killall_SOURCES) $(oldfuser_SOURCES) \ + $(peekfd_SOURCES) $(pstree_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +AMTAR = @AMTAR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +GMSGFMT = @GMSGFMT@ +GMSGFMT_015 = @GMSGFMT_015@ +GREP = @GREP@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INTLLIBS = @INTLLIBS@ +INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ +LDFLAGS = @LDFLAGS@ +LIBICONV = @LIBICONV@ +LIBINTL = @LIBINTL@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBINTL = @LTLIBINTL@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MSGFMT = @MSGFMT@ +MSGFMT_015 = @MSGFMT_015@ +MSGMERGE = @MSGMERGE@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +POSUB = @POSUB@ +SELINUX_LIB = @SELINUX_LIB@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +TERMCAP_LIB = @TERMCAP_LIB@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +WITH_IPV6 = @WITH_IPV6@ +WITH_SELINUX = @WITH_SELINUX@ +XGETTEXT = @XGETTEXT@ +XGETTEXT_015 = @XGETTEXT_015@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +AM_CFLAGS = -Wall -DLOCALEDIR=\"/usr/share/locale\" $(am__append_2) \ + $(am__append_4) $(am__append_6) +oldfuser_SOURCES = oldfuser.c comm.h signals.c signals.h loop.h i18n.h +fuser_SOURCES = fuser.c comm.h signals.c signals.h i18n.h fuser.h +killall_SOURCES = killall.c comm.h signals.c signals.h i18n.h +killall_LDADD = @SELINUX_LIB@ +peekfd_SOURCES = peekfd.c +pstree_SOURCES = pstree.c comm.h i18n.h +pstree_LDADD = @TERMCAP_LIB@ @SELINUX_LIB@ +BUILT_SOURCES = signames.h +EXTRA_DIST = signames.c +CLEANFILES = signames.h +all: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) all-am + +.SUFFIXES: +.SUFFIXES: .c .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; for p in $$list; do \ + p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ + if test -f $$p \ + ; then \ + f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ + echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ + else :; fi; \ + done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; for p in $$list; do \ + f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ + echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ + rm -f "$(DESTDIR)$(bindir)/$$f"; \ + done + +clean-binPROGRAMS: + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) +fuser$(EXEEXT): $(fuser_OBJECTS) $(fuser_DEPENDENCIES) + @rm -f fuser$(EXEEXT) + $(LINK) $(fuser_OBJECTS) $(fuser_LDADD) $(LIBS) +killall$(EXEEXT): $(killall_OBJECTS) $(killall_DEPENDENCIES) + @rm -f killall$(EXEEXT) + $(LINK) $(killall_OBJECTS) $(killall_LDADD) $(LIBS) +oldfuser$(EXEEXT): $(oldfuser_OBJECTS) $(oldfuser_DEPENDENCIES) + @rm -f oldfuser$(EXEEXT) + $(LINK) $(oldfuser_OBJECTS) $(oldfuser_LDADD) $(LIBS) +peekfd$(EXEEXT): $(peekfd_OBJECTS) $(peekfd_DEPENDENCIES) + @rm -f peekfd$(EXEEXT) + $(LINK) $(peekfd_OBJECTS) $(peekfd_LDADD) $(LIBS) +pstree$(EXEEXT): $(pstree_OBJECTS) $(pstree_DEPENDENCIES) + @rm -f pstree$(EXEEXT) + $(LINK) $(pstree_OBJECTS) $(pstree_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fuser.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/killall.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/oldfuser.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/peekfd.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pstree.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signals.Po@am__quote@ + +.c.o: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c $< + +.c.obj: +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: + +install-dvi: install-dvi-am + +install-exec-am: install-binPROGRAMS + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-exec-hook + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS + +.MAKE: install-am install-exec-am install-strip + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ + clean-generic ctags distclean distclean-compile \ + distclean-generic distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-binPROGRAMS \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-exec-hook install-html \ + install-html-am install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ + tags uninstall uninstall-am uninstall-binPROGRAMS + + +signames.h: signames.c Makefile + export LC_ALL=C ; \ + @CPP@ -dM $< |\ + tr -s '\t ' ' ' | sort -n -k 3 | sed \ + 's:#define SIG\([A-Z]\+[0-9]*\) \([0-9]\+\) *\(\|/\*.*\)$$:{\ \2,"\1" },:p;d' | \ + grep -v '[0-9][0-9][0-9]' >signames.h || \ + { rm -f signames.h; exit 1; } + grep '^{ 1,"HUP" },$$' signames.h >/dev/null || \ + { rm -f signames.h; exit 1; } + +install-exec-hook: + cd $(DESTDIR)$(bindir) && \ + ( [ -h pstree.x11 ] || $(LN_S) pstree pstree.x11) +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/src/comm.h b/src/comm.h new file mode 100644 index 0000000..956383d --- /dev/null +++ b/src/comm.h @@ -0,0 +1,18 @@ +/* comm.h - command name length definition */ + +/* Copyright 1995 Werner Almesberger. See file COPYING for details. */ + + +#ifndef COMM_H +#define COMM_H + +#if 0 /* broken in 1.3.xx */ +#include +#define COMM_LEN sizeof(dummy.comm) +extern struct task_struct dummy; +#else +#define COMM_LEN 16 /* synchronize with size of comm in struct task_struct in + /usr/include/linux/sched.h */ +#endif + +#endif diff --git a/src/fuser.c b/src/fuser.c new file mode 100644 index 0000000..b88b7a8 --- /dev/null +++ b/src/fuser.c @@ -0,0 +1,1282 @@ +/* + * fuser.c - identify processes using files + * + * Based on fuser.c Copyright (C) 1993-2005 Werner Almesberger and Craig Small + * + * Completely re-written + * Copyright (C) 2005-2007 Craig Small + * + * 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 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 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 + */ +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "fuser.h" +#include "signals.h" +#include "i18n.h" + +/* +#define DEBUG 1 +*/ +/* +#define NFS_CHECKS +*/ + +#define NAME_FIELD 20 /* space reserved for file name */ +/* Function defines */ +static void add_matched_proc(struct names *name_list, const pid_t pid, const uid_t uid, const char access); +static void check_dir(const pid_t pid, const char *dirname, struct device_list *dev_head, struct inode_list *ino_head, const uid_t uid, const char access); +static void check_map(const pid_t pid, const char *filename, struct device_list *dev_head, struct inode_list *ino_head, const uid_t uid, const char access); +static struct stat *get_pidstat(const pid_t pid, const char *filename); +static uid_t getpiduid(const pid_t pid); +static int print_matches(struct names *names_head, const opt_type opts, const int sig_number); +static void kill_matched_proc(struct procs *pptr, const opt_type opts, const int sig_number); + +int parse_mount(struct names *this_name, struct device_list **dev_list); +static void add_device(struct device_list **dev_list, struct names *this_name, dev_t device); +void scan_mount_devices(const opt_type opts, struct mountdev_list **mount_devices); +void fill_unix_cache(struct unixsocket_list **unixsocket_head); +static dev_t find_net_dev(void); +static void scan_procs(struct names *names_head, struct inode_list *ino_head, struct device_list *dev_head); +#ifdef NFS_CHECKS +static void scan_knfsd(struct names *names_head, struct device_list *dev_head); +#endif /* NFS_CHECKS */ +#ifdef DEBUG +static void debug_match_lists(struct names *names_head, struct inode_list *ino_head, struct device_list *dev_head); +#endif + +static void usage (const char *errormsg) +{ + if (errormsg != NULL) + fprintf(stderr, "%s\n", errormsg); + + fprintf (stderr, _( + "Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" + " [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" + " fuser -l\n" + " fuser -V\n" + "Show which processes use the named files, sockets, or filesystems.\n\n" + " -a display unused files too\n" + " -c mounted FS\n" + " -f silently ignored (for POSIX compatibility)\n" + " -i ask before killing (ignored without -k)\n" + " -k kill processes accessing the named file\n" + " -l list available signal names\n" + " -m show all processes using the named filesystems\n" + " -n SPACE search in this name space (file, udp, or tcp)\n" + " -s silent operation\n" + " -SIGNAL send this signal instead of SIGKILL\n" + " -u display user IDs\n" + " -v verbose output\n" + " -V display version information\n")); +#ifdef WITH_IPV6 + fprintf (stderr, _( + " -4 search IPv4 sockets only\n" + " -6 search IPv6 sockets only\n")); +#endif + fprintf (stderr, _( + " - reset options\n\n" + " udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n\n")); + exit (1); +} + +void print_version() +{ + fprintf(stderr, _("fuser (PSmisc) %s\n"), VERSION); + fprintf(stderr, _( + "Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n\n")); + fprintf(stderr, _( + "PSmisc comes with ABSOLUTELY NO WARRANTY.\n" + "This is free software, and you are welcome to redistribute it under\n" + "the terms of the GNU General Public License.\n" + "For more information about these matters, see the files named COPYING.\n")); +} + +static void scan_procs(struct names *names_head, struct inode_list *ino_head, struct device_list *dev_head) +{ + DIR *topproc_dir; + struct dirent *topproc_dent; + char *fd_dirpath, *fd_pathname; + struct inode_list *ino_tmp; + struct device_list *dev_tmp; + pid_t pid, my_pid; + uid_t uid; + struct stat *cwd_stat, *exe_stat, *root_stat; + + if ( (fd_dirpath = malloc(MAX_PATHNAME)) == NULL) + return; + if ( (fd_pathname = malloc(MAX_PATHNAME)) == NULL) + return; + + if ( (topproc_dir = opendir("/proc")) == NULL) { + fprintf(stderr, _("Cannot open /proc directory: %s\n"), strerror(errno)); + exit(1); + } + my_pid = getpid(); + while ( (topproc_dent = readdir(topproc_dir)) != NULL) { + if (topproc_dent->d_name[0] < '0' || topproc_dent->d_name[0] > '9') /* Not a process */ + continue; + pid = atoi(topproc_dent->d_name); + /* Dont print myself */ + if (pid == my_pid) + continue; + uid = getpiduid(pid); + + root_stat = get_pidstat(pid, "root"); + cwd_stat = get_pidstat(pid, "cwd"); + exe_stat = get_pidstat(pid, "exe"); + /* Scan the devices */ + for (dev_tmp = dev_head ; dev_tmp != NULL ; dev_tmp = dev_tmp->next) { + if (exe_stat != NULL && exe_stat->st_dev == dev_tmp->device) + add_matched_proc(dev_tmp->name, pid, uid, ACCESS_EXE); + if (root_stat != NULL && root_stat->st_dev == dev_tmp->device) + add_matched_proc(dev_tmp->name, pid, uid, ACCESS_ROOT); + if (cwd_stat != NULL && cwd_stat->st_dev == dev_tmp->device) + add_matched_proc(dev_tmp->name, pid, uid, ACCESS_CWD); + } + for (ino_tmp = ino_head ; ino_tmp != NULL ; ino_tmp = ino_tmp->next) { + if (exe_stat != NULL) { + if (exe_stat->st_dev == ino_tmp->device && exe_stat->st_ino == ino_tmp->inode) { + add_matched_proc(ino_tmp->name, pid, uid, ACCESS_EXE); + } + } + if (root_stat != NULL) { + if (root_stat->st_dev == ino_tmp->device && root_stat->st_ino == ino_tmp->inode){ + add_matched_proc(ino_tmp->name, pid, uid, ACCESS_ROOT); + } + + } + if (cwd_stat != NULL){ + if (cwd_stat->st_dev == ino_tmp->device && cwd_stat->st_ino == ino_tmp->inode) { + add_matched_proc(ino_tmp->name, pid, uid, ACCESS_CWD); + } + } + } + check_dir(pid, "lib", dev_head, ino_head, uid, ACCESS_MMAP); + check_dir(pid, "mmap", dev_head, ino_head, uid, ACCESS_MMAP); + check_dir(pid, "fd", dev_head, ino_head, uid, ACCESS_FILE); + check_map(pid, "maps", dev_head, ino_head, uid, ACCESS_MMAP); + + } /* while topproc_dent */ + closedir(topproc_dir); +} +static void add_inode(struct inode_list **ino_list, struct names *this_name, dev_t device, ino_t inode) +{ + struct inode_list *ino_tmp, *ino_head; + + ino_head = *ino_list; + + if ( (ino_tmp = malloc(sizeof(struct inode_list))) == NULL) + return; + ino_tmp->name = this_name; + ino_tmp->device = device; + ino_tmp->inode = inode; + ino_tmp->next = ino_head; + *ino_list = ino_tmp; +} + +static void add_device(struct device_list **dev_list, struct names *this_name, dev_t device) +{ + struct device_list *dev_tmp, *dev_head; + + /*printf("Adding device %s %d\n", this_name->filename, device);*/ + dev_head = *dev_list; + + if ( (dev_tmp = malloc(sizeof(struct device_list))) == NULL) + return; + dev_tmp->name = this_name; + dev_tmp->device = device; + dev_tmp->next = dev_head; + *dev_list = dev_tmp; +} + +static void add_ip_conn(struct ip_connections **ip_list, const char *protocol, struct names *this_name, const int lcl_port, const int rmt_port, unsigned long rmt_address) +{ + struct ip_connections *ip_tmp, *ip_head; + + ip_head = *ip_list; + + if ( (ip_tmp = malloc(sizeof(struct ip_connections))) == NULL) + return; + ip_tmp->name = this_name; + ip_tmp->lcl_port = lcl_port; + ip_tmp->rmt_port = rmt_port; + ip_tmp->rmt_address.s_addr = rmt_address; + ip_tmp->next = ip_head; + + *ip_list = ip_tmp; +} + +#ifdef WITH_IPV6 +static void add_ip6_conn(struct ip6_connections **ip_list, const char *protocol, struct names *this_name, const int lcl_port, const int rmt_port, struct in6_addr rmt_address) +{ + struct ip6_connections *ip_tmp, *ip_head; + + ip_head = *ip_list; + + if ( (ip_tmp = malloc(sizeof(struct ip6_connections))) == NULL) + return; + ip_tmp->name = this_name; + ip_tmp->lcl_port = lcl_port; + ip_tmp->rmt_port = rmt_port; + memcpy(&(ip_tmp->rmt_address),&(rmt_address),sizeof(struct in6_addr)); + ip_tmp->next = ip_head; + + *ip_list = ip_tmp; +} +#endif + +static void add_matched_proc(struct names *name_list, const pid_t pid, const uid_t uid, const char access) +{ + struct procs *pptr, *last_proc; + char *pathname; + char cmdname[101], *cptr; + int cmdlen; + FILE *fp; + + last_proc = NULL; + for (pptr = name_list->matched_procs; pptr != NULL ; pptr = pptr->next) + { + last_proc = pptr; + if (pptr->pid == pid) { + pptr->access |= access; + return; + } + } + /* Not found */ + if ( (pptr = malloc(sizeof (struct procs))) == NULL) { + fprintf(stderr,_("Cannot allocate memory for matched proc: %s\n"), strerror(errno)); + return; + } + pptr->pid = pid; + pptr->uid = uid; + pptr->access = access; + pptr->next = NULL; + /* set command name */ + pptr->command = NULL; + if ( (asprintf(&pathname, "/proc/%d/stat", pid) > 0) && + ( (fp = fopen(pathname, "r")) != NULL) && + ( fscanf(fp, "%*d (%100[^)]", cmdname) == 1)) + if ( (pptr->command = malloc(MAX_CMDNAME+1)) != NULL) { + cmdlen = 0; + for (cptr = cmdname; cmdlen < MAX_CMDNAME && *cptr ; cptr++) { + if (isprint(*cptr)) + pptr->command[cmdlen++] = *cptr; + else if(cmdlen < (MAX_CMDNAME-4)) + cmdlen += sprintf(&(pptr->command[cmdlen]), "\\%03o", *cptr); + } + pptr->command[cmdlen] = '\0'; + } + if (last_proc == NULL) + name_list->matched_procs = pptr; + else + last_proc->next = pptr; +} + +int parse_mount(struct names *this_name, struct device_list **dev_list) +{ + struct stat st; + + if (stat(this_name->filename, &st) != 0) { + fprintf(stderr, _("Cannot stat mount point %s: %s\n"), + this_name->filename, + strerror(errno)); + exit(1); + } +#ifdef DEBUG + printf("Debug: parse_mount() adding %s\n", this_name->filename); +#endif /* DEBUG */ + add_device(dev_list, this_name, st.st_dev); + return 0; +} + +int parse_file(struct names *this_name, struct inode_list **ino_list) +{ + struct stat st; + + if (stat(this_name->filename, &st) != 0) { + fprintf(stderr,_("Cannot stat %s: %s\n"), this_name->filename, + strerror(errno)); + return -1; + } +#ifdef DEBUG + printf("adding file %s %lX %lX\n", this_name->filename, + (unsigned long)st.st_dev, (unsigned long)st.st_ino); +#endif /* DEBUG */ + add_inode(ino_list, this_name, st.st_dev, st.st_ino); + return 0; +} + +int parse_unixsockets(struct names *this_name, struct inode_list **ino_list, struct unixsocket_list *sun_head) +{ + struct unixsocket_list *sun_tmp; + struct stat st; + dev_t net_dev; + + if (stat(this_name->filename, &st) != 0) { + fprintf(stderr,_("Cannot stat %s: %s\n"), this_name->filename, + strerror(errno)); + return -1; + } + net_dev = find_net_dev(); + + for (sun_tmp = sun_head; sun_tmp != NULL ; sun_tmp = sun_tmp->next) + { + if (sun_tmp->dev == st.st_dev && sun_tmp->inode == st.st_ino) { + add_inode(ino_list, this_name, net_dev, sun_tmp->net_inode); + return 0; + } + } + return 0; +} + +int parse_mounts(struct names *this_name, struct mountdev_list *mounts, struct device_list **dev_list, const char opts) +{ + struct stat st; + struct mountdev_list *mountptr; + dev_t match_device; + + if (stat(this_name->filename, &st) != 0) { + fprintf(stderr,_("Cannot stat %s: %s\n"), this_name->filename, + strerror(errno)); + return -1; + } + if (S_ISBLK(st.st_mode)) + match_device = st.st_rdev; + else + match_device = st.st_dev; + for (mountptr = mounts ; mountptr != NULL ; mountptr = mountptr->next) { + if (mountptr->device == match_device) { + /*printf("Debug: adding parse_mounts() adding %s\n", + this_name->filename);*/ + add_device(dev_list, this_name, match_device); + } + } + return 0; +} + +#ifdef WITH_IPV6 +int parse_inet(struct names *this_name, const int ipv6_only, const int ipv4_only, struct ip_connections **ip_list, struct ip6_connections **ip6_list) +#else +int parse_inet(struct names *this_name, struct ip_connections **ip_list) +#endif +{ + struct addrinfo *res, *resptr; + struct addrinfo hints; + int errcode; + char *lcl_port_str, *rmt_addr_str, *rmt_port_str, *tmpstr, *tmpstr2; + in_port_t lcl_port; + struct sockaddr_in *sin; +#ifdef WITH_IPV6 + struct sockaddr_in6 *sin6; +#endif + char hostspec[100]; + char *protocol; + int i; + + if ( (protocol = strchr(this_name->filename, '/')) == NULL) + return -1; + protocol++; + if (protocol[0] == '\0') + return -1; + for (i=0; i < 99 && this_name->filename[i] != '\0' && this_name->filename[i] != '/'; i++) + hostspec[i] = this_name->filename[i]; + hostspec[i] = '\0'; + + lcl_port_str = rmt_addr_str = rmt_port_str = NULL; + /* Split out the names */ + if ( (tmpstr = strchr(hostspec, ',')) == NULL) { + /* Single option */ + lcl_port_str = strdup(hostspec); + } else { + if (tmpstr == hostspec) + lcl_port_str = NULL; + else { + *tmpstr = '\0'; + lcl_port_str = strdup(hostspec); + } + tmpstr++; + if (*tmpstr != '\0') { + if ( (tmpstr2 = strchr(tmpstr, ',')) == NULL) { + /* Only 2 options */ + rmt_addr_str = tmpstr; + } else { + if (tmpstr2 == tmpstr) + rmt_addr_str = NULL; + else { + rmt_addr_str = tmpstr; + *tmpstr2 = '\0'; + } + tmpstr2++; + if (*tmpstr2 != '\0') + rmt_port_str = tmpstr2; + } + } + } +#ifdef DEBUG + printf("parsed to lp %s rh %s rp %s\n", lcl_port_str, rmt_addr_str, rmt_port_str); +#endif + + memset(&hints, 0, sizeof(hints)); +#ifdef WITH_IPV6 + if (ipv6_only) { + hints.ai_family = PF_INET6; + } else if (ipv4_only) { + hints.ai_family = PF_INET; + } else + hints.ai_family = PF_UNSPEC; +#else + hints.ai_family = PF_INET; +#endif + if (strcmp(protocol, "tcp") == 0) + hints.ai_socktype = SOCK_STREAM; + else + hints.ai_socktype = SOCK_DGRAM; + + if (lcl_port_str == NULL) { + lcl_port = 0; + } else { + /* Resolve local port first */ + if ( (errcode = getaddrinfo(NULL, lcl_port_str, &hints, &res)) != 0) { + fprintf(stderr, _("Cannot resolve local port %s: %s\n"), + lcl_port_str, gai_strerror(errcode)); + return -1; + } + if (res == NULL) + return -1; + switch(res->ai_family) { + case AF_INET: + lcl_port = ((struct sockaddr_in*)(res->ai_addr))->sin_port; + break; +#ifdef WITH_IPV6 + case AF_INET6: + lcl_port = ((struct sockaddr_in6*)(res->ai_addr))->sin6_port; + break; +#endif + default: + fprintf(stderr, _("Unknown local port AF %d\n"), res->ai_family); + freeaddrinfo(res); + return -1; + } + freeaddrinfo(res); + } + free(lcl_port_str); + res = NULL; + if (rmt_addr_str == NULL && rmt_port_str == NULL) { + add_ip_conn(ip_list, protocol, this_name, ntohs(lcl_port), 0, INADDR_ANY); +#ifdef WITH_IPV6 + add_ip6_conn(ip6_list, protocol,this_name, ntohs(lcl_port), 0, in6addr_any); +#endif + return 0; + } else { + /* Resolve remote address and port */ + if (getaddrinfo(rmt_addr_str, rmt_port_str, &hints, &res) == 0) { + for(resptr = res ; resptr != NULL ; resptr = resptr->ai_next ) { + switch(resptr->ai_family) { + case AF_INET: + sin = (struct sockaddr_in*)resptr->ai_addr; + if (rmt_addr_str == NULL) { + add_ip_conn(ip_list, protocol, this_name, ntohs(lcl_port), ntohs(sin->sin_port), INADDR_ANY); + } else { + add_ip_conn(ip_list, protocol, this_name, ntohs(lcl_port), ntohs(sin->sin_port), sin->sin_addr.s_addr); + } + break; +#ifdef WITH_IPV6 + case AF_INET6: + sin6 = (struct sockaddr_in6*)resptr->ai_addr; + if (rmt_addr_str == NULL) { + add_ip6_conn(ip6_list, protocol, this_name, ntohs(lcl_port), ntohs(sin6->sin6_port), in6addr_any); + } else { + add_ip6_conn(ip6_list, protocol, this_name, ntohs(lcl_port), ntohs(sin6->sin6_port), sin6->sin6_addr); + } + break; +#endif + } + } /*while */ + return 0; + } + } + return 1; +} + + + + +void find_net_sockets(struct inode_list **ino_list, struct ip_connections *conn_list, const char *protocol, dev_t netdev) +{ + FILE *fp; + char pathname[200], line[BUFSIZ]; + unsigned long loc_port, rmt_port; + unsigned long rmt_addr, scanned_inode; + ino_t inode; + struct ip_connections *conn_tmp; + + if (snprintf(pathname,200, "/proc/net/%s", protocol) < 0) + return ; + + if ( (fp = fopen(pathname, "r")) == NULL) { + fprintf(stderr, _("Cannot open protocol file \"%s\": %s\n"), pathname,strerror(errno)); + return; + } + while (fgets(line, BUFSIZ, fp) != NULL) { + if (sscanf(line, "%*u: %*x:%lx %08lx:%lx %*x %*x:%*x %*x:%*x %*x %*d %*d %lu", + &loc_port, + &rmt_addr, + &rmt_port, + &scanned_inode) != 4) + continue; +#ifdef DEBUG + printf("Found IPv4 *:%lu with %s:%lu\n", loc_port, inet_ntoa(*((struct in_addr*)&rmt_addr)), rmt_port); +#endif /* DEBUG */ + inode = scanned_inode; + for(conn_tmp = conn_list ; conn_tmp != NULL ; conn_tmp = conn_tmp->next) { +#ifdef DEBUG + printf(" Comparing with *.%lu %s:%lu\n", + conn_tmp->lcl_port, + inet_ntoa(conn_tmp->rmt_address), + conn_tmp->rmt_port); +#endif + if ( (conn_tmp->lcl_port == 0 || conn_tmp->lcl_port == loc_port) && + (conn_tmp->rmt_port == 0 || conn_tmp->rmt_port == rmt_port) && + (conn_tmp->rmt_address.s_addr == INADDR_ANY || + (memcmp(&(conn_tmp->rmt_address), &(rmt_addr),4) ==0)) + ) { + /* add inode to list */ +#ifdef DEBUG + printf("Added inode!\n"); +#endif /* DEBUG */ + add_inode(ino_list, conn_tmp->name, netdev, inode); + } + } + + + } + return ; +} + +#ifdef WITH_IPV6 +void find_net6_sockets(struct inode_list **ino_list, struct ip6_connections *conn_list, const char *protocol, const dev_t netdev) +{ + FILE *fp; + char pathname[200], line[BUFSIZ]; + unsigned long loc_port, rmt_port; + struct in6_addr rmt_addr; + unsigned int tmp_addr[4]; + char rmt_addr6str[INET6_ADDRSTRLEN]; + struct ip6_connections *head, *tmpptr, *tail; + struct ip6_connections *conn_tmp; + unsigned long scanned_inode; + ino_t inode; + + head = tmpptr = tail = NULL; + + if (snprintf(pathname,200, "/proc/net/%s6", protocol) < 0) + return ; + + if ( (fp = fopen(pathname, "r")) == NULL) { +#ifdef DEBUG + printf("Cannot open protocol file \"%s\": %s\n", pathname, strerror(errno)); +#endif /* DEBUG */ + return ; + } + while (fgets(line, BUFSIZ, fp) != NULL) { + if (sscanf(line, "%*u: %*x:%lx %08x%08x%08x%08x:%lx %*x %*x:%*x %*x:%*x %*x %*d %*d %lu", + &loc_port, + &(tmp_addr[0]), + &(tmp_addr[1]), + &(tmp_addr[2]), + &(tmp_addr[3]), + &rmt_port, &scanned_inode) != 7) + continue; + inode = scanned_inode; + rmt_addr.s6_addr32[0] = tmp_addr[0]; + rmt_addr.s6_addr32[1] = tmp_addr[1]; + rmt_addr.s6_addr32[2] = tmp_addr[2]; + rmt_addr.s6_addr32[3] = tmp_addr[3]; + inet_ntop(AF_INET6, &rmt_addr, rmt_addr6str, INET6_ADDRSTRLEN); +#ifdef DEBUG + printf("Found IPv6 %ld with %s:%ld\n", loc_port, rmt_addr6str, rmt_port); +#endif /* DEBUG */ + for(conn_tmp = conn_list ; conn_tmp != NULL ; conn_tmp = conn_tmp->next) { + inet_ntop(AF_INET6, &conn_tmp->rmt_address, rmt_addr6str, INET6_ADDRSTRLEN); +#ifdef DEBUG + printf(" Comparing with *.%lu %s:%lu ...\n", + conn_tmp->lcl_port, + rmt_addr6str, + conn_tmp->rmt_port); +#endif /* DEBUG */ + if ( (conn_tmp->lcl_port == 0 || conn_tmp->lcl_port == loc_port) && + (conn_tmp->rmt_port == 0 || conn_tmp->rmt_port == rmt_port) && + (memcmp(&(conn_tmp->rmt_address), &in6addr_any,16) == 0 || + (memcmp(&(conn_tmp->rmt_address), &(rmt_addr),16) ==0)) + ) { + add_inode(ino_list, conn_tmp->name, netdev, inode); + } + } + } +} +#endif + +int main(int argc, char *argv[]) +{ + opt_type opts; + int sig_number; +#ifdef WITH_IPV6 + int ipv4_only, ipv6_only; +#endif + unsigned char default_namespace = NAMESPACE_FILE; + struct mountdev_list *mount_devices = NULL; + struct device_list *match_devices = NULL; + struct unixsocket_list *unixsockets = NULL; + + dev_t netdev; + struct ip_connections *tcp_connection_list = NULL; + struct ip_connections *udp_connection_list = NULL; +#ifdef WITH_IPV6 + struct ip6_connections *tcp6_connection_list = NULL; + struct ip6_connections *udp6_connection_list = NULL; +#endif + struct inode_list *match_inodes = NULL; + struct names *names_head, *this_name, *names_tail; + int optc; + char *option; + char *nsptr; + +#ifdef WITH_IPV6 + ipv4_only = ipv6_only = 0; +#endif + names_head = this_name = names_tail = NULL; + opts = 0; + sig_number = SIGKILL; + +#ifdef ENABLE_NLS + /* Set up the i18n */ + setlocale(LC_ALL, ""); + bindtextdomain(PACKAGE, LOCALEDIR); + textdomain(PACKAGE); +#endif + + netdev = find_net_dev(); + scan_mount_devices(opts, &mount_devices); + fill_unix_cache(&unixsockets); + + /* getopt doesnt like things like -SIGBLAH */ + for(optc = 1; optc < argc; optc++) { + if (argv[optc][0] == '-') { /* its an option */ + option=argv[optc] + 1; + if (argv[optc][1] == '-') { /* its a long option */ + if (argv[optc][2] == '\0') { + continue; + } + /* FIXME longopts */ + continue; + } + while (*option) { + switch(*option) { +#ifdef WITH_IPV6 + case '4': + ipv4_only = 1; + break; + case '6': + ipv6_only = 1; + break; +#endif + case 'a': + opts |= OPT_ALLFILES; + break; + case 'c': + opts |= OPT_MOUNTPOINT; + break; + case 'f': + /* ignored */ + break; + case 'h': + usage(NULL); + break; + case 'i': + opts |= OPT_INTERACTIVE; + break; + case 'k': + opts |= OPT_KILL; + break; + case 'l': + list_signals(); + return 0; + case 'm': + opts |= OPT_MOUNTS; + break; + case 'n': + optc++; + if (optc >= argc) { + usage(_("Namespace option requires an argument.")); + } + if (strcmp(argv[optc], "tcp") == 0) + default_namespace = NAMESPACE_TCP; + else if (strcmp(argv[optc], "udp") == 0) + default_namespace = NAMESPACE_UDP; + else if (strcmp(argv[optc], "file") == 0) + default_namespace = NAMESPACE_FILE; + else + usage(_("Invalid namespace name")); + break; + case 's': + opts |= OPT_SILENT; + break; + case 'u': + opts |= OPT_USER; + break; + case 'v': + opts |= OPT_VERBOSE; + break; + case 'V': + print_version(); + return 0; + default: + if ( isupper(*option) || isdigit(*option) ) { + sig_number = get_signal(option,"fuser"); + option[1]='\0'; + + break; + } + fprintf(stderr,"%s: Invalid option %c\n",argv[0] , argv[optc][1]); + usage(NULL); + + break; + } /* switch */ + option++; + } + continue; + } + /* File specifications */ + if ( (this_name = malloc(sizeof(struct names))) == NULL) + continue; + this_name->next = NULL; + if (names_head == NULL) + names_head = this_name; + if (names_tail != NULL) + names_tail->next = this_name; + names_tail = this_name; + /* try to find namespace spec */ + this_name->name_space = default_namespace; + if ( ((nsptr = strchr(argv[optc], '/')) != NULL ) + && ( nsptr != argv[optc] )) { + if (strcmp(nsptr+1, "tcp") == 0) { + this_name->name_space = NAMESPACE_TCP; + *nsptr = '\0'; + } else if (strcmp(nsptr+1, "udp") == 0) { + this_name->name_space = NAMESPACE_UDP; + *nsptr = '\0'; + } else if (strcmp(nsptr+1, "file") == 0) { + this_name->name_space = NAMESPACE_FILE; + *nsptr = '\0'; + } + } + this_name->matched_procs = NULL; + if ((opts & OPT_MOUNTS || opts & OPT_MOUNTPOINT) && this_name->name_space != NAMESPACE_FILE) + usage(_("You can only use files with mountpoint option")); + switch(this_name->name_space) { + case NAMESPACE_TCP: + asprintf(&(this_name->filename), "%s/tcp", argv[optc]); +#ifdef WITH_IPV6 + parse_inet(this_name, ipv4_only, ipv6_only, &tcp_connection_list, &tcp6_connection_list); +#else + parse_inet(this_name, &tcp_connection_list); +#endif + break; + case NAMESPACE_UDP: + asprintf(&(this_name->filename), "%s/udp", argv[optc]); +#ifdef WITH_IPV6 + parse_inet(this_name, ipv4_only, ipv6_only, &tcp_connection_list, &tcp6_connection_list); +#else + parse_inet(this_name, &tcp_connection_list); +#endif + break; + default: /* FILE */ + this_name->filename = strdup(argv[optc]); + parse_file(this_name, &match_inodes); + parse_unixsockets(this_name, &match_inodes, unixsockets); + if (opts & OPT_MOUNTPOINT || opts & OPT_MOUNTS) + parse_mounts(this_name, mount_devices, &match_devices, opts); + break; + } + + } /* for optc */ + if (names_head == NULL) { + usage(_("No process specification given")); + } + /* Check conflicting operations */ + if (opts & OPT_MOUNTPOINT) { + if (opts & OPT_MOUNTS) + usage(_("You cannot use the mounted and mountpoint flags together")); + } + if (opts & OPT_SILENT) + { + opts &= ~OPT_VERBOSE; + opts &= ~OPT_USER; + if (opts & OPT_ALLFILES) + usage(_("all option cannot be used with silent option.")); + } +#ifdef WITH_IPV6 + if (ipv4_only && ipv6_only) + usage(_("You cannot search for only IPv4 and only IPv6 sockets at the same time")); + if (!ipv4_only) { +#endif + if (tcp_connection_list != NULL) + find_net_sockets(&match_inodes, tcp_connection_list, "tcp",netdev); + if (udp_connection_list != NULL) + find_net_sockets(&match_inodes, udp_connection_list, "udp",netdev); +#ifdef WITH_IPV6 + } + if (!ipv6_only) { + if (tcp6_connection_list != NULL) + find_net6_sockets(&match_inodes, tcp6_connection_list, "tcp",netdev); + if (udp6_connection_list != NULL) + find_net6_sockets(&match_inodes, udp6_connection_list, "udp",netdev); + } +#endif +#ifdef DEBUG + debug_match_lists(names_head, match_inodes, match_devices); +#endif + scan_procs(names_head, match_inodes, match_devices); +#ifdef NFS_CHECKS + scan_knfsd(names_head, match_devices); +#endif /* NFS_CHECKS */ + return print_matches(names_head,opts, sig_number); +} + +/* + * returns 0 if match, 1 if no match + */ +static int print_matches(struct names *names_head, const opt_type opts, const int sig_number) +{ + struct names *nptr; + struct procs *pptr; + char head = 0; + char first = 1; + int len = 0; + struct passwd *pwent = NULL; + int have_match = 0; + + for (nptr = names_head; nptr != NULL ; nptr = nptr->next) { + if (opts & OPT_SILENT) { + have_match = nptr->matched_procs ? 1 : have_match; + } else { /* We're not silent */ + if (nptr->matched_procs != NULL || opts & OPT_ALLFILES) { + if (head == 0 && opts & OPT_VERBOSE) { + fprintf(stderr, _("%*s USER PID ACCESS COMMAND\n"), + NAME_FIELD, ""); + head = 1; + } + + fprintf(stderr, "%s:", nptr->filename); + len = strlen(nptr->filename) + 1; + } + + first = 1; + for (pptr = nptr->matched_procs; pptr != NULL ; pptr = pptr->next) { + have_match = 1; + if (opts & (OPT_VERBOSE|OPT_USER)) { + if (pwent == NULL || pwent->pw_uid != pptr->uid) + pwent = getpwuid(pptr->uid); + } + if (len > NAME_FIELD && (opts & OPT_VERBOSE)) { + putc('\n', stderr); + len=0; + } + if ((opts & OPT_VERBOSE) || first) + while (len++ < NAME_FIELD) + putc(' ', stderr); + if (opts & OPT_VERBOSE) { + if (pwent == NULL) + fprintf(stderr, " %-8s ", _("(unknown)")); + else + fprintf(stderr, " %-8s ", pwent->pw_name); + } + printf("%6d", pptr->pid); + fflush(stdout); + if (opts & OPT_VERBOSE) { + fprintf(stderr, " %c%c%c%c%c ", + pptr->access & ACCESS_FILE ? (pptr->access & ACCESS_FILEWR ? 'F' : 'f' ) : '.', + pptr->access & ACCESS_ROOT ? 'r' : '.', + pptr->access & ACCESS_CWD ? 'c' : '.', + pptr->access & ACCESS_EXE ? 'e' : '.', + (pptr->access & ACCESS_MMAP) && !(pptr->access & ACCESS_EXE) ? 'm' : '.'); + } else { + if (pptr->access & ACCESS_ROOT) + putc('r', stderr); + if (pptr->access & ACCESS_CWD) + putc('c', stderr); + if (pptr->access & ACCESS_EXE) + putc('e', stderr); + else if (pptr->access & ACCESS_MMAP) + putc('m', stderr); + } + if (opts & OPT_USER) { + if (pwent == NULL) + fprintf(stderr, " %-8s ", _("(unknown)")); + else + fprintf(stderr, "(%s)", pwent->pw_name); + } + if (opts & OPT_VERBOSE) { + if (pptr->command == NULL) + fprintf(stderr, "???\n"); + else + fprintf(stderr, "%s\n", pptr->command); + } + len = 0; + first = 0; + } + if (opts & OPT_VERBOSE) { + /* put a newline if showing all files and no procs*/ + if (nptr->matched_procs == NULL && (opts & OPT_ALLFILES)) + putc('\n', stderr); + } else { + if (nptr->matched_procs != NULL || (opts & OPT_ALLFILES)) + putc('\n', stderr); + } + } /* be silent */ + if (opts & OPT_KILL) + kill_matched_proc(nptr->matched_procs, opts, sig_number); + + } /* next name */ + return (have_match==1?0:1); + +} + +static struct stat *get_pidstat(const pid_t pid, const char *filename) +{ + char pathname[256]; + struct stat *st; + + if ( (st = malloc(sizeof(struct stat))) == NULL) + return NULL; + snprintf(pathname, 256, "/proc/%d/%s", pid, filename); + if (stat(pathname, st) != 0) + return NULL; + else + return st; +} + +static void check_dir(const pid_t pid, const char *dirname, struct device_list *dev_head, struct inode_list *ino_head, const uid_t uid, const char access) +{ + char *dirpath, *filepath; + DIR *dirp; + struct dirent *direntry; + struct inode_list *ino_tmp; + struct device_list *dev_tmp; + struct stat st, lst; + + if ( (dirpath = malloc(MAX_PATHNAME)) == NULL) + return; + if ( (filepath = malloc(MAX_PATHNAME)) == NULL) + return; + + snprintf(dirpath, MAX_PATHNAME, "/proc/%d/%s", pid, dirname); + if ( (dirp = opendir(dirpath)) == NULL) + return; + while ( (direntry = readdir(dirp)) != NULL) { + if (direntry->d_name[0] < '0' || direntry->d_name[0] > '9') + continue; + + snprintf(filepath, MAX_PATHNAME, "/proc/%d/%s/%s", + pid, dirname, direntry->d_name); + if (stat(filepath, &st) != 0) { + fprintf(stderr, _("Cannot stat file %s: %s\n"),filepath, strerror(errno)); + } else { + for (dev_tmp = dev_head ; dev_tmp != NULL ; dev_tmp = dev_tmp->next) { + if (st.st_dev == dev_tmp->device) { + if (access == ACCESS_FILE && (lstat(filepath, &lst)==0) && (lst.st_mode & S_IWUSR)) { + add_matched_proc(dev_tmp->name, pid,uid, ACCESS_FILEWR|access); + } else { + add_matched_proc(dev_tmp->name, pid,uid, access); + } + } + } + for (ino_tmp = ino_head ; ino_tmp != NULL ; ino_tmp = ino_tmp->next) { + if (st.st_dev == ino_tmp->device && st.st_ino == ino_tmp->inode) { + if (access == ACCESS_FILE && (lstat(filepath, &lst)==0) && (lst.st_mode & S_IWUSR)) { + add_matched_proc(ino_tmp->name, pid,uid, ACCESS_FILEWR|access); + } else { + add_matched_proc(ino_tmp->name, pid,uid, access); + } + } + } + } + } /* while fd_dent */ + closedir(dirp); +} + +static void check_map(const pid_t pid, const char *filename, struct device_list *dev_head, struct inode_list *ino_head, const uid_t uid, const char access) +{ + char pathname[MAX_PATHNAME]; + char line[BUFSIZ]; + struct inode_list *ino_tmp; + struct device_list *dev_tmp; + FILE *fp; + unsigned long long tmp_inode; + unsigned int tmp_maj, tmp_min; + dev_t tmp_device; + + snprintf(pathname, MAX_PATHNAME, "/proc/%d/%s", pid, filename); + if ( (fp = fopen(pathname, "r")) == NULL) + return; + while (fgets(line,BUFSIZ, fp)) { + if (sscanf(line, "%*s %*s %*s %x:%x %lld", + &tmp_maj, &tmp_min, &tmp_inode) == 3) { + tmp_device = tmp_maj * 256 + tmp_min; + for(dev_tmp = dev_head ; dev_tmp != NULL ; dev_tmp = dev_tmp->next) + if (dev_tmp->device == tmp_device) + add_matched_proc(dev_tmp->name, pid, uid, access); + for(ino_tmp = ino_head ; ino_tmp != NULL ; ino_tmp = ino_tmp->next) + if (ino_tmp->device == tmp_device && ino_tmp->inode == tmp_inode) + add_matched_proc(ino_tmp->name, pid, uid, access); + } + } + fclose(fp); +} + +static uid_t getpiduid(const pid_t pid) +{ + char pathname[MAX_PATHNAME]; + struct stat st; + + if (snprintf(pathname, MAX_PATHNAME, "/proc/%d", pid) < 0) + return 0; + if (stat(pathname, &st) != 0) + return 0; + return st.st_uid; +} + +void add_mount_device(struct mountdev_list **mount_head,const char *fsname, const char *dir, dev_t device) +{ + struct mountdev_list *newmount; + /*printf("Adding mount Path: %s Dir:%s dev:%0x\n",dir, fsname, device);*/ + + if ( (newmount = malloc(sizeof(struct mountdev_list))) == NULL) + return; + newmount->fsname = strdup(fsname); + newmount->dir = strdup(dir); + newmount->device = device; + newmount->next = *mount_head; + *mount_head = newmount; +} + +/* + * fill_unix_cache : Create a list of Unix sockets + * This list is used later for matching purposes + */ +void fill_unix_cache(struct unixsocket_list **unixsocket_head) +{ + FILE *fp; + char line[BUFSIZ]; + char *scanned_path; + int scanned_inode; + struct stat st; + struct unixsocket_list *newsocket; + + if ( (fp = fopen("/proc/net/unix","r")) == NULL) { + fprintf(stderr, _("Cannot open /proc/net/unix: %s\n"), + strerror(errno)); + return; + } + while (fgets(line, BUFSIZ, fp) != NULL) { + if (sscanf(line, "%*x: %*x %*x %*x %*x %*d %d %as", + &scanned_inode, + &scanned_path) != 2) + continue; + if (stat(scanned_path, &st) < 0) { + free(scanned_path); + continue; + } + if ( (newsocket = malloc(sizeof(struct unixsocket_list))) == NULL) + continue; + newsocket->sun_name = strdup(scanned_path); + newsocket->inode = st.st_ino; + newsocket->dev = st.st_dev; + newsocket->net_inode = scanned_inode; + newsocket->next = *unixsocket_head; + *unixsocket_head = newsocket; + } /* while */ + +} + +/* + * scan_mount_devices : Create a list of mount points and devices + * This list is used later for matching purposes + */ +void scan_mount_devices(const opt_type opts, struct mountdev_list **mount_devices) +{ + FILE *mntfp; + struct mntent *mnt_ptr; + struct stat st; + + if ( (mntfp = setmntent("/etc/mtab","r")) == NULL) { + fprintf(stderr, _("Cannot open /etc/mtab: %s\n"), + strerror(errno)); + return; + } + while ( (mnt_ptr = getmntent(mntfp)) != NULL) { + if (stat(mnt_ptr->mnt_dir, &st) == 0) { + add_mount_device(mount_devices, mnt_ptr->mnt_fsname, mnt_ptr->mnt_dir, st.st_dev); + } + } +} + +#ifdef DEBUG +/* often not used, doesnt need translation */ +static void debug_match_lists(struct names *names_head, struct inode_list *ino_head, struct device_list *dev_head) +{ + struct names *nptr; + struct inode_list *iptr; + struct device_list *dptr; + + fprintf(stderr,"Specified Names:\n"); + for (nptr=names_head; nptr!= NULL; nptr=nptr->next) + { + fprintf(stderr, "\t%s %c\n", nptr->filename, nptr->name_space); + } + fprintf(stderr,"\nInodes:\n"); + for (iptr=ino_head; iptr!=NULL; iptr=iptr->next) + { + fprintf(stderr, " Dev:%0lx Inode:(%0ld) 0x%0lx => %s\n", + (unsigned long)iptr->device, (unsigned long)iptr->inode, (unsigned long)iptr->inode, iptr->name->filename); + } + fprintf(stderr,"\nDevices:\n"); + for (dptr=dev_head; dptr!=NULL; dptr=dptr->next) + { + fprintf(stderr, "\tDev:%0lx\n", + (unsigned long)dptr->device); + } +} + +#endif + +/* 0 = no, 1=yes */ +static int ask(const pid_t pid) +{ + int res; + size_t len = 0; + char *line = NULL; + + fflush(stdout); + while(1) { + fprintf(stderr, _("Kill process %d ? (y/N) "), pid); + fflush(stderr); + if (getline(&line, &len, stdin) < 0) + return 0; + if (line[0] == '\n') { + free(line); + return 0; + } + res = rpmatch(line); + if (res >= 0) { + free(line); + return res; + } + } /* while */ +} + +static void kill_matched_proc(struct procs *proc_head, const opt_type opts, const int sig_number) +{ + struct procs *pptr; + + for (pptr = proc_head ; pptr != NULL ; pptr = pptr->next ) { + if ( (opts & OPT_INTERACTIVE) && (ask(pptr->pid) == 0)) + continue; + if ( kill (pptr->pid, sig_number) < 0) { + fprintf(stderr, _("Could not kill process %d: %s\n"), + pptr->pid, + strerror(errno) + ); + } + + } +} + +static dev_t find_net_dev(void) +{ + int skt; + struct stat st; + + if ( (skt = socket(PF_INET, SOCK_DGRAM, 0)) < 0) { + fprintf(stderr,_("Cannot open a network socket.\n")); + return -1; + } + if ( fstat(skt, &st) != 0) { + fprintf(stderr,_("Cannot find socket's device number.\n")); + close(skt); + return -1; + } + close(skt); + return st.st_dev; +} + +#ifdef NFS_CHECKS +static void scan_knfsd(struct names *names_head, struct device_list *dev_head) +{ + struct device_list *dev_tmp; + FILE *fp; + char line[BUFSIZ]; + char *find_space; + struct stat st; + + if ( (fp = fopen(KNFSD_EXPORTS, "r")) == NULL) { +#ifdef DEBUG + printf("Cannot open %s\n", KNFSD_EXPORTS); +#endif + return; + } + while (fgets(line, BUFSIZ, fp) != NULL) { + if (line[0] == '#') { continue; } + if ( (find_space=strpbrk(line," \t")) == NULL) { + continue; + } + *find_space = '\0'; + if ( stat(line, &st) != 0) { + printf("hello %s\n", line); + continue; + } + printf("looking for dev %0x\n", st.st_dev); + /* Scan the devices */ + for (dev_tmp = dev_head ; dev_tmp != NULL ; dev_tmp = dev_tmp->next) { + printf("dev %d\n", dev_tmp->device); + } + + } +} +#endif /* NFSCHECKS */ diff --git a/src/fuser.h b/src/fuser.h new file mode 100644 index 0000000..f15ba7e --- /dev/null +++ b/src/fuser.h @@ -0,0 +1,90 @@ + +/* Option Flags */ +typedef unsigned char opt_type; + +#define OPT_VERBOSE 1 +#define OPT_ALLFILES 2 +#define OPT_MOUNTS 4 +#define OPT_KILL 8 +#define OPT_INTERACTIVE 16 +#define OPT_SILENT 32 +#define OPT_USER 64 +#define OPT_MOUNTPOINT 128 + + +struct procs { + pid_t pid; + uid_t uid; + char access; + char *username; + char *command; + struct procs *next; +}; + +#define ACCESS_CWD 1 +#define ACCESS_EXE 2 +#define ACCESS_FILE 4 +#define ACCESS_ROOT 8 +#define ACCESS_MMAP 16 +#define ACCESS_FILEWR 32 + +struct names { + char *filename; + unsigned char name_space; + struct procs *matched_procs; + struct names *next; +}; + +struct ip_connections { + struct names *name; + unsigned long lcl_port; + unsigned long rmt_port; + struct in_addr rmt_address; + struct ip_connections *next; +}; + +struct ip6_connections { + struct names *name; + unsigned long lcl_port; + unsigned long rmt_port; + struct in6_addr rmt_address; + struct ip6_connections *next; +}; + +struct inode_list { + struct names *name; + dev_t device; + ino_t inode; + struct inode_list *next; +}; + +struct mountdev_list { + char *fsname; + char *dir; + dev_t device; + struct mountdev_list *next; +}; + + +struct device_list { + struct names *name; + dev_t device; + struct device_list *next; +}; + +struct unixsocket_list { + char *sun_name; + ino_t inode; + ino_t net_inode; + dev_t dev; + struct unixsocket_list *next; +}; + +#define NAMESPACE_FILE 0 +#define NAMESPACE_TCP 1 +#define NAMESPACE_UDP 2 + +#define MAX_PATHNAME 200 +#define MAX_CMDNAME 16 + +#define KNFSD_EXPORTS "/proc/fs/nfs/exports" diff --git a/src/i18n.h b/src/i18n.h new file mode 100644 index 0000000..a0b4439 --- /dev/null +++ b/src/i18n.h @@ -0,0 +1,26 @@ +/* i18n.h - common i18n declarations for psmisc programs. */ + +#ifndef I18N_H +#define I18N_H + +#ifdef HAVE_CONFIG_H +#include +#endif + +#ifdef ENABLE_NLS +#include +#include +#define _(String) gettext (String) +#else +#define _(String) (String) +#endif + +#endif + +#ifndef HAVE_RPMATCH +#define rpmatch(line) \ + ( (line == NULL)? -1 : \ + (*line == 'y' || *line == 'Y')? 1 : \ + (*line == 'n' || *line == 'N')? 0 : \ + -1 ) +#endif diff --git a/src/killall.c b/src/killall.c new file mode 100644 index 0000000..e9a47b7 --- /dev/null +++ b/src/killall.c @@ -0,0 +1,731 @@ +/* + * killall.c - kill processes by name or list PIDs + * + * Copyright (C) 1993-2002 Werner Almesberger + * Copyright (C) 2002-2007 Craig Small + * + * 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 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 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 + */ + + +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef WITH_SELINUX +#include +#endif /*WITH_SELINUX*/ + +#include "i18n.h" +#include "comm.h" +#include "signals.h" + + +#define PROC_BASE "/proc" +#define MAX_NAMES (int)(sizeof(unsigned long)*8) + + +static int verbose = 0, exact = 0, interactive = 0, reg = 0, + quiet = 0, wait_until_dead = 0, process_group = 0, + ignore_case = 0, pidof; + +static int +ask (char *name, pid_t pid, const int signal) +{ + int res; + size_t len; + char *line; + + line = NULL; + len = 0; + + do { + if (signal == SIGTERM) + printf (_("Kill %s(%s%d) ? (y/N) "), name, process_group ? "pgid " : "", + pid); + else + printf (_("Signal %s(%s%d) ? (y/N) "), name, process_group ? "pgid " : "", + pid); + + fflush (stdout); + + if (getline (&line, &len, stdin) < 0) + return 0; + /* Check for default */ + if (line[0] == '\n') { + free(line); + return 0; + } + res = rpmatch(line); + if (res >= 0) { + free(line); + return res; + } + } while(1); + /* Never should get here */ +} + +static int +match_process_uid(pid_t pid, uid_t uid) +{ + char buf[128]; + uid_t puid; + FILE *f; + int re = -1; + + snprintf (buf, sizeof buf, PROC_BASE "/%d/status", pid); + if (!(f = fopen (buf, "r"))) + return 0; + + while (fgets(buf, sizeof buf, f)) + { + if (sscanf (buf, "Uid:\t%d", &puid)) + { + re = uid==puid; + break; + } + } + fclose(f); + if (re==-1) + { + fprintf(stderr, _("Cannot get UID from process status\n")); + exit(1); + } + return re; +} + +static regex_t * +build_regexp_list(int names, char **namelist) +{ + int i; + regex_t *reglist; + int flag = REG_EXTENDED|REG_NOSUB; + + if (!(reglist = malloc (sizeof (regex_t) * names))) + { + perror ("malloc"); + exit (1); + } + + if (ignore_case) + flag |= REG_ICASE; + + for (i = 0; i < names; i++) + { + if (regcomp(®list[i], namelist[i], flag) != 0) + { + fprintf(stderr, _("Bad regular expression: %s\n"), namelist[i]); + exit (1); + } + } + return reglist; +} + +#ifdef WITH_SELINUX +static int +kill_all(int signal, int names, char **namelist, struct passwd *pwent, + regex_t *scontext ) +#else /*WITH_SELINUX*/ +static int +kill_all (int signal, int names, char **namelist, struct passwd *pwent) +#endif /*WITH_SELINUX*/ +{ + DIR *dir; + struct dirent *de; + FILE *file; + struct stat st, sts[MAX_NAMES]; + int *name_len = NULL; + char *path, comm[COMM_LEN]; + char *command_buf; + char *command; + pid_t *pid_table, pid, self, *pid_killed; + pid_t *pgids; + int i, j, okay, length, got_long, error; + int pids, max_pids, pids_killed; + unsigned long found; + regex_t *reglist = NULL;; +#ifdef WITH_SELINUX + security_context_t lcontext=NULL; +#endif /*WITH_SELINUX*/ + + if (names && reg) + reglist = build_regexp_list(names, namelist); + else if (names) + { + if (!(name_len = malloc (sizeof (int) * names))) + { + perror ("malloc"); + exit (1); + } + for (i = 0; i < names; i++) + { + if (!strchr (namelist[i], '/')) + { + sts[i].st_dev = 0; + name_len[i] = strlen (namelist[i]); + } + else if (stat (namelist[i], &sts[i]) < 0) + { + perror (namelist[i]); + exit (1); + } + } + } + self = getpid (); + found = 0; + if (!(dir = opendir (PROC_BASE))) + { + perror (PROC_BASE); + exit (1); + } + max_pids = 256; + pid_table = malloc (max_pids * sizeof (pid_t)); + if (!pid_table) + { + perror ("malloc"); + exit (1); + } + pids = 0; + while ( (de = readdir (dir)) != NULL) + { + if (!(pid = (pid_t) atoi (de->d_name)) || pid == self) + continue; + if (pids == max_pids) + { + if (!(pid_table = realloc (pid_table, 2 * pids * sizeof (pid_t)))) + { + perror ("realloc"); + exit (1); + } + max_pids *= 2; + } + pid_table[pids++] = pid; + } + (void) closedir (dir); + pids_killed = 0; + pid_killed = malloc (max_pids * sizeof (pid_t)); + if (!pid_killed) + { + perror ("malloc"); + exit (1); + } + if (!process_group) + pgids = NULL; /* silence gcc */ + else + { + pgids = malloc (pids * sizeof (pid_t)); + if (!pgids) + { + perror ("malloc"); + exit (1); + } + } + for (i = 0; i < pids; i++) + { + pid_t id; + int found_name = -1; + + /* match by UID */ + if (pwent && match_process_uid(pid_table[i], pwent->pw_uid)==0) + continue; +#ifdef WITH_SELINUX + /* match by SELinux context */ + if (scontext) + { + if (getpidcon(pid_table[i], &lcontext) < 0) + continue; + if (regexec(scontext, lcontext, 0, NULL, 0) != 0) { + freecon(lcontext); + continue; + } + freecon(lcontext); + } +#endif /*WITH_SELINUX*/ + /* load process name */ + if (asprintf (&path, PROC_BASE "/%d/stat", pid_table[i]) < 0) + continue; + if (!(file = fopen (path, "r"))) + { + free (path); + continue; + } + free (path); + okay = fscanf (file, "%*d (%15[^)]", comm) == 1; + (void) fclose (file); + if (!okay) + continue; + got_long = 0; + command = NULL; /* make gcc happy */ + length = strlen (comm); + if (length == COMM_LEN - 1) + { + if (asprintf (&path, PROC_BASE "/%d/cmdline", pid_table[i]) < 0) + continue; + if (!(file = fopen (path, "r"))) { + free (path); + continue; + } + free (path); + while (1) { + /* look for actual command so we skip over initial "sh" if any */ + char *p; + int cmd_size = 128; + command_buf = (char *)malloc (cmd_size); + if (!command_buf) + exit (1); + + /* 'cmdline' has arguments separated by nulls */ + for (p=command_buf; ; p++) { + int c; + if (p == (command_buf + cmd_size)) + { + int cur_size = cmd_size; + cmd_size *= 2; + command_buf = (char *)realloc(command_buf, cmd_size); + if (!command_buf) + exit (1); + p = command_buf + cur_size; + } + c = fgetc(file); + if (c == EOF || c == '\0') { + *p = '\0'; + break; + } else { + *p = c; + } + } + if (strlen(command_buf) == 0) { + okay = 0; + break; + } + p = strrchr(command_buf,'/'); + p = p ? p+1 : command_buf; + if (strncmp(p, comm, COMM_LEN-1) == 0) { + okay = 1; + command = p; + break; + } + } + (void) fclose(file); + if (exact && !okay) + { + if (verbose) + fprintf (stderr, _("skipping partial match %s(%d)\n"), comm, + pid_table[i]); + continue; + } + got_long = okay; + } + /* mach by process name */ + for (j = 0; j < names; j++) + { + if (reg) + { + if (regexec (®list[j], got_long ? command : comm, 0, NULL, 0) != 0) + continue; + } + else /* non-regex */ + { + if (!sts[j].st_dev) + { + if (length != COMM_LEN - 1 || name_len[j] < COMM_LEN - 1) + { + if (ignore_case == 1) + { + if (strcasecmp (namelist[j], comm)) + continue; + } + else + { + if (strcmp(namelist[j], comm)) + continue; + } + } + else if (got_long ? strcmp (namelist[j], command) : + strncmp (namelist[j], comm, COMM_LEN - 1)) + continue; + } + else + { + int ok = 1; + + if (asprintf (&path, PROC_BASE "/%d/exe", pid_table[i]) < 0) + continue; + + if (stat (path, &st) < 0) + ok = 0; + + else if (sts[j].st_dev != st.st_dev || + sts[j].st_ino != st.st_ino) + { + /* maybe the binary has been modified and std[j].st_ino + * is not reliable anymore. We need to compare paths. + */ + char linkbuf[PATH_MAX]; + + if (readlink(path, linkbuf, sizeof(linkbuf)) <= 0 || + strcmp(namelist[j], linkbuf)) + ok = 0; + } + + free(path); + if (!ok) + continue; + } + } /* non-regex */ + found_name = j; + break; + } + + if (names && found_name==-1) + continue; /* match by process name faild */ + + /* check for process group */ + if (!process_group) + id = pid_table[i]; + else + { + int j; + + id = getpgid (pid_table[i]); + pgids[i] = id; + if (id < 0) + { + fprintf (stderr, "getpgid(%d): %s\n", pid_table[i], + strerror (errno)); + } + for (j = 0; j < i; j++) + if (pgids[j] == id) + break; + if (j < i) + continue; + } + if (interactive && !ask (comm, id, signal)) + continue; + if (pidof) + { + if (found) + putchar (' '); + printf ("%d", id); + found |= 1 << (found_name >= 0 ? found_name : 0); + } + else if (kill (process_group ? -id : id, signal) >= 0) + { + if (verbose) + fprintf (stderr, _("Killed %s(%s%d) with signal %d\n"), got_long ? command : + comm, process_group ? "pgid " : "", id, signal); + if (found_name >= 0) + /* mark item of namelist */ + found |= 1 << found_name; + pid_killed[pids_killed++] = id; + } + else if (errno != ESRCH || interactive) + fprintf (stderr, "%s(%d): %s\n", got_long ? command : + comm, id, strerror (errno)); + } + if (!quiet && !pidof) + for (i = 0; i < names; i++) + if (!(found & (1 << i))) + fprintf (stderr, _("%s: no process killed\n"), namelist[i]); + if (pidof) + putchar ('\n'); + if (names) + /* killall returns a zero return code if at least one process has + * been killed for each listed command. */ + error = found == ((1 << (names - 1)) | ((1 << (names - 1)) - 1)) ? 0 : 1; + else + /* in nameless mode killall returns a zero return code if at least + * one process has killed */ + error = pids_killed ? 0 : 1; + /* + * We scan all (supposedly) killed processes every second to detect dead + * processes as soon as possible in order to limit problems of race with + * PID re-use. + */ + while (pids_killed && wait_until_dead) + { + for (i = 0; i < pids_killed;) + { + if (kill (process_group ? -pid_killed[i] : pid_killed[i], 0) < 0 && + errno == ESRCH) + { + pid_killed[i] = pid_killed[--pids_killed]; + continue; + } + i++; + } + sleep (1); /* wait a bit longer */ + } + return error; +} + + +static void +usage_pidof (void) +{ + fprintf (stderr, _( + "Usage: pidof [ -eg ] NAME...\n" + " pidof -V\n\n" + " -e require exact match for very long names;\n" + " skip if the command line is unavailable\n" + " -g show process group ID instead of process ID\n" + " -V display version information\n\n")); +} + + +static void +usage_killall (void) +{ +#ifdef WITH_SELINUX + fprintf(stderr, _( + "Usage: killall [-Z CONTEXT] [-u USER] [ -eIgiqrvw ] [ -SIGNAL ] NAME...\n")); +#else /*WITH_SELINUX*/ + fprintf(stderr, _( + "Usage: killall [OPTION]... [--] NAME...\n")); +#endif /*WITH_SELINUX*/ + fprintf(stderr, _( + " killall -l, --list\n" + " killall -V, --version\n\n" + " -e,--exact require exact match for very long names\n" + " -I,--ignore-case case insensitive process name match\n" + " -g,--process-group kill process group instead of process\n" + " -i,--interactive ask for confirmation before killing\n" + " -l,--list list all known signal names\n" + " -q,--quiet don't print complaints\n" + " -r,--regexp interpret NAME as an extended regular expression\n" + " -s,--signal SIGNAL send this signal instead of SIGTERM\n" + " -u,--user USER kill only process(es) running as USER\n" + " -v,--verbose report if the signal was successfully sent\n" + " -V,--version display version information\n" + " -w,--wait wait for processes to die\n")); +#ifdef WITH_SELINUX + fprintf(stderr, _( + " -Z,--context REGEXP kill only process(es) having context\n" + " (must precede other arguments)\n")); +#endif /*WITH_SELINUX*/ + fputc('\n', stderr); +} + + +static void +usage (void) +{ + if (pidof) + usage_pidof (); + else + usage_killall (); + exit (1); +} + +void print_version() +{ + fprintf(stderr, "%s (PSmisc) %s\n", pidof ? "pidof" : "killall", VERSION); + fprintf(stderr, _( + "Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n\n")); + fprintf(stderr, _( + "PSmisc comes with ABSOLUTELY NO WARRANTY.\n" + "This is free software, and you are welcome to redistribute it under\n" + "the terms of the GNU General Public License.\n" + "For more information about these matters, see the files named COPYING.\n")); +} + +int +main (int argc, char **argv) +{ + char *name; + int sig_num; + int optc; + int myoptind; + struct passwd *pwent = NULL; + struct stat isproc; + + //int optsig = 0; + + struct option options[] = { + {"exact", 0, NULL, 'e'}, + {"ignore-case", 0, NULL, 'I'}, + {"process-group", 0, NULL, 'g'}, + {"interactive", 0, NULL, 'i'}, + {"list-signals", 0, NULL, 'l'}, + {"quiet", 0, NULL, 'q'}, + {"regexp", 0, NULL, 'r'}, + {"signal", 1, NULL, 's'}, + {"user", 1, NULL, 'u'}, + {"verbose", 0, NULL, 'v'}, + {"wait", 0, NULL, 'w'}, +#ifdef WITH_SELINUX + {"context", 1, NULL, 'Z'}, +#endif /*WITH_SELINUX*/ + {"version", 0, NULL, 'V'}, + {0,0,0,0 }}; + + /* Setup the i18n */ +#ifdef ENABLE_NLS + setlocale(LC_ALL, ""); + bindtextdomain(PACKAGE, LOCALEDIR); + textdomain(PACKAGE); +#endif +#ifdef WITH_SELINUX + security_context_t scontext = NULL; + regex_t scontext_reg; + + if ( argc < 2 ) usage(); /* do the obvious thing... */ +#endif /*WITH_SELINUX*/ + + name = strrchr (*argv, '/'); + if (name) + name++; + else + name = *argv; + pidof = strcmp (name, "killall"); + sig_num = SIGTERM; + + + opterr = 0; +#ifdef WITH_SELINUX + while ( (optc = getopt_long_only(argc,argv,"egilqrs:u:vwZ:VI",options,NULL)) != EOF) { +#else + while ( (optc = getopt_long_only(argc,argv,"egilqrs:u:vwVI",options,NULL)) != EOF) { +#endif + switch (optc) { + case 'e': + exact = 1; + break; + case 'g': + process_group = 1; + break; + case 'i': + if (pidof) + usage(); + interactive = 1; + break; + case 'l': + if (pidof) + usage(); + list_signals(); + return 0; + break; + case 'q': + if (pidof) + usage(); + quiet = 1; + break; + case 'r': + if (pidof) + usage(); + reg = 1; + break; + case 's': + sig_num = get_signal (optarg, "killall"); + break; + case 'u': + if (pidof) + usage(); + if (!(pwent = getpwnam(optarg))) + { + fprintf (stderr, _("Cannot find user %s\n"), optarg); + exit (1); + } + break; + case 'v': + if (pidof) + usage(); + verbose = 1; + break; + case 'w': + if (pidof) + usage(); + wait_until_dead = 1; + break; + case 'I': + ignore_case = 1; + break; + case 'V': + print_version(); + return 0; + break; +#ifdef WITH_SELINUX + case 'Z': + if (is_selinux_enabled()>0) { + scontext=optarg; + if (regcomp(&scontext_reg, scontext, REG_EXTENDED|REG_NOSUB) != 0) { + fprintf(stderr, _("Bad regular expression: %s\n"), scontext); + exit (1); + } + } else + fprintf(stderr, "Warning: -Z (--context) ignored. Requires an SELinux enabled kernel\n"); + break; +#endif /*WITH_SELINUX*/ + case '?': + /* Signal names are in uppercase, so check to see if the argv + * is upper case */ + if (argv[optind-1][1] >= 'A' && argv[optind-1][1] <= 'Z') { + sig_num = get_signal (argv[optind-1]+1, "killall"); + } else { + /* Might also be a -## signal too */ + if (argv[optind-1][1] >= '0' && argv[optind-1][1] <= '9') { + sig_num = atoi(argv[optind-1]+1); + } else { + usage(); + } + } + break; + } + } + myoptind = optind; +#ifdef WITH_SELINUX + if ((argc - myoptind < 1) && pwent==NULL && scontext==NULL) +#else + if ((argc - myoptind < 1) && pwent==NULL) +#endif + usage(); + + if (argc - myoptind > MAX_NAMES + 1) + { + fprintf (stderr, _("Maximum number of names is %d\n"), MAX_NAMES); + exit (1); + } + if (stat("/proc/self/stat", &isproc)==-1) + { + fprintf (stderr, _("%s is empty (not mounted ?)\n"), PROC_BASE); + exit (1); + } + argv = argv + myoptind; + /*printf("sending signal %d to procs\n", sig_num);*/ +#ifdef WITH_SELINUX + return kill_all(sig_num,argc - myoptind, argv, pwent, + scontext ? &scontext_reg : NULL); +#else /*WITH_SELINUX*/ + return kill_all(sig_num,argc - myoptind, argv, pwent); +#endif /*WITH_SELINUX*/ +} diff --git a/src/loop.h b/src/loop.h new file mode 100644 index 0000000..1bd7fa8 --- /dev/null +++ b/src/loop.h @@ -0,0 +1,37 @@ +/* + * include/linux/loop.h + * + * Written by Theodore Ts'o, 3/29/93. + * + * Copyright 1993 by Theodore Ts'o. Redistribution of this file is + * permitted under the GNU Public License. + */ + +#define LO_NAME_SIZE 64 +#define LO_KEY_SIZE 32 + +struct loop_info { + int lo_number; /* ioctl r/o */ + dev_t lo_device; /* ioctl r/o */ + unsigned long lo_inode; /* ioctl r/o */ + dev_t lo_rdevice; /* ioctl r/o */ + int lo_offset; + int lo_encrypt_type; + int lo_encrypt_key_size; /* ioctl w/o */ + int lo_flags; /* ioctl r/o */ + char lo_name[LO_NAME_SIZE]; + unsigned char lo_encrypt_key[LO_KEY_SIZE]; /* ioctl w/o */ + unsigned long lo_init[2]; + char reserved[4]; +}; + +#define LO_CRYPT_NONE 0 +#define LO_CRYPT_XOR 1 +#define LO_CRYPT_DES 2 +#define LO_CRYPT_IDEA 3 +#define MAX_LO_CRYPT 4 + +#define LOOP_SET_FD 0x4C00 +#define LOOP_CLR_FD 0x4C01 +#define LOOP_SET_STATUS 0x4C02 +#define LOOP_GET_STATUS 0x4C03 diff --git a/src/oldfuser.c b/src/oldfuser.c new file mode 100644 index 0000000..acf07d9 --- /dev/null +++ b/src/oldfuser.c @@ -0,0 +1,1229 @@ +/* + * fuser.c - identify processes using files + * + * Copyright (C) 1993-2002 Werner Almesberger + * Copyright (C) 2002-2005 Craig Small + * + * 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 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 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 + */ +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#ifdef __linux__ +#include /* for MKDEV */ +#include /* for LOOP_MAJOR */ +#endif +#include + +#include "i18n.h" +#include "comm.h" +#include "loop.h" /* for loop_info */ +#include "signals.h" + + +#define PROC_BASE "/proc" +#define UID_UNKNOWN -1 +#define NAME_FIELD 20 /* space reserved for file name */ + +#define MAX_LINE 256 /* longest line we may ever find in /proc */ + + +#ifndef LOOP_MAJOR /* don't count on the headers too much ... */ +#define LOOP_MAJOR 7 +#endif + +#ifndef MAJOR +#define MAJOR(arg) 6 /* something that doesn't = LOOP_MAJOR */ +#endif + +#ifndef MKDEV +#define MKDEV(arg1, arg2) mknod("/dev/Isuck", arg1, arg2) /* this is wrong */ +#endif + + +#define REF_FILE 1 /* an open file */ +#define REF_ROOT 2 /* current root */ +#define REF_CWD 4 /* current directory */ +#define REF_EXE 8 /* executable */ +#define REF_MMAP 16 /* mmap'ed file or library */ + +#define FLAG_KILL 1 /* kill process */ +#define FLAG_UID 2 /* show uid */ +#define FLAG_VERB 4 /* show verbose output */ +#define FLAG_DEV 8 /* show all processes using this device */ +#define FLAG_ASK 16 /* ask before killing a process */ + + +typedef struct _net_cache +{ + struct sockaddr_storage rmt_addr; + int lcl_port; + int rmt_port; + ino_t ino; + struct _net_cache *next; +} +NET_CACHE; + +typedef struct _unix_cache +{ + dev_t fs_dev; + ino_t fs_ino; + ino_t net_ino; + struct _unix_cache *next; +} +UNIX_CACHE; + +typedef struct +{ + const char *name; + NET_CACHE *cache; + int once; +} +SPACE_DSC; + +typedef enum +{ it_proc, it_mount, it_loop, it_swap } +ITEM_TYPE; + +typedef struct item_dsc +{ + ITEM_TYPE type; + union + { + struct + { + pid_t pid; + int uid; /* must also accept UID_UNKNOWN */ + int ref_set; + } + proc; + struct + { + const char *path; + } + misc; + } + u; + struct item_dsc *next; +} +ITEM_DSC; + +typedef struct file_dsc +{ + const char *name; /* NULL if previous entry has name */ + dev_t dev; + ino_t ino; + int flags, sig_num; + SPACE_DSC *name_space; /* or NULL if no indication */ + ITEM_DSC *items; + struct file_dsc *named, *next; +} +FILE_DSC; + +static SPACE_DSC name_spaces[] = { + {"file", NULL, 0}, /* must be first */ + {"tcp", NULL, 0}, + {"udp", NULL, 0}, + {NULL, NULL, 0} +}; + + +static FILE_DSC *files = NULL; +static FILE_DSC *last_named = NULL; +static UNIX_CACHE *unix_cache = NULL; +static pid_t self; +static int all = 0, found_item = 0; +static dev_t net_dev; +static int ipv4only = 0, ipv6only = 0; + + +static void +parse_net_file (SPACE_DSC * dsc,char *filename, NET_CACHE **lastptr,int version ) +{ + FILE *file; + NET_CACHE *new, *last; + char line[MAX_LINE + 1]; + char rmt_addr[128]; + char addr6[128]; + unsigned long tmp_ino; + + if (!(file = fopen (filename, "r"))) + { + perror (filename); + exit (1); + } + last = *lastptr; + (void) fgets (line, MAX_LINE, file); + while (fgets (line, MAX_LINE, file)) + { + new = malloc (sizeof (NET_CACHE)); + if (!new) + { + perror ("malloc"); + exit (1); + } + if (sscanf (line, + "%*d: %*x:%x %64[0-9A-Fa-f]:%x %*x %*x:%*x %*x:%*x %*x %*d %*d %lu", + &new->lcl_port, rmt_addr, &new->rmt_port, &tmp_ino) != 4) + { + free (new); + continue; + } + new->ino = tmp_ino; + if (strlen(rmt_addr) > 8) { + sscanf(rmt_addr, "%08X%08X%08X%08X", + &((struct sockaddr_in6 *)&new->rmt_addr)->sin6_addr.s6_addr32[0], + &((struct sockaddr_in6 *)&new->rmt_addr)->sin6_addr.s6_addr32[1], + &((struct sockaddr_in6 *)&new->rmt_addr)->sin6_addr.s6_addr32[2], + &((struct sockaddr_in6 *)&new->rmt_addr)->sin6_addr.s6_addr32[3]); + inet_ntop(AF_INET6, &((struct sockaddr_in6 *)&new->rmt_addr)->sin6_addr, addr6, sizeof(addr6)); + } else { + sscanf(rmt_addr, "%X", + &((struct sockaddr_in *) &new->rmt_addr)->sin_addr.s_addr); + ((struct sockaddr *) &new->rmt_addr)->sa_family = AF_INET; + } + if (!new->ino) + { + free (new); + continue; + } + new->next = NULL; + if (last) + last->next = new; + else + dsc->cache = new; + last = new; + } + (void) fclose (file); + *lastptr = last; + +} + +static void +fill_net_cache (SPACE_DSC * dsc) +{ + NET_CACHE *last; + struct stat statbuf; + char *buffer = malloc (strlen (PROC_BASE) + strlen (dsc->name) + 8); + if (!buffer) + return; + + if (dsc->once) + return; + dsc->once = 1; + last = NULL; + + /* Check to see if we have both namespace files, if we don't then silently + * not use them if not flags are specified and complain if the flags + * were specified. + */ + + if (!ipv6only) { + sprintf (buffer, PROC_BASE "/net/%s", dsc->name); + if (stat(buffer, &statbuf) != 0) { + if (ipv4only) + fprintf(stderr, _("-4 flag used but proc file %s is not readable\n"), buffer); + } else { + parse_net_file (dsc, buffer, &last,4 ); + } + } + if (!ipv4only) { + sprintf (buffer, PROC_BASE "/net/%s6", dsc->name); + if (stat(buffer, &statbuf) != 0) { + if (ipv6only) + fprintf(stderr, _("-6 flag used but proc file %s is not readable\n"), buffer); + } else { + parse_net_file (dsc, buffer, &last,6 ); + } + } +} + + +static void +fill_unix_cache (void) +{ + static int once; + FILE *file; + UNIX_CACHE *new, *last; + struct stat st; + char *path = NULL, line[MAX_LINE + 1]; + int ino; + + if (once) + return; + once = 1; + if (!(file = fopen (PROC_BASE "/net/unix", "r"))) + { + perror (PROC_BASE "/net/unix"); + exit (1); + } + last = NULL; + (void) fgets (line, MAX_LINE, file); + while (fgets (line, MAX_LINE, file)) + { + if (sscanf (line, "%*x: %*x %*x %*x %*x %*x %d %as", &ino, &path) != 2) + continue; + if (stat (path, &st) < 0) { + free (path); + continue; + } + free (path); + + new = malloc (sizeof (UNIX_CACHE)); + new->fs_dev = st.st_dev; + new->fs_ino = st.st_ino; + new->net_ino = ino; + new->next = NULL; + if (last) + last->next = new; + else + unix_cache = new; + last = new; + } + (void) fclose (file); + +} + + +static unsigned long +try_to_find_unix_dev (ino_t inode) +{ + UNIX_CACHE *walk; + + for (walk = unix_cache; walk; walk = walk->next) + if (walk->net_ino == inode) + return walk->fs_dev; + return 0; +} + + +static void +add_file (const char *path, dev_t device, ino_t inode, + pid_t pid, int ref) +{ + struct stat st; + FILE_DSC *file, *next; + ITEM_DSC **item, *this; + dev_t mount_dev; + + if (device) + mount_dev = device; + else + mount_dev = try_to_find_unix_dev (inode); + for (file = files; file; file = next) + { + next = file->next; + if (file->flags & FLAG_DEV ? mount_dev && mount_dev == file->dev : + device == file->dev && inode == file->ino) + { + if (!file->name) + file = file->named; + for (item = &file->items; *item; item = &(*item)->next) + if ((*item)->type == it_proc && (*item)->u.proc.pid >= pid) + break; + if (*item && (*item)->u.proc.pid == pid) + this = *item; + else + { + if (!(this = malloc (sizeof (ITEM_DSC)))) + { + perror ("malloc"); + exit (1); + } + this->type = it_proc; + this->u.proc.pid = pid; + this->u.proc.uid = UID_UNKNOWN; + this->u.proc.ref_set = 0; + this->next = *item; + *item = this; + found_item = 1; + } + this->u.proc.ref_set |= ref; + if ((file->flags & (FLAG_UID | FLAG_VERB)) && this->u.proc.uid == + UID_UNKNOWN && lstat (path, &st) >= 0) + this->u.proc.uid = st.st_uid; + } + } +} + + +static void +add_other (ITEM_TYPE type, dev_t mount_dev, + dev_t device, ino_t inode, const char *path) +{ + FILE_DSC *file, *next; + ITEM_DSC **item, *this; + + for (file = files; file; file = next) + { + next = file->next; + if (file->flags & FLAG_DEV ? mount_dev == file->dev : + device == file->dev && inode == file->ino) + { + if (!file->name) + file = file->named; + for (item = &file->items; *item; item = &(*item)->next); + /* there's no easy way to suppress duplicates, so we don't */ + if (!(this = malloc (sizeof (ITEM_DSC)))) + { + perror ("malloc"); + exit (1); + } + this->type = type; + if (!(this->u.misc.path = strdup (path))) + { + perror ("strdup"); + exit (1); + } + this->next = *item; + *item = this; + found_item = 1; + } + } +} + + +static void +check_link (const char *path, pid_t pid, int type) +{ + struct stat st; + + if (stat (path, &st) >= 0) + add_file (path, st.st_dev, st.st_ino, pid, type); +} + + +static void +check_map (const char *rel, pid_t pid, int type) +{ + FILE *file; + char line[MAX_LINE + 1]; + int major, minor; + ino_t inode; + unsigned long long tmp_inode; + + if (!(file = fopen (rel, "r"))) + return; + while (fgets (line, MAX_LINE, file)) + { + if (sscanf (line, "%*s %*s %*s %x:%x %lld", &major, &minor, &tmp_inode) != 3) + continue; + if (major || minor || tmp_inode) { + inode = (ino_t)(tmp_inode); + add_file (rel, MKDEV (major, minor), inode, pid, type); + } + } + fclose (file); +} + + +static void +check_dir (const char *rel, pid_t pid, int type) +{ + DIR *dir; + struct dirent *de; + char *path; + + if (!(dir = opendir (rel))) + return; + while ((de = readdir (dir)) != NULL) + if (strcmp (de->d_name, ".") && strcmp (de->d_name, "..")) + { + asprintf (&path, "%s/%s", rel, de->d_name); + check_link (path, pid, type); + free (path); + } + (void) closedir (dir); +} + + +static void +scan_fd (void) +{ + DIR *dir; + struct dirent *de; + char *path; + pid_t pid; + int empty; + + if (!(dir = opendir (PROC_BASE))) + { + perror (PROC_BASE); + exit (1); + } + empty = 1; + while ((de = readdir (dir)) != NULL) + if ((pid = (pid_t)atoi (de->d_name)) != 0) + { + empty = 0; + if (asprintf (&path, "%s/%d", PROC_BASE, pid) < 0) + continue; + if (chdir (path) >= 0) + { + check_link ("root", pid, REF_ROOT); + check_link ("cwd", pid, REF_CWD); + check_link ("exe", pid, REF_EXE); + check_dir ("lib", pid, REF_MMAP); + check_dir ("mmap", pid, REF_MMAP); + check_map ("maps", pid, REF_MMAP); + check_dir ("fd", pid, REF_FILE); + } + free (path); + } + (void) closedir (dir); + if (empty) + { + fprintf (stderr, _("%s is empty (not mounted ?)\n"),PROC_BASE); + exit (1); + } +} + + +static void +scan_mounts (void) +{ + FILE *file; + struct stat st_dev, st_parent, st_mounted; + char line[MAX_LINE + 1], *path = NULL, *mounted = NULL; + char *end; + + if (!(file = fopen (PROC_BASE "/mounts", "r"))) + return; /* old kernel */ + while (fgets (line, MAX_LINE, file)) + { + if (sscanf (line, "%as %as", &path, &mounted) != 2) + continue; + if ( stat (path, &st_dev) == 0) { + if (S_ISBLK (st_dev.st_mode) && MAJOR (st_dev.st_rdev) == LOOP_MAJOR) { + struct loop_info loopinfo; + int fd; + + if ((fd = open(path, O_RDWR)) > 0) { + if (ioctl(fd, LOOP_GET_STATUS, &loopinfo) >= 0) { + add_other(it_loop,loopinfo.lo_device,loopinfo.lo_device,loopinfo.lo_inode,path); + } + (void) close(fd); + } + } + } + if (stat (mounted, &st_mounted) < 0) + { + free (path); + free (mounted); + continue; + } + if (asprintf (&end, "%s/..", mounted) < 0) + { + free (path); + free (mounted); + continue; + } + + if (stat (end, &st_parent) >= 0) + { + add_other (it_mount, st_parent.st_dev, st_mounted.st_dev, + st_mounted.st_ino, mounted); + } + free (end); + free (path); + free (mounted); + } + (void) fclose (file); +} + + +static void +scan_swaps (void) +{ + FILE *file; + struct stat st; + char line[MAX_LINE + 1], *path, type[MAX_LINE + 1]; + + if (!(file = fopen (PROC_BASE "/swaps", "r"))) + return; /* old kernel */ + (void) fgets (line, MAX_LINE, file); + while (fgets (line, MAX_LINE, file)) + { + if (sscanf (line, "%as %s", &path, type) != 2) + continue; /* new kernel :-) */ + if (strcmp (type, "file")) { + free (path); + continue; + } + if (stat (path, &st) >= 0) + add_other (it_swap, st.st_dev, st.st_dev, st.st_ino, path); + free (path); + } + (void) fclose (file); +} + + +static int +ask (pid_t pid) +{ + int res; + size_t len; + char *line; + + line = NULL; + len = 0; + + fflush (stdout); + do { + fprintf (stderr, _("Kill process %d ? (y/N) "), pid); + fflush (stderr); + + if (getline (&line, &len, stdin) < 0) + return 0; + /* Check for default */ + if (line[0] == '\n') { + free(line); + return 0; + } + res = rpmatch(line); + if (res >= 0) { + free(line); + return res; + } + } while(1); + /* Never should get here */ + return 0; +} + +static void +kill_item (const FILE_DSC * file, const ITEM_DSC * item) +{ + char tmp[10]; + + switch (item->type) + { + case it_proc: + if (item->u.proc.pid == self) + return; + if ((file->flags & FLAG_ASK) && !ask (item->u.proc.pid)) + return; + if (kill (item->u.proc.pid, file->sig_num) >= 0) + break; + sprintf (tmp, _("kill %d"), item->u.proc.pid); + perror (tmp); + break; + case it_mount: + fprintf (stderr, _("No automatic removal. Please use umount %s\n"), + item->u.misc.path); + break; + case it_loop: + fprintf (stderr, _("No automatic removal. Please use umount %s\n"), + item->u.misc.path); + break; + case it_swap: + fprintf (stderr, _("No automatic removal. Please use swapoff %s\n"), + file->name); + break; + } +} + + +static void +show_files_or_kill (void) +{ + const FILE_DSC *file; + const ITEM_DSC *item; + FILE *f; + const struct passwd *pw; + const char *user, *scan; + char tmp[10], *path, comm[COMM_LEN + 1]; + int length, header, first, dummy, last_namelen = 0; + header = 1; + for (file = files; file; file = file->next) + if (file->name && (file->items || all)) + { + if (header && (file->flags & FLAG_VERB)) + { + fprintf (stderr, _("\n%*s USER PID ACCESS COMMAND\n"), + NAME_FIELD, ""); + header = 0; + } + length = 0; + for (scan = file->name; scan && *scan; scan++) + if (*scan == '\\') + length += fprintf (stderr, "\\\\"); + else if (*scan > ' ' && *scan <= '~') + { + putc(*scan,stderr); + length++; + } + else + length += fprintf (stderr, "\\%03o", *scan); + if (file->name_space) + length += fprintf (stderr, "/%s", file->name_space->name); + + if (length > 0) + last_namelen=length; + else + fprintf(stderr, "\n%*.*s",last_namelen,last_namelen," "); + + if (!(file->flags & FLAG_VERB)) + { + putc (':',stderr); + length++; + } + + first = 1; + for (item = file->items; item; item = item->next) + { + if (!(file->flags & FLAG_VERB)) + { + if (item->type != it_proc) + continue; + if ((first==1) && (item->u.proc.ref_set & (REF_FILE|REF_ROOT|REF_CWD|REF_EXE|REF_MMAP))) { + while (length < NAME_FIELD) + { + putc(' ',stderr); + length++; + } + } + printf ("%6d", item->u.proc.pid); + fflush(stdout); + /* if (item->u.proc.ref_set & REF_FILE)*/ + if (item->u.proc.ref_set & REF_ROOT) + putc ('r', stderr); + if (item->u.proc.ref_set & REF_CWD) + putc ('c', stderr); + if (item->u.proc.ref_set & REF_EXE) + putc ('e', stderr); + else if (item->u.proc.ref_set & REF_MMAP) + putc ('m', stderr); + if ((file->flags & FLAG_UID) && item->u.proc.uid != + UID_UNKNOWN) + { + if ((pw = getpwuid (item->u.proc.uid)) != NULL) { + fprintf (stderr, "(%s)", pw->pw_name); + } else { + fprintf (stderr, "(%d)", item->u.proc.uid); + } + } + first = 0; + } + else + { + const char *name; + int uid; + + switch (item->type) + { + case it_proc: + asprintf (&path, PROC_BASE "/%d/stat", item->u.proc.pid); + strcpy (comm, "???"); + if ((f = fopen (path, "r")) != NULL) + { + (void) fscanf (f, "%d (%[^)]", &dummy, comm); + (void) fclose (f); + } + free (path); + name = comm; + uid = item->u.proc.uid; + break; + case it_mount: + case it_loop: + case it_swap: + name = item->u.misc.path; + uid = 0; + break; + default: + fprintf (stderr, _("Internal error (type %d)\n"), + item->type); + exit (1); + } + if (uid == UID_UNKNOWN) + user = "???"; + else if ((pw = getpwuid (uid)) != NULL) + user = pw->pw_name; + else + { + sprintf (tmp, "%d", uid); + user = tmp; + } + if (!first) + fprintf (stderr, "%*s", NAME_FIELD, ""); + else if (length > NAME_FIELD) + fprintf (stderr, "\n%*s", NAME_FIELD, ""); + else + while (length < NAME_FIELD) + { + putc(' ', stderr); + length++; + } + fprintf (stderr, " %-8s ", user); + switch (item->type) + { + case it_proc: + printf ("%6d", item->u.proc.pid); + fflush(stdout); + fprintf (stderr, " %c%c%c%c%c ", + item->u.proc.ref_set & REF_FILE ? 'f' : '.', + item->u.proc.ref_set & REF_ROOT ? 'r' : '.', + item->u.proc.ref_set & REF_CWD ? 'c' : '.', + item->u.proc.ref_set & REF_EXE ? 'e' : '.', + (item->u.proc.ref_set & REF_MMAP) && + !(item->u.proc.ref_set & REF_EXE) ? 'm' : '.'); + break; + case it_mount: + fprintf (stderr, _("kernel mount ")); + break; + case it_loop: + fprintf (stderr, _("kernel loop ")); + break; + case it_swap: + fprintf (stderr, _("kernel swap ")); + break; + } + if (name) + { + for (scan = name; *scan; scan++) + if (*scan == '\\') + fprintf (stderr, "\\\\"); + else if (*scan > ' ' && *scan <= '~') + putc (*scan,stderr); + else + fprintf (stderr, "\\%03o", (unsigned char) *scan); + } + putc ('\n',stderr); + } + first = 0; + } + if (!(file->flags & FLAG_VERB) || first) + putc('\n',stderr); + if (file->flags & FLAG_KILL) + for (item = file->items; item; item = item->next) + kill_item (file, item); + } +} + + +static void +kill_files (void) +{ + const FILE_DSC *file; + const ITEM_DSC *item; + + for (file = files; file; file = file->next) + if (file->flags & FLAG_KILL) + for (item = file->items; item; item = item->next) + kill_item (file, item); +} + + +static void +enter_item (const char *name, int flags, int sig_number, dev_t dev, + ino_t ino, SPACE_DSC * name_space) +{ + static FILE_DSC *last = NULL; + FILE_DSC *new; + + if (!(new = malloc (sizeof (FILE_DSC)))) + { + perror ("malloc"); + exit (1); + } + if (last_named && !strcmp (last_named->name, name) && + last_named->name_space == name_space) + new->name = NULL; + else if (!(new->name = strdup (name))) + { + perror ("strdup"); + exit (1); + } + new->flags = flags; + new->sig_num = sig_number; + new->items = NULL; + new->next = NULL; + new->dev = dev; + new->ino = ino; + new->name_space = name_space; + if (last) + last->next = new; + else + files = new; + last = new; + new->named = last_named; + if (new->name) + last_named = new; +} + + +static int +parse_inet (const char *spec, const char *name_space, int *lcl_port, + struct sockaddr_storage *rmt_addr, int *rmt_port) +{ + char *s, *here, *next, *end; + int port, field, address_match; + + if (!(s = strdup (spec))) + { + perror ("strdup"); + exit (1); + } + *lcl_port = *rmt_port = -1; + memset(rmt_addr, 0, sizeof(struct sockaddr_storage)); + field = 0; + address_match = 0; + for (here = s; here; here = next ? next + 1 : NULL) + { + next = strchr (here, ','); + if (next) + *next = 0; + switch (field) + { + case 0: + /* fall through */ + case 2: + if (!*here) + break; + port = strtoul (here, &end, 0); + if (*end) + { + struct servent *se; + + if (!(se = getservbyname (here, name_space))) + return 0; + port = ntohs (se->s_port); + } + if (field) + *rmt_port = port; + else + *lcl_port = port; + break; + case 1: + if (!*here) + break; + if (!ipv4only) { + + if (inet_pton(AF_INET6, here, &((struct sockaddr_in6*)rmt_addr)->sin6_addr) > 0) { + address_match = 1; + rmt_addr->ss_family = AF_INET6; + } + } + if (!ipv6only && !address_match) { + if (inet_pton(AF_INET, here, &((struct sockaddr_in*)rmt_addr)->sin_addr) > 0) { + address_match = 1; + rmt_addr->ss_family = AF_INET6; + } + } + + break; + default: + return 0; + } + field++; + } + return 1; +} + +static void find_net_dev(void) +{ + int fd = socket(PF_INET, SOCK_DGRAM,0); + struct stat buf; + if (fd >= 0 && fstat(fd, &buf) == 0) { + net_dev = buf.st_dev; + close(fd); + return; + } + if (fd >= 0) + close(fd); + fprintf(stderr,_("can't find sockets' device number")); +} + + + +static void +usage (void) +{ + fprintf (stderr, _( + "Usage: fuser [ -a | -s | -c ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" + " [ - ] [ -n SPACE ] [ -SIGNAL ] [ -kimuv ] NAME...\n" + " fuser -l\n" + " fuser -V\n" + "Show which processes use the named files, sockets, or filesystems.\n\n " + " -a display unused files too\n" + " -c mounted FS\n" + " -f silently ignored (for POSIX compatibility)\n" + " -i ask before killing (ignored without -k)\n" + " -k kill processes accessing the named file\n" + " -l list available signal names\n" + " -m show all processes using the named filesystems\n" + " -n SPACE search in this name space (file, udp, or tcp)\n" + " -s silent operation\n" + " -SIGNAL send this signal instead of SIGKILL\n" + " -u display user IDs\n" + " -v verbose output\n" + " -V display version information\n" + " -4 search IPv4 sockets only\n" + " -6 search IPv6 sockets only\n" + " - reset options\n\n" + " udp/tcp names: [local_port][,[rmt_host][,[rmt_port]]]\n\n")); + exit (1); +} + +void print_version() +{ + fprintf(stderr, _("fuser (PSmisc) %s\n"), VERSION); + fprintf(stderr, _( + "Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n\n")); + fprintf(stderr, _( + "PSmisc comes with ABSOLUTELY NO WARRANTY.\n" + "This is free software, and you are welcome to redistribute it under\n" + "the terms of the GNU General Public License.\n" + "For more information about these matters, see the files named COPYING.\n")); +} + + + +int +main (int argc, char **argv) +{ + SPACE_DSC *name_space; + int flags, silent, do_kill, sig_number, no_files; + + flags = silent = do_kill = 0; + sig_number = SIGKILL; + name_space = name_spaces; + no_files = 1; + + /* Setup the i18n */ +#ifdef ENABLE_NLS + setlocale(LC_ALL, ""); + bindtextdomain(PACKAGE, LOCALEDIR); + textdomain(PACKAGE); +#endif + + if (argc < 2) + usage (); + if (argc == 2 && !strcmp (argv[1], "-l")) + { + list_signals (); + return 0; + } + find_net_dev(); + while (--argc) + { + argv++; + if (**argv == '-') + if (!argv[0][1]) + { + flags = 0; + sig_number = SIGKILL; + } + else + while (*++*argv) + { + int end; + + end = 0; + switch (**argv) + { + case 'a': + all = 1; + break; + case 'f': + break; + case 'k': + flags |= FLAG_KILL; + do_kill = 1; + break; + case 'i': + flags |= FLAG_ASK; + break; + case 'm': + case 'c': + flags |= FLAG_DEV; + break; + case 'n': + if (!--argc) + usage (); + argv++; + for (name_space = name_spaces; name_space->name; + name_space++) + if (!strcmp (*argv, name_space->name)) + break; + if (!name_space->name) + usage (); + end = 1; + break; + case 's': + silent = 1; + break; + case 'u': + flags |= FLAG_UID; + break; + case 'v': + flags |= FLAG_VERB; + break; + case 'V': + print_version(); + return 0; + case '4': + if (ipv6only) + usage(); + ipv4only = 1; + break; + case '6': + if (ipv4only) + usage(); + ipv6only = 1; + break; + default: + if (isupper (**argv) || isdigit (**argv)) + { + sig_number = get_signal (*argv, "fuser"); + argv[0][1] = 0; + break; + } + usage (); + } + if (end) + break; + } + else + { + SPACE_DSC *this_name_space; + struct stat st; + char *here; + + no_files = 0; + last_named = NULL; + this_name_space = name_space; + if (name_space != name_spaces || stat (*argv, &st) < 0) + { + here = strchr (*argv, '/'); + if (here && here != *argv) + { + for (this_name_space = name_spaces; this_name_space->name; + this_name_space++) + if (!strcmp (here + 1, this_name_space->name)) + { + *here = 0; + break; + } + if (!this_name_space->name) + this_name_space = name_spaces; + } + } + if (this_name_space == name_spaces) + { + if (stat (*argv, &st) < 0) + { + perror (*argv); + continue; + } + if (flags & FLAG_DEV) + { + if (S_ISBLK (st.st_mode)) + st.st_dev = st.st_rdev; + else if (S_ISDIR (st.st_mode)) + { + if (stat (*argv, &st) < 0) + { + perror (*argv); + continue; + } + } + } + if (S_ISSOCK (st.st_mode) || (flags & FLAG_DEV)) + fill_unix_cache (); + if (!S_ISSOCK (st.st_mode) || (flags & FLAG_DEV)) + enter_item (*argv, flags, sig_number, st.st_dev, st.st_ino, + NULL); + else + { + UNIX_CACHE *walk; + + for (walk = unix_cache; walk; walk = walk->next) + if (walk->fs_dev == st.st_dev && walk->fs_ino == + st.st_ino) + enter_item (*argv, flags, sig_number, net_dev, + walk->net_ino, NULL); + } + } + else + { + NET_CACHE *walk; + struct sockaddr_storage rmt_addr; + int lcl_port, rmt_port; + + if (flags & FLAG_DEV) + { + fprintf (stderr, _("ignoring -m in name space \"%s\"\n"), + this_name_space->name); + flags &= ~FLAG_DEV; + } + fill_net_cache (this_name_space); + if (!parse_inet (*argv, this_name_space->name, &lcl_port, + &rmt_addr, &rmt_port)) + { + fprintf (stderr, _("%s/%s: invalid specification\n"), *argv, + this_name_space->name); + continue; + } + for (walk = this_name_space->cache; walk; walk = walk->next) + if ((lcl_port == -1 || walk->lcl_port == lcl_port) && + (rmt_addr.ss_family == 0 || ( memcmp( + &((struct sockaddr_in6*)&walk->rmt_addr)->sin6_addr, + &((struct sockaddr_in6*)&rmt_addr)->sin6_addr, + sizeof(struct in6_addr)) == 0) ) && + (rmt_port == -1 || walk->rmt_port == rmt_port)) + enter_item (*argv, flags, sig_number, net_dev, walk->ino, + this_name_space); + } + } + } + if (no_files || (all && silent)) + usage (); + scan_fd (); + scan_mounts (); + scan_swaps (); + if (do_kill && seteuid (getuid ()) < 0) + { + perror ("seteuid"); + return 1; + } + self = getpid (); + if (silent) + kill_files (); + else + show_files_or_kill (); + return found_item ? 0 : 1; +} diff --git a/src/peekfd.c b/src/peekfd.c new file mode 100644 index 0000000..4c3a570 --- /dev/null +++ b/src/peekfd.c @@ -0,0 +1,272 @@ +/* + * peekfd.c - Intercept file descriptor read and writes + * + * Copyright (C) 2007 Trent Waddington + * + * 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 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 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 + */ +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "i18n.h" + +#ifdef I386 + #define REG_ORIG_ACCUM orig_eax + #define REG_ACCUM eax + #define REG_PARAM1 ebx + #define REG_PARAM2 ecx + #define REG_PARAM3 edx +#elif X86_64 + #define REG_ORIG_ACCUM orig_rax + #define REG_ACCUM rax + #define REG_PARAM1 rdi + #define REG_PARAM2 rsi + #define REG_PARAM3 rdx +#elif PPC + #define REG_ORIG_ACCUM gpr[0] + #define REG_ACCUM gpr[3] + #define REG_PARAM1 orig_gpr3 + #define REG_PARAM2 gpr[4] + #define REG_PARAM3 gpr[5] +#ifndef PT_ORIG_R3 + #define PT_ORIG_R3 34 +#endif +#endif + +#define MAX_ATTACHED_PIDS 1024 +int num_attached_pids = 0; +pid_t attached_pids[MAX_ATTACHED_PIDS]; + +void detach(void) { + int i; + for (i = 0; i < num_attached_pids; i++) + ptrace(PTRACE_DETACH, attached_pids[i], 0, 0); +} + +void attach(pid_t pid) { + attached_pids[0] = pid; + if (ptrace(PTRACE_ATTACH, pid, 0, 0) == -1) { + fprintf(stderr, _("Error attaching to pid %i\n"), pid); + return; + } + num_attached_pids++; +} + +void print_version() +{ + fprintf(stderr, _("peekfd (PSmisc) %s\n"), VERSION); + fprintf(stderr, _( + "Copyright (C) 2007 Trent Waddington\n\n")); + fprintf(stderr, _( + "PSmisc comes with ABSOLUTELY NO WARRANTY.\n" + "This is free software, and you are welcome to redistribute it under\n" + "the terms of the GNU General Public License.\n" + "For more information about these matters, see the files named COPYING.\n")); +} + +void usage() { + fprintf(stderr, _( + "Usage: peekfd [-8] [-n] [-c] [-d] [-V] [-h] [ ..]\n" + " -8 output 8 bit clean streams.\n" + " -n don't display read/write from fd headers.\n" + " -c peek at any new child processes too.\n" + " -d remove duplicate read/writes from the output.\n" + " -V prints version info.\n" + " -h prints this help.\n" + "\n" + " Press CTRL-C to end output.\n")); +} + +int bufdiff(int pid, unsigned char *lastbuf, unsigned int addr, unsigned int len) { + int i; + for (i = 0; i < len; i++) + if (lastbuf[i] != (ptrace(PTRACE_PEEKTEXT, pid, addr + i, 0) & 0xff)) + return 1; + return 0; +} + +int main(int argc, char **argv) +{ + int eight_bit_clean = 0; + int no_headers = 0; + int follow_forks = 0; + int remove_duplicates = 0; + int optc; + int target_pid = 0; + int numfds = 0; + int *fds = NULL; + int i; + + struct option options[] = { + {"eight-bit-clean", 0, NULL, '8'}, + {"no-headers", 0, NULL, 'n'}, + {"follow", 0, NULL, 'f'}, + {"duplicates-removed", 0, NULL, 'd'}, + {"help", 0, NULL, 'h'}, + {"version", 0, NULL, 'V'}, + }; + + /* Setup the i18n */ +#ifdef ENABLE_NLS + setlocale(LC_ALL, ""); + bindtextdomain(PACKAGE, LOCALEDIR); + textdomain(PACKAGE); +#endif + + if (argc < 2) { + usage(); + return 1; + } + + while ((optc = getopt_long(argc, argv, "8ncdhV",options, NULL)) != -1) { + switch(optc) { + case '8': + eight_bit_clean = 1; + break; + case 'n': + no_headers = 1; + break; + case 'c': + follow_forks = 1; + break; + case 'd': + remove_duplicates = 1; + break; + case 'V': + print_version(); + return 1; + case 'h': + case '?': + usage(); + return 1; + } + } + /* First arg off the options is the PID to see */ + if (optind >= argc) { + usage(); + return -1; + } + target_pid = atoi(argv[optind++]); + + if (optind < argc) { + numfds = argc - optind; + fds = malloc(sizeof(int) * numfds); + for (i = 0; i < numfds; i++) + fds[i] = atoi(argv[optind + 1 + i]); + } + + attach(target_pid); + if (num_attached_pids == 0) + return 1; + + atexit(detach); + + ptrace(PTRACE_SYSCALL, attached_pids[0], 0, 0); + + /*int count = 0;*/ + int lastfd = numfds > 0 ? fds[0] : 0; + int lastdir = 3; + unsigned char *lastbuf = NULL; + int last_buf_size=-1; + + for(;;) { + int status; + int pid = wait(&status); + if (WIFSTOPPED(status)) { +#ifdef PPC + struct pt_regs regs; + regs.gpr[0] = ptrace(PTRACE_PEEKUSER, pid, 4 * PT_R0, 0); + regs.gpr[3] = ptrace(PTRACE_PEEKUSER, pid, 4 * PT_R3, 0); + regs.gpr[4] = ptrace(PTRACE_PEEKUSER, pid, 4 * PT_R4, 0); + regs.gpr[5] = ptrace(PTRACE_PEEKUSER, pid, 4 * PT_R5, 0); + regs.orig_gpr3 = ptrace(PTRACE_PEEKUSER, pid, 4 * PT_ORIG_R3, 0); +#else + struct user_regs_struct regs; + ptrace(PTRACE_GETREGS, pid, 0, ®s); +#endif + /*unsigned int b = ptrace(PTRACE_PEEKTEXT, pid, regs.eip, 0);*/ + if (follow_forks && (regs.REG_ORIG_ACCUM == SYS_fork || regs.REG_ORIG_ACCUM == SYS_clone)) { + if (regs.REG_ACCUM > 0) + attach(regs.REG_ACCUM); + } + if ((regs.REG_ORIG_ACCUM == SYS_read || regs.REG_ORIG_ACCUM == SYS_write) && (regs.REG_PARAM3 == regs.REG_ACCUM)) { + for (i = 0; i < numfds; i++) + if (fds[i] == regs.REG_PARAM1) + break; + if (i != numfds || numfds == 0) { + if (regs.REG_PARAM1 != lastfd || regs.REG_ORIG_ACCUM != lastdir) { + lastfd = regs.REG_PARAM1; + lastdir = regs.REG_ORIG_ACCUM; + if (!no_headers) + printf("\n%sing fd %i:\n", regs.REG_ORIG_ACCUM == SYS_read ? "read" : "writ", lastfd); + } + if (!remove_duplicates || lastbuf == NULL + || last_buf_size != regs.REG_PARAM3 || + bufdiff(pid, lastbuf, regs.REG_PARAM2, regs.REG_PARAM3)) { + + if (remove_duplicates) { + if (lastbuf) + free(lastbuf); + lastbuf = malloc(regs.REG_PARAM3); + last_buf_size = regs.REG_PARAM3; + } + + for (i = 0; i < regs.REG_PARAM3; i++) { +#ifdef _BIG_ENDIAN + unsigned int a = bswap_32(ptrace(PTRACE_PEEKTEXT, pid, regs.REG_PARAM2 + i, 0)); +#else + unsigned int a = ptrace(PTRACE_PEEKTEXT, pid, regs.REG_PARAM2 + i, 0); +#endif + if (remove_duplicates) + lastbuf[i] = a & 0xff; + + if (eight_bit_clean) + putchar(a & 0xff); + else { + if (isprint(a & 0xff) || (a & 0xff) == '\n') + printf("%c", a & 0xff); + else if ((a & 0xff) == 0x0d) + printf("\n"); + else if ((a & 0xff) == 0x7f) + printf("\b"); + else if (a & 0xff) + printf(" [%02x] ", a & 0xff); + } + } + } + fflush(stdout); + } + } + + ptrace(PTRACE_SYSCALL, pid, 0, 0); + } + } + + return 0; +} diff --git a/src/pstree.c b/src/pstree.c new file mode 100644 index 0000000..a85c7bc --- /dev/null +++ b/src/pstree.c @@ -0,0 +1,946 @@ +/* + * pstree.c - display process tree + * + * Copyright (C) 1993-2002 Werner Almesberger + * Copyright (C) 2002-2005 Craig Small + * + * 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 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 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 + */ + + +#ifdef HAVE_CONFIG_H +#include +#endif + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "i18n.h" +#include "comm.h" + +#ifdef WITH_SELINUX +#include +#endif /*WITH_SELINUX*/ + +extern const char *__progname; + +#ifndef MAX_DEPTH +#define MAX_DEPTH 100 +#endif +#define PROC_BASE "/proc" + +/* UTF-8 defines by Johan Myreen, updated by Ben Winslow */ +#define UTF_V "\342\224\202" /* U+2502, Vertical line drawing char */ +#define UTF_VR "\342\224\234" /* U+251C, Vertical and right */ +#define UTF_H "\342\224\200" /* U+2500, Horizontal */ +#define UTF_UR "\342\224\224" /* U+2514, Up and right */ +#define UTF_HD "\342\224\254" /* U+252C, Horizontal and down */ + +#define VT_BEG "\033(0\017" /* use graphic chars */ +#define VT_END "\033(B" /* back to normal char set */ +#define VT_V "x" /* see UTF definitions above */ +#define VT_VR "t" +#define VT_H "q" +#define VT_UR "m" +#define VT_HD "w" + +typedef struct _proc +{ + char comm[COMM_LEN + 1]; + char **argv; /* only used : argv[0] is 1st arg; undef if argc < 1 */ + int argc; /* with -a : number of arguments, -1 if swapped */ + pid_t pid; + uid_t uid; +#ifdef WITH_SELINUX + security_context_t scontext; +#endif /*WITH_SELINUX*/ + int highlight; + struct _child *children; + struct _proc *parent; + struct _proc *next; +} +PROC; + +typedef struct _child +{ + PROC *child; + struct _child *next; +} +CHILD; + +static struct +{ + const char *empty_2; /* */ + const char *branch_2; /* |- */ + const char *vert_2; /* | */ + const char *last_2; /* `- */ + const char *single_3; /* --- */ + const char *first_3; /* -+- */ +} +sym_ascii = +{ +" ", "|-", "| ", "`-", "---", "-+-"} + +, sym_utf = +{ + " ", + UTF_VR UTF_H, + + UTF_V " ", + UTF_UR UTF_H, UTF_H UTF_H UTF_H, UTF_H UTF_HD UTF_H}, sym_vt100 = +{ + " ", + VT_BEG VT_VR VT_H VT_END, + VT_BEG VT_V VT_END " ", + VT_BEG VT_UR VT_H VT_END, + VT_BEG VT_H VT_H VT_H VT_END, VT_BEG VT_H VT_HD VT_H VT_END} + +, *sym = &sym_ascii; + +static PROC *list = NULL; +static int width[MAX_DEPTH], more[MAX_DEPTH]; +static int print_args = 0, compact = 1, user_change = 0, pids = 0, by_pid = 0, + trunc = 1, wait_end = 0; +#ifdef WITH_SELINUX +static int show_scontext = 0; +#endif /*WITH_SELINUX*/ +static int output_width = 132; +static int cur_x = 1; +static char last_char = 0; +static int dumped = 0; /* used by dump_by_user */ + + +static void +out_char (char c) +{ + cur_x += (c & 0xc0) != 0x80; /* only count first UTF-8 char */ + if (cur_x <= output_width || !trunc) + putchar (c); + if (cur_x == output_width + 1 && trunc && ((c & 0xc0) != 0x80)) + { + if (last_char || (c & 0x80)) + putchar ('+'); + else + { + last_char = c; + cur_x--; + return; + } + } +} + + +static void +out_string (const char *str) +{ + while (*str) + out_char (*str++); +} + + +static int +out_int (int x) /* non-negative integers only */ +{ + int digits, div; + + digits = 0; + for (div = 1; x / div; div *= 10) + digits++; + if (!digits) + digits = 1; + for (div /= 10; div; div /= 10) + out_char ('0' + (x / div) % 10); + return digits; +} + +#ifdef WITH_SELINUX +static void +out_scontext ( security_context_t scontext ) +{ + out_string("`"); + out_string(scontext); + out_string("'"); +} +#endif /*WITH_SELINUX*/ + + +static void +out_newline (void) +{ + if (last_char && cur_x == output_width) + putchar (last_char); + last_char = 0; + putchar ('\n'); + cur_x = 1; +} + + +static PROC * +find_proc (pid_t pid) +{ + PROC *walk; + + for (walk = list; walk; walk = walk->next) + if (walk->pid == pid) + break; + return walk; +} + +#ifdef WITH_SELINUX +static PROC * +new_proc(const char *comm, pid_t pid, uid_t uid, security_context_t scontext) +#else /*WITH_SELINUX*/ +static PROC * +new_proc (const char *comm, pid_t pid, uid_t uid) +#endif /*WITH_SELINUX*/ +{ + PROC *new; + + if (!(new = malloc (sizeof (PROC)))) + { + perror ("malloc"); + exit (1); + } + strcpy (new->comm, comm); + new->pid = pid; + new->uid = uid; + new->highlight = 0; +#ifdef WITH_SELINUX + new->scontext = scontext; +#endif /*WITH_SELINUX*/ + new->children = NULL; + new->parent = NULL; + new->next = list; + return list = new; +} + + +static void +add_child (PROC * parent, PROC * child) +{ + CHILD *new, **walk; + int cmp; + + if (!(new = malloc (sizeof (CHILD)))) + { + perror ("malloc"); + exit (1); + } + new->child = child; + for (walk = &parent->children; *walk; walk = &(*walk)->next) + if (by_pid) + { + if ((*walk)->child->pid > child->pid) + break; + } + else if ((cmp = strcmp ((*walk)->child->comm, child->comm)) > 0) + break; + else if (!cmp && (*walk)->child->uid > child->uid) + break; + new->next = *walk; + *walk = new; +} + + +static void +set_args (PROC * this, const char *args, int size) +{ + char *start; + int i; + + if (!size) + { + this->argc = -1; + return; + } + this->argc = 0; + for (i = 0; i < size - 1; i++) + if (!args[i]) + this->argc++; + if (!this->argc) + return; + if (!(this->argv = malloc (sizeof (char *) * this->argc))) + { + perror ("malloc"); + exit (1); + } + start = strchr (args, 0) + 1; + size -= start - args; + if (!(this->argv[0] = malloc ((size_t) size))) + { + perror ("malloc"); + exit (1); + } + start = memcpy (this->argv[0], start, (size_t) size); + for (i = 1; i < this->argc; i++) + this->argv[i] = start = strchr (start, 0) + 1; +} + +#ifdef WITH_SELINUX +static void +add_proc(const char *comm, pid_t pid, pid_t ppid, uid_t uid, + const char *args, int size, security_context_t scontext) +#else /*WITH_SELINUX*/ +static void +add_proc (const char *comm, pid_t pid, pid_t ppid, uid_t uid, + const char *args, int size) +#endif /*WITH_SELINUX*/ +{ + PROC *this, *parent; + + if (!(this = find_proc (pid))) +#ifdef WITH_SELINUX + this = new_proc(comm, pid, uid, scontext); +#else /*WITH_SELINUX*/ + this = new_proc (comm, pid, uid); +#endif /*WITH_SELINUX*/ + else + { + strcpy (this->comm, comm); + this->uid = uid; + } + if (args) + set_args (this, args, size); + if (pid == ppid) + ppid = 0; + if (!(parent = find_proc (ppid))) +#ifdef WITH_SELINUX + parent = new_proc("?", ppid, 0, scontext); +#else /*WITH_SELINUX*/ + parent = new_proc ("?", ppid, 0); +#endif /*WITH_SELINUX*/ + add_child (parent, this); + this->parent = parent; +} + + +static int +tree_equal (const PROC * a, const PROC * b) +{ + const CHILD *walk_a, *walk_b; + + if (strcmp (a->comm, b->comm)) + return 0; + if (user_change && a->uid != b->uid) + return 0; + for (walk_a = a->children, walk_b = b->children; walk_a && walk_b; + walk_a = walk_a->next, walk_b = walk_b->next) + if (!tree_equal (walk_a->child, walk_b->child)) + return 0; + return !(walk_a || walk_b); +} + + +static void +dump_tree (PROC * current, int level, int rep, int leaf, int last, + uid_t prev_uid, int closing) +{ + CHILD *walk, *next, **scan; + const struct passwd *pw; + int lvl, i, add, offset, len, swapped, info, count, comm_len, first; + const char *tmp, *here; + char comm_tmp[5]; + + if (!current) + return; + if (level >= MAX_DEPTH - 1) + { + fprintf (stderr, _("Internal error: MAX_DEPTH not big enough.\n")); + exit (1); + } + if (!leaf) + for (lvl = 0; lvl < level; lvl++) + { + for (i = width[lvl] + 1; i; i--) + out_char (' '); + out_string (lvl == level - 1 ? last ? sym->last_2 : sym->branch_2 : + more[lvl + 1] ? sym->vert_2 : sym->empty_2); + } + if (rep < 2) + add = 0; + else + { + add = out_int (rep) + 2; + out_string ("*["); + } + if (current->highlight && (tmp = tgetstr ("md", NULL))) + tputs (tmp, 1, putchar); + swapped = info = print_args; + if (swapped && current->argc < 0) + out_char ('('); + comm_len = 0; + for (here = current->comm; *here; here++) + if (*here == '\\') + { + out_string ("\\\\"); + comm_len += 2; + } + else if (*here > ' ' && *here <= '~') + { + out_char (*here); + comm_len++; + } + else + { + sprintf (comm_tmp, "\\%03o", (unsigned char) *here); + out_string (comm_tmp); + comm_len += 4; + } + offset = cur_x; + if (pids) + { + out_char(info++ ? ',' : '('); + (void) out_int (current->pid); + } + if (user_change && prev_uid != current->uid) + { + out_char (info++ ? ',' : '('); + if ((pw = getpwuid (current->uid))) + out_string (pw->pw_name); + else + (void) out_int (current->uid); + } +#ifdef WITH_SELINUX + if ( show_scontext ) { + out_char (info++ ? ',' : '('); + out_scontext(current->scontext); + } +#endif /*WITH_SELINUX*/ + if ((swapped && print_args && current->argc < 0) || (!swapped && info)) + out_char (')'); + if (current->highlight && (tmp = tgetstr ("me", NULL))) + tputs (tmp, 1, putchar); + if (print_args) + { + for (i = 0; i < current->argc; i++) + { + if (i < current->argc-1) /* Space between words but not at the end of last */ + out_char (' '); + len = 0; + for (here = current->argv[i]; *here; here++) + len += *here > ' ' && *here <= '~' ? 1 : 4; + if (cur_x + len <= output_width - (i == current->argc - 1 ? 0 : 4) || !trunc) + for (here = current->argv[i]; *here; here++) + if (*here > ' ' && *here <= '~') + out_char (*here); + else + { + sprintf (comm_tmp, "\\%03o", (unsigned char) *here); + out_string (comm_tmp); + } + else + { + out_string ("..."); + break; + } + } + } +#ifdef WITH_SELINUX + if ( show_scontext || print_args || ! current->children ) +#else /*WITH_SELINUX*/ + if (print_args || !current->children) +#endif /*WITH_SELINUX*/ + { + while (closing--) + out_char (']'); + out_newline (); +#ifdef WITH_SELINUX + if ( show_scontext || print_args ) +#else /*WITH_SELINUX*/ + if (print_args) +#endif /*WITH_SELINUX*/ + { + more[level] = !last; + width[level] = swapped + (comm_len > 1 ? 0 : -1); + for (walk = current->children; walk; walk = walk->next) + dump_tree (walk->child, level + 1, 1, 0, !walk->next, + current->uid, 0); + } + } + else + { + more[level] = !last; + width[level] = comm_len + cur_x - offset + add; + if (cur_x >= output_width && trunc) + { + out_string (sym->first_3); + out_string ("+"); + out_newline (); + } + else + { + first = 1; + for (walk = current->children; walk; walk = next) + { + count = 0; + next = walk->next; + if (compact) + { + scan = &walk->next; + while (*scan) + if (!tree_equal (walk->child, (*scan)->child)) + scan = &(*scan)->next; + else + { + if (next == *scan) + next = (*scan)->next; + count++; + *scan = (*scan)->next; + } + } + if (first) + { + out_string (next ? sym->first_3 : sym->single_3); + first = 0; + } + dump_tree (walk->child, level + 1, count + 1, + walk == current->children, !next, current->uid, + closing + (count ? 1 : 0)); + } + } + } +} + + +static void +dump_by_user (PROC * current, uid_t uid) +{ + const CHILD *walk; + + if (!current) + return; + + if (current->uid == uid) + { + if (dumped) + putchar ('\n'); + dump_tree (current, 0, 1, 1, 1, uid, 0); + dumped = 1; + return; + } + for (walk = current->children; walk; walk = walk->next) + dump_by_user (walk->child, uid); +} + + +/* + * read_proc now uses a similar method as procps for finding the process + * name in the /proc filesystem. My thanks to Albert and procps authors. + */ +static void +read_proc (void) +{ + DIR *dir; + struct dirent *de; + FILE *file; + struct stat st; + char *path, comm[COMM_LEN + 1]; + char *buffer; + char readbuf[BUFSIZ+1]; + char *tmpptr; + pid_t pid, ppid; + int fd, size; + int empty; +#ifdef WITH_SELINUX + security_context_t scontext = NULL; + int selinux_enabled=is_selinux_enabled()>0; +#endif /*WITH_SELINUX*/ + + if (!print_args) + buffer = NULL; + else if (!(buffer = malloc ((size_t) (output_width + 1)))) + { + perror ("malloc"); + exit (1); + } + if (!(dir = opendir (PROC_BASE))) + { + perror (PROC_BASE); + exit (1); + } + empty = 1; + while ((de = readdir (dir)) != NULL) + if ((pid = (pid_t) atoi (de->d_name)) != 0) + { + if (!(path = malloc (strlen (PROC_BASE) + strlen (de->d_name) + 10))) + exit (2); + sprintf (path, "%s/%d/stat", PROC_BASE, pid); + if ((file = fopen (path, "r")) != NULL) + { + empty = 0; + sprintf (path, "%s/%d", PROC_BASE, pid); +#ifdef WITH_SELINUX + if (selinux_enabled) + if (getpidcon(pid,&scontext) < 0) + { + perror (path); + exit (1); + } +#endif /*WITH_SELINUX*/ + if (stat (path, &st) < 0) + { + perror (path); + exit (1); + } + fread(readbuf, BUFSIZ, 1, file) ; + if (ferror(file) == 0) + { + memset(comm, '\0', COMM_LEN+1); + tmpptr = strrchr(readbuf, ')'); /* find last ) */ + /* We now have readbuf with pid and cmd, and tmpptr+2 + * with the rest */ + /*printf("readbuf: %s\n", readbuf);*/ + if (sscanf(readbuf, "%*d (%15[^)]", comm) == 1) + { + /*printf("tmpptr: %s\n", tmpptr+2);*/ + if (sscanf(tmpptr+2, "%*c %d", &ppid) == 1) + { +/* + if (fscanf + (file, "%d (%s) %c %d", &dummy, comm, (char *) &dummy, + &ppid) == 4) + */ + { + DIR *taskdir; + struct dirent *dt; + char *taskpath; + char *threadname; + int thread; + + if (!(taskpath = malloc(strlen(path) + 10))) { + exit (2); + } + sprintf (taskpath, "%s/task", path); + + if ((taskdir=opendir(taskpath))!=0) { + /* if we have this dir, we're on 2.6 */ + if (!(threadname = malloc(strlen(comm) + 3))) { + exit (2); + } + sprintf(threadname,"{%s}",comm); + while ((dt = readdir(taskdir)) != NULL) { + if ((thread=atoi(dt->d_name)) !=0) { + if (thread != pid) { +#ifdef WITH_SELINUX + if (print_args) + add_proc(threadname, thread, pid, st.st_uid, threadname, strlen(threadname)+1, scontext); + else + add_proc(threadname, thread, pid, st.st_uid, NULL, 0, scontext); +#else /*WITH_SELINUX*/ + if (print_args) + add_proc(threadname, thread, pid, st.st_uid, threadname, strlen(threadname)+1); + else + add_proc(threadname, thread, pid, st.st_uid, NULL, 0); +#endif /*WITH_SELINUX*/ + } + } + } + free(threadname); + (void) closedir(taskdir); + } + free(taskpath); + } + + if (!print_args) +#ifdef WITH_SELINUX + add_proc(comm, pid, ppid, st.st_uid, NULL, 0, scontext); +#else /*WITH_SELINUX*/ + add_proc (comm, pid, ppid, st.st_uid, NULL, 0); +#endif /*WITH_SELINUX*/ + else + { + sprintf (path, "%s/%d/cmdline", PROC_BASE, pid); + if ((fd = open (path, O_RDONLY)) < 0) + { + perror (path); + exit (1); + } + if ((size = read (fd, buffer, (size_t) output_width)) < 0) + { + perror (path); + exit (1); + } + (void) close (fd); + if (size) + buffer[size++] = 0; +#ifdef WITH_SELINUX + add_proc(comm, pid, ppid, st.st_uid, buffer, size, scontext); +#else /*WITH_SELINUX*/ + add_proc (comm, pid, ppid, st.st_uid, buffer, size); +#endif /*WITH_SELINUX*/ + } + } + } + } + (void) fclose (file); + } + free (path); + } + (void) closedir (dir); + if (print_args) + free (buffer); + if (empty) + { + fprintf (stderr, _("%s is empty (not mounted ?)\n"), PROC_BASE) ; + exit (1); + } +} + + +#if 0 + +/* Could use output of ps achlx | awk '{ print $3,$4,$2,$13 }' */ + +static void +read_stdin (void) +{ + char comm[PATH_MAX + 1]; + char *cmd; + int pid, ppid, uid; + + while (scanf ("%d %d %d %s\n", &pid, &ppid, &uid, comm) == 4) + { + if (cmd = strrchr (comm, '/')) + cmd++; + else + cmd = comm; + if (*cmd == '-') + cmd++; +#ifdef WITH_SELINUX + add_proc(cmd, pid, ppid, uid, NULL, 0, NULL); +#else /*WITH_SELINUX*/ + add_proc (cmd, pid, ppid, uid, NULL, 0); +#endif /*WITH_SELINUX*/ + } +} + +#endif + + +static void +usage (void) +{ + fprintf (stderr, _( + "Usage: pstree [ -a ] [ -c ] [ -h | -H PID ] [ -l ] [ -n ] [ -p ] [ -u ]\n" + " [ -A | -G | -U ] [ PID | USER ]\n" + " pstree -V\n" + "Display a tree of processes.\n\n" + " -a show command line arguments\n" + " -A use ASCII line drawing characters\n" + " -c don't compact identical subtrees\n" + " -h highlight current process and its ancestors\n" + " -H PID highlight this process and its ancestors\n" + " -G use VT100 line drawing characters\n" + " -l don't truncate long lines\n" + " -n sort output by PID\n" + " -p show PIDs; implies -c\n" + " -u show uid transitions\n" + " -U use UTF-8 (Unicode) line drawing characters\n" + " -V display version information\n")); +#ifdef WITH_SELINUX + fprintf (stderr, _( + " -Z show SELinux security contexts\n")); +#endif /*WITH_SELINUX*/ + fprintf (stderr, _( + " PID start at this PID; default is 1 (init)\n" + " USER show only trees rooted at processes of this user\n\n")); + exit (1); +} + +void print_version() +{ + fprintf(stderr, _("pstree (PSmisc) %s\n"), VERSION); + fprintf(stderr, _( + "Copyright (C) 1993-2005 Werner Almesberger and Craig Small\n\n")); + fprintf(stderr, _( + "PSmisc comes with ABSOLUTELY NO WARRANTY.\n" + "This is free software, and you are welcome to redistribute it under\n" + "the terms of the GNU General Public License.\n" + "For more information about these matters, see the files named COPYING.\n")); +} + + +int +main (int argc, char **argv) +{ + PROC *current; + struct winsize winsz; + const struct passwd *pw; + pid_t pid, highlight; + char termcap_area[1024]; + char *termname; + int c; + + if (ioctl (1, TIOCGWINSZ, &winsz) >= 0) + if (winsz.ws_col) + output_width = winsz.ws_col; + pid = 1; + highlight = 0; + pw = NULL; + +#ifdef ENABLE_NLS + setlocale(LC_ALL, ""); + bindtextdomain(PACKAGE, LOCALEDIR); + textdomain(PACKAGE); +#endif + + if (!strcmp(__progname, "pstree.x11")) + wait_end=1; + + /* + * Attempt to figure out a good default symbol set. Will be overriden by + * command-line options, if given. + */ + + if (isatty(1) && !strcmp(nl_langinfo(CODESET), "UTF-8")) { + /* Use UTF-8 symbols if the locale's character set is UTF-8. */ + sym = &sym_utf; + } else if (isatty (1) && (termname = getenv ("TERM")) && \ + (strlen (termname) > 0) && \ + (setupterm (NULL, 1 /* stdout */, NULL) == OK) && \ + (tigetstr ("acsc") > 0)) { + /* + * Failing that, if TERM is defined, a non-null value, and the terminal + * has the VT100 graphics charset, use it. + */ + /* problems with VT100 on some terminals, making this ascci + * for now + */ + sym = &sym_ascii; + } else { + /* Otherwise, fall back to ASCII. */ + sym = &sym_ascii; + } + +#ifdef WITH_SELINUX + while ((c = getopt (argc, argv, "aAcGhH:npluUVZ")) != EOF) +#else /*WITH_SELINUX*/ + while ((c = getopt (argc, argv, "aAcGhH:npluUV")) != EOF) +#endif /*WITH_SELINUX*/ + switch (c) + { + case 'a': + print_args = 1; + break; + case 'A': + sym = &sym_ascii; + break; + case 'c': + compact = 0; + break; + case 'G': + sym = &sym_vt100; + break; + case 'h': + if (highlight) + usage (); + if (getenv ("TERM") && tgetent (termcap_area, getenv ("TERM")) > 0) + highlight = getpid (); + break; + case 'H': + if (highlight) + usage (); + if (!getenv ("TERM")) + { + fprintf (stderr, _("TERM is not set\n")); + return 1; + } + if (tgetent (termcap_area, getenv ("TERM")) <= 0) + { + fprintf (stderr, _("Can't get terminal capabilities\n")); + return 1; + } + if (!(highlight = atoi (optarg))) + usage (); + break; + case 'l': + trunc = 0; + break; + case 'n': + by_pid = 1; + break; + case 'p': + pids = 1; + compact = 0; + break; + case 'u': + user_change = 1; + break; + case 'U': + sym = &sym_utf; + break; + case 'V': + print_version(); + return 0; +#ifdef WITH_SELINUX + case 'Z': + if (is_selinux_enabled()>0) + show_scontext = 1; + else + fprintf(stderr, "Warning: -Z ignored. Requires anx SELinux enabled kernel\n"); + break; +#endif /*WITH_SELINUX*/ + default: + usage (); + } + if (optind == argc - 1) { + if (isdigit (*argv[optind])) + { + if (!(pid = (pid_t) atoi (argv[optind++]))) + usage (); + } + else if (!(pw = getpwnam (argv[optind++]))) + { + fprintf (stderr, _("No such user name: %s\n"), argv[optind - 1]); + return 1; + } + } + if (optind != argc) + usage (); + read_proc (); + for (current = find_proc (highlight); current; current = current->parent) + current->highlight = 1; + if (!pw) + dump_tree (find_proc (pid), 0, 1, 1, 1, 0, 0); + else + { + dump_by_user (find_proc (1), pw->pw_uid); + if (!dumped) + { + fprintf (stderr, _("No processes found.\n")); + return 1; + } + } + if (wait_end == 1) { + fprintf(stderr, _("Press return to close\n")); + (void)getchar(); + } + + return 0; +} diff --git a/src/signals.c b/src/signals.c new file mode 100644 index 0000000..d876c72 --- /dev/null +++ b/src/signals.c @@ -0,0 +1,86 @@ +/* + * signals.c - signal name handling + * + * Copyright (C) 1993-2002 Werner Almesberger + * Copyright (C) 2002-2005 Craig Small + * + * 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 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 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 + */ + + + + +#include +#include +#include +#include +#include + +#include "i18n.h" +#include "signals.h" + + +typedef struct +{ + int number; + const char *name; +} +SIGNAME; + + +static SIGNAME signals[] = { +#include "signames.h" + {0, NULL} +}; + + +void +list_signals (void) +{ + SIGNAME *walk; + int col; + + col = 0; + for (walk = signals; walk->name; walk++) + { + if (col + strlen (walk->name) + 1 > 80) + { + putchar ('\n'); + col = 0; + } + printf ("%s%s", col ? " " : "", walk->name); + col += strlen (walk->name) + 1; + } + putchar ('\n'); +} + + +int +get_signal (char *name, const char *cmd) +{ + SIGNAME *walk; + + if (isdigit (*name)) + return atoi (name); + if (!strncmp("SIG", name, 3)) + name += 3; + for (walk = signals; walk->name; walk++) + if (!strcmp (walk->name, name)) + break; + if (walk->name) + return walk->number; + fprintf (stderr, _("%s: unknown signal; %s -l lists signals.\n"), name, cmd); + exit (1); +} diff --git a/src/signals.h b/src/signals.h new file mode 100644 index 0000000..b936c46 --- /dev/null +++ b/src/signals.h @@ -0,0 +1,19 @@ +/* signals.h - signal name handling */ + +/* Copyright 1993-1995 Werner Almesberger. See file COPYING for details. */ + + +#ifndef SIGNALS_H +#define SIGNALS_H + +void list_signals (void); + +/* Lists all known signal names on standard output. */ + +int get_signal (char *name, const char *cmd); + +/* Returns the signal number of NAME. If no such signal exists, an error + message is displayed and the program is terminated. CMD is the name of the + application. */ + +#endif diff --git a/src/signames.c b/src/signames.c new file mode 100644 index 0000000..fd8d455 --- /dev/null +++ b/src/signames.c @@ -0,0 +1,5 @@ +/* + * signames.c: Dummy file to better generate signames.h + */ + +#include -- 2.7.4